Overview
Auto is the default workflow. You describe the task and the agent determines the right approach — whether to plan first, dive straight into code, or break the work into phases. No manual configuration required.When to Use
- Small, well-understood tasks
- Quick experiments and prototypes
- Tasks where the requirements are obvious from the prompt
- When you want to ship fast without configuring a workflow
How It Works
1
Describe your task
Provide a clear title and description. The more context you give, the better the agent scopes its approach.
2
Agent analyzes and plans
The agent reads your prompt, analyzes the codebase, and decides whether to create a plan or jump directly into implementation.
3
Implementation
The agent generates code, runs tests, and validates its output. It self-corrects on failures automatically.
4
Review and merge
Check the Changes tab for diffs, verify commits, and merge when ready.
Artifacts
Auto creates minimal artifacts:Tips
Be specific in your prompt
Be specific in your prompt
Auto works best when the task is clear. Instead of “fix the auth,” try “fix the JWT token refresh failing when the access token expires within 5 seconds of a request.”
Switch workflows if scope grows
Switch workflows if scope grows
If you start with Auto and realize the task needs more structure, you can switch to Spec First or Requirements First.
Use for parallel small tasks
Use for parallel small tasks
Auto is ideal for running multiple independent small tasks in parallel — each gets its own worktree and the agent handles each one autonomously.
Related
All Workflows
Compare all available workflows
Fix a Bug
Structured workflow for debugging