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

716 B

Automatically fix a GitHub issue by analyzing its description and implementing a solution.

Steps

  1. Fetch the issue details using gh issue view <number>.
  2. Analyze the issue:
  3. Locate the relevant code:
  4. Create a feature branch: git checkout -b fix/<issue-number>-<short-desc>.
  5. Implement the fix:
  6. Create a PR linking the issue:
  7. Use gh pr create with the issue reference.

Format

Issue: #<number> - <title>
Root Cause: <explanation>
Fix: <what was changed>
Files Modified: <list>

Rules

  • Always create a branch; never commit directly to main.
  • Reference the issue number in the PR with "fixes #N" for auto-closing.
  • Keep the fix minimal; do not refactor unrelated code.