- 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
716 B
716 B
Automatically fix a GitHub issue by analyzing its description and implementing a solution.
Steps
- Fetch the issue details using
gh issue view <number>. - Analyze the issue:
- Locate the relevant code:
- Create a feature branch:
git checkout -b fix/<issue-number>-<short-desc>. - Implement the fix:
- Create a PR linking the issue:
- Use
gh pr createwith 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.