From scorevision
ScoreVision's Jira workflow reference for ticket states, allowed transitions, and when to move tickets through the pipeline. Use when transitioning ScoreVision Jira tickets or checking valid workflow states.
How this skill is triggered — by the user, by Claude, or both
Slash command
/scorevision:ticket-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This document describes ScoreVision's Jira workflow states, transitions, and conventions.
This document describes ScoreVision's Jira workflow states, transitions, and conventions.
| Status | Description |
|---|---|
| To Do | Work not yet started |
| In Progress | Actively being worked on |
| In Development | Code is being written |
| On Hold | Blocked or paused |
| In Review | Code review in progress |
| Ready for QA | Awaiting QA verification |
| Done | Work complete and verified |
For JQL queries, statuses map to these categories:
statusCategory = 'To Do'statusCategory = 'In Progress' (includes In Development, In Review, Ready for QA, On Hold)statusCategory = Done| Current Status | Scenario | Target Status |
|---|---|---|
| To Do | Starting work | In Progress |
| In Progress | Code being written | In Development |
| In Progress | Work complete | In Review |
| In Progress | Work complete, needs QA | Ready for QA |
| In Progress | Blocked | On Hold |
| In Development | Code complete | In Review |
| In Development | Blocked | On Hold |
| On Hold | Unblocked | In Progress |
| In Review | Approved | Done |
| In Review | Approved, needs QA | Ready for QA |
| Ready for QA | QA passed | Done |
-- My open tickets
project = <PROJECT> AND assignee = currentUser() AND resolution = Unresolved
-- Tickets in active development
project = <PROJECT> AND status = 'In Development'
-- All in-progress work
project = <PROJECT> AND statusCategory = 'In Progress'
-- Ready for review
project = <PROJECT> AND status = 'In Review'
-- Current sprint
project = <PROJECT> AND Sprint = '<sprint-name>'
When reviewing tickets against codebase state, categorize by:
| Trigger | Action |
|---|---|
| Work complete | Transition to In Review or Ready for QA |
| Blocked by dependency | Transition to On Hold |
| Blocker resolved | Transition back to In Progress |
| Code merged and deployed | Transition to Done |
npx claudepluginhub znorris/claude-marketplace --plugin scorevisionManages Jira issue lifecycles via CLI: transitions workflows and statuses, assigns/unassigns owners, resolves/reopens issues, handles versions and components.
Views Jira issues, generates branch names from tickets, creates tickets, and transitions status via Atlassian MCP. Activates on ticket key mentions or /jira command.
Transitions a Jira issue through its workflow by state name or transition ID. Requires explicit user invocation and confirmation before posting.