
jira
by dwen3232
gotta love version controlling
SKILL.md
name: jira description: Use when interacting with Jira stories and sprints allowed-tools:
- Read
- Grep
- Glob
- Bash(acli jira workitem view:*)
- Bash(acli jira workitem search:*)
- Bash(acli jira auth:*)
- Bash(acli jira --help:*)
Jira CLI Skill
Uses acli (Atlassian CLI) for Jira operations. Authentication: acli jira auth login --web
The common tasks below are EXAMPLES of things you may be asked to do. You DO NOT need to follow their formats exactly
Common Tasks
Get a ticket:
acli jira workitem view DO-123
Update a ticket:
acli jira workitem edit DO-123 --assignee username --comment "text"
List tickets assigned to me:
acli jira workitem search --jql "assignee = currentUser() AND status NOT IN ('Accepted', 'Closed', 'In Production', 'Not Doing')" --paginate --csv
Other useful commands:
acli jira workitem search --jql "JQL_QUERY" --csv- Search with JQLacli jira workitem transition DO-123 --status "In Progress" --csv- Change statusacli jira workitem assign DO-123 --assignee username --csv- Assign ticket
Common Story Statuses:
- To Do
- In Progress
- Ready for Code Review
- Ready for Acceptance
- Accepted
- In Production
- Closed
- Icebox
- Not Doing
Filtering Guidelines:
- DEFAULT BEHAVIOR: Unless explicitly requested otherwise, ONLY show stories that are NOT completed
- Completed statuses to exclude: Accepted, Closed, In Production, Not Doing
- Use status-based filtering:
status NOT IN ('Accepted', 'Closed', 'In Production', 'Not Doing') - For specific statuses, use:
status = "In Progress"orstatus IN ("To Do", "In Progress")
IMPORTANT: ALWAYS use --csv flag for all commands to get structured output.
Documentation
Official docs: https://developer.atlassian.com/cloud/acli/
If you encounter errors or need to understand command options, use acli jira workitem --help or acli jira workitem <command> --help.
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon