Layout

- Left panel (65%) — real-time streaming output showing the AI’s work
- Right panel (35%) — ticket tree showing implementation progress
Streaming output
The left panel shows everything the AI is doing in real-time:- Bash commands — see commands run with full output and exit codes
- File edits — view exact changes with syntax-highlighted diffs
- File creation — new files being written
- Search operations — what the AI is looking for and finding
- Reasoning — the AI’s thought process between actions
Ticket tree
The right panel tracks implementation progress organized into phases and tickets:- Phases — high-level implementation stages (collapsible)
- Tickets — individual tasks within each phase
- Status indicators:
- Green checkmark — completed
- Yellow spinner — in progress
- Red X — failed (with error description)
- Progress badge — shows completed/total tickets per phase (e.g., “3/5”)
progress.json file in your feature folder, which the AI updates as it works.
Intervening
You can pause and redirect the AI at any time:- Click Stop to pause execution
- A blue banner appears: “Claude finished. Send a message to continue…”
- Type feedback, corrections, or new instructions
- The AI resumes with your input taken into account
Parallel execution
For features with independent work streams, the/orchestrate command enables parallel implementation:
- Multiple files and components built concurrently
- Dependencies coordinated automatically
- Results merged safely
Automatic transition
Phase 3 transitions to Phase 4 automatically when the AI signals completion. The transition is triggered by either:- The AI signaling build completion
- A
manual-setup.mdfile appearing in the feature folder
Moving to Phase 4
Phase 4: Review
Review changes and create PRs