UNPKG

@pimzino/claude-code-spec-workflow

Version:

Automated workflows for Claude Code. Includes spec-driven development (Requirements → Design → Tasks → Implementation) with intelligent orchestration, optional steering documents and streamlined bug fix workflow (Report → Analyze → Fix → Verify). We have

44 lines (36 loc) 1.28 kB
# Bug Status Command Show current status of all bug fixes or a specific bug fix. ## Usage ``` /bug-status [bug-name] ``` ## Instructions Display the current status of bug fix workflows. 1. **If no bug-name provided:** - List all bugs in `.claude/bugs/` directory - Show current phase for each bug - Display completion status 2. **If bug-name provided:** - Show detailed status for that bug - Display current workflow phase - Show completed vs pending phases - List next recommended actions 3. **Status Information:** - Report: [Complete/In Progress/Pending] - Analysis: [Complete/In Progress/Pending] - Fix: [Complete/In Progress/Pending] - Verification: [Complete/In Progress/Pending] 4. **Output Format:** ``` Bug: login-timeout Phase: Fix Implementation Progress: Report ✅ | Analysis ✅ | Fix 🔄 | Verification ⏳ Status: Implementing fix for session timeout issue Next: Complete implementation and verify fix works ``` ## Bug Fix Phases - **Report**: Bug description and impact assessment - **Analysis**: Root cause investigation and solution planning - **Fix**: Implementation of the planned solution - **Verification**: Testing and confirmation of resolution - **Complete**: Bug fully resolved and verified