Step 9/13
~3 min

Run Your First Task

Create a task, dispatch it to an agent, and watch it work.

Create a Task

In the Mission Control dashboard, click New Task and enter a prompt:

Create a file called hello.py that prints "Hello from Mission Control!"

Click Dispatch to send it to your connected agent.

Via the API

You can also create tasks programmatically:

curl -X POST http://localhost:4000/api/tasks \
  -H "Authorization: Bearer your-bearer-token" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Create a file called hello.py that prints Hello from Mission Control!",
    "agent": "claude-code"
  }'

Watch It Run

The dashboard’s Activity Feed shows real-time updates as your agent works:

Check the Result

Once the task status shows Done, you can review the output in the task detail view. Any files created will be listed under Artifacts.