Before starting, make sure you have at least one AI provider configured in Settings > AI Providers and a project open with a valid
ade.yaml.1. Create a Mission
Navigate to the Missions tab in the sidebar. Click New Mission to open the creation dialog.Set a goal
Write a clear, specific goal for your mission. The planner agent uses this to generate a structured execution plan.Good goals are concrete: “Add a REST endpoint for user preferences with validation, tests, and OpenAPI docs” is better than “work on the API.”
Choose a launch mode
- Supervised — ADE pauses for your approval before executing the plan. Recommended for your first mission.
- Autopilot — planning and execution proceed without human gates.
2. Review the Plan
Once the planner agent finishes, ADE presents the generated plan for review. The plan includes:- Steps — numbered tasks the workers will execute
- Lane assignments — which lane each step runs in
- Dependencies — ordering constraints between steps
- Parallelism — which steps can run simultaneously
3. Monitor Execution
Once approved, workers begin executing the plan steps. Navigate to the Mission Run panel to monitor progress.- Step list — shows each step with its current status (queued, running, completed, failed)
- Live terminal — click any running step to see its agent’s terminal output in real time
- Artifacts — completed steps surface artifacts (code changes, test results, summaries) in the Artifacts tab
4. Handle Interventions
If a worker gets stuck, it creates an Intervention and pauses. Common reasons:| Intervention | What to do |
|---|---|
approval_required | Review the output and approve or reject |
manual_input | Provide the answer the agent needs |
conflict | Resolve the merge conflict, then resume |
failed_step | Review the error, fix if needed, then retry or skip |
5. View Results
When all steps complete and validation passes, the mission moves to Completed status. Review the results:- Artifacts tab — all proof artifacts (screenshots, test reports, summaries) collected during execution
- Plan tab — the final plan with per-step outcomes
- Chat tab — the full conversation history between the coordinator and workers
- Cost summary — total tokens and estimated cost for the mission
Next Steps
Mission Concepts
Understand the full mission lifecycle, statuses, and intervention types.
Automation Rules
Trigger missions automatically from git events or schedules.