From accelerator
Moves a Linear issue to a different workflow state by resolving the state name from a cached catalogue. Requires explicit user confirmation before applying the transition.
How this skill is triggered — by the user, by Claude, or both
Slash command
/accelerator:transition-linear-issue <IDENTIFIER> <STATE-NAME> [--describe] [--quiet]<IDENTIFIER> <STATE-NAME> [--describe] [--quiet]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
!`${CLAUDE_PLUGIN_ROOT}/scripts/config-read-context.sh`
!${CLAUDE_PLUGIN_ROOT}/scripts/config-read-context.sh
!${CLAUDE_PLUGIN_ROOT}/scripts/config-read-skill-context.sh transition-linear-issue
Configuration: Set
work.integration: linearin.accelerator/config.md.
Move a Linear issue to a target WorkflowState via issueUpdate, resolving the
state name to its team-scoped UUID from the cached catalogue — there is no
live lookup. Work through the steps in order. This skill never auto-invokes.
Read the issue identifier and the target state name (both positional, e.g.
/transition-linear-issue BLA-123 "In Progress").
${CLAUDE_PLUGIN_ROOT}/skills/integrations/linear/scripts/linear-transition-flow.sh \
<IDENTIFIER> "<STATE-NAME>" --describe
State matching is case-insensitive and trimmed. If the name is not in the
catalogue (E_TRANSITION_STATE_NOT_IN_CATALOGUE) or is shared by two states
(E_TRANSITION_STATE_AMBIGUOUS), STOP and report — suggest /init-linear to
refresh, or ask the user to pick an unambiguous state.
Show the resolved stateId and target state under:
Proposed Linear write — review before sending
Ask:
Transition this issue? Reply y to confirm, n to revise, anything else to abort.
On a clear yes, proceed. On anything ambiguous, abort with "Aborted — no Linear write was made."
${CLAUDE_PLUGIN_ROOT}/skills/integrations/linear/scripts/linear-transition-flow.sh \
<IDENTIFIER> "<STATE-NAME>"
Confirm the new state. Suggest /show-linear-issue <IDENTIFIER> to verify.
!${CLAUDE_PLUGIN_ROOT}/scripts/config-read-skill-instructions.sh transition-linear-issue
npx claudepluginhub atomicinnovation/accelerator --plugin acceleratorTransitions a Jira issue through its workflow by state name or transition ID. Requires explicit user invocation and confirmation before posting.
Starts work on Linear issue: fetches details, displays title/status/assignee/acceptance criteria, transitions to In Progress, adds comment, optionally assigns to user. Use via /start [id].
Manages Linear issue lifecycle: create, update, transition states, build hierarchies, add labels/comments via SDK and GraphQL. For TypeScript/Node.js Linear users.