From scorevision
Audit ScoreVision Jira tickets against the current codebase to identify completed work, stale tickets, and status mismatches. Use when the user asks to "review my tickets", "check ticket status", "audit Jira tickets", or needs to reconcile ticket state with code.
How this skill is triggered — by the user, by Claude, or both
Slash command
/scorevision:ticket-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Review and update Jira tickets based on the current codebase state.
Review and update Jira tickets based on the current codebase state.
ticket-workflow skilljira-cli skillQuery for open tickets assigned to the current user:
acli jira workitem search --jql "assignee = currentUser() AND resolution = Unresolved" --fields "key,status,summary"
Group tickets by their current status. Reference the ticket-workflow skill for ScoreVision's workflow states and status categories.
For each ticket, correlate with codebase state to determine appropriate action.
Search for related code:
Check git history:
git log --oneline --grep="<ticket-id>"
Check recent releases:
git tag --sort=-v:refname | head -10
git log --oneline <previous-tag>..<current-tag>
IMPORTANT: Before executing any modifications, present a recommendation plan for user approval.
For each ticket that needs modification:
## Recommendation: <TICKET-ID>
### Current State
- **Status:** <current status>
- **Summary:** <ticket summary>
### Evidence Gathered
- Git commits: <list relevant commits>
- Code files: <list relevant files>
- Release inclusion: <which release, if any>
- Deployment status: <deployed to which environment>
### Recommended Action
<What to do: transition, comment, close, or keep as-is>
### Rationale
<Why this action is appropriate based on evidence>
### Command to Execute
<acli command - reference jira-cli skill for syntax>
Wait for user approval before executing commands.
Only after user approval, execute the recommended actions.
Add Comment - When you have status updates to share:
Transition Status - When ticket should move to a different state. Reference ticket-workflow for valid transitions.
Close - When work is complete and deployed
Keep As-Is - When status accurately reflects reality
For multiple tickets needing the same action, present as a batch recommendation and execute together after approval.
After review, provide a summary:
## Ticket Review Summary
### Updated
- <TICKET-1>: <action taken>
- <TICKET-2>: <action taken>
### Kept As-Is
- <TICKET-3>: <reason>
### Needs Manual Review
- <TICKET-4>: <why it needs discussion>
### Recommended Actions (Not Executed)
- <TICKET-5>: <suggested action and why>
npx claudepluginhub znorris/claude-marketplace --plugin scorevisionFetches a JIRA issue and distills it into a structured task with acceptance criteria, sprint context, and codebase analysis. Surfaces missing criteria, scope, and risks, and can enrich the JIRA issue with analysis or spawn sub-tickets.
Retrieves, analyzes, and updates Jira tickets via MCP or direct REST API. Useful for fetching requirements, transitioning status, adding comments, and linking work items.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.