ken-cc-plugins
Claude Code plugin marketplace for development workflows.
Installation
# Add the marketplace
claude plugin marketplace add kenkenmain/ken-cc-plugins
# Install plugins
claude plugin install superpowers-iterate@ken-cc-plugins
Choosing a Plugin
| Plugin | Phases | Parallelism Style | Model Requirements | Best For | Example Tasks |
|---|
| kenken | 4 (Plan, Implement, Test, Final) | Sequential stages, no parallel agents | Claude only | Quick tasks, simple iteration | "Add OAuth2 login", "Set up GitFlow repo" |
| superpowers-iterate | 9 (loop phases 1-8 until clean) | Sequential with iterative refinement | Codex MCP (full) or Claude-only (lite) | Quality-obsessed iteration, convergence to zero issues | "Refactor auth module with TDD", "Add comprehensive error handling" |
| minions | 5 (launch) / 15 (superlaunch) / 5 (cursor) / 2 (review) | Parallel explorers + parallel reviewers (6 specialists) | Claude only (no Codex MCP) | Thorough coverage, personality-driven review teams | "Build payment pipeline (superlaunch)", "Review-fix existing code (review)" |
| subagents | 5-15 (profile-based) | Wave-based parallel agents, complexity-routed tasks | Codex MCP (default) or Claude-only | Complex multi-file features, configurable pipelines | "Add full API with tests (standard)", "Quick config fix (minimal)" |
| ants | 6 (A0-A5), persistent loop variant | Self-organizing task pool + adversarial review team (5 sentinels) | Claude only, Agent Teams | Adversarial quality, fast iteration, concurrent builds | "Add caching layer (swarm)", "Fix all lint warnings (pswarm)" |
Quick decision guide:
- Need a simple 4-stage loop? Start with kenken.
- Want iterative refinement until zero issues? Use superpowers-iterate.
- Need thorough 15-phase coverage with parallel reviewers? Use minions:superlaunch.
- Need complexity-routed agents with Codex MCP? Use subagents.
- Want adversarial multi-angle review with self-organizing tasks? Use ants.
Available Plugins
subagents
Hook-driven subagent architecture for complex task execution with parallel agents and file-based state.
claude plugin install subagents@ken-cc-plugins
# Standard workflow (13 phases)
/subagents:dispatch <task> # Codex MCP defaults
/subagents:dispatch-claude <task> # Claude-only mode
/subagents:init <task> # With git worktree isolation
# Fast workflow (4 phases)
/subagents:fdispatch <task> # Fast dispatch (Codex MCP)
/subagents:fdispatch-claude <task> # Fast dispatch (Claude-only)
# Debug workflow (6 phases)
/subagents:debug <task> # Multi-phase debugging
# Management
/subagents:status # Check progress
/subagents:stop # Stop workflow gracefully
/subagents:resume # Resume from checkpoint
/subagents:teardown # Commit, push, create PR
/subagents:configure # Configure settings
Pipelines: Standard (Explore -> Plan -> Implement -> Test -> Final) | Fast (Plan -> Implement -> Review -> Complete) | Debug (Explore -> Propose -> Aggregate -> Implement -> Review -> Document)
Features: Complexity-routed task agents, hybrid test-alongside-code, Codex/Claude dispatch modes, pipeline profiles (minimal/standard/thorough), fast dispatch (4-phase variant), multi-phase debug workflow
See plugins/subagents/README.md for full documentation.
superpowers-iterate
9-phase iterative development workflow. Phases 1-8 loop until Phase 8 finds zero issues.
claude plugin install superpowers-iterate@ken-cc-plugins
/superpowers-iterate:iterate <task> # Full mode (requires Codex MCP)
/superpowers-iterate:iterate --lite <task> # Lite mode (no Codex required)
/superpowers-iterate:iterate-status # Check progress
Phases: Brainstorm -> Plan -> Plan Review -> Implement -> Review -> Test -> Simplify -> Final Review -> Codex Final
Prerequisites: superpowers plugin, code-simplifier plugin, Codex MCP (full mode only)
See AGENTS.md for workflow architecture, modes, and state management details.
minions
Personality-driven multi-pipeline development workflow with loop-back issue resolution. Claude-only (no Codex MCP required).
claude plugin install minions@ken-cc-plugins
/minions:launch <task> # Standard 5-phase workflow
/minions:superlaunch <task> # Claude-only 15-phase thorough pipeline
/minions:cursor <task> # Cursor-inspired per-task commit workflow
/minions:review <task> # Review-fix iteration pipeline
Launch Pipeline: Explore (4x parallel haiku) -> F1 Scout -> F2 Build -> F3 Review (6 parallel reviewers) -> F4 Ship