Skip to main content
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

NameTypeRequiredDescription
slugstringyesThe agent’s slug.
strategystringyesOne of auto, all, one, or five. See Strategies below.
--workspacestringnoWorkspace name. Overrides the value from murmur.yaml.

Strategies

ValueBehavior
autoDrain up to five follow-ups of one kind per turn; manual follow-ups and auto-generated events (PR comments, CI results, conflict resolutions) never share a turn. Default.
allDrain all queued follow-ups into one batch.
oneDrain one follow-up per turn.
fiveDrain 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 behavior

murmur queue strategy fix-auth auto
dequeue strategy set to auto for fix-auth

Errors

CodeMeaningWhat to do
NOT_FOUNDNo agent with that slug exists.Check the slug. Use murmur ls to list running agents.
UNAUTHENTICATEDIdentity token is missing or expired.Run murmur auth or check your murmur.local.yaml configuration.
invalid strategyThe strategy value is not auto, all, one, or five.Pass one of the supported strategies listed above.