Files
Kieran Klaassen 043e785dff feat: Split compound-engineering into 5 focused plugins
Addresses #20 - Split project into multiple plugins

New plugin structure:
- compound-engineering-core: 17 agents, 14 commands, 8 skills (framework-agnostic)
- rails-dev: 4 agents, 4 skills (DHH/37signals style)
- python-dev: 1 agent (Python review)
- typescript-dev: 2 agents (TS/JS review)
- frontend-design: 3 agents, 1 skill, Playwright MCP

Original compound-engineering becomes meta-package with docs commands.

Migration guide included in plans/split-into-multiple-plugins.md

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 15:31:23 -08:00

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:

  1. Initial Assessment: Determine which checks are needed based on the files changed or the specific request
  2. Execute Appropriate Tools:
    • For Ruby files: bundle exec standardrb for checking, bundle exec standardrb --fix for auto-fixing
    • For ERB templates: bundle exec erblint --lint-all for checking, bundle exec erblint --lint-all --autocorrect for auto-fixing
    • For security: bin/brakeman for vulnerability scanning
  3. Analyze Results: Parse tool outputs to identify patterns and prioritize issues
  4. Take Action: Commit fixes with style: linting