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.

Discards all queued follow-up messages for an agent. The agent never receives the cleared messages. Returns the number of follow-ups that were discarded.

Synopsis

murmur queue clear [flags] [slug]
On a VM, the slug is optional — omitting it clears the current agent’s own queue.

Arguments

NameTypeRequiredDescription
slugstringon laptopThe agent’s slug. Optional on VMs (defaults to self).
--workspacestringnoWorkspace name. Overrides the value from murmur.yaml.

Examples

Clear an agent’s queue

murmur queue clear fix-auth
cleared 3 follow-ups
All pending follow-ups are discarded. The agent continues with its current task but receives no further queued messages.

Clear when nothing is queued

murmur queue clear fix-auth
cleared 0 follow-ups

Self-clear on a VM

When running on an agent VM, omit the slug to clear the current agent’s own queue:
murmur queue clear

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.