approve
Approve the current PRD and begin parallel story execution. Analyzes dependencies, creates execution batches, launches background Task agents for each story,…
Load an existing PRD file and enter review mode. Supports JSON format with stories, priorities, dependencies, and acceptance criteria.
> /plugin marketplace add Taoidle/plan-cascade > /plugin install plan-cascade@plan-cascade
How it fires
How this command gets triggered: by you, by Claude, or both.
/hybrid-manualContext preview
What this command does when you run it.
Load an existing PRD file and enter review mode. Supports JSON format with stories, priorities, dependencies, and acceptance criteria.
description: "Load an existing PRD file and enter review mode. Supports JSON format with stories, priorities, dependencies, and acceptance criteria."
You are loading an existing Product Requirements Document (PRD) from a file.
Get the PRD path from arguments:
PRD_PATH="{{args|first arg or 'prd.json'}}"if [ ! -f "$PRD_PATH" ]; then
echo "ERROR: PRD file not found: $PRD_PATH"
echo "Please provide a valid path to a prd.json file"
exit 1
fiRead the PRD file and validate structure:
Required fields:
Each story must have:
If validation fails, show specific errors and suggest fixes.
If the PRD is not already `prd.json` in the current directory:
if [ "$PRD_PATH" != "prd.json" ]; then
cp "$PRD_PATH" prd.json
echo "Copied PRD to prd.json"
fiCreate `findings.md` if it doesn't exist:
if [ ! -f "findings.md" ]; then
cat > findings.md << 'EOF'
# Findings
Research and discovery notes will be accumulated here.
Use <!-- @tags: story-id --> to tag sections for specific stories.
EOF
fiCreate `progress.txt` if it doesn't exist:
if [ ! -f "progress.txt" ]; then
cat > progress.txt << 'EOF'
# Progress Log
Story execution progress will be tracked here.
EOF
fiShow a comprehensive PRD review:
============================================================
PRD REVIEW
============================================================
## Goal
{goal from PRD}
## Objectives
- {objective 1}
- {objective 2}
...
## Stories Summary
Total Stories: {count}
By Priority:
High: {count}
Medium: {count}
Low: {count}
## All Stories
### story-001: {title} [High]
Description: {description}
Dependencies: {none or list}
Acceptance Criteria:
- {criterion 1}
- {criterion 2}
...
### story-002: {title} [Medium]
...
## Execution Batches
Batch 1 (parallel):
- story-001
- story-002
Batch 2:
- story-003 (depends on: story-001)
...
============================================================PRD loaded successfully! Next steps: - /plan-cascade:approve - Approve PRD and start execution - /plan-cascade:edit - Edit PRD manually - /plan-cascade:show-dependencies - View dependency graph
AI-Powered Cascading Development Framework Transform complex projects into parallel executable tasks with intelligent decomposition and multi-provider execution Why Plan Cascade? • Product Editions • Quick Start • Architecture
Repo: Taoidle/plan-cascade
Approve the current PRD and begin parallel story execution. Analyzes dependencies, creates execution batches, launches background Task agents for each story,…
AI auto strategy executor. Analyzes task and automatically selects and executes the best strategy: direct execution, hybrid-auto PRD generation,…
Check and update .gitignore to exclude Plan Cascade temporary files. Ensures planning files won't be accidentally committed to version control.
Complete a worktree task. Verifies all phases are complete, commits code changes (excluding planning files), merges to target branch, and removes worktree. Can…
Show execution status dashboard. Usage: /plan-cascade:dashboard [--verbose|-v] [--json]
Generate a technical design document. Auto-detects level: project-level from mega-plan.json, or feature-level from prd.json. Provides architectural context for…