Documentation Index
Fetch the complete documentation index at: https://docs.murmur.dev/llms.txt
Use this file to discover all available pages before exploring further.
Sets the dequeue strategy for a running agent’s follow-up queue. The strategy controls how many queued follow-ups the agent pulls in per turn.
Synopsis
murmur queue strategy [flags] <slug> <strategy>
Arguments
| Name | Type | Required | Description |
|---|
slug | string | yes | The agent’s slug. |
strategy | string | yes | One of all, one, or five. See Strategies below. |
--workspace | string | no | Workspace name. Overrides the value from murmur.yaml. |
Strategies
| Value | Behavior |
|---|
all | Drain all queued follow-ups into one batch. Default. |
one | Drain one follow-up per turn. |
five | Drain up to five follow-ups per turn. |
Examples
Drain one follow-up per turn
murmur queue strategy fix-auth one
dequeue strategy set to one for fix-auth
The agent now processes queued follow-ups one at a time instead of batching them.
Restore the default batch behavior
murmur queue strategy fix-auth all
dequeue strategy set to all for fix-auth
Errors
| Code | Meaning | What to do |
|---|
NOT_FOUND | No agent with that slug exists. | Check the slug. Use murmur ls to list running agents. |
UNAUTHENTICATED | Identity token is missing or expired. | Run murmur auth or check your murmur.local.yaml configuration. |
invalid strategy | The strategy value is not all, one, or five. | Pass one of the supported strategies listed above. |