How this skill is triggered — by the user, by Claude, or both
Slash command
/strike:go [project-slug] [verbose][project-slug] [verbose]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
When speaking to the user or asking questions, use relaxed, friendly language,
When speaking to the user or asking questions, use relaxed, friendly language, like two friends talking through the work over coffee. Explain things in simple terms without assumptions, guide with context, and simplify concepts so the conversation feels easy to follow. Keep the conversation centered on the work in progress; avoid explaining Strike mechanics unless that context helps the user decide what to do next.
Show where a Strike project card is on the board and recommend one next action. This is intentionally read-only.
Use the plugin package's references/invocation.md when showing next actions.
The routing examples below use Strike's canonical handoff form. Render them for
the current host instead of assuming /strike:* is always valid. When the host
is unknown, show the skill name and arguments as a plain next action without raw
field labels.
docs/strike/board/*/*.md.cards/<project-slug>/card.md.Use the board lane as workflow state:
01-brainstorm -> show:
Reset context first: yes
Next Strike skill: brainstorm
Arguments: <project-slug>
02-grill -> show:
Reset context first: yes
Next Strike skill: grill
Arguments: <project-slug>
03-research -> show:
Research is optional before spec, even when recommended. If the card is in
03-research, a prior stage decided focused evidence or guidance would help.
Show both the recommended research action and the optional spec path:
Recommended:
Reset context first: yes
Next Strike skill: research
Arguments: <project-slug>
Or skip research and go straight to creating the spec:
Reset context first: yes
Next Strike skill: research
Arguments: <project-slug> skip
04-spec -> show:
Spec is the recommended next action. Also show research as an optional
pre-spec pass if the user wants more evidence or guidance before writing the
spec:
Reset context first: yes
Next Strike skill: spec
Arguments: <project-slug>
Optional before spec:
Reset context first: yes
Next Strike skill: research
Arguments: <project-slug>
05-slice -> show:
Spec review is optional before slicing. Show both the optional quality pass
and the direct slice path:
Optional spec review before slicing:
Reset context first: yes
Next Strike skill: spec-review
Arguments: <project-slug>
Or skip spec review and create vertical phases:
Reset context first: yes
Next Strike skill: slice
Arguments: <project-slug>
06-implementation -> inspect the card and phase folders:
Reset context first: yes
Next Strike skill: phase-fix
Arguments: <project-slug> phase:<phase-slug>
plan.md, research.md, and no build-brief.md -> say phase
research exists, recommend phase-plan, and show rerun research only as an
optional refresh:
Reset context first: yes
Next Strike skill: phase-plan
Arguments: <project-slug> phase:<phase-slug>
Optional rerun phase research:
Reset context first: yes
Next Strike skill: phase-research
Arguments: <project-slug> phase:<phase-slug>
plan.md and no research.md or build-brief.md -> show
optional phase research and the direct phase-plan path:
Optional phase research:
Reset context first: yes
Next Strike skill: phase-research
Arguments: <project-slug> phase:<phase-slug>
Or create the build brief:
Reset context first: yes
Next Strike skill: phase-plan
Arguments: <project-slug> phase:<phase-slug>
build-brief.md and no build.md -> show:
Reset context first: yes
Next Strike skill: phase-build
Arguments: <project-slug> phase:<phase-slug>
build.md and no review.md -> show:
Reset context first: yes
Next Strike skill: phase-review
Arguments: <project-slug> phase:<phase-slug>
review.md with blocking fix checkboxes and no fix.md -> show
the review's next action in plain language, normally:
Reset context first: yes
Next Strike skill: phase-fix
Arguments: <project-slug> phase:<phase-slug>
review.md with blocking fix checkboxes and fix.md -> show:
Reset context first: yes
Next Strike skill: phase-review
Arguments: <project-slug> phase:<phase-slug>
Reset context first: yes
Next Strike skill: phase-review
Arguments: <project-slug> phase:<last-phase-slug>
07-acceptance -> acceptance validation:
Reset context first: yes
Next Strike skill: accept
Arguments: <project-slug>
08-retro -> retro.
Reset context first: yes
Next Strike skill: retro
Arguments: <project-slug>
09-done -> no next handoff.blocked -> print the unchecked blocker items from card.md.Do not derive state from mtimes, separate indexes, fenced metadata blocks, or a
status field inside card.md.
Keep the response short and user-facing:
references/invocation.md03-research, also show the skip-research handoff that moves to spec04-spec, also show optional research before spec05-slice, also show optional spec review before slice and the direct
slice handoff if the user wants to skip review06-implementation, when a phase has plan.md but no build-brief.md,
show optional phase research plus phase-plan; if research.md already exists,
recommend phase-plan first and make research a rerun optionIf a future or optional Strike skill referenced by a card is missing, say so plainly
and point to the plugin package's bundled references/stage-contracts.md as
the manual contract.
npx claudepluginhub emanualjade/strike --plugin strikeGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.