From 05931d19bc0c161d0177c3f983d0cd903d5e8ae3 Mon Sep 17 00:00:00 2001 From: soryu Date: Fri, 16 Jan 2026 01:39:16 +0000 Subject: Fixup: add task contract type to frontend --- makima/frontend/src/routes/contracts.tsx | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) (limited to 'makima/frontend/src/routes') diff --git a/makima/frontend/src/routes/contracts.tsx b/makima/frontend/src/routes/contracts.tsx index 5e9bf60..8ed4ab5 100644 --- a/makima/frontend/src/routes/contracts.tsx +++ b/makima/frontend/src/routes/contracts.tsx @@ -471,6 +471,20 @@ function ContractsPageContent() { Contract Type
+

- {contractType === "simple" + {contractType === "task" + ? "Execute: One-off adhoc task with no supervisor (auto-archives on completion)" + : contractType === "simple" ? "Plan → Execute: Simple workflow with a plan document" : "Research → Specify → Plan → Execute → Review: Full specification-driven development with TDD"}

@@ -524,7 +540,9 @@ function ContractsPageContent() { ))}

- {contractType === "simple" + {contractType === "task" + ? "Task contracts always start in Execute phase" + : contractType === "simple" ? "Start in Plan to define what to build, or Execute if already planned" : "Skip earlier phases if you already have requirements defined"}

-- cgit v1.2.3