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.

Publishes a notify event to a running agent. The agent receives the message in its event stream and acts on it. Use this to give instructions, provide context, or nudge an agent without queuing a formal follow-up.

Synopsis

murmur notify [flags] <slug> <message>
The message is everything after the slug. Multiple words are joined with spaces — no quoting required.

Arguments

NameTypeRequiredDescription
slugstringyesThe agent’s slug.
messagestringyesThe message text. All remaining arguments after the slug are joined into the message.
--workspacestringnoWorkspace name. Overrides the value from murmur.yaml.

Examples

Send a message to an agent

murmur notify fix-auth Check the error handling in middleware.go too
notified fix-auth
The agent receives the message as a notify event:
[2026-05-14T18:45:00Z] Check the error handling in middleware.go too

Nudge a stuck agent

murmur notify fix-auth The CI failure is a flaky test rerun it
notified 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.