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

Jira SAFe Issue Builder

Creates properly linked Epic → Feature → Story → Subtask hierarchies in Jira Cloud using SAFe conventions and REST API v3.

AutomationIntermediate41143AI score 9/10Last updated: Aug 18, 2026

What it does

  • Builds Epics, Features, Stories and Subtasks in correct SAFe parent-child hierarchy.
  • Writes stories in "As a… I want… So that…" form with GIVEN/WHEN/THEN acceptance criteria and a Definition of Done checklist.
  • Detects whether your project is Next-Gen (team-managed) or Classic (company-managed) and uses the right linking method: parent vs customfield_10014 (Epic Link).
  • Ships ready-to-run JS snippets: ADF description templates, epic+stories batch creation, story+subtasks creation, Epic Link field lookup, error handling and rate limiting.

Who it's for

  • POs, PMs and Scrum Masters running SAFe backlogs in Jira Cloud.
  • Tech leads turning requirement docs into bulk Jira issues.
  • Anyone scripting Jira REST API v3 who keeps failing to attach Stories to Epics.

Example uses

  1. "Split this PRD into 1 Epic and 6 Stories in the SCRUM project" → creates the Epic, then links each Story via parent.
  2. "Add subtasks for API work, tests and docs under story US-12" → creates three Subtask issues with the story as parent.
  3. "Check if my project is team-managed and find the Epic Link field ID" → project style detection plus /rest/api/3/field lookup.

· · · 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-safe/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-safe folder from the GitHub repo aiskillstore/marketplace into my ~/.claude/skills/jira-safe/.
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 /tmp/aiskillstore && mkdir -p ~/.claude/skills && cp -r /tmp/aiskillstore/skills/01000001-01001110/jira-safe ~/.claude/skills/

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

  1. Open a terminal.
  2. Clone the skill repo into a temp folder: git clone https://github.com/aiskillstore/marketplace.git /tmp/aiskillstore
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy just this skill: cp -r /tmp/aiskillstore/skills/01000001-01001110/jira-safe ~/.claude/skills/
  5. Prepare Jira credentials as environment variables: JIRA_URL (e.g. https://yourcompany.atlassian.net), EMAIL, and TOKEN (Atlassian API token).
  6. Restart Claude Code and ask something like "Create a SAFe Epic with stories in Jira" to trigger the skill.
  7. Test the bulk-delete helper only on a throwaway project before using it anywhere real.