Lists all tasks on an agent’s checklist. By default, prints a table with each task’s ID, subject, status, and blockers.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.
Synopsis
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | on laptop | The agent’s slug. Optional on VMs (defaults to self). |
--json | bool | no | Output as a JSON array. Default: false. |
--active | bool | no | Only show tasks that block exit — filters out completed tasks and dormant tasks whose activation condition has not been met. Default: false. |
--workspace | string | no | Workspace name. Overrides the value from murmur.yaml. |
Output
Table output (default)
A tab-separated table with four columns:
If the agent has no tasks, the command produces no output.
JSON output
With--json, the output is a JSON array of objects:
Examples
List all tasks
List active tasks only
Filters out completed tasks and dormant conditional tasks:t_9d4e2f1a has an --activate-when files_modified condition that has not triggered yet, so it does not appear. t_7c5b3a0e is completed, so it is also excluded.
JSON output
Self-list on a VM
When running on an agent VM, omit the slug:Errors
Related
- Agents — concept overview
murmur task create— add a task to an agent’s checklistmurmur task update— change a task’s status, subject, or dependenciesmurmur task get— retrieve details for a single taskmurmur status— query agent statusmurmur ls— list running agents