- Add 60 new agents across all 10 categories (75 -> 135) - Add 95 new plugins with command files (25 -> 120) - Update all agents to use model: opus - Update README with complete plugin/agent tables - Update marketplace.json with all 120 plugins
661 B
661 B
Start an interactive debugging session to diagnose and fix a runtime issue.
Steps
- Gather the error information:
- Reproduce the issue:
- Narrow down the failure point:
- Examine the root cause:
- Implement the fix with minimal changes.
- Verify the fix resolves the issue.
- Add a test that reproduces the original bug.
- Remove any temporary logging added during debugging.
Format
Issue: <description>
Reproduction: <steps>
Root Cause: <what went wrong>
Fix Applied: <changes made>
Rules
- Always reproduce before attempting to fix.
- Remove all debug logging before committing.
- Fix the root cause, not just the symptom.