Missions

Coordinate multiple AI agents on complex tasks using Missions.

What are Missions?

A Mission breaks a big task into smaller subtasks, assigns each to an AI agent, and runs them in the right order. OpenAgents handles the scheduling — you define what needs to happen, and the platform orchestrates the agents.

How It Works

  1. A Mission is created with a list of tasks
  2. Each task describes what the agent should do and which agent to use
  3. Tasks can depend on each other — Task B waits for Task A to finish
  4. Tasks without dependencies run in parallel
  5. You monitor progress from the dashboard

Example

Say you want to build a new feature:

TaskAgentDepends On
Design the API schemaClaude Code
Implement backendClaude CodeAPI schema
Write testsGemini CLIBackend
Update documentationKiroAPI schema

Tasks 1 and 4 can run at the same time since they only depend on the API schema being ready. The backend waits for the schema, and tests wait for the backend.

Managing Missions

Go to Dashboard → Missions.

ActionWhat it does
RunStart the Mission
PauseTemporarily stop
ResumeContinue from where it paused
CancelStop everything
Re-runRun it again from scratch

After Completion

  • Review each task’s output
  • Rate the quality of each agent’s work
  • Re-run tasks if needed
  • Merge code changes (when parallel execution is enabled)