Loading...
Loading...
Manage Jira issues from the command line. Use when working with Jira issues, creating tasks, updating status, assigning work, or searching for issues.
npx skill4agent add avantmedialtd/skills jiraaf jira.envJIRA_BASE_URLhttps://company.atlassian.netJIRA_EMAILJIRA_API_TOKENaf jira --helpaf jira get <issue-key>af jira list <project> [--limit N]af jira search "<jql>"af jira projectsaf jira types <project>af jira transitions <issue-key>af jira comment <issue-key>af jira create --project <key> --type <type> --summary "<text>" [--description "<text>"] [--priority <name>] [--labels a,b,c] [--parent <key>]af jira update <issue-key> [--summary "<text>"] [--description "<text>"] [--priority <name>] [--labels a,b,c]af jira transition <issue-key> --to "<status>"af jira assign <issue-key> --to <email>--to noneaf jira comment <issue-key> --add "<text>"af jira attach <issue-key> <file>af jira delete <issue-key>--jsonaf jira search "assignee = currentUser() AND status != Done ORDER BY priority DESC"af jira get PROJ-123
af jira transition PROJ-123 --to "In Progress"
af jira comment PROJ-123 --add "Starting work"af jira comment PROJ-123 --add "Done"
af jira transition PROJ-123 --to "Done"af jira create --project PROJ --type Bug --summary "Login fails on Safari" \
--description "Users cannot log in using Safari 17. Error: 'Invalid session'" \
--priority High --labels safari,auth,urgentaf jira create --project PROJ --type Sub-task --summary "Write unit tests" \
--parent PROJ-123# Attach a screenshot
af jira attach PROJ-123 ./screenshot.png
# Attach multiple files
for f in ./audit/*.png; do
af jira attach PROJ-123 "$f"
done# My open issues
af jira search "assignee = currentUser() AND status != Done"
# Recent bugs in project
af jira search "project = PROJ AND type = Bug ORDER BY created DESC" --limit 10
# Unassigned issues
af jira search "project = PROJ AND assignee IS EMPTY"
# Issues updated this week
af jira search "project = PROJ AND updated >= -7d"
# High priority blockers
af jira search "priority = Highest AND status != Done"af jira transitions <key>af jira types <project>--jsonjq--json{"error": "message"}01