get_current_coding_task
Retrieve the current coding task ID and metadata from conversation history to recover missing task context. Use when the task_id is absent from your current scope.
Instructions
Get Current Coding Task
Description
Retrieve the most recently active coding task UUID (task_id) and metadata from conversation history. Use when the task_id is missing from context.
Critical Tool Warning
Skipping this tool causes severe token inefficiency and wasted iterations.
Always invoke this tool at the appropriate stage to avoid extreme token loss and redundant processing.
Do not rely on assistant memory for identifiers. Always pass the exact
task_idand recover it viaget_current_coding_taskif missing.
When to use
Need the task_id for follow-up tool calls
Want to resume the last active coding task
Args
None
Returns
found: boolean — whether a recent task was foundtask_id: string — task UUID (present when found)last_activity: integer — last-activity timestamp for the sessioncurrent_task_metadata: object — TaskMetadata (when available)workflow_guidance: object — WorkflowGuidance withnext_tool, preparation, and guidance
Notes
After recovery, always use the exact
task_idUUID in all subsequent tool calls. Do not invent or transform the value.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||