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.

Removes every event subscription for an agent — all branch subscriptions, all file subscriptions, and all child subscriptions. After flushing, the agent receives no events until new subscriptions are added with murmur subscriptions add.

Synopsis

murmur subscriptions flush [flags] [slug]
On a VM, the slug is optional — omitting it flushes the current agent’s subscriptions.

Arguments

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

Examples

Flush all subscriptions

murmur subscriptions flush fix-auth
flushed all subscriptions for fix-auth

Self-flush on a VM

When running on an agent VM, omit the slug:
murmur subscriptions flush
flushed all subscriptions for self

Errors

CodeMeaningWhat to do
INVALID_ARGUMENTSlug is required when not running on a VM.Provide the agent slug as a positional argument.
NOT_FOUNDNo agent with that slug exists.Check the slug spelling. Use murmur ls to see running agents.
UNAUTHENTICATEDIdentity token is missing or expired.Run murmur auth or check your murmur.local.yaml configuration.