Back to Skills

search

verified

Search for Jira tickets using JQL or text

View on GitHub

Marketplace

han

TheBushidoCollective/han

Plugin

jira

Integration

Repository

TheBushidoCollective/han
74stars

services/jira/skills/search/SKILL.md

Last Verified

February 3, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/TheBushidoCollective/han/blob/main/services/jira/skills/search/SKILL.md -a claude-code --skill search

Installation paths:

Claude
.claude/skills/search/
Powered by add-skill CLI

Instructions

# search

## Name

hashi-jira:search - Search for Jira tickets using JQL or text

## Synopsis

```
/search [arguments]
```

## Description

Search for Jira tickets using JQL or text

## Implementation

Search for Jira tickets using either JQL (Jira Query Language) or simple text search.

**Usage**:

- `/search authentication bug` (simple text search)
- `/search project = PROJ AND status = "In Progress"` (JQL query)

Use the Atlassian MCP tool `atlassian_search_issues`.

**Logic**:

1. If the query contains JQL operators (=, AND, OR, IN, etc.), use it as JQL directly
2. Otherwise, construct a JQL query that searches across:
   - summary ~ "query"
   - description ~ "query"
   - comment ~ "query"

Display results in table format:

| Key | Summary | Status | Assignee | Priority | Updated |
|-----|---------|--------|----------|----------|---------|

Limit to 20 results. If more exist, show: "Showing 20 of X results. Refine your search for more specific results."

Provide helpful JQL tips if search returns no results.

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
1002 chars