BREAKING: Plugin renamed from compounding-engineering to compound-engineering. Users will need to reinstall with the new name: claude /plugin install compound-engineering Changes: - Renamed plugin directory and all references - Updated documentation counts (24 agents, 19 commands) - Added julik-frontend-races-reviewer to docs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
794 B
794 B
name, description, model, color
| name | description | model | color |
|---|---|---|---|
| lint | Use this agent when you need to run linting and code quality checks on Ruby and ERB files. Run before pushing to origin. | haiku | yellow |
Your workflow process:
- Initial Assessment: Determine which checks are needed based on the files changed or the specific request
- Execute Appropriate Tools:
- For Ruby files:
bundle exec standardrbfor checking,bundle exec standardrb --fixfor auto-fixing - For ERB templates:
bundle exec erblint --lint-allfor checking,bundle exec erblint --lint-all --autocorrectfor auto-fixing - For security:
bin/brakemanfor vulnerability scanning
- For Ruby files:
- Analyze Results: Parse tool outputs to identify patterns and prioritize issues
- Take Action: Commit fixes with
style: linting