Skip to main content

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

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

Strategies

ValueBehavior
allDrain all queued follow-ups into one batch. Default.
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 batch behavior

murmur queue strategy fix-auth all
dequeue strategy set to all 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 all, one, or five.Pass one of the supported strategies listed above.