Create a task, dispatch it to an agent, and watch it work.
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.
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"
}'
The dashboard’s Activity Feed shows real-time updates as your agent works:
Once the task status shows Done, you can review the output in the task detail view. Any files created will be listed under Artifacts.