refactor: Reduce core to 4 commands, extract workflow-automation and plugin-dev plugins

Based on PR feedback that 14 commands in core was too many:

- **compound-engineering-core** (14 agents, 4 commands, 5 skills)
  - Only 4 workflow commands: /workflows:plan, /workflows:review, /workflows:work, /workflows:compound
  - All code review agents stay in core (referenced by /workflows:review)

- **workflow-automation** (3 agents, 7 commands, 1 skill) - NEW
  - /resolve_pr_parallel, /plan_review, /resolve_parallel, /resolve_todo_parallel
  - /reproduce-bug, /triage, /changelog
  - bug-reproduction-validator, pr-comment-resolver, every-style-editor agents

- **plugin-dev** (3 commands, 2 skills) - NEW
  - /generate_command, /heal-skill, /create-agent-skill
  - skill-creator, create-agent-skills skills

All READMEs updated with "Works Best With" philosophy emphasizing that
core provides the foundation but real power comes from combining plugins.

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Kieran Klaassen
2025-12-15 17:15:12 -08:00
parent 043e785dff
commit 4b0f058f2c
55 changed files with 278 additions and 86 deletions
+12 -5
View File
@@ -5,11 +5,11 @@ Python development and code review.
## Installation
```bash
# Requires core plugin
claude /plugin install compound-engineering-core
# Install with core (recommended)
claude /plugin install compound-engineering-core python-dev
# Install Python tools
claude /plugin install python-dev
# Add automation for the full experience
claude /plugin install compound-engineering-core python-dev workflow-automation
```
## What's Included
@@ -20,7 +20,7 @@ claude /plugin install python-dev
## Usage
The Python reviewer is automatically used by `/workflows:review` when reviewing Python code:
The Python reviewer integrates with `/workflows:review` from core:
```bash
claude /workflows:review 123
@@ -34,3 +34,10 @@ This plugin is small but growing. Planned additions:
- FastAPI/Django patterns
- Type hint reviewer
- Testing patterns
## Works Best With
| Plugin | Why |
|--------|-----|
| `compound-engineering-core` | Required for `/workflows:review` |
| `workflow-automation` | Batch PR resolution |