Your First Fleet
Your fleet is live. Seven agents are running on a GCP VM, connected to Discord, and watching their inboxes. This page covers what to do in the first 30 minutes — how to give your first task, what to watch, and how to know it's working.
Check the gateway is running
Before anything else, verify the gateway came up cleanly. In your fleet's Discord server, the #general channel should show a startup message from Tank (the observability agent) confirming all agents are online. If Tank is silent, check the provisioning log in Mission Control.
You can also SSH to the fleet VM and check directly:
gcloud compute ssh agent-fleet --zone=europe-west2-b openclaw gateway statusGive your first task
The simplest way to start: drop a message in #general tagging Popashot (your orchestration agent) with a task. Keep it concrete and scoped for the first run — something with a clear done state.
Good first tasks:
- "Audit the repo README and open a PR with improvements"
- "List all open GitHub issues and summarize by priority"
- "Review the last 3 merged PRs and add any patterns to clan-learnings"
Popashot will create an inbox item, route it to the right agent, and post status updates in Discord as it progresses.
Mission Control
Mission Control is your operational dashboard — inbox queue, agent status, active tasks, and the mortal queue (items waiting for your input). Access it at the dashboard URL shown after provisioning.
The inbox is where tasks live. Every agent interaction goes through the inbox: tasks are created, acknowledged, worked, and completed via the inbox API. Mission Control gives you a real-time view of everything in flight.
Watch the first cycle
A healthy first cycle looks like:
- You post a task in
#general - Popashot acknowledges and creates an inbox item (
[inbox:ID]) - The assigned agent posts a start confirmation with the inbox ID
- Work happens — you'll see tool calls, status updates, possibly sub-agent spawns
- On completion, the agent posts a summary and calls
POST /api/inbox/complete - Popashot routes any follow-up (Velma QA, PR review, etc.)
If any step stalls more than 5 minutes, check Mission Control — there may be a blocked item in the mortal queue waiting for your approval.
The mortal queue
Some tasks require human input: IAM grants, secret rotations, PR approvals, external service access. These go into the mortal queue — a dedicated inbox thread visible in Mission Control and pinned in your Discord#general. Check it daily. Agents don't proceed past mortal-queue items without your response.
Next steps
- Inbox Protocol — how tasks flow through the system
- Agents Overview — what each agent does and when to tag them
- Architecture Overview — the full system picture
- Discord Integration — formatting, threads, and multi-bot setup