From 7eaa284d4ef80180c29b4623cd6d1ce766cb86d7 Mon Sep 17 00:00:00 2001 From: Test Date: Wed, 18 Mar 2026 13:08:53 +0100 Subject: [PATCH] docs: require explicit Todoist move to In Review in task completion flow Claude Code must move task to In Review via API before firing done signal. Fixes silent failure where tasks stayed In Progress after completion. --- CLAUDE.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index a0e1bfd0..c70fc76c 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -31,8 +31,16 @@ BASE_URL="http://localhost:5201" npx playwright test tests/smoke/.spec.ts Brian installs the release build and runs keyboard-only QA. Phase 1 must pass first or the task goes to To Rework. -Fire done signal only after Phase 1 passes: +Fire done signal only after Phase 1 passes — **two steps, both required**: + ```bash +# 1. Move task to In Review on Todoist +curl -s -X POST "https://api.todoist.com/api/v1/tasks//move" \ + -H "Authorization: Bearer $TODOIST_API_KEY" \ + -H "Content-Type: application/json" \ + -d '{"section_id": "6g3XjX33FF4Vj86M"}' + +# 2. Notify Brian openclaw system event --text "laputa-task-done:" --mode now ```