mirror of
https://github.com/duthaho/claudekit.git
synced 2026-06-14 14:14:53 +03:00
655 B
655 B
/debug - Debug Command
Purpose
Analyze and debug an error, exception, or unexpected behavior.
Usage
/debug [error message or description]
Debug issue: $ARGUMENTS
Workflow
Step 1: Analyze Error
- Parse error message and stack trace
- Identify error location
- Understand error type
Step 2: Investigate
- Trace execution path
- Check related code
- Form hypotheses
Step 3: Fix
- Implement minimal fix
- Verify fix works
- Add regression test
Output
## Debug Report
### Error
[Error message]
### Root Cause
[Explanation]
### Fix
[Code changes]
### Prevention
[Test added]