Files
Rohit Ghumare c3f43d8b61 Expand toolkit to 135 agents, 120 plugins, 796 total files
- 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
2026-02-04 21:08:28 +00:00

661 B

Start an interactive debugging session to diagnose and fix a runtime issue.

Steps

  1. Gather the error information:
  2. Reproduce the issue:
  3. Narrow down the failure point:
  4. Examine the root cause:
  5. Implement the fix with minimal changes.
  6. Verify the fix resolves the issue.
  7. Add a test that reproduces the original bug.
  8. 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.