Ctrl-C.
Synopsis
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | on laptop | The agent’s slug. Optional on VMs (defaults to self). |
--from | string | no | Resume from a specific event ID. Default: "0" (stream from the beginning). |
--json | bool | no | Output raw JSON, one event per line. Default: false. |
--workspace | string | no | Workspace name. Overrides the value from murmur.yaml. |
Event kinds
Each event has a timestamp and a kind that determines which fields are present.| Kind | What it means |
|---|---|
SESSION_START | The session started. |
SESSION_END | The session ended. |
ASSISTANT_TEXT | The agent produced text output. |
TOOL_USE | The agent invoked a tool. Includes the tool name and input. |
TOOL_RESULT | A tool returned output. |
TURN_COMPLETE | The agent’s turn finished. Includes the stop reason (end_turn or tool_use). |
ERROR | An error occurred during the session. |
COST | Cumulative API cost update in USD. |
PR_LINK | The agent opened a pull request. Includes the PR URL. |
USER_TEXT | A user message was sent to the session. |
Examples
Watch a running agent
Resume after a disconnect
When the stream disconnects,murmur session watch prints the last event ID to stderr:
JSON output for scripting
id field (the event ID) and an event field containing the session event payload.
Watch with sub-agent output
When the agent spawns sub-agents, their events appear indented with a prefix:Errors
| Code | Meaning | What to do |
|---|---|---|
NOT_FOUND | No agent with that slug exists. | Check the slug. Use murmur ls to list running agents. |
UNAUTHENTICATED | Identity token is missing or expired. | Run murmur auth or check your murmur.local.yaml configuration. |
INVALID_ARGUMENT | The last_event_id is empty. | Pass a valid event ID with --from, or omit the flag to use the default ("0"). |
Related
- Agents — concept overview
murmur session send— send a follow-up message to the agentmurmur session interrupt— interrupt the agent’s current turnmurmur session stop— request graceful session shutdownmurmur status— check an agent’s phase and progressmurmur ssh— open a terminal on the agent’s VM