approve
Approve the current PRD and begin parallel story execution. Analyzes dependencies, creates execution batches, launches background Task agents for each story,…
Show execution status of all stories in the PRD. Displays batch progress, individual story states, completion percentage, and recent activity logs.
> /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-statusContext preview
What this command does when you run it.
Show execution status of all stories in the PRD. Displays batch progress, individual story states, completion percentage, and recent activity logs.
description: "Show execution status of all stories in the PRD. Displays batch progress, individual story states, completion percentage, and recent activity logs."
You are displaying the current execution status of all stories in the PRD.
This command works with both new and legacy path storage modes:
User-visible files always remain in the working directory for easy access.
**To avoid command confirmation prompts:**
1. **Use Read tool for file reading** - NEVER use `cat` via Bash
2. **Use Grep tool for content search** - NEVER use `grep` via Bash
3. **Parse file contents in your response** - After reading with Read tool, count markers yourself
if [ ! -f "prd.json" ]; then
echo "ERROR: No PRD found."
exit 1
fiRead `prd.json` to get all stories. Read `progress.txt` to get completion status.
For each story in the PRD, determine its status:
Re-calculate batches based on story dependencies.
============================================================
EXECUTION STATUS
============================================================
## Summary
Total Stories: {count}
Total Batches: {batch_count}
Complete: {complete_count} ●
In Progress: {in_progress_count} ◐
Pending: {pending_count} ○
Failed: {failed_count} ✗
## Progress
[{progress_bar}] {percentage}%
## Current Batch: {current_batch_number}
{stories in current batch with their statuses}
## All Batches
Batch 1: {status} ({count} stories)
{story statuses}
Batch 2: {status} ({count} stories)
{story statuses}
...
============================================================Status indicators:
Display the last 10 entries from `progress.txt`:
## Recent Activity
{last 10 lines from progress.txt}If there are failed stories, show them:
## Failed Stories
✗ {story_id}: {title}
{error details from progress.txt}If all stories are complete:
✓ All stories complete! Next: - /plan-cascade:hybrid-complete - Complete and merge (if in worktree) - /plan-cascade:show-dependencies - Review final state
If some stories are still pending/in-progress:
Next: - Continue monitoring with: /plan-cascade:hybrid-status - View progress details in: progress.txt - View agent logs in: .agent-outputs/
If execution was interrupted:
To resume an interrupted task: /plan-cascade:hybrid-resume --auto This will: - Auto-detect current state from files - Skip already-completed stories - Resume execution from where it left off
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…