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.

Restarts a sleeping agent’s VM. The agent transitions from PHASE_SLEEPING back to its previous active phase and resumes work. Use murmur wake to bring an agent back after putting it to sleep. Agents also wake automatically when they receive a follow-up message — murmur wake is for when you want to restart the VM without sending new work.

Synopsis

murmur wake [flags] [slug]
On a VM, the slug is optional — omitting it wakes the current agent.

Arguments

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

Output

VM started

Examples

Wake a sleeping agent

murmur wake fix-auth
VM started

Confirm the agent is running

murmur status fix-auth
workflow: github_oauth/alice/w/backend/fix-auth
phase:    PHASE_RUNNING
vm:       murmur-a1b2c3d4 (acme-agents/us-central1-a) [running]
version:  0.4+a1b2c3d4

Sleep and wake cycle

murmur sleep fix-auth
VM stopped
murmur wake fix-auth
VM started

Errors

CodeMeaningWhat to do
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.