â /complete
Mark a Jira ticket as complete after validating acceptance criteria
Command Usage
Invoke this command in Claude Code:
/completename: complete description: Mark a Jira ticket as complete after validating acceptance criteria
Complete a Jira ticket by validating acceptance criteria and transitioning to Done.
Usage: /complete PROJ-123
Steps:
- Use
atlassian_get_issueto fetch ticket details including description and comments - Extract acceptance criteria from description
- Display each criterion and ask user to confirm completion
- If all confirmed:
- Use
atlassian_add_commentto add completion summary - Use
atlassian_transition_issueto transition to "Done"
- Use
- If any not confirmed:
- List incomplete criteria
- Keep ticket in current status
- Suggest next steps
Display Format:
â
Completing PROJ-123: {summary}
ð Acceptance Criteria Validation:
1. â {criterion 1} - COMPLETE
2. â {criterion 2} - COMPLETE
3. â {criterion 3} - INCOMPLETE
4. â {criterion 4} - COMPLETE
â Cannot complete: 1 criterion not met
- {criterion 3}
Suggestion: Complete remaining criteria before marking as Done.
Only transition to Done if ALL criteria are validated.