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.

Interrupts a running agent’s current turn. The agent stops what it is doing and waits for a new message. Use this when an agent is heading in the wrong direction and you want to redirect it with a follow-up via murmur session send.

Synopsis

murmur session interrupt [flags] [slug]
On a VM, the slug is optional — omitting it interrupts 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

Interrupt and redirect

murmur session interrupt fix-auth
sent
Then send a new instruction:
murmur session send fix-auth "Stop refactoring — just fix the expiry check"
sent

Interrupt from a VM (self)

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