Retrieves the full details of a single task from an agent’s checklist — ID, subject, status, description, and dependency edges.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
Output
The output is a set of key-value lines. Fields appear only when they have a value.| Field | Description |
|---|---|
ID | The task identifier. |
Subject | Short summary of the task. |
Status | The task’s current status enum (e.g. TASK_STATUS_PENDING). |
Description | Detailed description. Only shown if set. |
Blocks | Comma-separated IDs of tasks this one blocks. Only shown if set. |
Blocked By | Comma-separated IDs of tasks that block this one. Only shown if set. |
Examples
Get a task with no dependencies
Get a task with dependency edges
Self-query on a VM
When running on an agent VM, omit the slug:Errors
| Code | Meaning | What to do |
|---|---|---|
NOT_FOUND | No agent with that slug exists, or the task ID is invalid. | Check the slug and task ID. Use murmur task ls to see existing tasks. |
UNAUTHENTICATED | Identity token is missing or expired. | Run murmur auth or check your murmur.local.yaml configuration. |
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 ls— list all tasks on an agent’s checklistmurmur status— query agent status