agentsclimarketplace

Sprint to jira

Skill alycd/agent-skills/.claude/skills/sprint-to-jira

Claude Agent Skills

Install
npx -y skills add alycd/agent-skills --skill sprint-to-jira

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Generate agile user stories and bulk-create Jira tickets from a sprint planning markdown file's Feature Summary table. Use when given a sprint doc and asked to create Jira tickets, generate stories for sprint features, or run the sprint-to-jira pipeline. Triggers on phrases like "create jira tickets for sprint", "generate stories from sprint doc", "make tickets for each feature", or "foreach item in sprint".

SKILL.md

4.2 KB, 967 tokens by cl100k_base, as published. Nobody here has run it

Sprint → Jira Ticket Pipeline

Reads a sprint planning markdown file, generates an agile user story (JSON) for each row in the Feature Summary table, and creates a Jira ticket for each one via create_jira_ticket.sh.

Instructions

Step 1: Locate inputs

  1. Identify the sprint markdown file — use the file the user referenced or the current working directory.
  2. Find create_jira_ticket.sh:
    find /Users/alysidi -name "create_jira_ticket.sh" 2>/dev/null | head -1
    
  3. Confirm JIRA_API_TOKEN is set in the environment (the script checks for it).

Step 2: Parse the Feature Summary table

Read the markdown file and extract every row from the Feature Summary table. For each row, capture:

  • Title — column "Title"
  • Summary — column "Summary"
  • BusinessContext — column "Business Context" (may be empty)

Step 3: Create a task list

Use TaskCreate to create one task per feature before processing any of them. Subject format:

Agile story + Jira ticket: <Title>

Step 4: Process each feature sequentially

For each feature (one at a time — clipboard is shared):

  1. Mark task in_progress with TaskUpdate.

  2. Generate agile story JSON using the schema below. Infer missing fields from the title and summary. Use the agile-story skill's output format but extend it to match what create_jira_ticket.sh expects:

{
  "Topic": "<Title>",
  "Story": "As a <persona>, I want <capability> so that <outcome>.",
  "BusinessContext": "<business context from table or inferred>",
  "Criteria": "Given <precondition>, when <action>, then <expected result>. (repeat for each scenario)",
  "Details": {
    "users": "<who uses this feature>",
    "purpose": "<why it exists>",
    "constraints": "<known limits or rules>",
    "success_criteria": "<measurable outcomes>"
  }
}
  1. Write JSON to a temp file:

    # Use index N (1-based) to avoid clipboard collisions
    /tmp/story_N.json
    
  2. Run the pipeline:

    cat /tmp/story_N.json | pbcopy && pbpaste | /path/to/create_jira_ticket.sh
    
  3. Check the response — a 201 HTTP status and a JSON body with "key" (e.g. MAR-12444) indicates success.

  4. Mark task completed with TaskUpdate.

Step 5: Report results

After all features are processed, output a markdown table:

FeatureJira Ticket
Tours for New FeaturesMAR-12444
......

JSON field guidance

FieldRequiredNotes
TopicYesBecomes the Jira ticket summary
StoryYesClassic "As a… I want… so that…" format
BusinessContextNoUse table value; infer if blank
CriteriaYesGiven/When/Then; one sentence per scenario
Details.usersNoWho interacts with this feature
Details.purposeNoThe "why"
Details.constraintsNoTechnical or business limits
Details.success_criteriaNoMeasurable outcomes

Edge cases

  • Empty Business Context: Infer from the title and summary rather than leaving blank.
  • Script not found: Run the find command in Step 1 and report the path to the user before proceeding.
  • Missing JIRA_API_TOKEN: Inform the user and halt — do not attempt to create tickets.
  • Non-201 response: Log the error, mark the task as still in_progress, and continue with remaining features. Report failures at the end.
  • Table not found: Inform the user that no Feature Summary table was found in the file and ask them to point to the correct section.

Requirements

  • jq must be installed (brew install jq)
  • JIRA_API_TOKEN environment variable must be set
  • create_jira_ticket.sh must be executable and reachable
  • macOS clipboard tools (pbcopy, pbpaste) must be available

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.