From 0d365fa613d0162beeff987f0ebf4f6ed4e65e03 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Sun, 8 Feb 2026 18:44:21 -0500 Subject: [PATCH] tui: add handoff mode to prompt history types --- packages/opencode/src/cli/cmd/tui/component/prompt/history.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/opencode/src/cli/cmd/tui/component/prompt/history.tsx b/packages/opencode/src/cli/cmd/tui/component/prompt/history.tsx index e90503e9f5..2a1ed8b382 100644 --- a/packages/opencode/src/cli/cmd/tui/component/prompt/history.tsx +++ b/packages/opencode/src/cli/cmd/tui/component/prompt/history.tsx @@ -9,7 +9,7 @@ import type { AgentPart, FilePart, TextPart } from "@opencode-ai/sdk/v2" export type PromptInfo = { input: string - mode?: "normal" | "shell" + mode?: "normal" | "shell" | "handoff" parts: ( | Omit | Omit