Jira SAFe Issue Builder
Creates properly linked Epic → Feature → Story → Subtask hierarchies in Jira Cloud using SAFe conventions and REST API v3.
AutomationIntermediate★ 411⑂ 43AI 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:
parentvscustomfield_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
- "Split this PRD into 1 Epic and 6 Stories in the SCRUM project" → creates the Epic, then links each Story via
parent. - "Add subtasks for API work, tests and docs under story US-12" → creates three
Subtaskissues with the story as parent. - "Check if my project is team-managed and find the Epic Link field ID" → project style detection plus
/rest/api/3/fieldlookup.
· · · 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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Open a terminal.
- Clone the skill repo into a temp folder:
git clone https://github.com/aiskillstore/marketplace.git /tmp/aiskillstore - Create the skills folder:
mkdir -p ~/.claude/skills - Copy just this skill:
cp -r /tmp/aiskillstore/skills/01000001-01001110/jira-safe ~/.claude/skills/ - Prepare Jira credentials as environment variables:
JIRA_URL(e.g. https://yourcompany.atlassian.net),EMAIL, andTOKEN(Atlassian API token). - Restart Claude Code and ask something like "Create a SAFe Epic with stories in Jira" to trigger the skill.
- Test the bulk-delete helper only on a throwaway project before using it anywhere real.