Back to list
ericfisherdev

search-issues

by ericfisherdev

Some QOL Claude Code plugins that I wrote

0🍴 0📅 Jan 10, 2026

SKILL.md


name: search-issues description: This skill MUST be used when the user asks to "search issues", "find issues", "JQL search", "query Jira", "list issues matching", "find tickets where", "search for bugs", "find my issues", or otherwise requests searching for Jira issues using criteria or JQL.

Search Jira Issues with JQL

Search for Jira issues using JQL (Jira Query Language) or simple filters.

Quick Start

Use the Python script at scripts/search_issues.py:

# Simple project search
python scripts/search_issues.py --project PROJ

# JQL query
python scripts/search_issues.py --jql "project = PROJ AND status = 'In Progress'"

# Quick filters
python scripts/search_issues.py --project PROJ --status "Open" --assignee "John"

# My open issues
python scripts/search_issues.py --jql "assignee = currentUser() AND resolution = Unresolved"

Query Options

ArgumentDescription
--jql, -qRaw JQL query string
--project, -pFilter by project key
--status, -sFilter by status name
--assignee, -aFilter by assignee (name or "me")
--type, -tFilter by issue type (Bug, Story, etc.)
--priorityFilter by priority
--labels, -lFilter by labels (comma-separated)
--createdCreated date filter (e.g., "-7d", "2024-01-01")
--updatedUpdated date filter

Output Options

ArgumentDescription
--max-results, -nMaximum results (default: 20)
--fieldsFields to retrieve (comma-separated)
--format, -fOutput: compact (default), text, json, table
--orderSort order (e.g., "created DESC")

JQL Quick Reference

Common Queries

# All open bugs in a project
--jql "project = PROJ AND type = Bug AND resolution = Unresolved"

# My issues updated this week
--jql "assignee = currentUser() AND updated >= -7d"

# High priority issues
--jql "priority in (Critical, High) AND status != Done"

# Issues with specific labels
--jql "labels in (backend, api)"

# Recently created issues
--jql "project = PROJ AND created >= -24h"

# Issues in current sprint
--jql "project = PROJ AND sprint in openSprints()"

JQL Operators

OperatorDescriptionExample
=Equalsstatus = "In Progress"
!=Not equalsstatus != Done
~Containssummary ~ "login"
inIn liststatus in (Open, "In Progress")
isIs nullassignee is EMPTY
>=, <=Comparisoncreated >= -7d

Examples

Find Open Bugs

python scripts/search_issues.py \
  --project PROJ \
  --type Bug \
  --status Open

Search by Text

python scripts/search_issues.py \
  --jql "project = PROJ AND (summary ~ 'login' OR description ~ 'login')"

My Assigned Issues

python scripts/search_issues.py \
  --assignee me \
  --status "In Progress" \
  --order "priority DESC"

Issues Updated Recently

python scripts/search_issues.py \
  --project PROJ \
  --updated "-2d" \
  --max-results 50

Output Formats

compact (default):

PROJ-123|Fix login bug|In Progress|Bug|P:High|@jsmith
PROJ-124|Update docs|Open|Task|P:Medium|@jdoe
Found: 2 issues

table:

Key       | Summary              | Status      | Type | Priority | Assignee
----------|----------------------|-------------|------|----------|----------
PROJ-123  | Fix login bug        | In Progress | Bug  | High     | jsmith
PROJ-124  | Update docs          | Open        | Task | Medium   | jdoe

text:

Issue: PROJ-123
Summary: Fix login bug
Status: In Progress
Type: Bug
Priority: High
Assignee: John Smith
---
Issue: PROJ-124
...

json:

{"total":2,"issues":[{"key":"PROJ-123","summary":"Fix login bug",...}]}

Environment Setup

Requires three environment variables:

  • JIRA_BASE_URL - e.g., https://yoursite.atlassian.net
  • JIRA_EMAIL - Your Jira account email
  • JIRA_API_TOKEN - API token from Atlassian account settings

Reference

For JQL syntax and field reference, see references/options-reference.md.

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon