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.

Sends a follow-up message to a running agent’s session. The message is delivered to the agent as a new user prompt. If the agent is idle or has finished its current task, the message wakes it to start a new turn.

Synopsis

murmur session send [flags] [slug] <message...>
On a VM, the slug is optional — omitting it sends the message to the current agent’s own session. The message is everything after the slug (or everything after the flags, on a VM).

Arguments

NameTypeRequiredDescription
slugstringon laptopThe agent’s slug. Optional on VMs (defaults to self).
messagestringyesThe message text. All remaining arguments are joined with spaces.
--workspacestringnoWorkspace name. Overrides the value from murmur.yaml.

Examples

Send a follow-up message

murmur session send fix-auth "Also add a test for the token refresh case"
sent

Multi-word message without quotes

All arguments after the slug are joined into a single message:
murmur session send fix-auth Also add a test for the token refresh case
sent

Send from a VM (self)

When running on an agent VM, omit the slug:
murmur session send "Please also check the error handling path"
sent

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.