From silver-bullet
Captures phase context, decisions, assumptions, constraints, and open questions before planning. Supports interactive, auto, batch, and assumptions-only modes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/silver-bullet:silver-context <phase or change description> [--assumptions] [--auto] [--batch]<phase or change description> [--assumptions] [--auto] [--batch]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
SB-owned context capture records adaptive questioning, locked decisions,
SB-owned context capture records adaptive questioning, locked decisions, assumptions, constraints, and planner handoff.
Do not delegate core context capture to an external lifecycle plugin. Produce enough context for an SB plan to be written without re-asking solved questions.
| Flag | Behaviour |
|---|---|
| (none) | Interactive — ask material unanswered questions one round at a time |
--assumptions | Surface-and-stop — expose the AI's implementation assumptions for the phase without asking any questions. Writes an ASSUMPTIONS.md draft; does NOT write CONTEXT.md. Use to inspect hidden choices before committing to a direction. |
--auto | Non-interactive — select reasonable defaults for all questions; write CONTEXT.md without pausing |
--batch | Group questions into one prompt for bulk intake instead of round-by-round |
Write or update the narrowest applicable context artifact:
.planning/CONTEXT.md for project-level context..planning/phases/<phase>/CONTEXT.md for phase-level context..planning/phases/<phase>/ASSUMPTIONS.md when --assumptions is used..planning/SPEC.md references when context changes acceptance criteria.SILVER BULLET > CONTEXT..planning/PROJECT.md, .planning/REQUIREMENTS.md,
.planning/ROADMAP.md, .planning/STATE.md, .planning/SPEC.md, and any
current phase context or plan files that exist.--assumptions modeUse when you want to see what implementation decisions the agent would make on its own — before committing to an interactive session. This is a diagnostic tool, not a replacement for full context capture.
SILVER BULLET > CONTEXT (assumptions mode)..planning/phases/<phase>/ASSUMPTIONS.md:
# Implementation Assumptions — <phase name>
Generated: YYYY-MM-DD
Status: DRAFT — review before planning
## Architecture
| Assumption | Confidence | Alternative |
|------------|------------|-------------|
## Behavior
| Assumption | Confidence | Alternative |
|------------|------------|-------------|
## Scope
| Assumption | Confidence | Alternative |
|------------|------------|-------------|
## Integration
| Assumption | Confidence | Alternative |
|------------|------------|-------------|
## Risks
| Assumption | Confidence | Alternative |
|------------|------------|-------------|
## Recommended questions
<3–5 questions the user should answer to override the riskiest assumptions>
Standard/--auto/--batch: Context is complete only when:
silver:plan to create tasks and
verification criteria.--assumptions mode: complete when ASSUMPTIONS.md is written and presented.
npx claudepluginhub alo-exp/silver-bullet --plugin silver-bulletGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.