Pull a Jira issue and scaffold a feature spec with test stubs. Use when starting work on a new Jira ticket or GitHub issue. Reads acceptance criteria, description, and comments. Requires Jira MCP server for Jira tickets. Triggers on: ticket, issue, PROJ-*, start work on, pick up.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add igorilic/agentic-orchestration --skill ticket --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ticket?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/igorilic-ticket)More formats (shields.io, HTML) on the badges page.
---
name: ticket
description: >
Pull a Jira issue and scaffold a feature spec with test stubs.
Use when starting work on a new Jira ticket or GitHub issue.
Reads acceptance criteria, description, and comments. Requires
Jira MCP server for Jira tickets. Triggers on: ticket, issue,
PROJ-*, start work on, pick up.
---
## Ticket to Spec + Test Stubs
### Step 1: Fetch Ticket
Use the Jira MCP server to fetch ticket `$ARGUMENTS`:
- Summary and description
- Acceptance criteria (check the AC field, or custom fields)
- Comments (often contain clarifications)
- Linked issues and subtasks
If Jira MCP is not available, ask the user to paste the ticket details.
### Step 2: Analyze Requirements
Extract testable requirements from (in priority order):
1. Acceptance criteria field (if present)
2. Description (parse for behavioral statements)
3. Comments (look for clarifications from product/QA)
If requirements are too vague to write tests, STOP and output:
```
⚠️ CLARIFICATION NEEDED — Ticket lacks clear testable requirements.
What I found: [summary]
What I need: [specific questions]
```
### Step 3: Create Feature Spec
Create `docs/context/specs/<ticket-id>-<short-name>.md` with sections:
- Source (ticket URL)
- Context (from description)
- Acceptance Criteria (from AC field or synthesized)
- Technical Approach (proposed, marked DRAFT)
- Test Plan (unit + integration test cases)
- Open Questions (any ambiguity found)
### Step 4: Scaffold Test Stubs
Detect the project stack and create test file(s) with empty test
functions matching the acceptance criteria.
### Step 5: Update Sprint
Add the ticket to `docs/context/CURRENT_SPRINT.md` as "In Progress".
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!