The Switch to Observer
Your role during execution:- ✅ Monitor progress and tool calls
- ✅ Watch for signs of trouble early
- ✅ Interrupt if the AI goes off-track
- ❌ Not hands-off autonomy—active observation
Direct Implementation
The implementation prompt should be simple and direct.Example Prompt
What “Clean, Concise, Elegant” Means
- Clean: No dead code, no debug statements
- Concise: Minimal complexity, no over-engineering
- Elegant: Readable, maintainable, idiomatic
Active Observation
Watch for signs of trouble:Red Flag #1: Repetitive Behavior
The AI keeps trying the same edit multiple times What it means: Context window is full or it’s confused What to do: Stop and refresh contextRed Flag #2: File Edit Struggles
The AI can’t successfully edit a specific file What it means: File too large, syntax issues, or model confusion What to do: Break into smaller edits or provide file structureRed Flag #3: Off-Plan Implementation
The AI is making changes not in the rehearsed plan What it means: Lost track of the plan or misunderstood What to do: Interrupt and re-anchor to the planRed Flag #4: Stale Information
The AI references old file contents or deprecated patterns What it means: Context hasn’t been refreshed What to do: Re-run bootstrapping to rebuild contextInterrupting for Quality
Critical rule: If implementation goes off the rails, stop immediately.When to Interrupt
- Context window is full (model becoming incoherent)
- Stale information being used
- Multiple failed edit attempts
- Deviating from the rehearsed plan
How to Interrupt
A Word of Caution: Shell Commands
⚠️ CRITICAL SAFETY RULE- ✅ Code changes can be rolled back via git
- ❌ Shell/terminal commands cannot be undone
- 🚨 Terminal commands require hyper-vigilance
High-Risk Commands
rm -rf(deletion)git push --force(history rewriting)- Database migrations (schema changes)
- Deployment scripts (production changes)
npm publish(package publication)
Safety Protocol for Shell Commands
- Read the command before execution
- Understand what it does
- Verify it matches the plan
- Check for destructive operations
- Only then approve
Key Principle: Implementation is a “coherent dream”—watch the first few seconds carefully. If it starts wrong, it won’t self-correct.