The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Cascading planning framework for Claude Code and MCP
Plan Cascade helps you decompose a project into planning steps, feature docs, and executable tasks, then run them through a controlled workflow. The repo provides plugin commands, skills, MCP integration, and supporting scripts so agents can move from plan to implementation with shared context.
Builders who want their agent to plan, split, and execute larger projects with shared docs and checkpoints.
You can turn one large request into smaller tracked tasks with design docs and validation gates instead of re-explaining the project at every step.
What it does
Project and feature planning
Creates mega plans, PRDs, and design docs for a goal before execution starts.
Parallel task execution
Splits work into stories that can run in parallel instead of one long agent loop.
Quality gates
Checks readiness, tests, linting, and completion before moving forward.
Claude Code plugin commands
Provides slash commands such as `auto`, `mega-plan`, `spec-plan`, `resume`, and `worktree`.
MCP server and configs
Includes an MCP server plus ready-made configs for editors and clients like Cursor and Windsurf.
Skills and built-in workflows
Ships skills such as `hybrid-ralph`, `mega-plan`, and `planning-with-files` for reusable planning patterns.
How to get it
- 1Run
# Install in Claude Code claude plugins install plan-cascade # Use slash commands /plan-cascade:auto "Implement user authentication"
- 2Run
# Requires Python 3.10+ and uv git clone https://github.com/Taoidle/plan-cascade.git cd plan-cascade uv run pytest tests/ # Run tests # CLI entry point uv run plan-cascade --help
README
Plan Cascade
AI-Powered Cascading Development Framework
Transform complex projects into parallel executable tasks with intelligent decomposition and multi-provider execution
| Component | Version | Status | Description |
|---|---|---|---|
| Plugin | Claude Code integration | ||
| Desktop | Local-first AI workstation | ||
| CLI | Command-line interface | ||
| MCP Server | Model Context Protocol |
Why Plan Cascade? • Product Editions • Quick Start • Architecture
Why Plan Cascade?
Traditional AI coding assistants hit a wall with large, complex projects:
| Challenge | Conventional AI | Plan Cascade |
|---|---|---|
| Complexity | Gets lost in large codebases | Decomposes into manageable units |
| Parallelism | Sequential, one-at-a-time | Independent tasks run in parallel |
| Context | Lost during long sessions | Design docs + durable context survive compaction |
| Quality | Manual verification needed | Automated testing & linting at each step |
| Control | Black box execution | Transparent, inspectable workflow |
The Solution: Cascading Decomposition
┌─────────────────────────────────────────────────────────────────────┐
│ Your Project Goal │
│ "Build a REST API with authentication" │
└─────────────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────────────┐
│ Level 1: Mega Plan │
│ ───────────────────── │
│ Project-level orchestration → Manages multiple features in batches │
│ Output: mega-plan.json + design_doc.json │
└─────────────────────────────────────────────────────────────────────┘
│
┌───────────────────┼───────────────────┐
▼ ▼ ▼
┌─────────────────────┐ ┌─────────────────────┐ ┌─────────────────────┐
│ Feature: Auth │ │ Feature: API │ │ Feature: Database │
│ ─────────────── │ │ ─────────────── │ │ ─────────────── │
│ PRD + Design Doc │ │ PRD + Design Doc │ │ PRD + Design Doc │
└─────────────────────┘ └─────────────────────┘ └─────────────────────┘
│ │ │
▼ ▼ ▼
┌─────────────────────┐ ┌─────────────────────┐ ┌─────────────────────┐
│ Stories (Parallel) │ │ Stories (Parallel) │ │ Stories (Parallel) │
│ ───────────────── │ │ ───────────────── │ │ ───────────────── │
│ □ JWT Implementation│ │ □ CRUD Endpoints │ │ □ Schema Design │
│ □ Password Hashing │ │ □ Rate Limiting │ │ □ Migrations │
│ □ Session Management│ │ □ Input Validation │ │ □ Connection Pool │
└─────────────────────┘ └─────────────────────┘ └─────────────────────┘
│
▼
┌─────────────────┐
│ Quality Gates │
│ ───────────── │
│ ✓ DoR / DoD │
│ ✓ Test Coverage │
│ ✓ Lint / Format │
└─────────────────┘
Product Editions
Plan Cascade is available in three editions to suit different workflows:
| Feature | Plugin | Desktop | CLI |
|---|---|---|---|
| Target User | Claude Code users | Multi-model teams | Automation/CI |
| LLM Backend | Claude Code only | 7+ providers (Claude, OpenAI, DeepSeek, Ollama...) | 7+ providers |
| Offline Use | ❌ | ✅ (Ollama) | ✅ (Ollama) |
| Installation | claude plugins install | Desktop app / pip install | pip install |
| UI | Slash commands | Full GUI with 4 workflow modes | Command-line |
| Quality Gates | ✅ Standard | ✅ Enterprise-grade with auto-retry | ✅ |
| Security Model | Basic | 5-layer (Guardrail → Gate → Policy → Sandbox → Audit) | Basic |
| Worktree Integration | ✅ | ✅ Visual diff viewer | ✅ |
| Visual Workflow | ❌ | ✅ Real-time timeline + checkpoints | ❌ |
| MCP Stack | Client only | Full stack (Manager + Client + Server) | Client only |
| Knowledge System | ❌ | ✅ Skills + Memory + RAG | ❌ |
| Remote Control | ❌ | ✅ A2A protocol + Telegram bot | ❌ |
| Maturity | Stable | Alpha | Development |
Which Edition Should I Choose?
- Choose Plugin if you're a Claude Code power user who wants seamless integration
- Choose Desktop if you need multi-model support, visual workflows, or offline capability
- Choose CLI if you're building automation pipelines or CI/CD integration
Core Capabilities
Unified Workflow Kernel
All modes share a common foundation:
- Unified lifecycle — Consistent state management across modes
- Event streaming — Real-time progress updates via typed events
- Mode handoff — Seamless switching between Chat → Plan → Task
- Checkpointing — Recovery from interruptions
Quality Gates Pipeline
Every Story passes through validation:
┌─────────┐ ┌─────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────┐
│ DoR │ → │ Code │ → │ DoD │ → │ AI Verify │ → │ Review │
│ (Ready) │ │ (Write) │ │ (Done) │ │ (No Stubs) │ │ (Score) │
└─────────┘ └─────────┘ └─────────────┘ └─────────────┘ └─────────┘
│ │ │ │ │
▼ ▼ ▼ ▼ ▼
Validate Implement Verify all Detect stub Code quality
requirements solution criteria code & TODOs scoring
Design Document Hierarchy
Two-level architecture ensures consistency:
- Project-level — Global patterns, shared decisions (ADR-001, ADR-002...)
- Feature-level — Component-specific decisions (ADR-F001, ADR-F002...)
External Framework Skills
Auto-injected best practices from Git submodules:
- React/Next.js — detected via
package.json - Vue/Nuxt — detected via
package.json - Rust — detected via
Cargo.toml
Architecture
┌────────────────────────────────────────────────────────────────────────────┐
│ Plan Cascade Core │
├────────────────────────────────────────────────────────────────────────────┤
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ Strategy │ │ PRD │ │ Parallel │ │ Quality │ │
│ │ Selector │ │ Generator │ │ Executor │ │ Gates │ │
│ └─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘ │
├────────────────────────────────────────────────────────────────────────────┤
│ Agent Backend Layer │
│ ┌────────────────────────────┐ ┌────────────────────────────┐ │
│ │ ClaudeCodeBackend │ │ BuiltinBackend │ │
│ │ (subprocess, no API) │ │ (direct API, ReAct loop) │ │
│ └────────────────────────────┘ └────────────────────────────┘ │
├────────────────────────────────────────────────────────────────────────────┤
│ LLM Provider Layer │
│ Anthropic │ OpenAI │ DeepSeek │ Ollama │ GLM │ Qwen │ MiniMax │
└────────────────────────────────────────────────────────────────────────────┘
Quick Start
Plugin (Stable)
# Install in Claude Code
claude plugins install plan-cascade
# Use slash commands
/plan-cascade:auto "Implement user authentication"
CLI (Development)
# Requires Python 3.10+ and uv
git clone https://github.com/Taoidle/plan-cascade.git
cd plan-cascade
uv run pytest tests/ # Run tests
# CLI entry point
uv run plan-cascade --help
Desktop (Alpha)
See desktop/README.md for the full-featured desktop application.
Documentation
| Document | Description |
|---|---|
| Plugin Guide | Claude Code plugin usage |
| CLI Guide | Command-line interface |
| Mega Plan Guide | Multi-feature orchestration |
| Desktop README | Desktop application |
| PRD Template | PRD file format |
Project Structure
plan-cascade/
├── src/plan_cascade/ # Core Python library
│ ├── core/ # Orchestration engines
│ ├── backends/ # Agent abstraction layer
│ ├── state/ # Thread-safe state management
│ ├── llm/ # LLM provider abstraction
│ └── tools/ # ReAct tool implementations
├── desktop/ # Tauri desktop application
│ ├── src/ # React frontend
│ └── src-tauri/ # Rust backend
├── skills/ # Plugin skills
│ ├── hybrid-ralph/ # PRD-driven execution
│ ├── mega-plan/ # Multi-feature orchestration
│ └── planning-with-files/ # File-based planning
├── commands/ # Slash command definitions
└── mcp_server/ # FastMCP server
Roadmap
| Component | Current | Next Milestone |
|---|---|---|
| Plugin | 4.4.0 Stable | 5.0.0 - Enhanced CLI integration |
| Desktop | 0.1.0 Alpha | 0.2.0 - Beta with full workflow |
| CLI | Development | 1.0.0 - Stable release |
| MCP Server | Stable | Enhanced tool support |
Contributing
We welcome contributions! Please see our contributing guidelines for details.
License
MIT License - see LICENSE for details.
Files in the repo
- .claude
- .claude-plugin
- .github
- .plan-cascade
- builtin-skills
- commands
- desktop
- docs
- external-skills
- mcp_server
- mcp-configs
- scripts
- server
- skills
- src
- tests
- .gitignore
- .gitmodules
- agents.json
- CHANGELOG.md
- CLAUDE.md
- external-skills.json
- LICENSE
- pyproject.toml
- README_zh.md
- README.md
- uv.lock
Discussion (0)
Ask about usage, or say what you built with itSign in to join the discussion.
No comments yet. Be the first to say what this is good for.
More harnesses
from vibe coding to agentic engineering - practice makes claude perfect
🌊 The original agent meta-harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
Practical patterns, starters & CLI tools for loop engineering with AI coding agents. Design systems that prompt and orchestrate agents (inspired by Addy Osmani and Boris Cherny). Includes loop-audit, loop-init, loop-cost.
Git. Ship. Done - Core

The most RAM efficient harness