From a2646a828febbdac798a206655a15eae7e463bca Mon Sep 17 00:00:00 2001 From: soryu Date: Mon, 9 Feb 2026 02:35:36 +0000 Subject: Add directive init --- .../src/components/directives/DirectiveDetail.tsx | 16 ++++++++++++++++ makima/frontend/src/components/directives/StepNode.tsx | 8 ++++++++ 2 files changed, 24 insertions(+) (limited to 'makima/frontend/src/components/directives') diff --git a/makima/frontend/src/components/directives/DirectiveDetail.tsx b/makima/frontend/src/components/directives/DirectiveDetail.tsx index abd2c55..1340482 100644 --- a/makima/frontend/src/components/directives/DirectiveDetail.tsx +++ b/makima/frontend/src/components/directives/DirectiveDetail.tsx @@ -98,6 +98,22 @@ export function DirectiveDetail({ )} + {/* Orchestrator planning indicator */} + {directive.orchestratorTaskId && ( +
+ + + Planning in progress... + + + View task + +
+ )} + {/* Controls */}
{(directive.status === "draft" || directive.status === "paused") && ( diff --git a/makima/frontend/src/components/directives/StepNode.tsx b/makima/frontend/src/components/directives/StepNode.tsx index fa91956..2844b4a 100644 --- a/makima/frontend/src/components/directives/StepNode.tsx +++ b/makima/frontend/src/components/directives/StepNode.tsx @@ -46,6 +46,14 @@ export function StepNode({ step, onComplete, onFail, onSkip }: StepNodeProps) { {step.description}

)} + {step.taskId && ( + + {step.status === "running" ? "Auto-executing..." : "View task"} + + )} {(step.status === "running" || step.status === "ready") && (
{onComplete && ( -- cgit v1.2.3