.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/taoidle/plan-cascade
home/mcp-servers/taoidle/plan-cascade
taoidle avatar

plan-cascade

bytaoidle· 1 MCP server

Installs

42

Stars

122

Forks

9

Category

Product & Project Management

View on GitHub

TL;DR

Plan Cascade - Three-layer parallel development framework for AI coding tools

How to install plan-cascade?

taoidle/plan-cascade
$git clone https://github.com/taoidle/plan-cascade

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install plan-cascade by running `git clone https://github.com/taoidle/plan-cascade`, then use it for the current task and follow its documentation at https://github.com/taoidle/plan-cascade.

Files · 1

View on GitHub
README.md
1<div align="center">
2 
3# Plan Cascade
4 
5**AI-Powered Cascading Development Framework**
6 
7*Transform complex projects into parallel executable tasks with intelligent decomposition and multi-provider execution*
8 
9[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
10 
11| Component | Version | Status | Description |
12|-----------|---------|--------|-------------|
13| **Plugin** | [![4.4.0](https://img.shields.io/badge/version-4.4.0-brightgreen)](https://github.com/Taoidle/plan-cascade) | ![Stable](https://img.shields.io/badge/status-stable-brightgreen) | Claude Code integration |
14| **Desktop** | [![0.1.0](https://img.shields.io/badge/version-0.1.0-blue)](./desktop) | ![Alpha](https://img.shields.io/badge/status-alpha-orange) | Local-first AI workstation |
15| **CLI** | ![Dev](https://img.shields.io/badge/status-dev-yellow) | ![Dev](https://img.shields.io/badge/status-dev-yellow) | Command-line interface |
16| **MCP Server** | ![Stable](https://img.shields.io/badge/status-stable-brightgreen) | ![Stable](https://img.shields.io/badge/status-stable-brightgreen) | Model Context Protocol |
17 
18[Why Plan Cascade?](#why-plan-cascade) • [Product Editions](#product-editions) • [Quick Start](#quick-start) • [Architecture](#architecture)
19 
20</div>
21 
22---
23 
24## Why Plan Cascade?
25 
26Traditional AI coding assistants hit a wall with large, complex projects:
27 
28| Challenge | Conventional AI | Plan Cascade |
29|-----------|-----------------|--------------|
30| **Complexity** | Gets lost in large codebases | Decomposes into manageable units |
31| **Parallelism** | Sequential, one-at-a-time | Independent tasks run in parallel |
32| **Context** | Lost during long sessions | Design docs + durable context survive compaction |
33| **Quality** | Manual verification needed | Automated testing & linting at each step |
34| **Control** | Black box execution | Transparent, inspectable workflow |
35 
36### The Solution: Cascading Decomposition
37 
38```
39┌─────────────────────────────────────────────────────────────────────┐
40│ Your Project Goal │
41│ "Build a REST API with authentication" │
42└─────────────────────────────────────────────────────────────────────┘
43 │
44 ▼
45┌─────────────────────────────────────────────────────────────────────┐
46│ Level 1: Mega Plan │
47│ ───────────────────── │
48│ Project-level orchestration → Manages multiple features in batches │
49│ Output: mega-plan.json + design_doc.json │
50└─────────────────────────────────────────────────────────────────────┘
51 │
52 ┌───────────────────┼───────────────────┐
53 ▼ ▼ ▼
54┌─────────────────────┐ ┌─────────────────────┐ ┌─────────────────────┐
55│ Feature: Auth │ │ Feature: API │ │ Feature: Database │
56│ ─────────────── │ │ ─────────────── │ │ ─────────────── │
57│ PRD + Design Doc │ │ PRD + Design Doc │ │ PRD + Design Doc │
58└─────────────────────┘ └─────────────────────┘ └─────────────────────┘
59 │ │ │
60 ▼ ▼ ▼
61┌─────────────────────┐ ┌─────────────────────┐ ┌─────────────────────┐
62│ Stories (Parallel) │ │ Stories (Parallel) │ │ Stories (Parallel) │
63│ ───────────────── │ │ ───────────────── │ │ ───────────────── │
64│ □ JWT Implementation│ │ □ CRUD Endpoints │ │ □ Schema Design │
65│ □ Password Hashing │ │ □ Rate Limiting │ │ □ Migrations │
66│ □ Session Management│ │ □ Input Validation │ │ □ Connection Pool │
67└─────────────────────┘ └─────────────────────┘ └─────────────────────┘
68 │
69 ▼
70 ┌─────────────────┐
71 │ Quality Gates │
72 │ ───────────── │
73 │ ✓ DoR / DoD │
74 │ ✓ Test Coverage │
75 │ ✓ Lint / Format │
76 └─────────────────┘
77```
78 
79---
80 
81## Product Editions
82 
83Plan Cascade is available in three editions to suit different workflows:
84 
85| Feature | Plugin | Desktop | CLI |
86|---------|--------|---------|-----|
87| **Target User** | Claude Code users | Multi-model teams | Automation/CI |
88| **LLM Backend** | Claude Code only | 7+ providers (Claude, OpenAI, DeepSeek, Ollama...) | 7+ providers |
89| **Offline Use** | ❌ | ✅ (Ollama) | ✅ (Ollama) |
90| **Installation** | `claude plugins install` | Desktop app / `pip install` | `pip install` |
91| **UI** | Slash commands | Full GUI with 4 workflow modes | Command-line |
92| **Quality Gates** | ✅ Standard | ✅ Enterprise-grade with auto-retry | ✅ |
93| **Security Model** | Basic | 5-layer (Guardrail → Gate → Policy → Sandbox → Audit) |

Preview

taoidle/plan-cascadetaoidle/plan-cascade
Repotaoidle/plan-cascade
TypeMCP Servers
CategoryProduct & Project Management
UpdatedMar 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPclaude-codeclaude-code-plugin

Related

6 picks
Type
  1. pagerduty avatarpagerduty-mcp-serverPagerDuty's official MCP server which provides tools to interact with your PagerDuty account.MCP ServersJul 2026118k74
  2. taazkareem avatarclickup-mcp-serverClickUp MCP Server - Powering AI Agents with full ClickUp task, document, and chat management capabilities.MCP ServersJul 202694k49
  3. growthbook avatargrowthbook-mcpMCP Server for interacting with GrowthBookMCP ServersJul 202632k24
  4. delorenj avatarmcp-server-trelloMCP server for Trello boards with rate limiting, type safety, and comprehensive API integration.MCP ServersJul 202631k428
  5. mohitagw15856 avatarpm-claude-skills822 professional Agent Skills for Claude, ChatGPT, Gemini, Cursor & Codex — decode a lease, write a PRD, run the AGM, prep the D&D session, practice the salary negotiation. Plain-markdown, MIT, in Anthropic's official plugin directory.MCP ServersJul 202613k1.2k
  6. iceener avatarlinear-streamable-mcp-serverLinear MCP Server with Streamable HTTP and OAuth2.1 supportMCP ServersJul 20264.4k70