Streams events for an agent as they arrive. Each event prints on its own line with a timestamp. The stream stays open until you cancel it or the agent completes. On transient connection errors,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.
murmur watch reconnects automatically and resumes from the last received event — no events are missed.
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 stream entry ID. Default: "0" (all events). |
--json | bool | no | Output raw JSON, one event per line. Default: false. |
--workspace | string | no | Workspace name. Overrides the value from murmur.yaml. |
Output
By default, each event prints as a human-readable line prefixed with a timestamp:--json, each event prints as a single JSON object per line — one field per event type. Useful for piping into jq or other tooling.
Event types
| Type | What prints |
|---|---|
pr_comment | PR comment body, author, file path and line (if inline), and resolution instructions. |
pr_review | Review body, author, and state (approved, changes requested, commented). |
ci_result | CI conclusion (success/failure), check name, commit SHA, and failing jobs. |
file_changed | List of conflicting files and conflict resolution instructions. |
notify | The free-text message. |
child_lifecycle | Child agent slug and new state (running, task-complete, failed). |
pr_lifecycle | PR action (opened, closed, merged, reopened) with title and URL. |
pr_labeled | PR number, labels, title, and URL. |
issue_opened | Issue number, repo, and body. |
pr_opened | Branch, repo, and body. |
progress | Agent progress text. |
Examples
Watch a running agent
Ctrl-C to stop.
JSON output for scripting
Resume from a specific point
Self-watch on a VM
When running on an agent VM, omit the slug to watch the current agent’s own events:Errors
Related
- Events — concept overview of event types and delivery
murmur status— check an agent’s phase and progressmurmur notify— publish a message to an agentmurmur ls— list running agents