Sends a follow-up message to a running agent. The message is queued and delivered when the agent is ready to process it. Returns an error if the agent is not running. Equivalent toDocumentation Index
Fetch the complete documentation index at: https://docs.murmur.dev/llms.txt
Use this file to discover all available pages before exploring further.
murmur queue add in the CLI.
Follow-ups are delivered according to the agent’s dequeue strategy — all (drain everything), one (one per turn), or five (up to five per turn).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | yes | Agent task slug. Use an absolute path like /w/workspace/u/account/slug to target an agent outside your own path. |
description | string | yes | Follow-up message to send to the running agent. |
tasks | string[] | no | Checklist items to add to the agent’s task list. |
agent | string | no | Agent persona override (e.g. programmer, architect). |
workspace | string | no | Workspace name. Overrides the session default. |
Response
Returns a confirmation string:follow-up sent to <slug>.
Examples
Send a follow-up message
Send a follow-up with new tasks
Interrupt then redirect
Useinterrupt to stop the current turn, then send new instructions:
Errors
Related
murmur queue add— equivalent CLI commandinterrupt— stop the current turn before sending a follow-upclear_queue— discard queued follow-upsstatus— check agent statespawn— create an agent