Get task memory summary
get_task_summaryRetrieve the current task summary including completed work, blockers, and next steps to resume progress.
Instructions
Return the current task summary (what was done, blockers, next steps). USE WHEN: the user asks to continue, resume, or recall recent work on a task. DO NOT USE WHEN: there is no prior task state referenced, or the request is about global / project-level context. RETURNS: { project_id, found, summary? } where summary has { id, title, summary, updated_at }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | No | Optional task node id to scope the summary to | |
| git_root | No | Absolute path to the git repository root | |
| project_id | No | Explicit project id | |
| remote_url | No | Git remote URL for the project | |
| workspace_path | No | Absolute path to the workspace root |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| found | Yes | ||
| summary | Yes | ||
| project_id | Yes |