murmur task update in the CLI.
Parameters
Dependency edges
Tasks can declare dependencies on other tasks usingadd_blocks and add_blocked_by. These edges express ordering constraints:
add_blocks: “this task blocks those tasks” — the listed tasks cannot start until this one completes.add_blocked_by: “this task is blocked by those tasks” — this task cannot start until the listed tasks complete.
Response
Returns a confirmation string:updated task <task_id>.
Examples
Mark a task completed
Update subject and description
Add dependency edges
t_deploy cannot start until both t_tests and t_review are completed.
Delete a task
Errors
Related
murmur task update— equivalent CLI commandtask_create— create a new tasktask_list— list all taskstask_get— get a single task