Help us improve
Share bugs, ideas, or general feedback.
From jira
CLI scripts for searching, creating, updating, transitioning, commenting, logging work, and managing Jira issues, sprints, boards, and more. Auto-triggers on Jira URLs and issue keys.
npx claudepluginhub netresearch/claude-code-marketplace --plugin jira-integrationHow this skill is triggered — by the user, by Claude, or both
Slash command
/jira:jira-communicationThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
CLI scripts via `uv run`. All support `--help`, `--json`, `--quiet`, `--debug`.
AGENTS.mdCLAUDE.mdevals/evals.jsonreferences/agile.mdreferences/attachments.mdreferences/comments.mdreferences/creation.mdreferences/fields-and-users.mdreferences/intent-verbs.mdreferences/issue-editing.mdreferences/jql-cookbook.mdreferences/jql-quick-reference.mdreferences/links.mdreferences/multi-profile.mdreferences/qa-gather.mdreferences/troubleshooting.mdreferences/versions.mdreferences/watchers.mdreferences/worklog.mdscripts/core/jira-attachment.pyManages Jira Cloud issues via jira CLI with JSON output: create, view, update, search issues, fetch hierarchies, manage sprints.
References Atlassian CLI (acli) commands for Jira: authenticate, create/view/edit issues, JQL searches, bulk operations, project/board/sprint management.
Share bugs, ideas, or general feedback.
CLI scripts via uv run. All support --help, --json, --quiet, --debug.
On Jira URL or issue key (PROJ-123), pick by intent — each is one call:
| Intent | Tool |
|---|---|
| triage / work on ticket | jira-issue.py work KEY |
| start QA review | jira-issue.py qa KEY |
| QA-fail follow-up | jira-issue.py qa-fail KEY |
| field-only lookup | jira-issue.py get KEY --fields ... |
| change status | jira-issue.py act KEY → jira-transition.py do |
| audit / sibling discovery | jira-qa-gather.py KEY |
Auth issues → jira-setup.py. Anti-pattern: get + comment list for the same key — use the matching verb. See references/intent-verbs.md.
Under ${CLAUDE_SKILL_DIR}/scripts/{core,workflow,utility}/.
Core: jira-issue.py, jira-search.py, jira-worklog.py, jira-attachment.py, jira-setup.py, jira-validate.py
Workflow: jira-create.py, jira-transition.py, jira-comment.py, jira-move.py, jira-sprint.py, jira-board.py, jira-version.py
Utility: jira-user.py, jira-fields.py, jira-link.py, jira-weblink.py, jira-worklog-query.py, jira-watchers.py, jira-qa-gather.py
Run directly. Scripts report ✓/✗. Destructive ops: --dry-run. Global flags before subcommand: jira-issue.py --json get PROJ-123.
uv run ${CLAUDE_SKILL_DIR}/scripts/core/jira-issue.py get PROJ-123
uv run ${CLAUDE_SKILL_DIR}/scripts/core/jira-search.py query "assignee = currentUser() AND status != Closed" -n 5 -f key,summary,status
uv run ${CLAUDE_SKILL_DIR}/scripts/core/jira-issue.py update PROJ-123 --assignee me --priority Critical
uv run ${CLAUDE_SKILL_DIR}/scripts/workflow/jira-comment.py add PROJ-123 "Comment text"
uv run ${CLAUDE_SKILL_DIR}/scripts/workflow/jira-transition.py do PROJ-123 "In Progress"
uv run ${CLAUDE_SKILL_DIR}/scripts/core/jira-worklog.py add PROJ-123 2h --comment "Work done"
uv run ${CLAUDE_SKILL_DIR}/scripts/workflow/jira-create.py issue PROJ "Summary" --type Task
uv run ${CLAUDE_SKILL_DIR}/scripts/core/jira-attachment.py add PROJ-123 screenshot.png
jira-syntax: For descriptions/comments. Jira uses wiki markup, not Markdown.
references/jql-quick-reference.md, references/jql-cookbook.md — JQL beyond simple filtersreferences/multi-profile.md — multiple Jira instances, --profilereferences/troubleshooting.md — auth, SSL, 401, 403, connectionreferences/issue-editing.md — --description, --fields-json, reporter, deletes, movesreferences/creation.md — --parent, components, custom fieldsreferences/comments.md — edit, delete, list commentsreferences/worklog.md — --started, date ranges, jira-worklog-query.pyreferences/attachments.md — upload, download, inspect attachmentsreferences/links.md — issue and web linksreferences/agile.md — sprints, boards, board --namereferences/fields-and-users.md — custom field IDs, users, issue typesreferences/watchers.md — watch, subscribe, list watchersreferences/versions.md — fix/affects versions, releases, version CRUDreferences/qa-gather.md — comprehensive audit bundle (siblings, prose URLs)references/intent-verbs.md — work / qa / qa-fail / act: heuristic + status-set configCloud: JIRA_URL + JIRA_USERNAME + JIRA_API_TOKEN. Server/DC: JIRA_URL + JIRA_PERSONAL_TOKEN. Config via ~/.env.jira or ~/.jira/profiles.json.