Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Jira Workflow Orchestration

Runs the full Jira lifecycle for you — drafting SAFe stories, getting your approval, creating issues, and transitioning them to Done as work completes.

AutomationIntermediate41443AI score 9/10Last updated: Aug 28, 2026

What it does

  • Drafts SAFe-format user stories ("As a…, I want…, so that…") with GIVEN/WHEN/THEN acceptance criteria and a Definition of Done checklist.
  • Enforces a Propose → Approve → Create loop: nothing is written to Jira without your explicit OK.
  • Uses Jira REST API v3 to create issues and subtasks, build ADF (Atlassian Document Format) descriptions, query/execute transitions, and post comments.
  • Auto-transitions issues to Progressing on start and Done on completion, appending modified files and commits as an implementation comment.
  • Includes a TodoWrite sync pattern for Claude Code, error handling for 401/403/404/400, and rate-limit guidance (10 req/sec).

Who it's for

  • Developers and tech leads on Jira Cloud, especially Next-Gen (team-managed) projects.
  • Agile teams tired of context-switching between code and ticket bookkeeping.
  • Solo devs who want commits and work logs mirrored into Jira automatically.

Examples

  1. Ask "build the login API" → Claude proposes a SAFe story with acceptance criteria; on approval it creates the story plus subtasks in your project.
  2. On start, SCRUM-100 moves To Do → Progressing; on finish it posts files/commits as a comment and moves to Done.
  3. Run node scripts/jira-workflow-demo.mjs status SCRUM-100 to inspect current state and available transitions.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/aiskillstore/marketplace/HEAD/skills/01000001-01001110/jira-workflow/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the skills/01000001-01001110/jira-workflow folder from the GitHub repo aiskillstore/marketplace into my ~/.claude/skills/aiskillstore-jira-workflow/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/aiskillstore/marketplace.git && mkdir -p ~/.claude/skills && cp -r marketplace/skills/01000001-01001110/jira-workflow ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and clone the repo: git clone https://github.com/aiskillstore/marketplace.git
  2. Create the skills folder: mkdir -p ~/.claude/skills
  3. Copy the skill in: cp -r marketplace/skills/01000001-01001110/jira-workflow ~/.claude/skills/
  4. Generate an Atlassian API token (Account settings → Security → Create API token).
  5. Export the env vars in your shell profile: JIRA_EMAIL, JIRA_API_TOKEN, JIRA_BASE_URL, JIRA_PROJECT_KEY, JIRA_BOARD_ID.
  6. Check your own Jira workflow state names and edit Progressing / Out Review in SKILL.md to match (most boards use In Progress).
  7. Restart Claude Code and try: "Create a Jira story for this task."