plan-jira-ticket
4
总安装量
4
周安装量
#54527
全站排名
安装命令
npx skills add https://github.com/jkappers/agent-skills --skill plan-jira-ticket
Agent 安装分布
opencode
4
gemini-cli
4
github-copilot
4
codex
4
kimi-cli
4
amp
4
Skill 文档
Plan Jira Ticket
Ticket ID: $ARGUMENTS
Ticket details:
acli jira workitem view $ARGUMENTS
Workflow
- Parse ticket â Extract summary, description, acceptance criteria, linked issues, and attachments from the ticket details above.
- Create or switch to branch â Follow Branch Naming. Check for an existing branch matching this ticket before creating a new one.
- Transition ticket â Run
acli jira workitem update $ARGUMENTS --status "In Progress". - Enter plan mode â Call EnterPlanMode.
- Create implementation plan â Write a plan covering:
- Ticket ID and summary as the plan title
- Acceptance criteria from the ticket (verbatim when available)
- Technical approach with specific files to create or modify
- Testing strategy
- Out-of-scope items (what NOT to change)
Branch Naming
Format: {TICKET-ID}-{slugified-summary}
| Rule | Detail |
|---|---|
| Preserve ticket ID case | PROJ-123 stays PROJ-123 |
| Slugify summary | Lowercase, replace spaces and special characters with hyphens, collapse consecutive hyphens |
| Truncate slug | 50 characters max, break at word boundary |
| Remove trailing hyphens | add-user-login- becomes add-user-login |
Result: PROJ-123-add-user-login-page
Branch Check
- List local branches:
git branch --list '*{TICKET-ID}*' - List remote branches:
git branch -r --list '*{TICKET-ID}*' - Match found â
git checkout {branch}. Pull latest if remote tracking branch exists. - No match â
git checkout -b {new-branch-name}.
Plan Requirements
Include:
- Ticket ID and summary as the plan title
- Acceptance criteria extracted from the ticket (verbatim when present)
- Files to create or modify with rationale
- Testing approach
- Dependencies or blockers from the ticket
Exclude:
- Work outside the ticket scope
- Speculative features not in the ticket
- Refactoring unrelated to ticket objectives
Error Handling
| Error | Action |
|---|---|
acli not found |
Stop. Instruct user to install Atlassian CLI. |
| Ticket ID not found | Stop. Report invalid ticket ID. |
| Branch creation fails | Check for name conflicts. Report error. |
| Status transition fails | Log warning. Continue â ticket may already be In Progress or use a different workflow. |
No $ARGUMENTS provided |
Stop. Prompt user for a ticket ID. |