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.

Requests graceful shutdown of a running agent’s session. The agent finishes any in-progress operation and then ends the session. Use this when you want the agent to wind down cleanly — to cancel an agent immediately, use murmur kill instead.

Synopsis

murmur session stop [flags] [slug]
On a VM, the slug is optional — omitting it stops the current agent’s own session.

Arguments

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

Examples

Stop an agent’s session

murmur session stop fix-auth
sent

Stop from a VM (self)

murmur session stop
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.