Intelligent meta command that analyzes repository state and executes the appropriate blueprint action.
Concept
Run this command anytime to automatically determine what should happen next in your blueprint workflow. Safe to run repeatedly - it's idempotent and will always figure out the right action.
Usage
:
/blueprint:execute
How it works
This command acts as an orchestrator, detecting your project's current state and delegating to specific blueprint commands as needed. It uses parallel agents for efficient context gathering.
For detailed AskUserQuestion templates, examples, and common workflows, see
This ensures every execute run updates operational metadata for tracking and future scheduling decisions.
Idempotency Guarantees
Guarantee
How
State detection is read-only
Only reads files until action is chosen
Single action execution
Executes ONE action per run, then exits
User confirmation
Critical actions prompt before executing
Consistent state
Each action leaves project in valid state
No side effects
Re-running after completion shows status only
Integration with Existing Commands
This meta command
delegates
to existing blueprint commands rather than replacing them. Users can still run specific commands directly when they know what they want.
/blueprint:execute
is for when you want the system to decide.
Agentic Optimizations
Context
Command
Smart next action
/blueprint:execute
Morning start
/blueprint:execute
(figures out where you left off)
After pulling changes
/blueprint:execute
(checks for stale content)
Direct init
/blueprint-init
(skip detection)
Direct PRP execution
/blueprint-prp-execute
(skip detection)
Note
This is a meta-orchestrator command. It analyzes state and delegates to specific blueprint commands. It's designed to be the "smart entry point" for blueprint workflow while preserving access to individual commands for power users.