Execute a task — grab if needed, load context, implement, and complete
--complete — Auto-close mode: skip the review option, mark the task as done when all DoD criteria are met, and end the session. Designed for spawned agents that should finish without manual intervention.pm_get(task_id) to read the tasktodo with no assignee:
pm_grab(task_id) to claim it (validates readiness including cross-story dependencies)in-progress with a different assignee:
pm_get(story_id) to understand acceptance criteriapm_docs("project") for architecture context--complete flag is set:pm_update(task_id, status="done") — do NOT offer a review optionpm_update(story_id, status="done") automaticallyOtherwise (default):
pm_update(task_id, status="review") if the task needs human review,
OR call pm_update(task_id, status="done") if all DoD criteria are metpm_active or list tasks for the story/pm board"When a task has depends_on entries from other stories:
pm_grab and pm_context responses