Autopilot mode uses an AI planner to analyze complex tasks and generate execution plans that leverage multiple agents’ strengths. Each step in the plan is assigned to the most suitable agent (claude, gemini, codex, ollama) based on what it does best.Documentation Index
Fetch the complete documentation index at: https://docs.puzld.cc/llms.txt
Use this file to discover all available pages before exploring further.
Usage
TUI (Interactive)
CLI
| Flag | Description |
|---|---|
-p | Agent to use for planning (default: ollama) |
-x | Execute the plan after generating |
-i | Interactive mode - prompt before each step |
Examples
How It Works
Assign Agents
For each step, the planner selects the best agent based on their strengths:
- claude: Code writing, architecture, creative tasks
- gemini: Analysis, research, planning
- codex: Debugging, security, code review
- ollama: Simple queries, fast local responses
Generate Plan
A 1-5 step execution plan is created, with each step showing the assigned agent and action.
Agent Assignment
The planner automatically matches agents to tasks:| Task Type | Recommended Agent |
|---|---|
| Write code, generate files | claude |
| Analyze requirements, plan architecture | gemini |
| Review code, find bugs, security check | codex |
| Quick lookups, simple transformations | ollama |
Configuration
Planner Agent
Set which agent creates the execution plan:Execution Mode
Control how the plan is executed:| Mode | Description |
|---|---|
| Plan only | Generate plan without executing (default) |
Auto-execute (/execute) | Execute all steps automatically |
Interactive (/interactive) | Pause and confirm before each step |
Keyboard Shortcuts
| Key | Action |
|---|---|
Escape | Hide view (keeps running) |
Ctrl+E | Return to autopilot view |
Ctrl+C | Cancel operation |