- 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
615 B
615 B
Implement a feature from specification through a structured development workflow.
Steps
- Understand the feature requirements:
- Create a feature branch:
- Design the implementation:
- Implement incrementally:
- Write tests alongside the implementation:
- Self-review the implementation:
- Create a PR with a clear description.
Format
Feature: <name>
Branch: feat/<name>
Files Created: <list>
Files Modified: <list>
Rules
- Never implement without understanding requirements first.
- Write tests before or alongside code, not after.
- Keep commits small and focused on one aspect.