Skip to main content
Sends a follow-up message to a running agent’s queue. The agent picks up queued follow-ups between tasks — use this to give an agent additional work after it finishes its current task, or to steer it while it is idle or sleeping. A follow-up wakes a sleeping agent. With --deliver-in or --deliver-at the message is deferred: it parks in the agent’s durable workflow (surviving VM sleep, unlike an in-session timer) and delivers as a normal follow-up at the deadline — the reliable “resume me at T” primitive. The command prints the message’s follow-up ID; cancel an undelivered message with murmur queue remove. A pending deferred message also holds a terminate-on-idle service agent alive until it delivers.

Synopsis

The description is everything after the slug. Multiple words are joined with spaces.

Arguments

Examples

Send a follow-up message

The agent receives this message after completing its current task.

Defer a follow-up (“resume me at T”)

Follow-up with a checklist

The agent receives the description along with a structured checklist of tasks.

Override the persona

The agent processes the follow-up using the architect persona instead of its default.

Switch the model

The agent runs this and all subsequent turns on claude-opus-4-8 until the model is changed again.

Errors