← ClaudeAtlas

silverbugfixlisted

This skill should be used for SB-orchestrated bug investigation and fix: triage → path A/B/C → TDD regression test → plan → execute → review → verify → ship
alo-exp/silver-bullet · ★ 5 · AI & Automation · score 73
Install: claude install-skill alo-exp/silver-bullet
# /silver:bugfix — Bug, Regression, Test Failure Workflow SB orchestrator for bugs, regressions, crashes, errors, and failing tests. Enforces triage-first discipline: classify the failure type before any investigation begins. Never implements fixes directly — orchestrates only. ## Pre-flight: Load Preferences Read the **User Workflow Preferences** section of `silver-bullet.md` to load user workflow preferences before any other step. ```bash grep -A 50 "^## [0-9]\+\. User Workflow Preferences" silver-bullet.md | head -60 ``` Display banner: ``` SILVER BULLET ► BUGFIX WORKFLOW Symptom: {$ARGUMENTS or "(not specified)"} ``` ## Composition Proposal Before beginning execution, read existing artifacts to determine context and propose which flows to include or skip. ### 1. Context Scan Check the following artifacts and set skip/include flags: | Artifact | Signal | Action | |----------|--------|--------| | `.planning/` directory exists | Project already bootstrapped | Skip FLOW 1 (BOOTSTRAP) | | `.planning/STATE.md` exists | GSD state present | Skip FLOW 1 (BOOTSTRAP) | ```bash # Check for existing planning artifacts [ -d ".planning" ] && echo "SKIP FLOW 1 — .planning/ exists" || echo "Include FLOW 1" ``` ### 2. Build Flow Chain Construct the proposed flow chain for bugfix triage. Bugfix is single-phase by design — no per-phase loop. Default chain: FLOW 2 (ORIENT) → FLOW 15 (DEBUG) [always included — this is a bugfix] → FLOW 6 (PLAN) → FLOW 8 (EXECUTE) → FLOW 10 (REV