fix(api/tasks): NO_PLAN remediation hint references gateway, not deleted MCP

Old hint pointed agents at roboco_task_plan() / roboco_task_start() — both deleted in Phase 4 T9. New hint covers both callers: panel via PATCH, agents via gateway i_will_work_on(plan=...).
This commit is contained in:
Renn F
2026-05-02 04:15:00 +02:00
parent 0ecf47ad77
commit dc147f41db
+2 -2
View File
@@ -601,8 +601,8 @@ async def start_task(
status_code=status.HTTP_400_BAD_REQUEST,
detail=(
"NO_PLAN: Cannot start a claimed task without a plan. "
"Call roboco_task_plan() with approach + sub_tasks + "
"risks before roboco_task_start()."
"Set task.plan via PATCH /api/tasks/{id} (panel) or "
"call gateway i_will_work_on(task_id, plan='...') (agents)."
),
)