@oh-my-pi/pi-coding-agent 4.1.0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -0
- package/README.md +2 -1
- package/docs/sdk.md +0 -3
- package/package.json +6 -5
- package/src/config.ts +9 -0
- package/src/core/agent-storage.ts +450 -0
- package/src/core/auth-storage.ts +102 -183
- package/src/core/compaction/branch-summarization.ts +5 -4
- package/src/core/compaction/compaction.ts +7 -6
- package/src/core/compaction/utils.ts +6 -11
- package/src/core/custom-commands/bundled/review/index.ts +22 -94
- package/src/core/custom-share.ts +66 -0
- package/src/core/history-storage.ts +15 -7
- package/src/core/prompt-templates.ts +271 -1
- package/src/core/sdk.ts +14 -3
- package/src/core/settings-manager.ts +100 -34
- package/src/core/slash-commands.ts +4 -1
- package/src/core/storage-migration.ts +215 -0
- package/src/core/system-prompt.ts +87 -289
- package/src/core/title-generator.ts +3 -2
- package/src/core/tools/ask.ts +2 -2
- package/src/core/tools/bash.ts +2 -1
- package/src/core/tools/calculator.ts +2 -1
- package/src/core/tools/edit.ts +2 -1
- package/src/core/tools/find.ts +2 -1
- package/src/core/tools/gemini-image.ts +2 -1
- package/src/core/tools/git.ts +2 -2
- package/src/core/tools/grep.ts +2 -1
- package/src/core/tools/index.test.ts +0 -28
- package/src/core/tools/index.ts +0 -6
- package/src/core/tools/lsp/index.ts +2 -1
- package/src/core/tools/output.ts +2 -1
- package/src/core/tools/read.ts +4 -1
- package/src/core/tools/ssh.ts +4 -2
- package/src/core/tools/task/agents.ts +56 -30
- package/src/core/tools/task/commands.ts +9 -8
- package/src/core/tools/task/index.ts +7 -15
- package/src/core/tools/web-fetch.ts +2 -1
- package/src/core/tools/web-search/auth.ts +106 -16
- package/src/core/tools/web-search/index.ts +3 -2
- package/src/core/tools/web-search/providers/anthropic.ts +44 -6
- package/src/core/tools/write.ts +2 -1
- package/src/core/voice.ts +3 -1
- package/src/main.ts +1 -1
- package/src/migrations.ts +20 -20
- package/src/modes/interactive/controllers/command-controller.ts +527 -0
- package/src/modes/interactive/controllers/event-controller.ts +340 -0
- package/src/modes/interactive/controllers/extension-ui-controller.ts +600 -0
- package/src/modes/interactive/controllers/input-controller.ts +585 -0
- package/src/modes/interactive/controllers/selector-controller.ts +585 -0
- package/src/modes/interactive/interactive-mode.ts +364 -3143
- package/src/modes/interactive/theme/theme.ts +5 -5
- package/src/modes/interactive/types.ts +189 -0
- package/src/modes/interactive/utils/ui-helpers.ts +449 -0
- package/src/modes/interactive/utils/voice-manager.ts +96 -0
- package/src/prompts/{explore.md → agents/explore.md} +7 -5
- package/src/prompts/agents/frontmatter.md +7 -0
- package/src/prompts/{plan.md → agents/plan.md} +3 -3
- package/src/prompts/{task.md → agents/task.md} +1 -1
- package/src/prompts/review-request.md +44 -8
- package/src/prompts/system/custom-system-prompt.md +80 -0
- package/src/prompts/system/file-operations.md +12 -0
- package/src/prompts/system/system-prompt.md +232 -0
- package/src/prompts/system/title-system.md +2 -0
- package/src/prompts/tools/bash.md +1 -1
- package/src/prompts/tools/read.md +1 -1
- package/src/prompts/tools/task.md +9 -3
- package/src/core/tools/rulebook.ts +0 -132
- package/src/prompts/system-prompt.md +0 -43
- package/src/prompts/title-system.md +0 -8
- /package/src/prompts/{architect-plan.md → agents/architect-plan.md} +0 -0
- /package/src/prompts/{implement-with-critic.md → agents/implement-with-critic.md} +0 -0
- /package/src/prompts/{implement.md → agents/implement.md} +0 -0
- /package/src/prompts/{init.md → agents/init.md} +0 -0
- /package/src/prompts/{reviewer.md → agents/reviewer.md} +0 -0
- /package/src/prompts/{branch-summary-preamble.md → compaction/branch-summary-preamble.md} +0 -0
- /package/src/prompts/{branch-summary.md → compaction/branch-summary.md} +0 -0
- /package/src/prompts/{compaction-summary.md → compaction/compaction-summary.md} +0 -0
- /package/src/prompts/{compaction-turn-prefix.md → compaction/compaction-turn-prefix.md} +0 -0
- /package/src/prompts/{compaction-update-summary.md → compaction/compaction-update-summary.md} +0 -0
- /package/src/prompts/{summarization-system.md → system/summarization-system.md} +0 -0
|
@@ -3,84 +3,51 @@
|
|
|
3
3
|
* Handles TUI rendering and user interaction, delegating business logic to AgentSession.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import * as fs from "node:fs";
|
|
7
|
-
import * as os from "node:os";
|
|
8
6
|
import * as path from "node:path";
|
|
9
|
-
import type { AgentMessage
|
|
10
|
-
import type { AssistantMessage, ImageContent, Message
|
|
11
|
-
import type { SlashCommand } from "@oh-my-pi/pi-tui";
|
|
7
|
+
import type { AgentMessage } from "@oh-my-pi/pi-agent-core";
|
|
8
|
+
import type { AssistantMessage, ImageContent, Message } from "@oh-my-pi/pi-ai";
|
|
9
|
+
import type { Component, Loader, SlashCommand } from "@oh-my-pi/pi-tui";
|
|
12
10
|
import {
|
|
13
11
|
CombinedAutocompleteProvider,
|
|
14
|
-
type Component,
|
|
15
12
|
Container,
|
|
16
|
-
Input,
|
|
17
|
-
Loader,
|
|
18
13
|
Markdown,
|
|
19
14
|
ProcessTerminal,
|
|
20
15
|
Spacer,
|
|
21
16
|
Text,
|
|
22
|
-
TruncatedText,
|
|
23
17
|
TUI,
|
|
24
|
-
visibleWidth,
|
|
25
18
|
} from "@oh-my-pi/pi-tui";
|
|
26
|
-
import { nanoid } from "nanoid";
|
|
27
|
-
import { getAuthPath, getDebugLogPath } from "../../config";
|
|
28
19
|
import type { AgentSession, AgentSessionEvent } from "../../core/agent-session";
|
|
29
20
|
import type { ExtensionUIContext } from "../../core/extensions/index";
|
|
30
21
|
import { HistoryStorage } from "../../core/history-storage";
|
|
31
|
-
import { KeybindingsManager } from "../../core/keybindings";
|
|
22
|
+
import type { KeybindingsManager } from "../../core/keybindings";
|
|
32
23
|
import { logger } from "../../core/logger";
|
|
33
|
-
import {
|
|
34
|
-
import { getRecentSessions
|
|
24
|
+
import type { SessionContext, SessionManager } from "../../core/session-manager";
|
|
25
|
+
import { getRecentSessions } from "../../core/session-manager";
|
|
26
|
+
import type { SettingsManager } from "../../core/settings-manager";
|
|
35
27
|
import { loadSlashCommands } from "../../core/slash-commands";
|
|
36
|
-
import {
|
|
37
|
-
import { generateSessionTitle, setTerminalTitle } from "../../core/title-generator";
|
|
38
|
-
import { setPreferredImageProvider, setPreferredWebSearchProvider } from "../../core/tools/index";
|
|
39
|
-
import type { TruncationResult } from "../../core/tools/truncate";
|
|
28
|
+
import { setTerminalTitle } from "../../core/title-generator";
|
|
40
29
|
import { VoiceSupervisor } from "../../core/voice-supervisor";
|
|
41
|
-
import { disableProvider, enableProvider } from "../../discovery";
|
|
42
|
-
import { getChangelogPath, parseChangelog } from "../../utils/changelog";
|
|
43
|
-
import { copyToClipboard, readImageFromClipboard } from "../../utils/clipboard";
|
|
44
|
-
import { resizeImage } from "../../utils/image-resize";
|
|
45
30
|
import { registerAsyncCleanup } from "../cleanup";
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import { BashExecutionComponent } from "./components/bash-execution";
|
|
49
|
-
import { BorderedLoader } from "./components/bordered-loader";
|
|
50
|
-
import { BranchSummaryMessageComponent } from "./components/branch-summary-message";
|
|
51
|
-
import { CompactionSummaryMessageComponent } from "./components/compaction-summary-message";
|
|
31
|
+
import type { AssistantMessageComponent } from "./components/assistant-message";
|
|
32
|
+
import type { BashExecutionComponent } from "./components/bash-execution";
|
|
52
33
|
import { CustomEditor } from "./components/custom-editor";
|
|
53
|
-
import { CustomMessageComponent } from "./components/custom-message";
|
|
54
34
|
import { DynamicBorder } from "./components/dynamic-border";
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import { HookInputComponent } from "./components/hook-input";
|
|
59
|
-
import { HookSelectorComponent } from "./components/hook-selector";
|
|
60
|
-
import { ModelSelectorComponent } from "./components/model-selector";
|
|
61
|
-
import { OAuthSelectorComponent } from "./components/oauth-selector";
|
|
62
|
-
import { SessionSelectorComponent } from "./components/session-selector";
|
|
63
|
-
import { SettingsSelectorComponent } from "./components/settings-selector";
|
|
35
|
+
import type { HookEditorComponent } from "./components/hook-editor";
|
|
36
|
+
import type { HookInputComponent } from "./components/hook-input";
|
|
37
|
+
import type { HookSelectorComponent } from "./components/hook-selector";
|
|
64
38
|
import { StatusLineComponent } from "./components/status-line";
|
|
65
|
-
import { ToolExecutionComponent } from "./components/tool-execution";
|
|
66
|
-
import { TreeSelectorComponent } from "./components/tree-selector";
|
|
67
|
-
import { TtsrNotificationComponent } from "./components/ttsr-notification";
|
|
68
|
-
import { UserMessageComponent } from "./components/user-message";
|
|
69
|
-
import { UserMessageSelectorComponent } from "./components/user-message-selector";
|
|
39
|
+
import type { ToolExecutionComponent } from "./components/tool-execution";
|
|
70
40
|
import { WelcomeComponent } from "./components/welcome";
|
|
71
|
-
import {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
type Theme,
|
|
82
|
-
theme,
|
|
83
|
-
} from "./theme/theme";
|
|
41
|
+
import { CommandController } from "./controllers/command-controller";
|
|
42
|
+
import { EventController } from "./controllers/event-controller";
|
|
43
|
+
import { ExtensionUiController } from "./controllers/extension-ui-controller";
|
|
44
|
+
import { InputController } from "./controllers/input-controller";
|
|
45
|
+
import { SelectorController } from "./controllers/selector-controller";
|
|
46
|
+
import type { Theme } from "./theme/theme";
|
|
47
|
+
import { getEditorTheme, getMarkdownTheme, onThemeChange, theme } from "./theme/theme";
|
|
48
|
+
import type { CompactionQueuedMessage, InteractiveModeContext } from "./types";
|
|
49
|
+
import { UiHelpers } from "./utils/ui-helpers";
|
|
50
|
+
import { VoiceManager } from "./utils/voice-manager";
|
|
84
51
|
|
|
85
52
|
/** Options for creating an InteractiveMode instance (for future API use) */
|
|
86
53
|
export interface InteractiveModeOptions {
|
|
@@ -96,132 +63,86 @@ export interface InteractiveModeOptions {
|
|
|
96
63
|
initialMessages?: string[];
|
|
97
64
|
}
|
|
98
65
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
66
|
+
export class InteractiveMode implements InteractiveModeContext {
|
|
67
|
+
public session: AgentSession;
|
|
68
|
+
public sessionManager: SessionManager;
|
|
69
|
+
public settingsManager: SettingsManager;
|
|
70
|
+
public agent: AgentSession["agent"];
|
|
71
|
+
public voiceSupervisor: VoiceSupervisor;
|
|
72
|
+
public historyStorage?: HistoryStorage;
|
|
73
|
+
|
|
74
|
+
public ui: TUI;
|
|
75
|
+
public chatContainer: Container;
|
|
76
|
+
public pendingMessagesContainer: Container;
|
|
77
|
+
public statusContainer: Container;
|
|
78
|
+
public editor: CustomEditor;
|
|
79
|
+
public editorContainer: Container;
|
|
80
|
+
public statusLine: StatusLineComponent;
|
|
81
|
+
|
|
82
|
+
public isInitialized = false;
|
|
83
|
+
public isBackgrounded = false;
|
|
84
|
+
public isBashMode = false;
|
|
85
|
+
public toolOutputExpanded = false;
|
|
86
|
+
public hideThinkingBlock = false;
|
|
87
|
+
public pendingImages: ImageContent[] = [];
|
|
88
|
+
public compactionQueuedMessages: CompactionQueuedMessage[] = [];
|
|
89
|
+
public pendingTools = new Map<string, ToolExecutionComponent>();
|
|
90
|
+
public pendingBashComponents: BashExecutionComponent[] = [];
|
|
91
|
+
public bashComponent: BashExecutionComponent | undefined = undefined;
|
|
92
|
+
public streamingComponent: AssistantMessageComponent | undefined = undefined;
|
|
93
|
+
public streamingMessage: AssistantMessage | undefined = undefined;
|
|
94
|
+
public loadingAnimation: Loader | undefined = undefined;
|
|
95
|
+
public autoCompactionLoader: Loader | undefined = undefined;
|
|
96
|
+
public retryLoader: Loader | undefined = undefined;
|
|
97
|
+
public autoCompactionEscapeHandler?: () => void;
|
|
98
|
+
public retryEscapeHandler?: () => void;
|
|
99
|
+
public unsubscribe?: () => void;
|
|
100
|
+
public onInputCallback?: (input: { text: string; images?: ImageContent[] }) => void;
|
|
101
|
+
public lastSigintTime = 0;
|
|
102
|
+
public lastEscapeTime = 0;
|
|
103
|
+
public lastVoiceInterruptAt = 0;
|
|
104
|
+
public voiceAutoModeEnabled = false;
|
|
105
|
+
public voiceProgressTimer: ReturnType<typeof setTimeout> | undefined = undefined;
|
|
106
|
+
public voiceProgressSpoken = false;
|
|
107
|
+
public voiceProgressLastLength = 0;
|
|
108
|
+
public hookSelector: HookSelectorComponent | undefined = undefined;
|
|
109
|
+
public hookInput: HookInputComponent | undefined = undefined;
|
|
110
|
+
public hookEditor: HookEditorComponent | undefined = undefined;
|
|
111
|
+
public lastStatusSpacer: Spacer | undefined = undefined;
|
|
112
|
+
public lastStatusText: Text | undefined = undefined;
|
|
113
|
+
public fileSlashCommands: Set<string> = new Set();
|
|
107
114
|
|
|
108
|
-
type CompactionQueuedMessage = {
|
|
109
|
-
text: string;
|
|
110
|
-
mode: "steer" | "followUp";
|
|
111
|
-
};
|
|
112
|
-
|
|
113
|
-
const VOICE_PROGRESS_DELAY_MS = 15000;
|
|
114
|
-
const VOICE_PROGRESS_MIN_CHARS = 160;
|
|
115
|
-
const VOICE_PROGRESS_DELTA_CHARS = 120;
|
|
116
|
-
|
|
117
|
-
export class InteractiveMode {
|
|
118
|
-
private session: AgentSession;
|
|
119
|
-
private ui: TUI;
|
|
120
|
-
private chatContainer: Container;
|
|
121
|
-
private pendingMessagesContainer: Container;
|
|
122
|
-
private statusContainer: Container;
|
|
123
|
-
private editor: CustomEditor;
|
|
124
|
-
private editorContainer: Container;
|
|
125
|
-
private statusLine: StatusLineComponent;
|
|
126
|
-
private version: string;
|
|
127
|
-
private isInitialized = false;
|
|
128
|
-
private onInputCallback?: (input: { text: string; images?: ImageContent[] }) => void;
|
|
129
|
-
private loadingAnimation: Loader | undefined = undefined;
|
|
130
|
-
|
|
131
|
-
private lastSigintTime = 0;
|
|
132
|
-
private lastEscapeTime = 0;
|
|
133
|
-
private changelogMarkdown: string | undefined = undefined;
|
|
134
|
-
|
|
135
|
-
// Status line tracking (for mutating immediately-sequential status updates)
|
|
136
|
-
private lastStatusSpacer: Spacer | undefined = undefined;
|
|
137
|
-
private lastStatusText: Text | undefined = undefined;
|
|
138
|
-
|
|
139
|
-
// Streaming message tracking
|
|
140
|
-
private streamingComponent: AssistantMessageComponent | undefined = undefined;
|
|
141
|
-
private streamingMessage: AssistantMessage | undefined = undefined;
|
|
142
|
-
|
|
143
|
-
// Tool execution tracking: toolCallId -> component
|
|
144
|
-
private pendingTools = new Map<string, ToolExecutionComponent>();
|
|
145
|
-
|
|
146
|
-
// Tool output expansion state
|
|
147
|
-
private toolOutputExpanded = false;
|
|
148
|
-
|
|
149
|
-
// Thinking block visibility state
|
|
150
|
-
private hideThinkingBlock = false;
|
|
151
|
-
|
|
152
|
-
// Background mode flag (no UI, no interactive prompts)
|
|
153
|
-
private isBackgrounded = false;
|
|
154
|
-
|
|
155
|
-
// Agent subscription unsubscribe function
|
|
156
|
-
private unsubscribe?: () => void;
|
|
157
|
-
|
|
158
|
-
// Signal cleanup unsubscribe function (for SIGINT/SIGTERM flush)
|
|
159
115
|
private cleanupUnsubscribe?: () => void;
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
private
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
private
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
private
|
|
172
|
-
|
|
173
|
-
// Slash commands loaded from files (for compaction queue handling)
|
|
174
|
-
private fileSlashCommands = new Set<string>();
|
|
175
|
-
|
|
176
|
-
private historyStorage?: HistoryStorage;
|
|
177
|
-
|
|
178
|
-
// Voice mode state
|
|
179
|
-
private voiceSupervisor: VoiceSupervisor;
|
|
180
|
-
private voiceAutoModeEnabled = false;
|
|
181
|
-
private voiceProgressTimer: ReturnType<typeof setTimeout> | undefined = undefined;
|
|
182
|
-
private voiceProgressSpoken = false;
|
|
183
|
-
private voiceProgressLastLength = 0;
|
|
184
|
-
private lastVoiceInterruptAt = 0;
|
|
185
|
-
|
|
186
|
-
// Auto-compaction state
|
|
187
|
-
private autoCompactionLoader: Loader | undefined = undefined;
|
|
188
|
-
private autoCompactionEscapeHandler?: () => void;
|
|
189
|
-
|
|
190
|
-
// Messages queued while compaction is running
|
|
191
|
-
private compactionQueuedMessages: CompactionQueuedMessage[] = [];
|
|
192
|
-
|
|
193
|
-
// Auto-retry state
|
|
194
|
-
private retryLoader: Loader | undefined = undefined;
|
|
195
|
-
private retryEscapeHandler?: () => void;
|
|
196
|
-
|
|
197
|
-
// Hook UI state
|
|
198
|
-
private hookSelector: HookSelectorComponent | undefined = undefined;
|
|
199
|
-
private hookInput: HookInputComponent | undefined = undefined;
|
|
200
|
-
private hookEditor: HookEditorComponent | undefined = undefined;
|
|
201
|
-
|
|
202
|
-
// Convenience accessors
|
|
203
|
-
private get agent() {
|
|
204
|
-
return this.session.agent;
|
|
205
|
-
}
|
|
206
|
-
private get sessionManager() {
|
|
207
|
-
return this.session.sessionManager;
|
|
208
|
-
}
|
|
209
|
-
private get settingsManager() {
|
|
210
|
-
return this.session.settingsManager;
|
|
211
|
-
}
|
|
116
|
+
private readonly version: string;
|
|
117
|
+
private readonly changelogMarkdown: string | undefined;
|
|
118
|
+
private readonly lspServers: Array<{ name: string; status: "ready" | "error"; fileTypes: string[] }> | undefined =
|
|
119
|
+
undefined;
|
|
120
|
+
private readonly toolUiContextSetter: (uiContext: ExtensionUIContext, hasUI: boolean) => void;
|
|
121
|
+
|
|
122
|
+
private readonly commandController: CommandController;
|
|
123
|
+
private readonly eventController: EventController;
|
|
124
|
+
private readonly extensionUiController: ExtensionUiController;
|
|
125
|
+
private readonly inputController: InputController;
|
|
126
|
+
private readonly selectorController: SelectorController;
|
|
127
|
+
private readonly uiHelpers: UiHelpers;
|
|
128
|
+
private readonly voiceManager: VoiceManager;
|
|
212
129
|
|
|
213
130
|
constructor(
|
|
214
131
|
session: AgentSession,
|
|
215
132
|
version: string,
|
|
216
133
|
changelogMarkdown: string | undefined = undefined,
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
| Array<{ name: string; status: "ready" | "error"; fileTypes: string[] }>
|
|
220
|
-
| undefined = undefined,
|
|
134
|
+
setToolUIContext: (uiContext: ExtensionUIContext, hasUI: boolean) => void = () => {},
|
|
135
|
+
lspServers: Array<{ name: string; status: "ready" | "error"; fileTypes: string[] }> | undefined = undefined,
|
|
221
136
|
) {
|
|
222
137
|
this.session = session;
|
|
138
|
+
this.sessionManager = session.sessionManager;
|
|
139
|
+
this.settingsManager = session.settingsManager;
|
|
140
|
+
this.agent = session.agent;
|
|
223
141
|
this.version = version;
|
|
224
142
|
this.changelogMarkdown = changelogMarkdown;
|
|
143
|
+
this.toolUiContextSetter = setToolUIContext;
|
|
144
|
+
this.lspServers = lspServers;
|
|
145
|
+
|
|
225
146
|
this.ui = new TUI(new ProcessTerminal());
|
|
226
147
|
this.chatContainer = new Container();
|
|
227
148
|
this.pendingMessagesContainer = new Container();
|
|
@@ -259,11 +180,14 @@ export class InteractiveMode {
|
|
|
259
180
|
},
|
|
260
181
|
});
|
|
261
182
|
|
|
183
|
+
this.hideThinkingBlock = this.settingsManager.getHideThinkingBlock();
|
|
184
|
+
|
|
262
185
|
// Define slash commands for autocomplete
|
|
263
186
|
const slashCommands: SlashCommand[] = [
|
|
264
187
|
{ name: "settings", description: "Open settings menu" },
|
|
265
188
|
{ name: "model", description: "Select model (opens selector UI)" },
|
|
266
|
-
{ name: "export", description: "Export session to HTML file
|
|
189
|
+
{ name: "export", description: "Export session to HTML file" },
|
|
190
|
+
{ name: "dump", description: "Copy session transcript to clipboard" },
|
|
267
191
|
{ name: "share", description: "Share session as a secret GitHub gist" },
|
|
268
192
|
{ name: "copy", description: "Copy last agent message to clipboard" },
|
|
269
193
|
{ name: "session", description: "Show session info and stats" },
|
|
@@ -283,9 +207,6 @@ export class InteractiveMode {
|
|
|
283
207
|
{ name: "exit", description: "Exit the application" },
|
|
284
208
|
];
|
|
285
209
|
|
|
286
|
-
// Load hide thinking block setting
|
|
287
|
-
this.hideThinkingBlock = this.settingsManager.getHideThinkingBlock();
|
|
288
|
-
|
|
289
210
|
// Load and convert file commands to SlashCommand format
|
|
290
211
|
const fileCommands = loadSlashCommands({ cwd: process.cwd() });
|
|
291
212
|
this.fileSlashCommands = new Set(fileCommands.map((cmd) => cmd.name));
|
|
@@ -312,6 +233,14 @@ export class InteractiveMode {
|
|
|
312
233
|
process.cwd(),
|
|
313
234
|
);
|
|
314
235
|
this.editor.setAutocompleteProvider(autocompleteProvider);
|
|
236
|
+
|
|
237
|
+
this.uiHelpers = new UiHelpers(this);
|
|
238
|
+
this.voiceManager = new VoiceManager(this);
|
|
239
|
+
this.extensionUiController = new ExtensionUiController(this);
|
|
240
|
+
this.eventController = new EventController(this);
|
|
241
|
+
this.commandController = new CommandController(this);
|
|
242
|
+
this.selectorController = new SelectorController(this);
|
|
243
|
+
this.inputController = new InputController(this);
|
|
315
244
|
}
|
|
316
245
|
|
|
317
246
|
async init(): Promise<void> {
|
|
@@ -377,8 +306,8 @@ export class InteractiveMode {
|
|
|
377
306
|
this.ui.addChild(this.statusLine); // Only renders hook statuses (main status in editor border)
|
|
378
307
|
this.ui.setFocus(this.editor);
|
|
379
308
|
|
|
380
|
-
this.setupKeyHandlers();
|
|
381
|
-
this.setupEditorSubmitHandler();
|
|
309
|
+
this.inputController.setupKeyHandlers();
|
|
310
|
+
this.inputController.setupEditorSubmitHandler();
|
|
382
311
|
|
|
383
312
|
// Start the UI
|
|
384
313
|
this.ui.start();
|
|
@@ -411,3104 +340,396 @@ export class InteractiveMode {
|
|
|
411
340
|
this.updateEditorTopBorder();
|
|
412
341
|
}
|
|
413
342
|
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
*/
|
|
421
|
-
private async initHooksAndCustomTools(): Promise<void> {
|
|
422
|
-
// Create and set hook & tool UI context
|
|
423
|
-
const uiContext: ExtensionUIContext = {
|
|
424
|
-
select: (title, options, _dialogOptions) => this.showHookSelector(title, options),
|
|
425
|
-
confirm: (title, message, _dialogOptions) => this.showHookConfirm(title, message),
|
|
426
|
-
input: (title, placeholder, _dialogOptions) => this.showHookInput(title, placeholder),
|
|
427
|
-
notify: (message, type) => this.showHookNotify(message, type),
|
|
428
|
-
setStatus: (key, text) => this.setHookStatus(key, text),
|
|
429
|
-
setWidget: (key, content) => this.setHookWidget(key, content),
|
|
430
|
-
setTitle: (title) => setTerminalTitle(title),
|
|
431
|
-
custom: (factory, _options) => this.showHookCustom(factory),
|
|
432
|
-
setEditorText: (text) => this.editor.setText(text),
|
|
433
|
-
getEditorText: () => this.editor.getText(),
|
|
434
|
-
editor: (title, prefill) => this.showHookEditor(title, prefill),
|
|
435
|
-
get theme() {
|
|
436
|
-
return theme;
|
|
437
|
-
},
|
|
438
|
-
getAllThemes: () => getAvailableThemesWithPaths().map((t) => ({ name: t.name, path: t.path })),
|
|
439
|
-
getTheme: (name) => getThemeByName(name),
|
|
440
|
-
setTheme: (themeArg) => {
|
|
441
|
-
if (typeof themeArg === "string") {
|
|
442
|
-
return setTheme(themeArg, true);
|
|
443
|
-
}
|
|
444
|
-
// Theme object passed directly - not supported in current implementation
|
|
445
|
-
return { success: false, error: "Direct theme object not supported" };
|
|
446
|
-
},
|
|
447
|
-
setFooter: () => {},
|
|
448
|
-
setHeader: () => {},
|
|
449
|
-
setEditorComponent: () => {},
|
|
450
|
-
};
|
|
451
|
-
this.setToolUIContext(uiContext, true);
|
|
452
|
-
|
|
453
|
-
const extensionRunner = this.session.extensionRunner;
|
|
454
|
-
if (!extensionRunner) {
|
|
455
|
-
return; // No hooks loaded
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
extensionRunner.initialize(
|
|
459
|
-
// ExtensionActions - for pi.* API
|
|
460
|
-
{
|
|
461
|
-
sendMessage: (message, options) => {
|
|
462
|
-
const wasStreaming = this.session.isStreaming;
|
|
463
|
-
this.session
|
|
464
|
-
.sendCustomMessage(message, options)
|
|
465
|
-
.then(() => {
|
|
466
|
-
// For non-streaming cases with display=true, update UI
|
|
467
|
-
// (streaming cases update via message_end event)
|
|
468
|
-
if (!this.isBackgrounded && !wasStreaming && message.display) {
|
|
469
|
-
this.rebuildChatFromMessages();
|
|
470
|
-
}
|
|
471
|
-
})
|
|
472
|
-
.catch((err) => {
|
|
473
|
-
this.showError(
|
|
474
|
-
`Extension sendMessage failed: ${err instanceof Error ? err.message : String(err)}`,
|
|
475
|
-
);
|
|
476
|
-
});
|
|
477
|
-
},
|
|
478
|
-
sendUserMessage: (content, options) => {
|
|
479
|
-
this.session.sendUserMessage(content, options).catch((err) => {
|
|
480
|
-
this.showError(
|
|
481
|
-
`Extension sendUserMessage failed: ${err instanceof Error ? err.message : String(err)}`,
|
|
482
|
-
);
|
|
483
|
-
});
|
|
484
|
-
},
|
|
485
|
-
appendEntry: (customType, data) => {
|
|
486
|
-
this.sessionManager.appendCustomEntry(customType, data);
|
|
487
|
-
},
|
|
488
|
-
getActiveTools: () => this.session.getActiveToolNames(),
|
|
489
|
-
getAllTools: () => this.session.getAllToolNames(),
|
|
490
|
-
setActiveTools: (toolNames) => this.session.setActiveToolsByName(toolNames),
|
|
491
|
-
setModel: async (model) => {
|
|
492
|
-
const key = await this.session.modelRegistry.getApiKey(model);
|
|
493
|
-
if (!key) return false;
|
|
494
|
-
await this.session.setModel(model);
|
|
495
|
-
return true;
|
|
496
|
-
},
|
|
497
|
-
getThinkingLevel: () => this.session.thinkingLevel,
|
|
498
|
-
setThinkingLevel: (level) => this.session.setThinkingLevel(level),
|
|
499
|
-
},
|
|
500
|
-
// ExtensionContextActions - for ctx.* in event handlers
|
|
501
|
-
{
|
|
502
|
-
getModel: () => this.session.model,
|
|
503
|
-
isIdle: () => !this.session.isStreaming,
|
|
504
|
-
abort: () => this.session.abort(),
|
|
505
|
-
hasPendingMessages: () => this.session.queuedMessageCount > 0,
|
|
506
|
-
shutdown: () => {
|
|
507
|
-
// Signal shutdown request (will be handled by main loop)
|
|
508
|
-
},
|
|
509
|
-
},
|
|
510
|
-
// ExtensionCommandContextActions - for ctx.* in command handlers
|
|
511
|
-
{
|
|
512
|
-
waitForIdle: () => this.session.agent.waitForIdle(),
|
|
513
|
-
newSession: async (options) => {
|
|
514
|
-
// Stop any loading animation
|
|
515
|
-
if (this.loadingAnimation) {
|
|
516
|
-
this.loadingAnimation.stop();
|
|
517
|
-
this.loadingAnimation = undefined;
|
|
518
|
-
}
|
|
519
|
-
this.statusContainer.clear();
|
|
520
|
-
|
|
521
|
-
// Create new session
|
|
522
|
-
const success = await this.session.newSession({ parentSession: options?.parentSession });
|
|
523
|
-
if (!success) {
|
|
524
|
-
return { cancelled: true };
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
// Call setup callback if provided
|
|
528
|
-
if (options?.setup) {
|
|
529
|
-
await options.setup(this.sessionManager);
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
// Clear UI state
|
|
533
|
-
this.chatContainer.clear();
|
|
534
|
-
this.pendingMessagesContainer.clear();
|
|
535
|
-
this.compactionQueuedMessages = [];
|
|
536
|
-
this.streamingComponent = undefined;
|
|
537
|
-
this.streamingMessage = undefined;
|
|
538
|
-
this.pendingTools.clear();
|
|
539
|
-
|
|
540
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
541
|
-
this.chatContainer.addChild(
|
|
542
|
-
new Text(`${theme.fg("accent", `${theme.status.success} New session started`)}`, 1, 1),
|
|
543
|
-
);
|
|
544
|
-
this.ui.requestRender();
|
|
545
|
-
|
|
546
|
-
return { cancelled: false };
|
|
547
|
-
},
|
|
548
|
-
branch: async (entryId) => {
|
|
549
|
-
const result = await this.session.branch(entryId);
|
|
550
|
-
if (result.cancelled) {
|
|
551
|
-
return { cancelled: true };
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
// Update UI
|
|
555
|
-
this.chatContainer.clear();
|
|
556
|
-
this.renderInitialMessages();
|
|
557
|
-
this.editor.setText(result.selectedText);
|
|
558
|
-
this.showStatus("Branched to new session");
|
|
559
|
-
|
|
560
|
-
return { cancelled: false };
|
|
561
|
-
},
|
|
562
|
-
navigateTree: async (targetId, options) => {
|
|
563
|
-
const result = await this.session.navigateTree(targetId, { summarize: options?.summarize });
|
|
564
|
-
if (result.cancelled) {
|
|
565
|
-
return { cancelled: true };
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
// Update UI
|
|
569
|
-
this.chatContainer.clear();
|
|
570
|
-
this.renderInitialMessages();
|
|
571
|
-
if (result.editorText) {
|
|
572
|
-
this.editor.setText(result.editorText);
|
|
573
|
-
}
|
|
574
|
-
this.showStatus("Navigated to selected point");
|
|
575
|
-
|
|
576
|
-
return { cancelled: false };
|
|
577
|
-
},
|
|
578
|
-
},
|
|
579
|
-
// ExtensionUIContext
|
|
580
|
-
uiContext,
|
|
581
|
-
);
|
|
582
|
-
|
|
583
|
-
// Subscribe to extension errors
|
|
584
|
-
extensionRunner.onError((error) => {
|
|
585
|
-
this.showExtensionError(error.extensionPath, error.error);
|
|
586
|
-
});
|
|
587
|
-
|
|
588
|
-
// Emit session_start event
|
|
589
|
-
await extensionRunner.emit({
|
|
590
|
-
type: "session_start",
|
|
343
|
+
async getUserInput(): Promise<{ text: string; images?: ImageContent[] }> {
|
|
344
|
+
return new Promise((resolve) => {
|
|
345
|
+
this.onInputCallback = (input) => {
|
|
346
|
+
this.onInputCallback = undefined;
|
|
347
|
+
resolve(input);
|
|
348
|
+
};
|
|
591
349
|
});
|
|
592
350
|
}
|
|
593
351
|
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
352
|
+
updateEditorBorderColor(): void {
|
|
353
|
+
if (this.isBashMode) {
|
|
354
|
+
this.editor.borderColor = theme.getBashModeBorderColor();
|
|
355
|
+
} else {
|
|
356
|
+
const level = this.session.thinkingLevel || "off";
|
|
357
|
+
this.editor.borderColor = theme.getThinkingBorderColor(level);
|
|
358
|
+
}
|
|
359
|
+
this.updateEditorTopBorder();
|
|
599
360
|
this.ui.requestRender();
|
|
600
361
|
}
|
|
601
362
|
|
|
602
|
-
|
|
603
|
-
const
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
363
|
+
updateEditorTopBorder(): void {
|
|
364
|
+
const width = this.ui.getWidth();
|
|
365
|
+
const topBorder = this.statusLine.getTopBorder(width);
|
|
366
|
+
this.editor.setTopBorder(topBorder);
|
|
367
|
+
}
|
|
607
368
|
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
const wasStreaming = this.session.isStreaming;
|
|
613
|
-
this.session
|
|
614
|
-
.sendCustomMessage(message, options)
|
|
615
|
-
.then(() => {
|
|
616
|
-
// For non-streaming cases with display=true, update UI
|
|
617
|
-
// (streaming cases update via message_end event)
|
|
618
|
-
if (!this.isBackgrounded && !wasStreaming && message.display) {
|
|
619
|
-
this.rebuildChatFromMessages();
|
|
620
|
-
}
|
|
621
|
-
})
|
|
622
|
-
.catch((err: Error) => {
|
|
623
|
-
const errorText = `Extension sendMessage failed: ${err instanceof Error ? err.message : String(err)}`;
|
|
624
|
-
if (this.isBackgrounded) {
|
|
625
|
-
console.error(errorText);
|
|
626
|
-
return;
|
|
627
|
-
}
|
|
628
|
-
this.showError(errorText);
|
|
629
|
-
});
|
|
630
|
-
},
|
|
631
|
-
sendUserMessage: (content, options) => {
|
|
632
|
-
this.session.sendUserMessage(content, options).catch((err) => {
|
|
633
|
-
this.showError(
|
|
634
|
-
`Extension sendUserMessage failed: ${err instanceof Error ? err.message : String(err)}`,
|
|
635
|
-
);
|
|
636
|
-
});
|
|
637
|
-
},
|
|
638
|
-
appendEntry: (customType, data) => {
|
|
639
|
-
this.sessionManager.appendCustomEntry(customType, data);
|
|
640
|
-
},
|
|
641
|
-
getActiveTools: () => this.session.getActiveToolNames(),
|
|
642
|
-
getAllTools: () => this.session.getAllToolNames(),
|
|
643
|
-
setActiveTools: (toolNames: string[]) => this.session.setActiveToolsByName(toolNames),
|
|
644
|
-
setModel: async (model) => {
|
|
645
|
-
const key = await this.session.modelRegistry.getApiKey(model);
|
|
646
|
-
if (!key) return false;
|
|
647
|
-
await this.session.setModel(model);
|
|
648
|
-
return true;
|
|
649
|
-
},
|
|
650
|
-
getThinkingLevel: () => this.session.thinkingLevel,
|
|
651
|
-
setThinkingLevel: (level) => this.session.setThinkingLevel(level),
|
|
652
|
-
},
|
|
653
|
-
// ExtensionContextActions - for ctx.* in event handlers
|
|
654
|
-
{
|
|
655
|
-
getModel: () => this.session.model,
|
|
656
|
-
isIdle: () => !this.session.isStreaming,
|
|
657
|
-
abort: () => this.session.abort(),
|
|
658
|
-
hasPendingMessages: () => this.session.queuedMessageCount > 0,
|
|
659
|
-
shutdown: () => {
|
|
660
|
-
// Signal shutdown request (will be handled by main loop)
|
|
661
|
-
},
|
|
662
|
-
},
|
|
663
|
-
// ExtensionCommandContextActions - for ctx.* in command handlers
|
|
664
|
-
{
|
|
665
|
-
waitForIdle: () => this.session.agent.waitForIdle(),
|
|
666
|
-
newSession: async (options) => {
|
|
667
|
-
if (this.isBackgrounded) {
|
|
668
|
-
return { cancelled: true };
|
|
669
|
-
}
|
|
670
|
-
// Stop any loading animation
|
|
671
|
-
if (this.loadingAnimation) {
|
|
672
|
-
this.loadingAnimation.stop();
|
|
673
|
-
this.loadingAnimation = undefined;
|
|
674
|
-
}
|
|
675
|
-
this.statusContainer.clear();
|
|
676
|
-
|
|
677
|
-
// Create new session
|
|
678
|
-
const success = await this.session.newSession({ parentSession: options?.parentSession });
|
|
679
|
-
if (!success) {
|
|
680
|
-
return { cancelled: true };
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
// Call setup callback if provided
|
|
684
|
-
if (options?.setup) {
|
|
685
|
-
await options.setup(this.sessionManager);
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
// Clear UI state
|
|
689
|
-
this.chatContainer.clear();
|
|
690
|
-
this.pendingMessagesContainer.clear();
|
|
691
|
-
this.compactionQueuedMessages = [];
|
|
692
|
-
this.streamingComponent = undefined;
|
|
693
|
-
this.streamingMessage = undefined;
|
|
694
|
-
this.pendingTools.clear();
|
|
695
|
-
|
|
696
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
697
|
-
this.chatContainer.addChild(
|
|
698
|
-
new Text(`${theme.fg("accent", `${theme.status.success} New session started`)}`, 1, 1),
|
|
699
|
-
);
|
|
700
|
-
this.ui.requestRender();
|
|
701
|
-
|
|
702
|
-
return { cancelled: false };
|
|
703
|
-
},
|
|
704
|
-
branch: async (entryId) => {
|
|
705
|
-
if (this.isBackgrounded) {
|
|
706
|
-
return { cancelled: true };
|
|
707
|
-
}
|
|
708
|
-
const result = await this.session.branch(entryId);
|
|
709
|
-
if (result.cancelled) {
|
|
710
|
-
return { cancelled: true };
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
// Update UI
|
|
714
|
-
this.chatContainer.clear();
|
|
715
|
-
this.renderInitialMessages();
|
|
716
|
-
this.editor.setText(result.selectedText);
|
|
717
|
-
this.showStatus("Branched to new session");
|
|
718
|
-
|
|
719
|
-
return { cancelled: false };
|
|
720
|
-
},
|
|
721
|
-
navigateTree: async (targetId, options) => {
|
|
722
|
-
if (this.isBackgrounded) {
|
|
723
|
-
return { cancelled: true };
|
|
724
|
-
}
|
|
725
|
-
const result = await this.session.navigateTree(targetId, { summarize: options?.summarize });
|
|
726
|
-
if (result.cancelled) {
|
|
727
|
-
return { cancelled: true };
|
|
728
|
-
}
|
|
729
|
-
|
|
730
|
-
// Update UI
|
|
731
|
-
this.chatContainer.clear();
|
|
732
|
-
this.renderInitialMessages();
|
|
733
|
-
if (result.editorText) {
|
|
734
|
-
this.editor.setText(result.editorText);
|
|
735
|
-
}
|
|
736
|
-
this.showStatus("Navigated to selected point");
|
|
737
|
-
|
|
738
|
-
return { cancelled: false };
|
|
739
|
-
},
|
|
740
|
-
},
|
|
741
|
-
uiContext,
|
|
742
|
-
);
|
|
369
|
+
rebuildChatFromMessages(): void {
|
|
370
|
+
this.chatContainer.clear();
|
|
371
|
+
const context = this.sessionManager.buildSessionContext();
|
|
372
|
+
this.renderSessionContext(context);
|
|
743
373
|
}
|
|
744
374
|
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
input: async (_title: string, _placeholder?: string, _dialogOptions?: unknown) => undefined,
|
|
750
|
-
notify: () => {},
|
|
751
|
-
setStatus: () => {},
|
|
752
|
-
setWidget: () => {},
|
|
753
|
-
setTitle: () => {},
|
|
754
|
-
custom: async () => undefined as never,
|
|
755
|
-
setEditorText: () => {},
|
|
756
|
-
getEditorText: () => "",
|
|
757
|
-
editor: async () => undefined,
|
|
758
|
-
get theme() {
|
|
759
|
-
return theme;
|
|
760
|
-
},
|
|
761
|
-
getAllThemes: () => [],
|
|
762
|
-
getTheme: () => undefined,
|
|
763
|
-
setTheme: () => ({ success: false, error: "Background mode" }),
|
|
764
|
-
setFooter: () => {},
|
|
765
|
-
setHeader: () => {},
|
|
766
|
-
setEditorComponent: () => {},
|
|
767
|
-
};
|
|
768
|
-
}
|
|
769
|
-
|
|
770
|
-
/**
|
|
771
|
-
* Emit session event to all extension tools.
|
|
772
|
-
*/
|
|
773
|
-
private async emitCustomToolSessionEvent(
|
|
774
|
-
reason: "start" | "switch" | "branch" | "tree" | "shutdown",
|
|
775
|
-
previousSessionFile?: string,
|
|
776
|
-
): Promise<void> {
|
|
777
|
-
const event = { reason, previousSessionFile };
|
|
778
|
-
const uiContext = this.session.extensionRunner?.getUIContext();
|
|
779
|
-
if (!uiContext) {
|
|
780
|
-
return;
|
|
375
|
+
stop(): void {
|
|
376
|
+
if (this.loadingAnimation) {
|
|
377
|
+
this.loadingAnimation.stop();
|
|
378
|
+
this.loadingAnimation = undefined;
|
|
781
379
|
}
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
isIdle: () => !this.session.isStreaming,
|
|
793
|
-
hasPendingMessages: () => this.session.queuedMessageCount > 0,
|
|
794
|
-
hasQueuedMessages: () => this.session.queuedMessageCount > 0,
|
|
795
|
-
abort: () => {
|
|
796
|
-
this.session.abort();
|
|
797
|
-
},
|
|
798
|
-
shutdown: () => {
|
|
799
|
-
// Signal shutdown request
|
|
800
|
-
},
|
|
801
|
-
});
|
|
802
|
-
} catch (err) {
|
|
803
|
-
this.showToolError(registeredTool.definition.name, err instanceof Error ? err.message : String(err));
|
|
804
|
-
}
|
|
805
|
-
}
|
|
380
|
+
this.statusLine.dispose();
|
|
381
|
+
if (this.unsubscribe) {
|
|
382
|
+
this.unsubscribe();
|
|
383
|
+
}
|
|
384
|
+
if (this.cleanupUnsubscribe) {
|
|
385
|
+
this.cleanupUnsubscribe();
|
|
386
|
+
}
|
|
387
|
+
if (this.isInitialized) {
|
|
388
|
+
this.ui.stop();
|
|
389
|
+
this.isInitialized = false;
|
|
806
390
|
}
|
|
807
391
|
}
|
|
808
392
|
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
this.
|
|
393
|
+
async shutdown(): Promise<void> {
|
|
394
|
+
this.voiceAutoModeEnabled = false;
|
|
395
|
+
await this.voiceSupervisor.stop();
|
|
396
|
+
|
|
397
|
+
// Flush pending session writes before shutdown
|
|
398
|
+
await this.sessionManager.flush();
|
|
399
|
+
|
|
400
|
+
// Emit shutdown event to hooks
|
|
401
|
+
await this.session.emitCustomToolSessionEvent("shutdown");
|
|
402
|
+
|
|
403
|
+
this.stop();
|
|
404
|
+
process.exit(0);
|
|
820
405
|
}
|
|
821
406
|
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
private setHookStatus(key: string, text: string | undefined): void {
|
|
826
|
-
if (this.isBackgrounded) {
|
|
827
|
-
return;
|
|
828
|
-
}
|
|
829
|
-
this.statusLine.setHookStatus(key, text);
|
|
830
|
-
this.ui.requestRender();
|
|
407
|
+
// Extension UI integration
|
|
408
|
+
setToolUIContext(uiContext: ExtensionUIContext, hasUI: boolean): void {
|
|
409
|
+
this.toolUiContextSetter(uiContext, hasUI);
|
|
831
410
|
}
|
|
832
411
|
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
*/
|
|
836
|
-
private showHookSelector(title: string, options: string[]): Promise<string | undefined> {
|
|
837
|
-
return new Promise((resolve) => {
|
|
838
|
-
this.hookSelector = new HookSelectorComponent(
|
|
839
|
-
title,
|
|
840
|
-
options,
|
|
841
|
-
(option) => {
|
|
842
|
-
this.hideHookSelector();
|
|
843
|
-
resolve(option);
|
|
844
|
-
},
|
|
845
|
-
() => {
|
|
846
|
-
this.hideHookSelector();
|
|
847
|
-
resolve(undefined);
|
|
848
|
-
},
|
|
849
|
-
);
|
|
850
|
-
|
|
851
|
-
this.editorContainer.clear();
|
|
852
|
-
this.editorContainer.addChild(this.hookSelector);
|
|
853
|
-
this.ui.setFocus(this.hookSelector);
|
|
854
|
-
this.ui.requestRender();
|
|
855
|
-
});
|
|
412
|
+
initializeHookRunner(uiContext: ExtensionUIContext, hasUI: boolean): void {
|
|
413
|
+
this.extensionUiController.initializeHookRunner(uiContext, hasUI);
|
|
856
414
|
}
|
|
857
415
|
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
*/
|
|
861
|
-
private hideHookSelector(): void {
|
|
862
|
-
this.editorContainer.clear();
|
|
863
|
-
this.editorContainer.addChild(this.editor);
|
|
864
|
-
this.hookSelector = undefined;
|
|
865
|
-
this.ui.setFocus(this.editor);
|
|
866
|
-
this.ui.requestRender();
|
|
416
|
+
createBackgroundUiContext(): ExtensionUIContext {
|
|
417
|
+
return this.extensionUiController.createBackgroundUiContext();
|
|
867
418
|
}
|
|
868
419
|
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
private async showHookConfirm(title: string, message: string): Promise<boolean> {
|
|
873
|
-
const result = await this.showHookSelector(`${title}\n${message}`, ["Yes", "No"]);
|
|
874
|
-
return result === "Yes";
|
|
420
|
+
// Event handling
|
|
421
|
+
async handleBackgroundEvent(event: AgentSessionEvent): Promise<void> {
|
|
422
|
+
await this.eventController.handleBackgroundEvent(event);
|
|
875
423
|
}
|
|
876
424
|
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
private showHookInput(title: string, placeholder?: string): Promise<string | undefined> {
|
|
881
|
-
return new Promise((resolve) => {
|
|
882
|
-
this.hookInput = new HookInputComponent(
|
|
883
|
-
title,
|
|
884
|
-
placeholder,
|
|
885
|
-
(value) => {
|
|
886
|
-
this.hideHookInput();
|
|
887
|
-
resolve(value);
|
|
888
|
-
},
|
|
889
|
-
() => {
|
|
890
|
-
this.hideHookInput();
|
|
891
|
-
resolve(undefined);
|
|
892
|
-
},
|
|
893
|
-
);
|
|
894
|
-
|
|
895
|
-
this.editorContainer.clear();
|
|
896
|
-
this.editorContainer.addChild(this.hookInput);
|
|
897
|
-
this.ui.setFocus(this.hookInput);
|
|
898
|
-
this.ui.requestRender();
|
|
899
|
-
});
|
|
425
|
+
// UI helpers
|
|
426
|
+
showStatus(message: string, options?: { dim?: boolean }): void {
|
|
427
|
+
this.uiHelpers.showStatus(message, options);
|
|
900
428
|
}
|
|
901
429
|
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
*/
|
|
905
|
-
private hideHookInput(): void {
|
|
906
|
-
this.editorContainer.clear();
|
|
907
|
-
this.editorContainer.addChild(this.editor);
|
|
908
|
-
this.hookInput = undefined;
|
|
909
|
-
this.ui.setFocus(this.editor);
|
|
910
|
-
this.ui.requestRender();
|
|
430
|
+
showError(message: string): void {
|
|
431
|
+
this.uiHelpers.showError(message);
|
|
911
432
|
}
|
|
912
433
|
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
*/
|
|
916
|
-
private showHookEditor(title: string, prefill?: string): Promise<string | undefined> {
|
|
917
|
-
return new Promise((resolve) => {
|
|
918
|
-
this.hookEditor = new HookEditorComponent(
|
|
919
|
-
this.ui,
|
|
920
|
-
title,
|
|
921
|
-
prefill,
|
|
922
|
-
(value) => {
|
|
923
|
-
this.hideHookEditor();
|
|
924
|
-
resolve(value);
|
|
925
|
-
},
|
|
926
|
-
() => {
|
|
927
|
-
this.hideHookEditor();
|
|
928
|
-
resolve(undefined);
|
|
929
|
-
},
|
|
930
|
-
);
|
|
931
|
-
|
|
932
|
-
this.editorContainer.clear();
|
|
933
|
-
this.editorContainer.addChild(this.hookEditor);
|
|
934
|
-
this.ui.setFocus(this.hookEditor);
|
|
935
|
-
this.ui.requestRender();
|
|
936
|
-
});
|
|
434
|
+
showWarning(message: string): void {
|
|
435
|
+
this.uiHelpers.showWarning(message);
|
|
937
436
|
}
|
|
938
437
|
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
*/
|
|
942
|
-
private hideHookEditor(): void {
|
|
943
|
-
this.editorContainer.clear();
|
|
944
|
-
this.editorContainer.addChild(this.editor);
|
|
945
|
-
this.hookEditor = undefined;
|
|
946
|
-
this.ui.setFocus(this.editor);
|
|
947
|
-
this.ui.requestRender();
|
|
438
|
+
showNewVersionNotification(newVersion: string): void {
|
|
439
|
+
this.uiHelpers.showNewVersionNotification(newVersion);
|
|
948
440
|
}
|
|
949
441
|
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
*/
|
|
953
|
-
private showHookNotify(message: string, type?: "info" | "warning" | "error"): void {
|
|
954
|
-
if (type === "error") {
|
|
955
|
-
this.showError(message);
|
|
956
|
-
} else if (type === "warning") {
|
|
957
|
-
this.showWarning(message);
|
|
958
|
-
} else {
|
|
959
|
-
this.showStatus(message);
|
|
960
|
-
}
|
|
442
|
+
clearEditor(): void {
|
|
443
|
+
this.uiHelpers.clearEditor();
|
|
961
444
|
}
|
|
962
445
|
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
private async showHookCustom<T>(
|
|
967
|
-
factory: (
|
|
968
|
-
tui: TUI,
|
|
969
|
-
theme: Theme,
|
|
970
|
-
keybindings: KeybindingsManager,
|
|
971
|
-
done: (result: T) => void,
|
|
972
|
-
) => (Component & { dispose?(): void }) | Promise<Component & { dispose?(): void }>,
|
|
973
|
-
): Promise<T> {
|
|
974
|
-
const savedText = this.editor.getText();
|
|
975
|
-
const keybindings = KeybindingsManager.inMemory();
|
|
446
|
+
updatePendingMessagesDisplay(): void {
|
|
447
|
+
this.uiHelpers.updatePendingMessagesDisplay();
|
|
448
|
+
}
|
|
976
449
|
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
const close = (result: T) => {
|
|
981
|
-
component.dispose?.();
|
|
982
|
-
this.editorContainer.clear();
|
|
983
|
-
this.editorContainer.addChild(this.editor);
|
|
984
|
-
this.editor.setText(savedText);
|
|
985
|
-
this.ui.setFocus(this.editor);
|
|
986
|
-
this.ui.requestRender();
|
|
987
|
-
resolve(result);
|
|
988
|
-
};
|
|
450
|
+
queueCompactionMessage(text: string, mode: "steer" | "followUp"): void {
|
|
451
|
+
this.uiHelpers.queueCompactionMessage(text, mode);
|
|
452
|
+
}
|
|
989
453
|
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
this.editorContainer.clear();
|
|
993
|
-
this.editorContainer.addChild(component);
|
|
994
|
-
this.ui.setFocus(component);
|
|
995
|
-
this.ui.requestRender();
|
|
996
|
-
});
|
|
997
|
-
});
|
|
454
|
+
flushCompactionQueue(options?: { willRetry?: boolean }): Promise<void> {
|
|
455
|
+
return this.uiHelpers.flushCompactionQueue(options);
|
|
998
456
|
}
|
|
999
457
|
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
*/
|
|
1003
|
-
private showExtensionError(extensionPath: string, error: string): void {
|
|
1004
|
-
const errorText = new Text(theme.fg("error", `Extension "${extensionPath}" error: ${error}`), 1, 0);
|
|
1005
|
-
this.chatContainer.addChild(errorText);
|
|
1006
|
-
this.ui.requestRender();
|
|
458
|
+
flushPendingBashComponents(): void {
|
|
459
|
+
this.uiHelpers.flushPendingBashComponents();
|
|
1007
460
|
}
|
|
1008
461
|
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
*/
|
|
1013
|
-
// =========================================================================
|
|
1014
|
-
// Key Handlers
|
|
1015
|
-
// =========================================================================
|
|
1016
|
-
|
|
1017
|
-
private setupKeyHandlers(): void {
|
|
1018
|
-
this.editor.onEscape = () => {
|
|
1019
|
-
if (this.loadingAnimation) {
|
|
1020
|
-
// Abort and restore queued messages to editor
|
|
1021
|
-
const queuedMessages = this.session.clearQueue();
|
|
1022
|
-
const queuedText = [...queuedMessages.steering, ...queuedMessages.followUp].join("\n\n");
|
|
1023
|
-
const currentText = this.editor.getText();
|
|
1024
|
-
const combinedText = [queuedText, currentText].filter((t) => t.trim()).join("\n\n");
|
|
1025
|
-
this.editor.setText(combinedText);
|
|
1026
|
-
this.updatePendingMessagesDisplay();
|
|
1027
|
-
this.agent.abort();
|
|
1028
|
-
} else if (this.session.isBashRunning) {
|
|
1029
|
-
this.session.abortBash();
|
|
1030
|
-
} else if (this.isBashMode) {
|
|
1031
|
-
this.editor.setText("");
|
|
1032
|
-
this.isBashMode = false;
|
|
1033
|
-
this.updateEditorBorderColor();
|
|
1034
|
-
} else if (!this.editor.getText().trim()) {
|
|
1035
|
-
// Double-escape with empty editor triggers /tree or /branch based on setting
|
|
1036
|
-
const now = Date.now();
|
|
1037
|
-
if (now - this.lastEscapeTime < 500) {
|
|
1038
|
-
if (this.settingsManager.getDoubleEscapeAction() === "tree") {
|
|
1039
|
-
this.showTreeSelector();
|
|
1040
|
-
} else {
|
|
1041
|
-
this.showUserMessageSelector();
|
|
1042
|
-
}
|
|
1043
|
-
this.lastEscapeTime = 0;
|
|
1044
|
-
} else {
|
|
1045
|
-
this.lastEscapeTime = now;
|
|
1046
|
-
}
|
|
1047
|
-
}
|
|
1048
|
-
};
|
|
1049
|
-
|
|
1050
|
-
this.editor.onCtrlC = () => this.handleCtrlC();
|
|
1051
|
-
this.editor.onCtrlD = () => this.handleCtrlD();
|
|
1052
|
-
this.editor.onCtrlZ = () => this.handleCtrlZ();
|
|
1053
|
-
this.editor.onShiftTab = () => this.cycleThinkingLevel();
|
|
1054
|
-
this.editor.onCtrlP = () => this.cycleRoleModel();
|
|
1055
|
-
this.editor.onShiftCtrlP = () => this.cycleRoleModel({ temporary: true });
|
|
1056
|
-
this.editor.onCtrlY = () => this.showModelSelector({ temporaryOnly: true });
|
|
1057
|
-
|
|
1058
|
-
// Global debug handler on TUI (works regardless of focus)
|
|
1059
|
-
this.ui.onDebug = () => this.handleDebugCommand();
|
|
1060
|
-
this.editor.onCtrlL = () => this.showModelSelector();
|
|
1061
|
-
this.editor.onCtrlR = () => this.showHistorySearch();
|
|
1062
|
-
this.editor.onCtrlO = () => this.toggleToolOutputExpansion();
|
|
1063
|
-
this.editor.onCtrlT = () => this.toggleThinkingBlockVisibility();
|
|
1064
|
-
this.editor.onCtrlG = () => this.openExternalEditor();
|
|
1065
|
-
this.editor.onQuestionMark = () => this.handleHotkeysCommand();
|
|
1066
|
-
this.editor.onCtrlV = () => this.handleImagePaste();
|
|
1067
|
-
this.editor.onAltUp = () => this.handleDequeue();
|
|
1068
|
-
|
|
1069
|
-
// Wire up extension shortcuts
|
|
1070
|
-
this.registerExtensionShortcuts();
|
|
1071
|
-
|
|
1072
|
-
this.editor.onChange = (text: string) => {
|
|
1073
|
-
const wasBashMode = this.isBashMode;
|
|
1074
|
-
this.isBashMode = text.trimStart().startsWith("!");
|
|
1075
|
-
if (wasBashMode !== this.isBashMode) {
|
|
1076
|
-
this.updateEditorBorderColor();
|
|
1077
|
-
}
|
|
1078
|
-
};
|
|
462
|
+
isKnownSlashCommand(text: string): boolean {
|
|
463
|
+
return this.uiHelpers.isKnownSlashCommand(text);
|
|
464
|
+
}
|
|
1079
465
|
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
466
|
+
addMessageToChat(message: AgentMessage, options?: { populateHistory?: boolean }): void {
|
|
467
|
+
this.uiHelpers.addMessageToChat(message, options);
|
|
468
|
+
}
|
|
1083
469
|
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
470
|
+
renderSessionContext(
|
|
471
|
+
sessionContext: SessionContext,
|
|
472
|
+
options?: { updateFooter?: boolean; populateHistory?: boolean },
|
|
473
|
+
): void {
|
|
474
|
+
this.uiHelpers.renderSessionContext(sessionContext, options);
|
|
475
|
+
}
|
|
1089
476
|
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
if (this.session.isStreaming) {
|
|
1093
|
-
this.editor.addToHistory(text);
|
|
1094
|
-
this.editor.setText("");
|
|
1095
|
-
await this.session.prompt(text, { streamingBehavior: "followUp" });
|
|
1096
|
-
this.updatePendingMessagesDisplay();
|
|
1097
|
-
this.ui.requestRender();
|
|
1098
|
-
}
|
|
1099
|
-
// If not streaming, Alt+Enter acts like regular Enter (trigger onSubmit)
|
|
1100
|
-
else if (this.editor.onSubmit) {
|
|
1101
|
-
this.editor.onSubmit(text);
|
|
1102
|
-
}
|
|
1103
|
-
};
|
|
477
|
+
renderInitialMessages(): void {
|
|
478
|
+
this.uiHelpers.renderInitialMessages();
|
|
1104
479
|
}
|
|
1105
480
|
|
|
1106
|
-
|
|
1107
|
-
this.
|
|
1108
|
-
|
|
481
|
+
getUserMessageText(message: Message): string {
|
|
482
|
+
return this.uiHelpers.getUserMessageText(message);
|
|
483
|
+
}
|
|
1109
484
|
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
await this.session.abort();
|
|
1114
|
-
return;
|
|
1115
|
-
}
|
|
485
|
+
findLastAssistantMessage(): AssistantMessage | undefined {
|
|
486
|
+
return this.uiHelpers.findLastAssistantMessage();
|
|
487
|
+
}
|
|
1116
488
|
|
|
1117
|
-
|
|
489
|
+
extractAssistantText(message: AssistantMessage): string {
|
|
490
|
+
return this.uiHelpers.extractAssistantText(message);
|
|
491
|
+
}
|
|
1118
492
|
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
return;
|
|
1124
|
-
}
|
|
1125
|
-
if (text === "/model") {
|
|
1126
|
-
this.showModelSelector();
|
|
1127
|
-
this.editor.setText("");
|
|
1128
|
-
return;
|
|
1129
|
-
}
|
|
1130
|
-
if (text.startsWith("/export")) {
|
|
1131
|
-
await this.handleExportCommand(text);
|
|
1132
|
-
this.editor.setText("");
|
|
1133
|
-
return;
|
|
1134
|
-
}
|
|
1135
|
-
if (text === "/share") {
|
|
1136
|
-
await this.handleShareCommand();
|
|
1137
|
-
this.editor.setText("");
|
|
1138
|
-
return;
|
|
1139
|
-
}
|
|
1140
|
-
if (text === "/copy") {
|
|
1141
|
-
await this.handleCopyCommand();
|
|
1142
|
-
this.editor.setText("");
|
|
1143
|
-
return;
|
|
1144
|
-
}
|
|
1145
|
-
if (text === "/session") {
|
|
1146
|
-
this.handleSessionCommand();
|
|
1147
|
-
this.editor.setText("");
|
|
1148
|
-
return;
|
|
1149
|
-
}
|
|
1150
|
-
if (text === "/changelog") {
|
|
1151
|
-
this.handleChangelogCommand();
|
|
1152
|
-
this.editor.setText("");
|
|
1153
|
-
return;
|
|
1154
|
-
}
|
|
1155
|
-
if (text === "/hotkeys") {
|
|
1156
|
-
this.handleHotkeysCommand();
|
|
1157
|
-
this.editor.setText("");
|
|
1158
|
-
return;
|
|
1159
|
-
}
|
|
1160
|
-
if (text === "/extensions" || text === "/status") {
|
|
1161
|
-
this.showExtensionsDashboard();
|
|
1162
|
-
this.editor.setText("");
|
|
1163
|
-
return;
|
|
1164
|
-
}
|
|
1165
|
-
if (text === "/branch") {
|
|
1166
|
-
if (this.settingsManager.getDoubleEscapeAction() === "tree") {
|
|
1167
|
-
this.showTreeSelector();
|
|
1168
|
-
} else {
|
|
1169
|
-
this.showUserMessageSelector();
|
|
1170
|
-
}
|
|
1171
|
-
this.editor.setText("");
|
|
1172
|
-
return;
|
|
1173
|
-
}
|
|
1174
|
-
if (text === "/tree") {
|
|
1175
|
-
this.showTreeSelector();
|
|
1176
|
-
this.editor.setText("");
|
|
1177
|
-
return;
|
|
1178
|
-
}
|
|
1179
|
-
if (text === "/login") {
|
|
1180
|
-
this.showOAuthSelector("login");
|
|
1181
|
-
this.editor.setText("");
|
|
1182
|
-
return;
|
|
1183
|
-
}
|
|
1184
|
-
if (text === "/logout") {
|
|
1185
|
-
this.showOAuthSelector("logout");
|
|
1186
|
-
this.editor.setText("");
|
|
1187
|
-
return;
|
|
1188
|
-
}
|
|
1189
|
-
if (text === "/new") {
|
|
1190
|
-
this.editor.setText("");
|
|
1191
|
-
await this.handleClearCommand();
|
|
1192
|
-
return;
|
|
1193
|
-
}
|
|
1194
|
-
if (text === "/compact" || text.startsWith("/compact ")) {
|
|
1195
|
-
const customInstructions = text.startsWith("/compact ") ? text.slice(9).trim() : undefined;
|
|
1196
|
-
this.editor.setText("");
|
|
1197
|
-
await this.handleCompactCommand(customInstructions);
|
|
1198
|
-
return;
|
|
1199
|
-
}
|
|
1200
|
-
if (text === "/background" || text === "/bg") {
|
|
1201
|
-
this.editor.setText("");
|
|
1202
|
-
this.handleBackgroundCommand();
|
|
1203
|
-
return;
|
|
1204
|
-
}
|
|
1205
|
-
if (text === "/debug") {
|
|
1206
|
-
this.handleDebugCommand();
|
|
1207
|
-
this.editor.setText("");
|
|
1208
|
-
return;
|
|
1209
|
-
}
|
|
1210
|
-
if (text === "/arminsayshi") {
|
|
1211
|
-
this.handleArminSaysHi();
|
|
1212
|
-
this.editor.setText("");
|
|
1213
|
-
return;
|
|
1214
|
-
}
|
|
1215
|
-
if (text === "/resume") {
|
|
1216
|
-
this.showSessionSelector();
|
|
1217
|
-
this.editor.setText("");
|
|
1218
|
-
return;
|
|
1219
|
-
}
|
|
1220
|
-
if (text === "/exit") {
|
|
1221
|
-
this.editor.setText("");
|
|
1222
|
-
void this.shutdown();
|
|
1223
|
-
return;
|
|
1224
|
-
}
|
|
493
|
+
// Command handling
|
|
494
|
+
handleExportCommand(text: string): Promise<void> {
|
|
495
|
+
return this.commandController.handleExportCommand(text);
|
|
496
|
+
}
|
|
1225
497
|
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
const command = isExcluded ? text.slice(2).trim() : text.slice(1).trim();
|
|
1230
|
-
if (command) {
|
|
1231
|
-
if (this.session.isBashRunning) {
|
|
1232
|
-
this.showWarning("A bash command is already running. Press Esc to cancel it first.");
|
|
1233
|
-
this.editor.setText(text);
|
|
1234
|
-
return;
|
|
1235
|
-
}
|
|
1236
|
-
this.editor.addToHistory(text);
|
|
1237
|
-
await this.handleBashCommand(command, isExcluded);
|
|
1238
|
-
this.isBashMode = false;
|
|
1239
|
-
this.updateEditorBorderColor();
|
|
1240
|
-
return;
|
|
1241
|
-
}
|
|
1242
|
-
}
|
|
498
|
+
handleDumpCommand(): Promise<void> {
|
|
499
|
+
return this.commandController.handleDumpCommand();
|
|
500
|
+
}
|
|
1243
501
|
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
this.showStatus("Compaction in progress. Retry after it completes to send images.");
|
|
1248
|
-
return;
|
|
1249
|
-
}
|
|
1250
|
-
this.queueCompactionMessage(text, "steer");
|
|
1251
|
-
return;
|
|
1252
|
-
}
|
|
502
|
+
handleShareCommand(): Promise<void> {
|
|
503
|
+
return this.commandController.handleShareCommand();
|
|
504
|
+
}
|
|
1253
505
|
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
this.editor.addToHistory(text);
|
|
1258
|
-
this.editor.setText("");
|
|
1259
|
-
const images = this.pendingImages.length > 0 ? [...this.pendingImages] : undefined;
|
|
1260
|
-
this.pendingImages = [];
|
|
1261
|
-
await this.session.prompt(text, { streamingBehavior: "steer", images });
|
|
1262
|
-
this.updatePendingMessagesDisplay();
|
|
1263
|
-
this.ui.requestRender();
|
|
1264
|
-
return;
|
|
1265
|
-
}
|
|
506
|
+
handleCopyCommand(): Promise<void> {
|
|
507
|
+
return this.commandController.handleCopyCommand();
|
|
508
|
+
}
|
|
1266
509
|
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
// Generate session title on first message
|
|
1272
|
-
const hasUserMessages = this.agent.state.messages.some((m) => m.role === "user");
|
|
1273
|
-
if (!hasUserMessages && !this.sessionManager.getSessionTitle()) {
|
|
1274
|
-
const registry = this.session.modelRegistry;
|
|
1275
|
-
const smolModel = this.settingsManager.getModelRole("smol");
|
|
1276
|
-
generateSessionTitle(text, registry, smolModel, this.session.sessionId)
|
|
1277
|
-
.then(async (title) => {
|
|
1278
|
-
if (title) {
|
|
1279
|
-
await this.sessionManager.setSessionTitle(title);
|
|
1280
|
-
setTerminalTitle(`omp: ${title}`);
|
|
1281
|
-
}
|
|
1282
|
-
})
|
|
1283
|
-
.catch(() => {});
|
|
1284
|
-
}
|
|
510
|
+
handleSessionCommand(): void {
|
|
511
|
+
this.commandController.handleSessionCommand();
|
|
512
|
+
}
|
|
1285
513
|
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
const images = this.pendingImages.length > 0 ? [...this.pendingImages] : undefined;
|
|
1289
|
-
this.pendingImages = [];
|
|
1290
|
-
this.onInputCallback({ text, images });
|
|
1291
|
-
}
|
|
1292
|
-
this.editor.addToHistory(text);
|
|
1293
|
-
};
|
|
514
|
+
handleChangelogCommand(): void {
|
|
515
|
+
this.commandController.handleChangelogCommand();
|
|
1294
516
|
}
|
|
1295
517
|
|
|
1296
|
-
|
|
1297
|
-
this.
|
|
1298
|
-
await this.handleEvent(event);
|
|
1299
|
-
});
|
|
518
|
+
handleHotkeysCommand(): void {
|
|
519
|
+
this.commandController.handleHotkeysCommand();
|
|
1300
520
|
}
|
|
1301
521
|
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
}
|
|
522
|
+
handleClearCommand(): Promise<void> {
|
|
523
|
+
return this.commandController.handleClearCommand();
|
|
524
|
+
}
|
|
1306
525
|
|
|
1307
|
-
|
|
1308
|
-
this.
|
|
526
|
+
handleDebugCommand(): void {
|
|
527
|
+
this.commandController.handleDebugCommand();
|
|
528
|
+
}
|
|
1309
529
|
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
if (this.retryEscapeHandler) {
|
|
1314
|
-
this.editor.onEscape = this.retryEscapeHandler;
|
|
1315
|
-
this.retryEscapeHandler = undefined;
|
|
1316
|
-
}
|
|
1317
|
-
if (this.retryLoader) {
|
|
1318
|
-
this.retryLoader.stop();
|
|
1319
|
-
this.retryLoader = undefined;
|
|
1320
|
-
this.statusContainer.clear();
|
|
1321
|
-
}
|
|
1322
|
-
if (this.loadingAnimation) {
|
|
1323
|
-
this.loadingAnimation.stop();
|
|
1324
|
-
}
|
|
1325
|
-
this.statusContainer.clear();
|
|
1326
|
-
this.loadingAnimation = new Loader(
|
|
1327
|
-
this.ui,
|
|
1328
|
-
(spinner) => theme.fg("accent", spinner),
|
|
1329
|
-
(text) => theme.fg("muted", text),
|
|
1330
|
-
`Working${theme.format.ellipsis} (esc to interrupt)`,
|
|
1331
|
-
getSymbolTheme().spinnerFrames,
|
|
1332
|
-
);
|
|
1333
|
-
this.statusContainer.addChild(this.loadingAnimation);
|
|
1334
|
-
this.startVoiceProgressTimer();
|
|
1335
|
-
this.ui.requestRender();
|
|
1336
|
-
break;
|
|
1337
|
-
|
|
1338
|
-
case "message_start":
|
|
1339
|
-
if (event.message.role === "hookMessage" || event.message.role === "custom") {
|
|
1340
|
-
this.addMessageToChat(event.message);
|
|
1341
|
-
this.ui.requestRender();
|
|
1342
|
-
} else if (event.message.role === "user") {
|
|
1343
|
-
this.addMessageToChat(event.message);
|
|
1344
|
-
this.editor.setText("");
|
|
1345
|
-
this.updatePendingMessagesDisplay();
|
|
1346
|
-
this.ui.requestRender();
|
|
1347
|
-
} else if (event.message.role === "fileMention") {
|
|
1348
|
-
this.addMessageToChat(event.message);
|
|
1349
|
-
this.ui.requestRender();
|
|
1350
|
-
} else if (event.message.role === "assistant") {
|
|
1351
|
-
this.streamingComponent = new AssistantMessageComponent(undefined, this.hideThinkingBlock);
|
|
1352
|
-
this.streamingMessage = event.message;
|
|
1353
|
-
this.chatContainer.addChild(this.streamingComponent);
|
|
1354
|
-
this.streamingComponent.updateContent(this.streamingMessage);
|
|
1355
|
-
this.ui.requestRender();
|
|
1356
|
-
}
|
|
1357
|
-
break;
|
|
1358
|
-
|
|
1359
|
-
case "message_update":
|
|
1360
|
-
if (this.streamingComponent && event.message.role === "assistant") {
|
|
1361
|
-
this.streamingMessage = event.message;
|
|
1362
|
-
this.streamingComponent.updateContent(this.streamingMessage);
|
|
1363
|
-
|
|
1364
|
-
for (const content of this.streamingMessage.content) {
|
|
1365
|
-
if (content.type === "toolCall") {
|
|
1366
|
-
if (!this.pendingTools.has(content.id)) {
|
|
1367
|
-
this.chatContainer.addChild(new Text("", 0, 0));
|
|
1368
|
-
const tool = this.session.getToolByName(content.name);
|
|
1369
|
-
const component = new ToolExecutionComponent(
|
|
1370
|
-
content.name,
|
|
1371
|
-
content.arguments,
|
|
1372
|
-
{
|
|
1373
|
-
showImages: this.settingsManager.getShowImages(),
|
|
1374
|
-
},
|
|
1375
|
-
tool,
|
|
1376
|
-
this.ui,
|
|
1377
|
-
this.sessionManager.getCwd(),
|
|
1378
|
-
);
|
|
1379
|
-
component.setExpanded(this.toolOutputExpanded);
|
|
1380
|
-
this.chatContainer.addChild(component);
|
|
1381
|
-
this.pendingTools.set(content.id, component);
|
|
1382
|
-
} else {
|
|
1383
|
-
const component = this.pendingTools.get(content.id);
|
|
1384
|
-
if (component) {
|
|
1385
|
-
component.updateArgs(content.arguments);
|
|
1386
|
-
}
|
|
1387
|
-
}
|
|
1388
|
-
}
|
|
1389
|
-
}
|
|
1390
|
-
this.ui.requestRender();
|
|
1391
|
-
}
|
|
1392
|
-
break;
|
|
1393
|
-
|
|
1394
|
-
case "message_end":
|
|
1395
|
-
if (event.message.role === "user") break;
|
|
1396
|
-
if (this.streamingComponent && event.message.role === "assistant") {
|
|
1397
|
-
this.streamingMessage = event.message;
|
|
1398
|
-
// Don't show "Aborted" text for TTSR aborts - we'll show a nicer message
|
|
1399
|
-
if (this.session.isTtsrAbortPending && this.streamingMessage.stopReason === "aborted") {
|
|
1400
|
-
// TTSR abort - suppress the "Aborted" rendering in the component
|
|
1401
|
-
const msgWithoutAbort = { ...this.streamingMessage, stopReason: "stop" as const };
|
|
1402
|
-
this.streamingComponent.updateContent(msgWithoutAbort);
|
|
1403
|
-
} else {
|
|
1404
|
-
this.streamingComponent.updateContent(this.streamingMessage);
|
|
1405
|
-
}
|
|
1406
|
-
|
|
1407
|
-
if (this.streamingMessage.stopReason === "aborted" || this.streamingMessage.stopReason === "error") {
|
|
1408
|
-
// Skip error handling for TTSR aborts
|
|
1409
|
-
if (!this.session.isTtsrAbortPending) {
|
|
1410
|
-
let errorMessage: string;
|
|
1411
|
-
if (this.streamingMessage.stopReason === "aborted") {
|
|
1412
|
-
const retryAttempt = this.session.retryAttempt;
|
|
1413
|
-
errorMessage =
|
|
1414
|
-
retryAttempt > 0
|
|
1415
|
-
? `Aborted after ${retryAttempt} retry attempt${retryAttempt > 1 ? "s" : ""}`
|
|
1416
|
-
: "Operation aborted";
|
|
1417
|
-
} else {
|
|
1418
|
-
errorMessage = this.streamingMessage.errorMessage || "Error";
|
|
1419
|
-
}
|
|
1420
|
-
for (const [, component] of this.pendingTools.entries()) {
|
|
1421
|
-
component.updateResult({
|
|
1422
|
-
content: [{ type: "text", text: errorMessage }],
|
|
1423
|
-
isError: true,
|
|
1424
|
-
});
|
|
1425
|
-
}
|
|
1426
|
-
}
|
|
1427
|
-
this.pendingTools.clear();
|
|
1428
|
-
} else {
|
|
1429
|
-
// Args are now complete - trigger diff computation for edit tools
|
|
1430
|
-
for (const [, component] of this.pendingTools.entries()) {
|
|
1431
|
-
component.setArgsComplete();
|
|
1432
|
-
}
|
|
1433
|
-
}
|
|
1434
|
-
this.streamingComponent = undefined;
|
|
1435
|
-
this.streamingMessage = undefined;
|
|
1436
|
-
this.statusLine.invalidate();
|
|
1437
|
-
this.updateEditorTopBorder();
|
|
1438
|
-
}
|
|
1439
|
-
this.ui.requestRender();
|
|
1440
|
-
break;
|
|
1441
|
-
|
|
1442
|
-
case "tool_execution_start": {
|
|
1443
|
-
if (!this.pendingTools.has(event.toolCallId)) {
|
|
1444
|
-
const tool = this.session.getToolByName(event.toolName);
|
|
1445
|
-
const component = new ToolExecutionComponent(
|
|
1446
|
-
event.toolName,
|
|
1447
|
-
event.args,
|
|
1448
|
-
{
|
|
1449
|
-
showImages: this.settingsManager.getShowImages(),
|
|
1450
|
-
},
|
|
1451
|
-
tool,
|
|
1452
|
-
this.ui,
|
|
1453
|
-
this.sessionManager.getCwd(),
|
|
1454
|
-
);
|
|
1455
|
-
component.setExpanded(this.toolOutputExpanded);
|
|
1456
|
-
this.chatContainer.addChild(component);
|
|
1457
|
-
this.pendingTools.set(event.toolCallId, component);
|
|
1458
|
-
this.ui.requestRender();
|
|
1459
|
-
}
|
|
1460
|
-
break;
|
|
1461
|
-
}
|
|
530
|
+
handleArminSaysHi(): void {
|
|
531
|
+
this.commandController.handleArminSaysHi();
|
|
532
|
+
}
|
|
1462
533
|
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
component.updateResult({ ...event.partialResult, isError: false }, true);
|
|
1467
|
-
this.ui.requestRender();
|
|
1468
|
-
}
|
|
1469
|
-
break;
|
|
1470
|
-
}
|
|
534
|
+
handleBashCommand(command: string, excludeFromContext?: boolean): Promise<void> {
|
|
535
|
+
return this.commandController.handleBashCommand(command, excludeFromContext);
|
|
536
|
+
}
|
|
1471
537
|
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
component.updateResult({ ...event.result, isError: event.isError });
|
|
1476
|
-
this.pendingTools.delete(event.toolCallId);
|
|
1477
|
-
this.ui.requestRender();
|
|
1478
|
-
}
|
|
1479
|
-
break;
|
|
1480
|
-
}
|
|
538
|
+
handleCompactCommand(customInstructions?: string): Promise<void> {
|
|
539
|
+
return this.commandController.handleCompactCommand(customInstructions);
|
|
540
|
+
}
|
|
1481
541
|
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
this.loadingAnimation.stop();
|
|
1486
|
-
this.loadingAnimation = undefined;
|
|
1487
|
-
this.statusContainer.clear();
|
|
1488
|
-
}
|
|
1489
|
-
if (this.streamingComponent) {
|
|
1490
|
-
this.chatContainer.removeChild(this.streamingComponent);
|
|
1491
|
-
this.streamingComponent = undefined;
|
|
1492
|
-
this.streamingMessage = undefined;
|
|
1493
|
-
}
|
|
1494
|
-
this.pendingTools.clear();
|
|
1495
|
-
if (this.settingsManager.getVoiceEnabled() && this.voiceAutoModeEnabled) {
|
|
1496
|
-
const lastAssistant = this.findLastAssistantMessage();
|
|
1497
|
-
if (lastAssistant && lastAssistant.stopReason !== "aborted" && lastAssistant.stopReason !== "error") {
|
|
1498
|
-
const text = this.extractAssistantText(lastAssistant);
|
|
1499
|
-
if (text) {
|
|
1500
|
-
this.voiceSupervisor.notifyResult(text);
|
|
1501
|
-
}
|
|
1502
|
-
}
|
|
1503
|
-
}
|
|
1504
|
-
this.ui.requestRender();
|
|
1505
|
-
this.sendCompletionNotification();
|
|
1506
|
-
break;
|
|
1507
|
-
|
|
1508
|
-
case "auto_compaction_start": {
|
|
1509
|
-
// Allow input during compaction; submissions are queued
|
|
1510
|
-
// Set up escape to abort auto-compaction
|
|
1511
|
-
this.autoCompactionEscapeHandler = this.editor.onEscape;
|
|
1512
|
-
this.editor.onEscape = () => {
|
|
1513
|
-
this.session.abortCompaction();
|
|
1514
|
-
};
|
|
1515
|
-
// Show compacting indicator with reason
|
|
1516
|
-
this.statusContainer.clear();
|
|
1517
|
-
const reasonText = event.reason === "overflow" ? "Context overflow detected, " : "";
|
|
1518
|
-
this.autoCompactionLoader = new Loader(
|
|
1519
|
-
this.ui,
|
|
1520
|
-
(spinner) => theme.fg("accent", spinner),
|
|
1521
|
-
(text) => theme.fg("muted", text),
|
|
1522
|
-
`${reasonText}Auto-compacting${theme.format.ellipsis} (esc to cancel)`,
|
|
1523
|
-
getSymbolTheme().spinnerFrames,
|
|
1524
|
-
);
|
|
1525
|
-
this.statusContainer.addChild(this.autoCompactionLoader);
|
|
1526
|
-
this.ui.requestRender();
|
|
1527
|
-
break;
|
|
1528
|
-
}
|
|
542
|
+
executeCompaction(customInstructions?: string, isAuto?: boolean): Promise<void> {
|
|
543
|
+
return this.commandController.executeCompaction(customInstructions, isAuto);
|
|
544
|
+
}
|
|
1529
545
|
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
this.editor.onEscape = this.autoCompactionEscapeHandler;
|
|
1534
|
-
this.autoCompactionEscapeHandler = undefined;
|
|
1535
|
-
}
|
|
1536
|
-
// Stop loader
|
|
1537
|
-
if (this.autoCompactionLoader) {
|
|
1538
|
-
this.autoCompactionLoader.stop();
|
|
1539
|
-
this.autoCompactionLoader = undefined;
|
|
1540
|
-
this.statusContainer.clear();
|
|
1541
|
-
}
|
|
1542
|
-
// Handle result
|
|
1543
|
-
if (event.aborted) {
|
|
1544
|
-
this.showStatus("Auto-compaction cancelled");
|
|
1545
|
-
} else if (event.result) {
|
|
1546
|
-
// Rebuild chat to show compacted state
|
|
1547
|
-
this.chatContainer.clear();
|
|
1548
|
-
this.rebuildChatFromMessages();
|
|
1549
|
-
// Add compaction component at bottom so user sees it without scrolling
|
|
1550
|
-
this.addMessageToChat({
|
|
1551
|
-
role: "compactionSummary",
|
|
1552
|
-
tokensBefore: event.result.tokensBefore,
|
|
1553
|
-
summary: event.result.summary,
|
|
1554
|
-
timestamp: Date.now(),
|
|
1555
|
-
});
|
|
1556
|
-
this.statusLine.invalidate();
|
|
1557
|
-
this.updateEditorTopBorder();
|
|
1558
|
-
}
|
|
1559
|
-
await this.flushCompactionQueue({ willRetry: event.willRetry });
|
|
1560
|
-
this.ui.requestRender();
|
|
1561
|
-
break;
|
|
1562
|
-
}
|
|
546
|
+
openInBrowser(urlOrPath: string): void {
|
|
547
|
+
this.commandController.openInBrowser(urlOrPath);
|
|
548
|
+
}
|
|
1563
549
|
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
this.session.abortRetry();
|
|
1569
|
-
};
|
|
1570
|
-
// Show retry indicator
|
|
1571
|
-
this.statusContainer.clear();
|
|
1572
|
-
const delaySeconds = Math.round(event.delayMs / 1000);
|
|
1573
|
-
this.retryLoader = new Loader(
|
|
1574
|
-
this.ui,
|
|
1575
|
-
(spinner) => theme.fg("warning", spinner),
|
|
1576
|
-
(text) => theme.fg("muted", text),
|
|
1577
|
-
`Retrying (${event.attempt}/${event.maxAttempts}) in ${delaySeconds}s${theme.format.ellipsis} (esc to cancel)`,
|
|
1578
|
-
getSymbolTheme().spinnerFrames,
|
|
1579
|
-
);
|
|
1580
|
-
this.statusContainer.addChild(this.retryLoader);
|
|
1581
|
-
this.ui.requestRender();
|
|
1582
|
-
break;
|
|
1583
|
-
}
|
|
550
|
+
// Selector handling
|
|
551
|
+
showSettingsSelector(): void {
|
|
552
|
+
this.selectorController.showSettingsSelector();
|
|
553
|
+
}
|
|
1584
554
|
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
this.editor.onEscape = this.retryEscapeHandler;
|
|
1589
|
-
this.retryEscapeHandler = undefined;
|
|
1590
|
-
}
|
|
1591
|
-
// Stop loader
|
|
1592
|
-
if (this.retryLoader) {
|
|
1593
|
-
this.retryLoader.stop();
|
|
1594
|
-
this.retryLoader = undefined;
|
|
1595
|
-
this.statusContainer.clear();
|
|
1596
|
-
}
|
|
1597
|
-
// Show error only on final failure (success shows normal response)
|
|
1598
|
-
if (!event.success) {
|
|
1599
|
-
this.showError(`Retry failed after ${event.attempt} attempts: ${event.finalError || "Unknown error"}`);
|
|
1600
|
-
}
|
|
1601
|
-
this.ui.requestRender();
|
|
1602
|
-
break;
|
|
1603
|
-
}
|
|
555
|
+
showHistorySearch(): void {
|
|
556
|
+
this.selectorController.showHistorySearch();
|
|
557
|
+
}
|
|
1604
558
|
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
const component = new TtsrNotificationComponent(event.rules);
|
|
1608
|
-
component.setExpanded(this.toolOutputExpanded);
|
|
1609
|
-
this.chatContainer.addChild(component);
|
|
1610
|
-
this.ui.requestRender();
|
|
1611
|
-
break;
|
|
1612
|
-
}
|
|
1613
|
-
}
|
|
559
|
+
showExtensionsDashboard(): void {
|
|
560
|
+
this.selectorController.showExtensionsDashboard();
|
|
1614
561
|
}
|
|
1615
562
|
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
const method = this.settingsManager.getNotificationOnComplete();
|
|
1620
|
-
if (method === "off") return;
|
|
1621
|
-
const protocol = method === "auto" ? detectNotificationProtocol() : method;
|
|
1622
|
-
const title = this.sessionManager.getSessionTitle();
|
|
1623
|
-
const message = title ? `${title}: Complete` : "Complete";
|
|
1624
|
-
sendNotification(protocol, message);
|
|
1625
|
-
}
|
|
1626
|
-
|
|
1627
|
-
/** Extract text content from a user message */
|
|
1628
|
-
private getUserMessageText(message: Message): string {
|
|
1629
|
-
if (message.role !== "user") return "";
|
|
1630
|
-
const textBlocks =
|
|
1631
|
-
typeof message.content === "string"
|
|
1632
|
-
? [{ type: "text", text: message.content }]
|
|
1633
|
-
: message.content.filter((c: { type: string }) => c.type === "text");
|
|
1634
|
-
return textBlocks.map((c) => (c as { text: string }).text).join("");
|
|
1635
|
-
}
|
|
1636
|
-
|
|
1637
|
-
/**
|
|
1638
|
-
* Show a status message in the chat.
|
|
1639
|
-
*
|
|
1640
|
-
* If multiple status messages are emitted back-to-back (without anything else being added to the chat),
|
|
1641
|
-
* we update the previous status line instead of appending new ones to avoid log spam.
|
|
1642
|
-
*/
|
|
1643
|
-
private showStatus(message: string, options?: { dim?: boolean }): void {
|
|
1644
|
-
if (this.isBackgrounded) {
|
|
1645
|
-
return;
|
|
1646
|
-
}
|
|
1647
|
-
const children = this.chatContainer.children;
|
|
1648
|
-
const last = children.length > 0 ? children[children.length - 1] : undefined;
|
|
1649
|
-
const secondLast = children.length > 1 ? children[children.length - 2] : undefined;
|
|
1650
|
-
const useDim = options?.dim ?? true;
|
|
1651
|
-
const rendered = useDim ? theme.fg("dim", message) : message;
|
|
1652
|
-
|
|
1653
|
-
if (last && secondLast && last === this.lastStatusText && secondLast === this.lastStatusSpacer) {
|
|
1654
|
-
this.lastStatusText.setText(rendered);
|
|
1655
|
-
this.ui.requestRender();
|
|
1656
|
-
return;
|
|
1657
|
-
}
|
|
563
|
+
showModelSelector(options?: { temporaryOnly?: boolean }): void {
|
|
564
|
+
this.selectorController.showModelSelector(options);
|
|
565
|
+
}
|
|
1658
566
|
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
this.chatContainer.addChild(spacer);
|
|
1662
|
-
this.chatContainer.addChild(text);
|
|
1663
|
-
this.lastStatusSpacer = spacer;
|
|
1664
|
-
this.lastStatusText = text;
|
|
1665
|
-
this.ui.requestRender();
|
|
567
|
+
showUserMessageSelector(): void {
|
|
568
|
+
this.selectorController.showUserMessageSelector();
|
|
1666
569
|
}
|
|
1667
570
|
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
case "bashExecution": {
|
|
1671
|
-
const component = new BashExecutionComponent(message.command, this.ui, message.excludeFromContext);
|
|
1672
|
-
if (message.output) {
|
|
1673
|
-
component.appendOutput(message.output);
|
|
1674
|
-
}
|
|
1675
|
-
component.setComplete(
|
|
1676
|
-
message.exitCode,
|
|
1677
|
-
message.cancelled,
|
|
1678
|
-
message.truncated ? ({ truncated: true } as TruncationResult) : undefined,
|
|
1679
|
-
message.fullOutputPath,
|
|
1680
|
-
);
|
|
1681
|
-
this.chatContainer.addChild(component);
|
|
1682
|
-
break;
|
|
1683
|
-
}
|
|
1684
|
-
case "hookMessage":
|
|
1685
|
-
case "custom": {
|
|
1686
|
-
if (message.display) {
|
|
1687
|
-
const renderer = this.session.extensionRunner?.getMessageRenderer(message.customType);
|
|
1688
|
-
// Both HookMessage and CustomMessage have the same structure, cast for compatibility
|
|
1689
|
-
this.chatContainer.addChild(new CustomMessageComponent(message as CustomMessage<unknown>, renderer));
|
|
1690
|
-
}
|
|
1691
|
-
break;
|
|
1692
|
-
}
|
|
1693
|
-
case "compactionSummary": {
|
|
1694
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
1695
|
-
const component = new CompactionSummaryMessageComponent(message);
|
|
1696
|
-
component.setExpanded(this.toolOutputExpanded);
|
|
1697
|
-
this.chatContainer.addChild(component);
|
|
1698
|
-
break;
|
|
1699
|
-
}
|
|
1700
|
-
case "branchSummary": {
|
|
1701
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
1702
|
-
const component = new BranchSummaryMessageComponent(message);
|
|
1703
|
-
component.setExpanded(this.toolOutputExpanded);
|
|
1704
|
-
this.chatContainer.addChild(component);
|
|
1705
|
-
break;
|
|
1706
|
-
}
|
|
1707
|
-
case "fileMention": {
|
|
1708
|
-
// Render compact file mention display
|
|
1709
|
-
for (const file of message.files) {
|
|
1710
|
-
const text = `${theme.fg("dim", `${theme.tree.last} `)}${theme.fg("muted", "Read")} ${theme.fg(
|
|
1711
|
-
"accent",
|
|
1712
|
-
file.path,
|
|
1713
|
-
)} ${theme.fg("dim", `(${file.lineCount} lines)`)}`;
|
|
1714
|
-
this.chatContainer.addChild(new Text(text, 0, 0));
|
|
1715
|
-
}
|
|
1716
|
-
break;
|
|
1717
|
-
}
|
|
1718
|
-
case "user": {
|
|
1719
|
-
const textContent = this.getUserMessageText(message);
|
|
1720
|
-
if (textContent) {
|
|
1721
|
-
const userComponent = new UserMessageComponent(textContent);
|
|
1722
|
-
this.chatContainer.addChild(userComponent);
|
|
1723
|
-
if (options?.populateHistory) {
|
|
1724
|
-
this.editor.addToHistory(textContent);
|
|
1725
|
-
}
|
|
1726
|
-
}
|
|
1727
|
-
break;
|
|
1728
|
-
}
|
|
1729
|
-
case "assistant": {
|
|
1730
|
-
const assistantComponent = new AssistantMessageComponent(message, this.hideThinkingBlock);
|
|
1731
|
-
this.chatContainer.addChild(assistantComponent);
|
|
1732
|
-
break;
|
|
1733
|
-
}
|
|
1734
|
-
case "toolResult": {
|
|
1735
|
-
// Tool results are rendered inline with tool calls, handled separately
|
|
1736
|
-
break;
|
|
1737
|
-
}
|
|
1738
|
-
default: {
|
|
1739
|
-
const _exhaustive: never = message;
|
|
1740
|
-
}
|
|
1741
|
-
}
|
|
571
|
+
showTreeSelector(): void {
|
|
572
|
+
this.selectorController.showTreeSelector();
|
|
1742
573
|
}
|
|
1743
574
|
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
* @param options.updateFooter Update footer state
|
|
1748
|
-
* @param options.populateHistory Add user messages to editor history
|
|
1749
|
-
*/
|
|
1750
|
-
private renderSessionContext(
|
|
1751
|
-
sessionContext: SessionContext,
|
|
1752
|
-
options: { updateFooter?: boolean; populateHistory?: boolean } = {},
|
|
1753
|
-
): void {
|
|
1754
|
-
this.pendingTools.clear();
|
|
575
|
+
showSessionSelector(): void {
|
|
576
|
+
this.selectorController.showSessionSelector();
|
|
577
|
+
}
|
|
1755
578
|
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
}
|
|
579
|
+
handleResumeSession(sessionPath: string): Promise<void> {
|
|
580
|
+
return this.selectorController.handleResumeSession(sessionPath);
|
|
581
|
+
}
|
|
1760
582
|
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
this.addMessageToChat(message);
|
|
1765
|
-
// Render tool call components
|
|
1766
|
-
for (const content of message.content) {
|
|
1767
|
-
if (content.type === "toolCall") {
|
|
1768
|
-
const tool = this.session.getToolByName(content.name);
|
|
1769
|
-
const component = new ToolExecutionComponent(
|
|
1770
|
-
content.name,
|
|
1771
|
-
content.arguments,
|
|
1772
|
-
{ showImages: this.settingsManager.getShowImages() },
|
|
1773
|
-
tool,
|
|
1774
|
-
this.ui,
|
|
1775
|
-
this.sessionManager.getCwd(),
|
|
1776
|
-
);
|
|
1777
|
-
component.setExpanded(this.toolOutputExpanded);
|
|
1778
|
-
this.chatContainer.addChild(component);
|
|
1779
|
-
|
|
1780
|
-
if (message.stopReason === "aborted" || message.stopReason === "error") {
|
|
1781
|
-
let errorMessage: string;
|
|
1782
|
-
if (message.stopReason === "aborted") {
|
|
1783
|
-
const retryAttempt = this.session.retryAttempt;
|
|
1784
|
-
errorMessage =
|
|
1785
|
-
retryAttempt > 0
|
|
1786
|
-
? `Aborted after ${retryAttempt} retry attempt${retryAttempt > 1 ? "s" : ""}`
|
|
1787
|
-
: "Operation aborted";
|
|
1788
|
-
} else {
|
|
1789
|
-
errorMessage = message.errorMessage || "Error";
|
|
1790
|
-
}
|
|
1791
|
-
component.updateResult({ content: [{ type: "text", text: errorMessage }], isError: true });
|
|
1792
|
-
} else {
|
|
1793
|
-
this.pendingTools.set(content.id, component);
|
|
1794
|
-
}
|
|
1795
|
-
}
|
|
1796
|
-
}
|
|
1797
|
-
} else if (message.role === "toolResult") {
|
|
1798
|
-
// Match tool results to pending tool components
|
|
1799
|
-
const component = this.pendingTools.get(message.toolCallId);
|
|
1800
|
-
if (component) {
|
|
1801
|
-
component.updateResult(message);
|
|
1802
|
-
this.pendingTools.delete(message.toolCallId);
|
|
1803
|
-
}
|
|
1804
|
-
} else {
|
|
1805
|
-
// All other messages use standard rendering
|
|
1806
|
-
this.addMessageToChat(message, options);
|
|
1807
|
-
}
|
|
1808
|
-
}
|
|
583
|
+
showOAuthSelector(mode: "login" | "logout"): Promise<void> {
|
|
584
|
+
return this.selectorController.showOAuthSelector(mode);
|
|
585
|
+
}
|
|
1809
586
|
|
|
1810
|
-
|
|
1811
|
-
this.
|
|
587
|
+
showHookConfirm(title: string, message: string): Promise<boolean> {
|
|
588
|
+
return this.extensionUiController.showHookConfirm(title, message);
|
|
1812
589
|
}
|
|
1813
590
|
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
updateFooter: true,
|
|
1819
|
-
populateHistory: true,
|
|
1820
|
-
});
|
|
591
|
+
// Input handling
|
|
592
|
+
handleCtrlC(): void {
|
|
593
|
+
this.inputController.handleCtrlC();
|
|
594
|
+
}
|
|
1821
595
|
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
const compactionCount = allEntries.filter((e) => e.type === "compaction").length;
|
|
1825
|
-
if (compactionCount > 0) {
|
|
1826
|
-
const times = compactionCount === 1 ? "1 time" : `${compactionCount} times`;
|
|
1827
|
-
this.showStatus(`Session compacted ${times}`);
|
|
1828
|
-
}
|
|
596
|
+
handleCtrlD(): void {
|
|
597
|
+
this.inputController.handleCtrlD();
|
|
1829
598
|
}
|
|
1830
599
|
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
this.onInputCallback = (input) => {
|
|
1834
|
-
this.onInputCallback = undefined;
|
|
1835
|
-
resolve(input);
|
|
1836
|
-
};
|
|
1837
|
-
});
|
|
600
|
+
handleCtrlZ(): void {
|
|
601
|
+
this.inputController.handleCtrlZ();
|
|
1838
602
|
}
|
|
1839
603
|
|
|
1840
|
-
|
|
1841
|
-
this.
|
|
1842
|
-
const context = this.sessionManager.buildSessionContext();
|
|
1843
|
-
this.renderSessionContext(context);
|
|
604
|
+
handleDequeue(): void {
|
|
605
|
+
this.inputController.handleDequeue();
|
|
1844
606
|
}
|
|
1845
607
|
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
608
|
+
handleBackgroundCommand(): void {
|
|
609
|
+
this.inputController.handleBackgroundCommand();
|
|
610
|
+
}
|
|
1849
611
|
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
if (now - this.lastSigintTime < 500) {
|
|
1853
|
-
void this.shutdown();
|
|
1854
|
-
} else {
|
|
1855
|
-
this.clearEditor();
|
|
1856
|
-
this.lastSigintTime = now;
|
|
1857
|
-
}
|
|
612
|
+
handleImagePaste(): Promise<boolean> {
|
|
613
|
+
return this.inputController.handleImagePaste();
|
|
1858
614
|
}
|
|
1859
615
|
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
void this.shutdown();
|
|
616
|
+
cycleThinkingLevel(): void {
|
|
617
|
+
this.inputController.cycleThinkingLevel();
|
|
1863
618
|
}
|
|
1864
619
|
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
*/
|
|
1869
|
-
private async shutdown(): Promise<void> {
|
|
1870
|
-
this.voiceAutoModeEnabled = false;
|
|
1871
|
-
await this.voiceSupervisor.stop();
|
|
620
|
+
cycleRoleModel(options?: { temporary?: boolean }): Promise<void> {
|
|
621
|
+
return this.inputController.cycleRoleModel(options);
|
|
622
|
+
}
|
|
1872
623
|
|
|
1873
|
-
|
|
1874
|
-
|
|
624
|
+
toggleToolOutputExpansion(): void {
|
|
625
|
+
this.inputController.toggleToolOutputExpansion();
|
|
626
|
+
}
|
|
1875
627
|
|
|
1876
|
-
|
|
1877
|
-
|
|
628
|
+
toggleThinkingBlockVisibility(): void {
|
|
629
|
+
this.inputController.toggleThinkingBlockVisibility();
|
|
630
|
+
}
|
|
1878
631
|
|
|
1879
|
-
|
|
1880
|
-
|
|
632
|
+
openExternalEditor(): void {
|
|
633
|
+
this.inputController.openExternalEditor();
|
|
1881
634
|
}
|
|
1882
635
|
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
this.ui.start();
|
|
1887
|
-
this.ui.requestRender(true);
|
|
1888
|
-
});
|
|
636
|
+
registerExtensionShortcuts(): void {
|
|
637
|
+
this.inputController.registerExtensionShortcuts();
|
|
638
|
+
}
|
|
1889
639
|
|
|
1890
|
-
|
|
1891
|
-
|
|
640
|
+
// Voice handling
|
|
641
|
+
setVoiceStatus(text: string | undefined): void {
|
|
642
|
+
this.voiceManager.setVoiceStatus(text);
|
|
643
|
+
}
|
|
1892
644
|
|
|
1893
|
-
|
|
1894
|
-
|
|
645
|
+
handleVoiceInterrupt(reason?: string): Promise<void> {
|
|
646
|
+
return this.voiceManager.handleVoiceInterrupt(reason);
|
|
1895
647
|
}
|
|
1896
648
|
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
*/
|
|
1900
|
-
private handleDequeue(): void {
|
|
1901
|
-
const message = this.session.popLastQueuedMessage();
|
|
1902
|
-
if (!message) return;
|
|
1903
|
-
|
|
1904
|
-
// Prepend to existing editor text (if any)
|
|
1905
|
-
const currentText = this.editor.getText();
|
|
1906
|
-
const newText = currentText ? `${message}\n\n${currentText}` : message;
|
|
1907
|
-
this.editor.setText(newText);
|
|
1908
|
-
this.updatePendingMessagesDisplay();
|
|
1909
|
-
this.ui.requestRender();
|
|
1910
|
-
}
|
|
1911
|
-
|
|
1912
|
-
private handleBackgroundCommand(): void {
|
|
1913
|
-
if (this.isBackgrounded) {
|
|
1914
|
-
this.showStatus("Background mode already enabled");
|
|
1915
|
-
return;
|
|
1916
|
-
}
|
|
1917
|
-
if (!this.session.isStreaming && this.session.queuedMessageCount === 0) {
|
|
1918
|
-
this.showWarning("Agent is idle; nothing to background");
|
|
1919
|
-
return;
|
|
1920
|
-
}
|
|
1921
|
-
|
|
1922
|
-
this.isBackgrounded = true;
|
|
1923
|
-
const backgroundUiContext = this.createBackgroundUiContext();
|
|
1924
|
-
|
|
1925
|
-
// Background mode disables interactive UI so tools like ask fail fast.
|
|
1926
|
-
this.setToolUIContext(backgroundUiContext, false);
|
|
1927
|
-
this.initializeHookRunner(backgroundUiContext, false);
|
|
1928
|
-
|
|
1929
|
-
if (this.loadingAnimation) {
|
|
1930
|
-
this.loadingAnimation.stop();
|
|
1931
|
-
this.loadingAnimation = undefined;
|
|
1932
|
-
}
|
|
1933
|
-
if (this.autoCompactionLoader) {
|
|
1934
|
-
this.autoCompactionLoader.stop();
|
|
1935
|
-
this.autoCompactionLoader = undefined;
|
|
1936
|
-
}
|
|
1937
|
-
if (this.retryLoader) {
|
|
1938
|
-
this.retryLoader.stop();
|
|
1939
|
-
this.retryLoader = undefined;
|
|
1940
|
-
}
|
|
1941
|
-
this.statusContainer.clear();
|
|
1942
|
-
this.statusLine.dispose();
|
|
1943
|
-
|
|
1944
|
-
if (this.unsubscribe) {
|
|
1945
|
-
this.unsubscribe();
|
|
1946
|
-
}
|
|
1947
|
-
this.unsubscribe = this.session.subscribe(async (event) => {
|
|
1948
|
-
await this.handleBackgroundEvent(event);
|
|
1949
|
-
});
|
|
1950
|
-
|
|
1951
|
-
// Backgrounding keeps the current process to preserve in-flight agent state.
|
|
1952
|
-
if (this.isInitialized) {
|
|
1953
|
-
this.ui.stop();
|
|
1954
|
-
this.isInitialized = false;
|
|
1955
|
-
}
|
|
1956
|
-
|
|
1957
|
-
process.stdout.write("Background mode enabled. Run `bg` to continue in background.\n");
|
|
1958
|
-
|
|
1959
|
-
if (process.platform === "win32" || !process.stdout.isTTY) {
|
|
1960
|
-
process.stdout.write("Backgrounding requires POSIX job control; continuing in foreground.\n");
|
|
1961
|
-
return;
|
|
1962
|
-
}
|
|
1963
|
-
|
|
1964
|
-
process.kill(0, "SIGTSTP");
|
|
1965
|
-
}
|
|
1966
|
-
|
|
1967
|
-
private async handleBackgroundEvent(event: AgentSessionEvent): Promise<void> {
|
|
1968
|
-
if (event.type !== "agent_end") {
|
|
1969
|
-
return;
|
|
1970
|
-
}
|
|
1971
|
-
if (this.session.queuedMessageCount > 0 || this.session.isStreaming) {
|
|
1972
|
-
return;
|
|
1973
|
-
}
|
|
1974
|
-
this.sendCompletionNotification();
|
|
1975
|
-
await this.shutdown();
|
|
1976
|
-
}
|
|
1977
|
-
|
|
1978
|
-
/**
|
|
1979
|
-
* Handle Ctrl+V for image paste from clipboard.
|
|
1980
|
-
* Returns true if an image was found and added, false otherwise.
|
|
1981
|
-
*/
|
|
1982
|
-
private async handleImagePaste(): Promise<boolean> {
|
|
1983
|
-
try {
|
|
1984
|
-
const image = await readImageFromClipboard();
|
|
1985
|
-
if (image) {
|
|
1986
|
-
let imageData = image;
|
|
1987
|
-
if (this.settingsManager.getImageAutoResize()) {
|
|
1988
|
-
try {
|
|
1989
|
-
const resized = await resizeImage({
|
|
1990
|
-
type: "image",
|
|
1991
|
-
data: image.data,
|
|
1992
|
-
mimeType: image.mimeType,
|
|
1993
|
-
});
|
|
1994
|
-
imageData = { data: resized.data, mimeType: resized.mimeType };
|
|
1995
|
-
} catch {
|
|
1996
|
-
imageData = image;
|
|
1997
|
-
}
|
|
1998
|
-
}
|
|
1999
|
-
|
|
2000
|
-
this.pendingImages.push({
|
|
2001
|
-
type: "image",
|
|
2002
|
-
data: imageData.data,
|
|
2003
|
-
mimeType: imageData.mimeType,
|
|
2004
|
-
});
|
|
2005
|
-
// Insert styled placeholder at cursor like Claude does
|
|
2006
|
-
const imageNum = this.pendingImages.length;
|
|
2007
|
-
const placeholder = theme.bold(theme.underline(`[Image #${imageNum}]`));
|
|
2008
|
-
this.editor.insertText(`${placeholder} `);
|
|
2009
|
-
this.ui.requestRender();
|
|
2010
|
-
return true;
|
|
2011
|
-
}
|
|
2012
|
-
// No image in clipboard - show hint
|
|
2013
|
-
this.showStatus("No image in clipboard (use terminal paste for text)");
|
|
2014
|
-
return false;
|
|
2015
|
-
} catch {
|
|
2016
|
-
this.showStatus("Failed to read clipboard");
|
|
2017
|
-
return false;
|
|
2018
|
-
}
|
|
2019
|
-
}
|
|
2020
|
-
|
|
2021
|
-
private setVoiceStatus(text: string | undefined): void {
|
|
2022
|
-
this.statusLine.setHookStatus("voice", text);
|
|
2023
|
-
this.ui.requestRender();
|
|
2024
|
-
}
|
|
2025
|
-
|
|
2026
|
-
private async handleVoiceInterrupt(reason?: string): Promise<void> {
|
|
2027
|
-
const now = Date.now();
|
|
2028
|
-
if (now - this.lastVoiceInterruptAt < 200) return;
|
|
2029
|
-
this.lastVoiceInterruptAt = now;
|
|
2030
|
-
if (this.session.isBashRunning) {
|
|
2031
|
-
this.session.abortBash();
|
|
2032
|
-
}
|
|
2033
|
-
if (this.session.isStreaming) {
|
|
2034
|
-
await this.session.abort();
|
|
2035
|
-
}
|
|
2036
|
-
if (reason) {
|
|
2037
|
-
this.showStatus(reason);
|
|
2038
|
-
}
|
|
2039
|
-
}
|
|
2040
|
-
|
|
2041
|
-
private stopVoiceProgressTimer(): void {
|
|
2042
|
-
if (this.voiceProgressTimer) {
|
|
2043
|
-
clearTimeout(this.voiceProgressTimer);
|
|
2044
|
-
this.voiceProgressTimer = undefined;
|
|
2045
|
-
}
|
|
2046
|
-
}
|
|
2047
|
-
|
|
2048
|
-
private startVoiceProgressTimer(): void {
|
|
2049
|
-
this.stopVoiceProgressTimer();
|
|
2050
|
-
if (!this.settingsManager.getVoiceEnabled() || !this.voiceAutoModeEnabled) return;
|
|
2051
|
-
this.voiceProgressSpoken = false;
|
|
2052
|
-
this.voiceProgressLastLength = 0;
|
|
2053
|
-
this.voiceProgressTimer = setTimeout(() => {
|
|
2054
|
-
void this.maybeSpeakProgress();
|
|
2055
|
-
}, VOICE_PROGRESS_DELAY_MS);
|
|
2056
|
-
}
|
|
2057
|
-
|
|
2058
|
-
private async maybeSpeakProgress(): Promise<void> {
|
|
2059
|
-
if (!this.session.isStreaming || this.voiceProgressSpoken || !this.voiceAutoModeEnabled) return;
|
|
2060
|
-
const streaming = this.streamingMessage;
|
|
2061
|
-
if (!streaming) return;
|
|
2062
|
-
const text = this.extractAssistantText(streaming);
|
|
2063
|
-
if (!text || text.length < VOICE_PROGRESS_MIN_CHARS) {
|
|
2064
|
-
if (this.session.isStreaming) {
|
|
2065
|
-
this.voiceProgressTimer = setTimeout(() => {
|
|
2066
|
-
void this.maybeSpeakProgress();
|
|
2067
|
-
}, VOICE_PROGRESS_DELAY_MS);
|
|
2068
|
-
}
|
|
2069
|
-
return;
|
|
2070
|
-
}
|
|
2071
|
-
|
|
2072
|
-
const delta = text.length - this.voiceProgressLastLength;
|
|
2073
|
-
if (delta < VOICE_PROGRESS_DELTA_CHARS) {
|
|
2074
|
-
if (this.session.isStreaming) {
|
|
2075
|
-
this.voiceProgressTimer = setTimeout(() => {
|
|
2076
|
-
void this.maybeSpeakProgress();
|
|
2077
|
-
}, VOICE_PROGRESS_DELAY_MS);
|
|
2078
|
-
}
|
|
2079
|
-
return;
|
|
2080
|
-
}
|
|
2081
|
-
|
|
2082
|
-
this.voiceProgressLastLength = text.length;
|
|
2083
|
-
this.voiceProgressSpoken = true;
|
|
2084
|
-
this.voiceSupervisor.notifyProgress(text);
|
|
2085
|
-
}
|
|
2086
|
-
|
|
2087
|
-
private async submitVoiceText(text: string): Promise<void> {
|
|
2088
|
-
const cleaned = text.trim();
|
|
2089
|
-
if (!cleaned) {
|
|
2090
|
-
this.showWarning("No speech detected. Try again.");
|
|
2091
|
-
return;
|
|
2092
|
-
}
|
|
2093
|
-
const toSend = cleaned;
|
|
2094
|
-
this.editor.addToHistory(toSend);
|
|
2095
|
-
|
|
2096
|
-
if (this.session.isStreaming) {
|
|
2097
|
-
await this.session.abort();
|
|
2098
|
-
await this.session.steer(toSend);
|
|
2099
|
-
this.updatePendingMessagesDisplay();
|
|
2100
|
-
return;
|
|
2101
|
-
}
|
|
2102
|
-
|
|
2103
|
-
if (this.onInputCallback) {
|
|
2104
|
-
this.onInputCallback({ text: toSend });
|
|
2105
|
-
}
|
|
2106
|
-
}
|
|
2107
|
-
|
|
2108
|
-
private findLastAssistantMessage(): AssistantMessage | undefined {
|
|
2109
|
-
for (let i = this.session.messages.length - 1; i >= 0; i--) {
|
|
2110
|
-
const message = this.session.messages[i];
|
|
2111
|
-
if (message?.role === "assistant") {
|
|
2112
|
-
return message as AssistantMessage;
|
|
2113
|
-
}
|
|
2114
|
-
}
|
|
2115
|
-
return undefined;
|
|
2116
|
-
}
|
|
2117
|
-
|
|
2118
|
-
private extractAssistantText(message: AssistantMessage): string {
|
|
2119
|
-
let text = "";
|
|
2120
|
-
for (const content of message.content) {
|
|
2121
|
-
if (content.type === "text") {
|
|
2122
|
-
text += content.text;
|
|
2123
|
-
}
|
|
2124
|
-
}
|
|
2125
|
-
return text.trim();
|
|
2126
|
-
}
|
|
2127
|
-
|
|
2128
|
-
private updateEditorBorderColor(): void {
|
|
2129
|
-
if (this.isBashMode) {
|
|
2130
|
-
this.editor.borderColor = theme.getBashModeBorderColor();
|
|
2131
|
-
} else {
|
|
2132
|
-
const level = this.session.thinkingLevel || "off";
|
|
2133
|
-
this.editor.borderColor = theme.getThinkingBorderColor(level);
|
|
2134
|
-
}
|
|
2135
|
-
// Update footer content in editor's top border
|
|
2136
|
-
this.updateEditorTopBorder();
|
|
2137
|
-
this.ui.requestRender();
|
|
2138
|
-
}
|
|
2139
|
-
|
|
2140
|
-
private updateEditorTopBorder(): void {
|
|
2141
|
-
const width = this.ui.getWidth();
|
|
2142
|
-
const topBorder = this.statusLine.getTopBorder(width);
|
|
2143
|
-
this.editor.setTopBorder(topBorder);
|
|
2144
|
-
}
|
|
2145
|
-
|
|
2146
|
-
private cycleThinkingLevel(): void {
|
|
2147
|
-
const newLevel = this.session.cycleThinkingLevel();
|
|
2148
|
-
if (newLevel === undefined) {
|
|
2149
|
-
this.showStatus("Current model does not support thinking");
|
|
2150
|
-
} else {
|
|
2151
|
-
this.statusLine.invalidate();
|
|
2152
|
-
this.updateEditorBorderColor();
|
|
2153
|
-
}
|
|
2154
|
-
}
|
|
2155
|
-
|
|
2156
|
-
private async cycleRoleModel(options?: { temporary?: boolean }): Promise<void> {
|
|
2157
|
-
try {
|
|
2158
|
-
const roleOrder = ["slow", "default", "smol"];
|
|
2159
|
-
const result = await this.session.cycleRoleModels(roleOrder, options);
|
|
2160
|
-
if (!result) {
|
|
2161
|
-
this.showStatus("Only one role model available");
|
|
2162
|
-
return;
|
|
2163
|
-
}
|
|
2164
|
-
|
|
2165
|
-
this.statusLine.invalidate();
|
|
2166
|
-
this.updateEditorBorderColor();
|
|
2167
|
-
const roleLabel = result.role === "default" ? "default" : result.role;
|
|
2168
|
-
const roleLabelStyled = theme.bold(theme.fg("accent", roleLabel));
|
|
2169
|
-
const thinkingStr =
|
|
2170
|
-
result.model.reasoning && result.thinkingLevel !== "off" ? ` (thinking: ${result.thinkingLevel})` : "";
|
|
2171
|
-
const tempLabel = options?.temporary ? " (temporary)" : "";
|
|
2172
|
-
const cycleSeparator = theme.fg("dim", " > ");
|
|
2173
|
-
const cycleLabel = roleOrder
|
|
2174
|
-
.map((role) => {
|
|
2175
|
-
if (role === result.role) {
|
|
2176
|
-
return theme.bold(theme.fg("accent", role));
|
|
2177
|
-
}
|
|
2178
|
-
return theme.fg("muted", role);
|
|
2179
|
-
})
|
|
2180
|
-
.join(cycleSeparator);
|
|
2181
|
-
const orderLabel = ` (cycle: ${cycleLabel})`;
|
|
2182
|
-
this.showStatus(
|
|
2183
|
-
`Switched to ${roleLabelStyled}: ${result.model.name || result.model.id}${thinkingStr}${tempLabel}${orderLabel}`,
|
|
2184
|
-
{ dim: false },
|
|
2185
|
-
);
|
|
2186
|
-
} catch (error) {
|
|
2187
|
-
this.showError(error instanceof Error ? error.message : String(error));
|
|
2188
|
-
}
|
|
2189
|
-
}
|
|
2190
|
-
|
|
2191
|
-
private toggleToolOutputExpansion(): void {
|
|
2192
|
-
this.toolOutputExpanded = !this.toolOutputExpanded;
|
|
2193
|
-
for (const child of this.chatContainer.children) {
|
|
2194
|
-
if (isExpandable(child)) {
|
|
2195
|
-
child.setExpanded(this.toolOutputExpanded);
|
|
2196
|
-
}
|
|
2197
|
-
}
|
|
2198
|
-
this.ui.requestRender();
|
|
2199
|
-
}
|
|
2200
|
-
|
|
2201
|
-
private toggleThinkingBlockVisibility(): void {
|
|
2202
|
-
this.hideThinkingBlock = !this.hideThinkingBlock;
|
|
2203
|
-
this.settingsManager.setHideThinkingBlock(this.hideThinkingBlock);
|
|
2204
|
-
|
|
2205
|
-
// Rebuild chat from session messages
|
|
2206
|
-
this.chatContainer.clear();
|
|
2207
|
-
this.rebuildChatFromMessages();
|
|
2208
|
-
|
|
2209
|
-
// If streaming, re-add the streaming component with updated visibility and re-render
|
|
2210
|
-
if (this.streamingComponent && this.streamingMessage) {
|
|
2211
|
-
this.streamingComponent.setHideThinkingBlock(this.hideThinkingBlock);
|
|
2212
|
-
this.streamingComponent.updateContent(this.streamingMessage);
|
|
2213
|
-
this.chatContainer.addChild(this.streamingComponent);
|
|
2214
|
-
}
|
|
2215
|
-
|
|
2216
|
-
this.showStatus(`Thinking blocks: ${this.hideThinkingBlock ? "hidden" : "visible"}`);
|
|
2217
|
-
}
|
|
2218
|
-
|
|
2219
|
-
private openExternalEditor(): void {
|
|
2220
|
-
// Determine editor (respect $VISUAL, then $EDITOR)
|
|
2221
|
-
const editorCmd = process.env.VISUAL || process.env.EDITOR;
|
|
2222
|
-
if (!editorCmd) {
|
|
2223
|
-
this.showWarning("No editor configured. Set $VISUAL or $EDITOR environment variable.");
|
|
2224
|
-
return;
|
|
2225
|
-
}
|
|
2226
|
-
|
|
2227
|
-
const currentText = this.editor.getText();
|
|
2228
|
-
const tmpFile = path.join(os.tmpdir(), `omp-editor-${nanoid()}.omp.md`);
|
|
2229
|
-
|
|
2230
|
-
try {
|
|
2231
|
-
// Write current content to temp file
|
|
2232
|
-
fs.writeFileSync(tmpFile, currentText, "utf-8");
|
|
2233
|
-
|
|
2234
|
-
// Stop TUI to release terminal
|
|
2235
|
-
this.ui.stop();
|
|
2236
|
-
|
|
2237
|
-
// Split by space to support editor arguments (e.g., "code --wait")
|
|
2238
|
-
const [editor, ...editorArgs] = editorCmd.split(" ");
|
|
2239
|
-
|
|
2240
|
-
// Spawn editor synchronously with inherited stdio for interactive editing
|
|
2241
|
-
const result = Bun.spawnSync([editor, ...editorArgs, tmpFile], {
|
|
2242
|
-
stdin: "inherit",
|
|
2243
|
-
stdout: "inherit",
|
|
2244
|
-
stderr: "inherit",
|
|
2245
|
-
});
|
|
2246
|
-
|
|
2247
|
-
// On successful exit (exitCode 0), replace editor content
|
|
2248
|
-
if (result.exitCode === 0) {
|
|
2249
|
-
const newContent = fs.readFileSync(tmpFile, "utf-8").replace(/\n$/, "");
|
|
2250
|
-
this.editor.setText(newContent);
|
|
2251
|
-
}
|
|
2252
|
-
// On non-zero exit, keep original text (no action needed)
|
|
2253
|
-
} finally {
|
|
2254
|
-
// Clean up temp file
|
|
2255
|
-
try {
|
|
2256
|
-
fs.unlinkSync(tmpFile);
|
|
2257
|
-
} catch {
|
|
2258
|
-
// Ignore cleanup errors
|
|
2259
|
-
}
|
|
2260
|
-
|
|
2261
|
-
// Restart TUI
|
|
2262
|
-
this.ui.start();
|
|
2263
|
-
this.ui.requestRender();
|
|
2264
|
-
}
|
|
2265
|
-
}
|
|
2266
|
-
|
|
2267
|
-
// =========================================================================
|
|
2268
|
-
// UI helpers
|
|
2269
|
-
// =========================================================================
|
|
2270
|
-
|
|
2271
|
-
clearEditor(): void {
|
|
2272
|
-
if (this.isBackgrounded) {
|
|
2273
|
-
return;
|
|
2274
|
-
}
|
|
2275
|
-
this.editor.setText("");
|
|
2276
|
-
this.pendingImages = [];
|
|
2277
|
-
this.ui.requestRender();
|
|
2278
|
-
}
|
|
2279
|
-
|
|
2280
|
-
showError(errorMessage: string): void {
|
|
2281
|
-
if (this.isBackgrounded) {
|
|
2282
|
-
console.error(`Error: ${errorMessage}`);
|
|
2283
|
-
return;
|
|
2284
|
-
}
|
|
2285
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
2286
|
-
this.chatContainer.addChild(new Text(theme.fg("error", `Error: ${errorMessage}`), 1, 0));
|
|
2287
|
-
this.ui.requestRender();
|
|
2288
|
-
}
|
|
2289
|
-
|
|
2290
|
-
showWarning(warningMessage: string): void {
|
|
2291
|
-
if (this.isBackgrounded) {
|
|
2292
|
-
console.error(`Warning: ${warningMessage}`);
|
|
2293
|
-
return;
|
|
2294
|
-
}
|
|
2295
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
2296
|
-
this.chatContainer.addChild(new Text(theme.fg("warning", `Warning: ${warningMessage}`), 1, 0));
|
|
2297
|
-
this.ui.requestRender();
|
|
2298
|
-
}
|
|
2299
|
-
|
|
2300
|
-
showNewVersionNotification(newVersion: string): void {
|
|
2301
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
2302
|
-
this.chatContainer.addChild(new DynamicBorder((text) => theme.fg("warning", text)));
|
|
2303
|
-
this.chatContainer.addChild(
|
|
2304
|
-
new Text(
|
|
2305
|
-
theme.bold(theme.fg("warning", "Update Available")) +
|
|
2306
|
-
"\n" +
|
|
2307
|
-
theme.fg("muted", `New version ${newVersion} is available. Run: `) +
|
|
2308
|
-
theme.fg("accent", "omp update"),
|
|
2309
|
-
1,
|
|
2310
|
-
0,
|
|
2311
|
-
),
|
|
2312
|
-
);
|
|
2313
|
-
this.chatContainer.addChild(new DynamicBorder((text) => theme.fg("warning", text)));
|
|
2314
|
-
this.ui.requestRender();
|
|
2315
|
-
}
|
|
2316
|
-
|
|
2317
|
-
private updatePendingMessagesDisplay(): void {
|
|
2318
|
-
this.pendingMessagesContainer.clear();
|
|
2319
|
-
const queuedMessages = this.session.getQueuedMessages();
|
|
2320
|
-
const steeringMessages = [
|
|
2321
|
-
...queuedMessages.steering.map((message) => ({ message, label: "Steer" })),
|
|
2322
|
-
...this.compactionQueuedMessages
|
|
2323
|
-
.filter((entry) => entry.mode === "steer")
|
|
2324
|
-
.map((entry) => ({ message: entry.text, label: "Steer" })),
|
|
2325
|
-
];
|
|
2326
|
-
const followUpMessages = [
|
|
2327
|
-
...queuedMessages.followUp.map((message) => ({ message, label: "Follow-up" })),
|
|
2328
|
-
...this.compactionQueuedMessages
|
|
2329
|
-
.filter((entry) => entry.mode === "followUp")
|
|
2330
|
-
.map((entry) => ({ message: entry.text, label: "Follow-up" })),
|
|
2331
|
-
];
|
|
2332
|
-
const allMessages = [...steeringMessages, ...followUpMessages];
|
|
2333
|
-
if (allMessages.length > 0) {
|
|
2334
|
-
this.pendingMessagesContainer.addChild(new Spacer(1));
|
|
2335
|
-
for (const entry of allMessages) {
|
|
2336
|
-
const queuedText = theme.fg("dim", `${entry.label}: ${entry.message}`);
|
|
2337
|
-
this.pendingMessagesContainer.addChild(new TruncatedText(queuedText, 1, 0));
|
|
2338
|
-
}
|
|
2339
|
-
}
|
|
2340
|
-
}
|
|
2341
|
-
|
|
2342
|
-
private queueCompactionMessage(text: string, mode: "steer" | "followUp"): void {
|
|
2343
|
-
this.compactionQueuedMessages.push({ text, mode });
|
|
2344
|
-
this.editor.addToHistory(text);
|
|
2345
|
-
this.editor.setText("");
|
|
2346
|
-
this.updatePendingMessagesDisplay();
|
|
2347
|
-
this.showStatus("Queued message for after compaction");
|
|
2348
|
-
}
|
|
2349
|
-
|
|
2350
|
-
private isKnownSlashCommand(text: string): boolean {
|
|
2351
|
-
if (!text.startsWith("/")) return false;
|
|
2352
|
-
const spaceIndex = text.indexOf(" ");
|
|
2353
|
-
const commandName = spaceIndex === -1 ? text.slice(1) : text.slice(1, spaceIndex);
|
|
2354
|
-
if (!commandName) return false;
|
|
2355
|
-
|
|
2356
|
-
if (this.session.extensionRunner?.getCommand(commandName)) {
|
|
2357
|
-
return true;
|
|
2358
|
-
}
|
|
2359
|
-
|
|
2360
|
-
if (this.session.customCommands.some((cmd) => cmd.command.name === commandName)) {
|
|
2361
|
-
return true;
|
|
2362
|
-
}
|
|
2363
|
-
|
|
2364
|
-
return this.fileSlashCommands.has(commandName);
|
|
2365
|
-
}
|
|
2366
|
-
|
|
2367
|
-
private async flushCompactionQueue(options?: { willRetry?: boolean }): Promise<void> {
|
|
2368
|
-
if (this.compactionQueuedMessages.length === 0) {
|
|
2369
|
-
return;
|
|
2370
|
-
}
|
|
2371
|
-
|
|
2372
|
-
const queuedMessages = [...this.compactionQueuedMessages];
|
|
2373
|
-
this.compactionQueuedMessages = [];
|
|
2374
|
-
this.updatePendingMessagesDisplay();
|
|
2375
|
-
|
|
2376
|
-
const restoreQueue = (error: unknown) => {
|
|
2377
|
-
this.session.clearQueue();
|
|
2378
|
-
this.compactionQueuedMessages = queuedMessages;
|
|
2379
|
-
this.updatePendingMessagesDisplay();
|
|
2380
|
-
this.showError(
|
|
2381
|
-
`Failed to send queued message${queuedMessages.length > 1 ? "s" : ""}: ${
|
|
2382
|
-
error instanceof Error ? error.message : String(error)
|
|
2383
|
-
}`,
|
|
2384
|
-
);
|
|
2385
|
-
};
|
|
2386
|
-
|
|
2387
|
-
try {
|
|
2388
|
-
if (options?.willRetry) {
|
|
2389
|
-
for (const message of queuedMessages) {
|
|
2390
|
-
if (this.isKnownSlashCommand(message.text)) {
|
|
2391
|
-
await this.session.prompt(message.text);
|
|
2392
|
-
} else if (message.mode === "followUp") {
|
|
2393
|
-
await this.session.followUp(message.text);
|
|
2394
|
-
} else {
|
|
2395
|
-
await this.session.steer(message.text);
|
|
2396
|
-
}
|
|
2397
|
-
}
|
|
2398
|
-
this.updatePendingMessagesDisplay();
|
|
2399
|
-
return;
|
|
2400
|
-
}
|
|
2401
|
-
|
|
2402
|
-
const firstPromptIndex = queuedMessages.findIndex((message) => !this.isKnownSlashCommand(message.text));
|
|
2403
|
-
if (firstPromptIndex === -1) {
|
|
2404
|
-
for (const message of queuedMessages) {
|
|
2405
|
-
await this.session.prompt(message.text);
|
|
2406
|
-
}
|
|
2407
|
-
return;
|
|
2408
|
-
}
|
|
2409
|
-
|
|
2410
|
-
const preCommands = queuedMessages.slice(0, firstPromptIndex);
|
|
2411
|
-
const firstPrompt = queuedMessages[firstPromptIndex];
|
|
2412
|
-
const rest = queuedMessages.slice(firstPromptIndex + 1);
|
|
2413
|
-
|
|
2414
|
-
for (const message of preCommands) {
|
|
2415
|
-
await this.session.prompt(message.text);
|
|
2416
|
-
}
|
|
2417
|
-
|
|
2418
|
-
const promptPromise = this.session.prompt(firstPrompt.text).catch((error) => {
|
|
2419
|
-
restoreQueue(error);
|
|
2420
|
-
});
|
|
2421
|
-
|
|
2422
|
-
for (const message of rest) {
|
|
2423
|
-
if (this.isKnownSlashCommand(message.text)) {
|
|
2424
|
-
await this.session.prompt(message.text);
|
|
2425
|
-
} else if (message.mode === "followUp") {
|
|
2426
|
-
await this.session.followUp(message.text);
|
|
2427
|
-
} else {
|
|
2428
|
-
await this.session.steer(message.text);
|
|
2429
|
-
}
|
|
2430
|
-
}
|
|
2431
|
-
this.updatePendingMessagesDisplay();
|
|
2432
|
-
void promptPromise;
|
|
2433
|
-
} catch (error) {
|
|
2434
|
-
restoreQueue(error);
|
|
2435
|
-
}
|
|
649
|
+
startVoiceProgressTimer(): void {
|
|
650
|
+
this.voiceManager.startVoiceProgressTimer();
|
|
2436
651
|
}
|
|
2437
652
|
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
for (const component of this.pendingBashComponents) {
|
|
2441
|
-
this.pendingMessagesContainer.removeChild(component);
|
|
2442
|
-
this.chatContainer.addChild(component);
|
|
2443
|
-
}
|
|
2444
|
-
this.pendingBashComponents = [];
|
|
2445
|
-
}
|
|
2446
|
-
|
|
2447
|
-
// =========================================================================
|
|
2448
|
-
// Selectors
|
|
2449
|
-
// =========================================================================
|
|
2450
|
-
|
|
2451
|
-
/**
|
|
2452
|
-
* Shows a selector component in place of the editor.
|
|
2453
|
-
* @param create Factory that receives a `done` callback and returns the component and focus target
|
|
2454
|
-
*/
|
|
2455
|
-
private showSelector(create: (done: () => void) => { component: Component; focus: Component }): void {
|
|
2456
|
-
const done = () => {
|
|
2457
|
-
this.editorContainer.clear();
|
|
2458
|
-
this.editorContainer.addChild(this.editor);
|
|
2459
|
-
this.ui.setFocus(this.editor);
|
|
2460
|
-
};
|
|
2461
|
-
const { component, focus } = create(done);
|
|
2462
|
-
this.editorContainer.clear();
|
|
2463
|
-
this.editorContainer.addChild(component);
|
|
2464
|
-
this.ui.setFocus(focus);
|
|
2465
|
-
this.ui.requestRender();
|
|
653
|
+
stopVoiceProgressTimer(): void {
|
|
654
|
+
this.voiceManager.stopVoiceProgressTimer();
|
|
2466
655
|
}
|
|
2467
656
|
|
|
2468
|
-
|
|
2469
|
-
this.
|
|
2470
|
-
const selector = new SettingsSelectorComponent(
|
|
2471
|
-
this.settingsManager,
|
|
2472
|
-
{
|
|
2473
|
-
availableThinkingLevels: this.session.getAvailableThinkingLevels(),
|
|
2474
|
-
thinkingLevel: this.session.thinkingLevel,
|
|
2475
|
-
availableThemes: getAvailableThemes(),
|
|
2476
|
-
cwd: process.cwd(),
|
|
2477
|
-
},
|
|
2478
|
-
{
|
|
2479
|
-
onChange: (id, value) => this.handleSettingChange(id, value),
|
|
2480
|
-
onThemePreview: (themeName) => {
|
|
2481
|
-
const result = setTheme(themeName, true);
|
|
2482
|
-
if (result.success) {
|
|
2483
|
-
this.ui.invalidate();
|
|
2484
|
-
this.ui.requestRender();
|
|
2485
|
-
}
|
|
2486
|
-
},
|
|
2487
|
-
onStatusLinePreview: (settings) => {
|
|
2488
|
-
// Update status line with preview settings
|
|
2489
|
-
const currentSettings = this.settingsManager.getStatusLineSettings();
|
|
2490
|
-
this.statusLine.updateSettings({ ...currentSettings, ...settings });
|
|
2491
|
-
this.updateEditorTopBorder();
|
|
2492
|
-
this.ui.requestRender();
|
|
2493
|
-
},
|
|
2494
|
-
getStatusLinePreview: () => {
|
|
2495
|
-
// Return the rendered status line for inline preview
|
|
2496
|
-
const width = this.ui.getWidth();
|
|
2497
|
-
return this.statusLine.getTopBorder(width).content;
|
|
2498
|
-
},
|
|
2499
|
-
onPluginsChanged: () => {
|
|
2500
|
-
this.ui.requestRender();
|
|
2501
|
-
},
|
|
2502
|
-
onCancel: () => {
|
|
2503
|
-
done();
|
|
2504
|
-
// Restore status line to saved settings
|
|
2505
|
-
this.statusLine.updateSettings(this.settingsManager.getStatusLineSettings());
|
|
2506
|
-
this.updateEditorTopBorder();
|
|
2507
|
-
this.ui.requestRender();
|
|
2508
|
-
},
|
|
2509
|
-
},
|
|
2510
|
-
);
|
|
2511
|
-
return { component: selector, focus: selector };
|
|
2512
|
-
});
|
|
657
|
+
maybeSpeakProgress(): Promise<void> {
|
|
658
|
+
return this.voiceManager.maybeSpeakProgress();
|
|
2513
659
|
}
|
|
2514
660
|
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
if (!historyStorage) return;
|
|
2518
|
-
|
|
2519
|
-
this.showSelector((done) => {
|
|
2520
|
-
const component = new HistorySearchComponent(
|
|
2521
|
-
historyStorage,
|
|
2522
|
-
(prompt) => {
|
|
2523
|
-
done();
|
|
2524
|
-
this.editor.setText(prompt);
|
|
2525
|
-
this.ui.requestRender();
|
|
2526
|
-
},
|
|
2527
|
-
() => {
|
|
2528
|
-
done();
|
|
2529
|
-
this.ui.requestRender();
|
|
2530
|
-
},
|
|
2531
|
-
);
|
|
2532
|
-
return { component, focus: component };
|
|
2533
|
-
});
|
|
2534
|
-
}
|
|
2535
|
-
|
|
2536
|
-
/**
|
|
2537
|
-
* Show the Extension Control Center dashboard.
|
|
2538
|
-
* Replaces /status with a unified view of all providers and extensions.
|
|
2539
|
-
*/
|
|
2540
|
-
private showExtensionsDashboard(): void {
|
|
2541
|
-
this.showSelector((done) => {
|
|
2542
|
-
const dashboard = new ExtensionDashboard(process.cwd(), this.settingsManager, this.ui.terminal.rows);
|
|
2543
|
-
dashboard.onClose = () => {
|
|
2544
|
-
done();
|
|
2545
|
-
this.ui.requestRender();
|
|
2546
|
-
};
|
|
2547
|
-
return { component: dashboard, focus: dashboard };
|
|
2548
|
-
});
|
|
661
|
+
submitVoiceText(text: string): Promise<void> {
|
|
662
|
+
return this.voiceManager.submitVoiceText(text);
|
|
2549
663
|
}
|
|
2550
664
|
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
* This handles side effects and session-specific settings.
|
|
2555
|
-
*/
|
|
2556
|
-
private handleSettingChange(id: string, value: string | boolean): void {
|
|
2557
|
-
// Discovery provider toggles
|
|
2558
|
-
if (id.startsWith("discovery.")) {
|
|
2559
|
-
const providerId = id.replace("discovery.", "");
|
|
2560
|
-
if (value) {
|
|
2561
|
-
enableProvider(providerId);
|
|
2562
|
-
} else {
|
|
2563
|
-
disableProvider(providerId);
|
|
2564
|
-
}
|
|
2565
|
-
return;
|
|
2566
|
-
}
|
|
2567
|
-
|
|
2568
|
-
switch (id) {
|
|
2569
|
-
// Session-managed settings (not in SettingsManager)
|
|
2570
|
-
case "autoCompact":
|
|
2571
|
-
this.session.setAutoCompactionEnabled(value as boolean);
|
|
2572
|
-
this.statusLine.setAutoCompactEnabled(value as boolean);
|
|
2573
|
-
break;
|
|
2574
|
-
case "steeringMode":
|
|
2575
|
-
this.session.setSteeringMode(value as "all" | "one-at-a-time");
|
|
2576
|
-
break;
|
|
2577
|
-
case "followUpMode":
|
|
2578
|
-
this.session.setFollowUpMode(value as "all" | "one-at-a-time");
|
|
2579
|
-
break;
|
|
2580
|
-
case "interruptMode":
|
|
2581
|
-
this.session.setInterruptMode(value as "immediate" | "wait");
|
|
2582
|
-
break;
|
|
2583
|
-
case "thinkingLevel":
|
|
2584
|
-
this.session.setThinkingLevel(value as ThinkingLevel);
|
|
2585
|
-
this.statusLine.invalidate();
|
|
2586
|
-
this.updateEditorBorderColor();
|
|
2587
|
-
break;
|
|
2588
|
-
|
|
2589
|
-
// Settings with UI side effects
|
|
2590
|
-
case "showImages":
|
|
2591
|
-
for (const child of this.chatContainer.children) {
|
|
2592
|
-
if (child instanceof ToolExecutionComponent) {
|
|
2593
|
-
child.setShowImages(value as boolean);
|
|
2594
|
-
}
|
|
2595
|
-
}
|
|
2596
|
-
break;
|
|
2597
|
-
case "hideThinking":
|
|
2598
|
-
this.hideThinkingBlock = value as boolean;
|
|
2599
|
-
for (const child of this.chatContainer.children) {
|
|
2600
|
-
if (child instanceof AssistantMessageComponent) {
|
|
2601
|
-
child.setHideThinkingBlock(value as boolean);
|
|
2602
|
-
}
|
|
2603
|
-
}
|
|
2604
|
-
this.chatContainer.clear();
|
|
2605
|
-
this.rebuildChatFromMessages();
|
|
2606
|
-
break;
|
|
2607
|
-
case "theme": {
|
|
2608
|
-
const result = setTheme(value as string, true);
|
|
2609
|
-
this.statusLine.invalidate();
|
|
2610
|
-
this.updateEditorTopBorder();
|
|
2611
|
-
this.ui.invalidate();
|
|
2612
|
-
if (!result.success) {
|
|
2613
|
-
this.showError(`Failed to load theme "${value}": ${result.error}\nFell back to dark theme.`);
|
|
2614
|
-
}
|
|
2615
|
-
break;
|
|
2616
|
-
}
|
|
2617
|
-
case "symbolPreset": {
|
|
2618
|
-
setSymbolPreset(value as "unicode" | "nerd" | "ascii");
|
|
2619
|
-
this.statusLine.invalidate();
|
|
2620
|
-
this.updateEditorTopBorder();
|
|
2621
|
-
this.ui.invalidate();
|
|
2622
|
-
break;
|
|
2623
|
-
}
|
|
2624
|
-
case "voiceEnabled": {
|
|
2625
|
-
if (!value) {
|
|
2626
|
-
this.voiceAutoModeEnabled = false;
|
|
2627
|
-
this.stopVoiceProgressTimer();
|
|
2628
|
-
void this.voiceSupervisor.stop();
|
|
2629
|
-
this.setVoiceStatus(undefined);
|
|
2630
|
-
}
|
|
2631
|
-
break;
|
|
2632
|
-
}
|
|
2633
|
-
case "statusLinePreset":
|
|
2634
|
-
case "statusLineSeparator":
|
|
2635
|
-
case "statusLineShowHooks":
|
|
2636
|
-
case "statusLineSegments":
|
|
2637
|
-
case "statusLineModelThinking":
|
|
2638
|
-
case "statusLinePathAbbreviate":
|
|
2639
|
-
case "statusLinePathMaxLength":
|
|
2640
|
-
case "statusLinePathStripWorkPrefix":
|
|
2641
|
-
case "statusLineGitShowBranch":
|
|
2642
|
-
case "statusLineGitShowStaged":
|
|
2643
|
-
case "statusLineGitShowUnstaged":
|
|
2644
|
-
case "statusLineGitShowUntracked":
|
|
2645
|
-
case "statusLineTimeFormat":
|
|
2646
|
-
case "statusLineTimeShowSeconds": {
|
|
2647
|
-
this.statusLine.updateSettings(this.settingsManager.getStatusLineSettings());
|
|
2648
|
-
this.updateEditorTopBorder();
|
|
2649
|
-
this.ui.requestRender();
|
|
2650
|
-
break;
|
|
2651
|
-
}
|
|
2652
|
-
|
|
2653
|
-
// Provider settings - update runtime preferences
|
|
2654
|
-
case "webSearchProvider":
|
|
2655
|
-
setPreferredWebSearchProvider(value as "auto" | "exa" | "perplexity" | "anthropic");
|
|
2656
|
-
break;
|
|
2657
|
-
case "imageProvider":
|
|
2658
|
-
setPreferredImageProvider(value as "auto" | "gemini" | "openrouter");
|
|
2659
|
-
break;
|
|
2660
|
-
|
|
2661
|
-
// All other settings are handled by the definitions (get/set on SettingsManager)
|
|
2662
|
-
// No additional side effects needed
|
|
2663
|
-
}
|
|
665
|
+
// Hook UI methods
|
|
666
|
+
initHooksAndCustomTools(): Promise<void> {
|
|
667
|
+
return this.extensionUiController.initHooksAndCustomTools();
|
|
2664
668
|
}
|
|
2665
669
|
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
this.settingsManager,
|
|
2672
|
-
this.session.modelRegistry,
|
|
2673
|
-
this.session.scopedModels,
|
|
2674
|
-
async (model, role) => {
|
|
2675
|
-
try {
|
|
2676
|
-
if (role === "temporary") {
|
|
2677
|
-
// Temporary: update agent state but don't persist to settings
|
|
2678
|
-
await this.session.setModelTemporary(model);
|
|
2679
|
-
this.statusLine.invalidate();
|
|
2680
|
-
this.updateEditorBorderColor();
|
|
2681
|
-
this.showStatus(`Temporary model: ${model.id}`);
|
|
2682
|
-
done();
|
|
2683
|
-
this.ui.requestRender();
|
|
2684
|
-
} else if (role === "default") {
|
|
2685
|
-
// Default: update agent state and persist
|
|
2686
|
-
await this.session.setModel(model, role);
|
|
2687
|
-
this.statusLine.invalidate();
|
|
2688
|
-
this.updateEditorBorderColor();
|
|
2689
|
-
this.showStatus(`Default model: ${model.id}`);
|
|
2690
|
-
// Don't call done() - selector stays open for role assignment
|
|
2691
|
-
} else {
|
|
2692
|
-
// Other roles (smol, slow): just update settings, not current model
|
|
2693
|
-
const roleLabel = role === "smol" ? "Smol" : role;
|
|
2694
|
-
this.showStatus(`${roleLabel} model: ${model.id}`);
|
|
2695
|
-
// Don't call done() - selector stays open
|
|
2696
|
-
}
|
|
2697
|
-
} catch (error) {
|
|
2698
|
-
this.showError(error instanceof Error ? error.message : String(error));
|
|
2699
|
-
}
|
|
2700
|
-
},
|
|
2701
|
-
() => {
|
|
2702
|
-
done();
|
|
2703
|
-
this.ui.requestRender();
|
|
2704
|
-
},
|
|
2705
|
-
options,
|
|
2706
|
-
);
|
|
2707
|
-
return { component: selector, focus: selector };
|
|
2708
|
-
});
|
|
670
|
+
emitCustomToolSessionEvent(
|
|
671
|
+
reason: "start" | "switch" | "branch" | "tree" | "shutdown",
|
|
672
|
+
previousSessionFile?: string,
|
|
673
|
+
): Promise<void> {
|
|
674
|
+
return this.extensionUiController.emitCustomToolSessionEvent(reason, previousSessionFile);
|
|
2709
675
|
}
|
|
2710
676
|
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
if (userMessages.length === 0) {
|
|
2715
|
-
this.showStatus("No messages to branch from");
|
|
2716
|
-
return;
|
|
2717
|
-
}
|
|
2718
|
-
|
|
2719
|
-
this.showSelector((done) => {
|
|
2720
|
-
const selector = new UserMessageSelectorComponent(
|
|
2721
|
-
userMessages.map((m) => ({ id: m.entryId, text: m.text })),
|
|
2722
|
-
async (entryId) => {
|
|
2723
|
-
const result = await this.session.branch(entryId);
|
|
2724
|
-
if (result.cancelled) {
|
|
2725
|
-
// Hook cancelled the branch
|
|
2726
|
-
done();
|
|
2727
|
-
this.ui.requestRender();
|
|
2728
|
-
return;
|
|
2729
|
-
}
|
|
2730
|
-
|
|
2731
|
-
this.chatContainer.clear();
|
|
2732
|
-
this.renderInitialMessages();
|
|
2733
|
-
this.editor.setText(result.selectedText);
|
|
2734
|
-
done();
|
|
2735
|
-
this.showStatus("Branched to new session");
|
|
2736
|
-
},
|
|
2737
|
-
() => {
|
|
2738
|
-
done();
|
|
2739
|
-
this.ui.requestRender();
|
|
2740
|
-
},
|
|
2741
|
-
);
|
|
2742
|
-
return { component: selector, focus: selector.getMessageList() };
|
|
2743
|
-
});
|
|
677
|
+
setHookWidget(key: string, content: unknown): void {
|
|
678
|
+
this.extensionUiController.setHookWidget(key, content);
|
|
2744
679
|
}
|
|
2745
680
|
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
const realLeafId = this.sessionManager.getLeafId();
|
|
2749
|
-
|
|
2750
|
-
// Find the visible leaf for display (skip metadata entries like labels)
|
|
2751
|
-
let visibleLeafId = realLeafId;
|
|
2752
|
-
while (visibleLeafId) {
|
|
2753
|
-
const entry = this.sessionManager.getEntry(visibleLeafId);
|
|
2754
|
-
if (!entry) break;
|
|
2755
|
-
if (entry.type !== "label" && entry.type !== "custom") break;
|
|
2756
|
-
visibleLeafId = entry.parentId ?? null;
|
|
2757
|
-
}
|
|
2758
|
-
|
|
2759
|
-
if (tree.length === 0) {
|
|
2760
|
-
this.showStatus("No entries in session");
|
|
2761
|
-
return;
|
|
2762
|
-
}
|
|
2763
|
-
|
|
2764
|
-
this.showSelector((done) => {
|
|
2765
|
-
const selector = new TreeSelectorComponent(
|
|
2766
|
-
tree,
|
|
2767
|
-
visibleLeafId,
|
|
2768
|
-
this.ui.terminal.rows,
|
|
2769
|
-
async (entryId) => {
|
|
2770
|
-
// Selecting the visible leaf is a no-op (already there)
|
|
2771
|
-
if (entryId === visibleLeafId) {
|
|
2772
|
-
done();
|
|
2773
|
-
this.showStatus("Already at this point");
|
|
2774
|
-
return;
|
|
2775
|
-
}
|
|
2776
|
-
|
|
2777
|
-
// Ask about summarization (or skip if disabled in settings)
|
|
2778
|
-
done(); // Close selector first
|
|
2779
|
-
|
|
2780
|
-
const branchSummariesEnabled = this.settingsManager.getBranchSummaryEnabled();
|
|
2781
|
-
const wantsSummary = branchSummariesEnabled
|
|
2782
|
-
? await this.showHookConfirm("Summarize branch?", "Create a summary of the branch you're leaving?")
|
|
2783
|
-
: false;
|
|
2784
|
-
|
|
2785
|
-
// Set up escape handler and loader if summarizing
|
|
2786
|
-
let summaryLoader: Loader | undefined;
|
|
2787
|
-
const originalOnEscape = this.editor.onEscape;
|
|
2788
|
-
|
|
2789
|
-
if (wantsSummary) {
|
|
2790
|
-
this.editor.onEscape = () => {
|
|
2791
|
-
this.session.abortBranchSummary();
|
|
2792
|
-
};
|
|
2793
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
2794
|
-
summaryLoader = new Loader(
|
|
2795
|
-
this.ui,
|
|
2796
|
-
(spinner) => theme.fg("accent", spinner),
|
|
2797
|
-
(text) => theme.fg("muted", text),
|
|
2798
|
-
"Summarizing branch... (esc to cancel)",
|
|
2799
|
-
getSymbolTheme().spinnerFrames,
|
|
2800
|
-
);
|
|
2801
|
-
this.statusContainer.addChild(summaryLoader);
|
|
2802
|
-
this.ui.requestRender();
|
|
2803
|
-
}
|
|
2804
|
-
|
|
2805
|
-
try {
|
|
2806
|
-
const result = await this.session.navigateTree(entryId, { summarize: wantsSummary });
|
|
2807
|
-
|
|
2808
|
-
if (result.aborted) {
|
|
2809
|
-
// Summarization aborted - re-show tree selector
|
|
2810
|
-
this.showStatus("Branch summarization cancelled");
|
|
2811
|
-
this.showTreeSelector();
|
|
2812
|
-
return;
|
|
2813
|
-
}
|
|
2814
|
-
if (result.cancelled) {
|
|
2815
|
-
this.showStatus("Navigation cancelled");
|
|
2816
|
-
return;
|
|
2817
|
-
}
|
|
2818
|
-
|
|
2819
|
-
// Update UI
|
|
2820
|
-
this.chatContainer.clear();
|
|
2821
|
-
this.renderInitialMessages();
|
|
2822
|
-
if (result.editorText) {
|
|
2823
|
-
this.editor.setText(result.editorText);
|
|
2824
|
-
}
|
|
2825
|
-
this.showStatus("Navigated to selected point");
|
|
2826
|
-
} catch (error) {
|
|
2827
|
-
this.showError(error instanceof Error ? error.message : String(error));
|
|
2828
|
-
} finally {
|
|
2829
|
-
if (summaryLoader) {
|
|
2830
|
-
summaryLoader.stop();
|
|
2831
|
-
this.statusContainer.clear();
|
|
2832
|
-
}
|
|
2833
|
-
this.editor.onEscape = originalOnEscape;
|
|
2834
|
-
}
|
|
2835
|
-
},
|
|
2836
|
-
() => {
|
|
2837
|
-
done();
|
|
2838
|
-
this.ui.requestRender();
|
|
2839
|
-
},
|
|
2840
|
-
(entryId, label) => {
|
|
2841
|
-
this.sessionManager.appendLabelChange(entryId, label);
|
|
2842
|
-
this.ui.requestRender();
|
|
2843
|
-
},
|
|
2844
|
-
);
|
|
2845
|
-
return { component: selector, focus: selector };
|
|
2846
|
-
});
|
|
681
|
+
setHookStatus(key: string, text: string | undefined): void {
|
|
682
|
+
this.extensionUiController.setHookStatus(key, text);
|
|
2847
683
|
}
|
|
2848
684
|
|
|
2849
|
-
|
|
2850
|
-
this.
|
|
2851
|
-
const sessions = SessionManager.list(this.sessionManager.getCwd(), this.sessionManager.getSessionDir());
|
|
2852
|
-
const selector = new SessionSelectorComponent(
|
|
2853
|
-
sessions,
|
|
2854
|
-
async (sessionPath) => {
|
|
2855
|
-
done();
|
|
2856
|
-
await this.handleResumeSession(sessionPath);
|
|
2857
|
-
},
|
|
2858
|
-
() => {
|
|
2859
|
-
done();
|
|
2860
|
-
this.ui.requestRender();
|
|
2861
|
-
},
|
|
2862
|
-
() => {
|
|
2863
|
-
void this.shutdown();
|
|
2864
|
-
},
|
|
2865
|
-
);
|
|
2866
|
-
return { component: selector, focus: selector.getSessionList() };
|
|
2867
|
-
});
|
|
685
|
+
showHookSelector(title: string, options: string[]): Promise<string | undefined> {
|
|
686
|
+
return this.extensionUiController.showHookSelector(title, options);
|
|
2868
687
|
}
|
|
2869
688
|
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
if (this.loadingAnimation) {
|
|
2873
|
-
this.loadingAnimation.stop();
|
|
2874
|
-
this.loadingAnimation = undefined;
|
|
2875
|
-
}
|
|
2876
|
-
this.statusContainer.clear();
|
|
2877
|
-
|
|
2878
|
-
// Clear UI state
|
|
2879
|
-
this.pendingMessagesContainer.clear();
|
|
2880
|
-
this.compactionQueuedMessages = [];
|
|
2881
|
-
this.streamingComponent = undefined;
|
|
2882
|
-
this.streamingMessage = undefined;
|
|
2883
|
-
this.pendingTools.clear();
|
|
2884
|
-
|
|
2885
|
-
// Switch session via AgentSession (emits hook and tool session events)
|
|
2886
|
-
await this.session.switchSession(sessionPath);
|
|
2887
|
-
|
|
2888
|
-
// Clear and re-render the chat
|
|
2889
|
-
this.chatContainer.clear();
|
|
2890
|
-
this.renderInitialMessages();
|
|
2891
|
-
this.showStatus("Resumed session");
|
|
689
|
+
hideHookSelector(): void {
|
|
690
|
+
this.extensionUiController.hideHookSelector();
|
|
2892
691
|
}
|
|
2893
692
|
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
const providers = this.session.modelRegistry.authStorage.list();
|
|
2897
|
-
const loggedInProviders = providers.filter((p) => this.session.modelRegistry.authStorage.hasOAuth(p));
|
|
2898
|
-
if (loggedInProviders.length === 0) {
|
|
2899
|
-
this.showStatus("No OAuth providers logged in. Use /login first.");
|
|
2900
|
-
return;
|
|
2901
|
-
}
|
|
2902
|
-
}
|
|
2903
|
-
|
|
2904
|
-
this.showSelector((done) => {
|
|
2905
|
-
const selector = new OAuthSelectorComponent(
|
|
2906
|
-
mode,
|
|
2907
|
-
this.session.modelRegistry.authStorage,
|
|
2908
|
-
async (providerId: string) => {
|
|
2909
|
-
done();
|
|
2910
|
-
|
|
2911
|
-
if (mode === "login") {
|
|
2912
|
-
this.showStatus(`Logging in to ${providerId}...`);
|
|
2913
|
-
|
|
2914
|
-
try {
|
|
2915
|
-
await this.session.modelRegistry.authStorage.login(providerId as OAuthProvider, {
|
|
2916
|
-
onAuth: (info: { url: string; instructions?: string }) => {
|
|
2917
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
2918
|
-
this.chatContainer.addChild(new Text(theme.fg("dim", info.url), 1, 0));
|
|
2919
|
-
// Use OSC 8 hyperlink escape sequence for clickable link
|
|
2920
|
-
const hyperlink = `\x1b]8;;${info.url}\x07Click here to login\x1b]8;;\x07`;
|
|
2921
|
-
this.chatContainer.addChild(new Text(theme.fg("accent", hyperlink), 1, 0));
|
|
2922
|
-
if (info.instructions) {
|
|
2923
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
2924
|
-
this.chatContainer.addChild(new Text(theme.fg("warning", info.instructions), 1, 0));
|
|
2925
|
-
}
|
|
2926
|
-
this.ui.requestRender();
|
|
2927
|
-
|
|
2928
|
-
this.openInBrowser(info.url);
|
|
2929
|
-
},
|
|
2930
|
-
onPrompt: async (prompt: { message: string; placeholder?: string }) => {
|
|
2931
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
2932
|
-
this.chatContainer.addChild(new Text(theme.fg("warning", prompt.message), 1, 0));
|
|
2933
|
-
if (prompt.placeholder) {
|
|
2934
|
-
this.chatContainer.addChild(new Text(theme.fg("dim", prompt.placeholder), 1, 0));
|
|
2935
|
-
}
|
|
2936
|
-
this.ui.requestRender();
|
|
2937
|
-
|
|
2938
|
-
return new Promise<string>((resolve) => {
|
|
2939
|
-
const codeInput = new Input();
|
|
2940
|
-
codeInput.onSubmit = () => {
|
|
2941
|
-
const code = codeInput.getValue();
|
|
2942
|
-
this.editorContainer.clear();
|
|
2943
|
-
this.editorContainer.addChild(this.editor);
|
|
2944
|
-
this.ui.setFocus(this.editor);
|
|
2945
|
-
resolve(code);
|
|
2946
|
-
};
|
|
2947
|
-
this.editorContainer.clear();
|
|
2948
|
-
this.editorContainer.addChild(codeInput);
|
|
2949
|
-
this.ui.setFocus(codeInput);
|
|
2950
|
-
this.ui.requestRender();
|
|
2951
|
-
});
|
|
2952
|
-
},
|
|
2953
|
-
onProgress: (message: string) => {
|
|
2954
|
-
this.chatContainer.addChild(new Text(theme.fg("dim", message), 1, 0));
|
|
2955
|
-
this.ui.requestRender();
|
|
2956
|
-
},
|
|
2957
|
-
});
|
|
2958
|
-
// Refresh models to pick up new baseUrl (e.g., github-copilot)
|
|
2959
|
-
await this.session.modelRegistry.refresh();
|
|
2960
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
2961
|
-
this.chatContainer.addChild(
|
|
2962
|
-
new Text(
|
|
2963
|
-
theme.fg("success", `${theme.status.success} Successfully logged in to ${providerId}`),
|
|
2964
|
-
1,
|
|
2965
|
-
0,
|
|
2966
|
-
),
|
|
2967
|
-
);
|
|
2968
|
-
this.chatContainer.addChild(
|
|
2969
|
-
new Text(theme.fg("dim", `Credentials saved to ${getAuthPath()}`), 1, 0),
|
|
2970
|
-
);
|
|
2971
|
-
this.ui.requestRender();
|
|
2972
|
-
} catch (error: unknown) {
|
|
2973
|
-
this.showError(`Login failed: ${error instanceof Error ? error.message : String(error)}`);
|
|
2974
|
-
}
|
|
2975
|
-
} else {
|
|
2976
|
-
try {
|
|
2977
|
-
await this.session.modelRegistry.authStorage.logout(providerId);
|
|
2978
|
-
// Refresh models to reset baseUrl
|
|
2979
|
-
await this.session.modelRegistry.refresh();
|
|
2980
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
2981
|
-
this.chatContainer.addChild(
|
|
2982
|
-
new Text(
|
|
2983
|
-
theme.fg("success", `${theme.status.success} Successfully logged out of ${providerId}`),
|
|
2984
|
-
1,
|
|
2985
|
-
0,
|
|
2986
|
-
),
|
|
2987
|
-
);
|
|
2988
|
-
this.chatContainer.addChild(
|
|
2989
|
-
new Text(theme.fg("dim", `Credentials removed from ${getAuthPath()}`), 1, 0),
|
|
2990
|
-
);
|
|
2991
|
-
this.ui.requestRender();
|
|
2992
|
-
} catch (error: unknown) {
|
|
2993
|
-
this.showError(`Logout failed: ${error instanceof Error ? error.message : String(error)}`);
|
|
2994
|
-
}
|
|
2995
|
-
}
|
|
2996
|
-
},
|
|
2997
|
-
() => {
|
|
2998
|
-
done();
|
|
2999
|
-
this.ui.requestRender();
|
|
3000
|
-
},
|
|
3001
|
-
);
|
|
3002
|
-
return { component: selector, focus: selector };
|
|
3003
|
-
});
|
|
693
|
+
showHookInput(title: string, placeholder?: string): Promise<string | undefined> {
|
|
694
|
+
return this.extensionUiController.showHookInput(title, placeholder);
|
|
3004
695
|
}
|
|
3005
696
|
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
// =========================================================================
|
|
3009
|
-
|
|
3010
|
-
private openInBrowser(urlOrPath: string): void {
|
|
3011
|
-
try {
|
|
3012
|
-
const args =
|
|
3013
|
-
process.platform === "darwin"
|
|
3014
|
-
? ["open", urlOrPath]
|
|
3015
|
-
: process.platform === "win32"
|
|
3016
|
-
? ["cmd", "/c", "start", "", urlOrPath]
|
|
3017
|
-
: ["xdg-open", urlOrPath];
|
|
3018
|
-
Bun.spawn(args, { stdin: "ignore", stdout: "ignore", stderr: "ignore" });
|
|
3019
|
-
} catch {
|
|
3020
|
-
// Best-effort: browser opening is non-critical
|
|
3021
|
-
}
|
|
697
|
+
hideHookInput(): void {
|
|
698
|
+
this.extensionUiController.hideHookInput();
|
|
3022
699
|
}
|
|
3023
700
|
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
const arg = parts.length > 1 ? parts[1] : undefined;
|
|
3027
|
-
|
|
3028
|
-
// Check for clipboard export
|
|
3029
|
-
if (arg === "--copy" || arg === "clipboard" || arg === "copy") {
|
|
3030
|
-
try {
|
|
3031
|
-
const formatted = this.session.formatSessionAsText();
|
|
3032
|
-
if (!formatted) {
|
|
3033
|
-
this.showError("No messages to export yet.");
|
|
3034
|
-
return;
|
|
3035
|
-
}
|
|
3036
|
-
await copyToClipboard(formatted);
|
|
3037
|
-
this.showStatus("Session copied to clipboard");
|
|
3038
|
-
} catch (error: unknown) {
|
|
3039
|
-
this.showError(`Failed to copy session: ${error instanceof Error ? error.message : "Unknown error"}`);
|
|
3040
|
-
}
|
|
3041
|
-
return;
|
|
3042
|
-
}
|
|
3043
|
-
|
|
3044
|
-
// HTML file export
|
|
3045
|
-
try {
|
|
3046
|
-
const filePath = await this.session.exportToHtml(arg);
|
|
3047
|
-
this.showStatus(`Session exported to: ${filePath}`);
|
|
3048
|
-
this.openInBrowser(filePath);
|
|
3049
|
-
} catch (error: unknown) {
|
|
3050
|
-
this.showError(`Failed to export session: ${error instanceof Error ? error.message : "Unknown error"}`);
|
|
3051
|
-
}
|
|
701
|
+
showHookEditor(title: string, prefill?: string): Promise<string | undefined> {
|
|
702
|
+
return this.extensionUiController.showHookEditor(title, prefill);
|
|
3052
703
|
}
|
|
3053
704
|
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
try {
|
|
3057
|
-
const authResult = Bun.spawnSync(["gh", "auth", "status"]);
|
|
3058
|
-
if (authResult.exitCode !== 0) {
|
|
3059
|
-
this.showError("GitHub CLI is not logged in. Run 'gh auth login' first.");
|
|
3060
|
-
return;
|
|
3061
|
-
}
|
|
3062
|
-
} catch {
|
|
3063
|
-
this.showError("GitHub CLI (gh) is not installed. Install it from https://cli.github.com/");
|
|
3064
|
-
return;
|
|
3065
|
-
}
|
|
3066
|
-
|
|
3067
|
-
// Export to a temp file
|
|
3068
|
-
const tmpFile = path.join(os.tmpdir(), "session.html");
|
|
3069
|
-
try {
|
|
3070
|
-
await this.session.exportToHtml(tmpFile);
|
|
3071
|
-
} catch (error: unknown) {
|
|
3072
|
-
this.showError(`Failed to export session: ${error instanceof Error ? error.message : "Unknown error"}`);
|
|
3073
|
-
return;
|
|
3074
|
-
}
|
|
3075
|
-
|
|
3076
|
-
// Show cancellable loader, replacing the editor
|
|
3077
|
-
const loader = new BorderedLoader(this.ui, theme, "Creating gist...");
|
|
3078
|
-
this.editorContainer.clear();
|
|
3079
|
-
this.editorContainer.addChild(loader);
|
|
3080
|
-
this.ui.setFocus(loader);
|
|
3081
|
-
this.ui.requestRender();
|
|
3082
|
-
|
|
3083
|
-
const restoreEditor = () => {
|
|
3084
|
-
loader.dispose();
|
|
3085
|
-
this.editorContainer.clear();
|
|
3086
|
-
this.editorContainer.addChild(this.editor);
|
|
3087
|
-
this.ui.setFocus(this.editor);
|
|
3088
|
-
try {
|
|
3089
|
-
fs.unlinkSync(tmpFile);
|
|
3090
|
-
} catch {
|
|
3091
|
-
// Ignore cleanup errors
|
|
3092
|
-
}
|
|
3093
|
-
};
|
|
3094
|
-
|
|
3095
|
-
// Create a secret gist asynchronously
|
|
3096
|
-
let proc: ReturnType<typeof Bun.spawn> | null = null;
|
|
3097
|
-
|
|
3098
|
-
loader.onAbort = () => {
|
|
3099
|
-
proc?.kill();
|
|
3100
|
-
restoreEditor();
|
|
3101
|
-
this.showStatus("Share cancelled");
|
|
3102
|
-
};
|
|
3103
|
-
|
|
3104
|
-
try {
|
|
3105
|
-
const result = await new Promise<{ stdout: string; stderr: string; code: number | null }>((resolve) => {
|
|
3106
|
-
proc = Bun.spawn(["gh", "gist", "create", "--public=false", tmpFile], {
|
|
3107
|
-
stdout: "pipe",
|
|
3108
|
-
stderr: "pipe",
|
|
3109
|
-
});
|
|
3110
|
-
let stdout = "";
|
|
3111
|
-
let stderr = "";
|
|
3112
|
-
|
|
3113
|
-
const stdoutReader = (proc.stdout as ReadableStream<Uint8Array>).getReader();
|
|
3114
|
-
const stderrReader = (proc.stderr as ReadableStream<Uint8Array>).getReader();
|
|
3115
|
-
const decoder = new TextDecoder();
|
|
3116
|
-
|
|
3117
|
-
(async () => {
|
|
3118
|
-
try {
|
|
3119
|
-
while (true) {
|
|
3120
|
-
const { done, value } = await stdoutReader.read();
|
|
3121
|
-
if (done) break;
|
|
3122
|
-
stdout += decoder.decode(value);
|
|
3123
|
-
}
|
|
3124
|
-
} catch {}
|
|
3125
|
-
})();
|
|
3126
|
-
|
|
3127
|
-
(async () => {
|
|
3128
|
-
try {
|
|
3129
|
-
while (true) {
|
|
3130
|
-
const { done, value } = await stderrReader.read();
|
|
3131
|
-
if (done) break;
|
|
3132
|
-
stderr += decoder.decode(value);
|
|
3133
|
-
}
|
|
3134
|
-
} catch {}
|
|
3135
|
-
})();
|
|
3136
|
-
|
|
3137
|
-
proc.exited.then((code) => resolve({ stdout, stderr, code }));
|
|
3138
|
-
});
|
|
3139
|
-
|
|
3140
|
-
if (loader.signal.aborted) return;
|
|
3141
|
-
|
|
3142
|
-
restoreEditor();
|
|
3143
|
-
|
|
3144
|
-
if (result.code !== 0) {
|
|
3145
|
-
const errorMsg = result.stderr?.trim() || "Unknown error";
|
|
3146
|
-
this.showError(`Failed to create gist: ${errorMsg}`);
|
|
3147
|
-
return;
|
|
3148
|
-
}
|
|
3149
|
-
|
|
3150
|
-
// Extract gist ID from the URL returned by gh
|
|
3151
|
-
// gh returns something like: https://gist.github.com/username/GIST_ID
|
|
3152
|
-
const gistUrl = result.stdout?.trim();
|
|
3153
|
-
const gistId = gistUrl?.split("/").pop();
|
|
3154
|
-
if (!gistId) {
|
|
3155
|
-
this.showError("Failed to parse gist ID from gh output");
|
|
3156
|
-
return;
|
|
3157
|
-
}
|
|
3158
|
-
|
|
3159
|
-
// Create the preview URL
|
|
3160
|
-
const previewUrl = `https://gistpreview.github.io/?${gistId}`;
|
|
3161
|
-
this.showStatus(`Share URL: ${previewUrl}\nGist: ${gistUrl}`);
|
|
3162
|
-
this.openInBrowser(previewUrl);
|
|
3163
|
-
} catch (error: unknown) {
|
|
3164
|
-
if (!loader.signal.aborted) {
|
|
3165
|
-
restoreEditor();
|
|
3166
|
-
this.showError(`Failed to create gist: ${error instanceof Error ? error.message : "Unknown error"}`);
|
|
3167
|
-
}
|
|
3168
|
-
}
|
|
705
|
+
hideHookEditor(): void {
|
|
706
|
+
this.extensionUiController.hideHookEditor();
|
|
3169
707
|
}
|
|
3170
708
|
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
if (!text) {
|
|
3174
|
-
this.showError("No agent messages to copy yet.");
|
|
3175
|
-
return;
|
|
3176
|
-
}
|
|
3177
|
-
|
|
3178
|
-
try {
|
|
3179
|
-
await copyToClipboard(text);
|
|
3180
|
-
this.showStatus("Copied last agent message to clipboard");
|
|
3181
|
-
} catch (error) {
|
|
3182
|
-
this.showError(error instanceof Error ? error.message : String(error));
|
|
3183
|
-
}
|
|
709
|
+
showHookNotify(message: string, type?: "info" | "warning" | "error"): void {
|
|
710
|
+
this.extensionUiController.showHookNotify(message, type);
|
|
3184
711
|
}
|
|
3185
712
|
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
info += `${theme.fg("dim", "Tool Calls:")} ${stats.toolCalls}\n`;
|
|
3196
|
-
info += `${theme.fg("dim", "Tool Results:")} ${stats.toolResults}\n`;
|
|
3197
|
-
info += `${theme.fg("dim", "Total:")} ${stats.totalMessages}\n\n`;
|
|
3198
|
-
info += `${theme.bold("Tokens")}\n`;
|
|
3199
|
-
info += `${theme.fg("dim", "Input:")} ${stats.tokens.input.toLocaleString()}\n`;
|
|
3200
|
-
info += `${theme.fg("dim", "Output:")} ${stats.tokens.output.toLocaleString()}\n`;
|
|
3201
|
-
if (stats.tokens.cacheRead > 0) {
|
|
3202
|
-
info += `${theme.fg("dim", "Cache Read:")} ${stats.tokens.cacheRead.toLocaleString()}\n`;
|
|
3203
|
-
}
|
|
3204
|
-
if (stats.tokens.cacheWrite > 0) {
|
|
3205
|
-
info += `${theme.fg("dim", "Cache Write:")} ${stats.tokens.cacheWrite.toLocaleString()}\n`;
|
|
3206
|
-
}
|
|
3207
|
-
info += `${theme.fg("dim", "Total:")} ${stats.tokens.total.toLocaleString()}\n`;
|
|
3208
|
-
|
|
3209
|
-
if (stats.cost > 0) {
|
|
3210
|
-
info += `\n${theme.bold("Cost")}\n`;
|
|
3211
|
-
info += `${theme.fg("dim", "Total:")} ${stats.cost.toFixed(4)}`;
|
|
3212
|
-
}
|
|
3213
|
-
|
|
3214
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
3215
|
-
this.chatContainer.addChild(new Text(info, 1, 0));
|
|
3216
|
-
this.ui.requestRender();
|
|
3217
|
-
}
|
|
3218
|
-
|
|
3219
|
-
private handleChangelogCommand(): void {
|
|
3220
|
-
const changelogPath = getChangelogPath();
|
|
3221
|
-
const allEntries = parseChangelog(changelogPath);
|
|
3222
|
-
|
|
3223
|
-
const changelogMarkdown =
|
|
3224
|
-
allEntries.length > 0
|
|
3225
|
-
? allEntries
|
|
3226
|
-
.reverse()
|
|
3227
|
-
.map((e) => e.content)
|
|
3228
|
-
.join("\n\n")
|
|
3229
|
-
: "No changelog entries found.";
|
|
3230
|
-
|
|
3231
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
3232
|
-
this.chatContainer.addChild(new DynamicBorder());
|
|
3233
|
-
this.chatContainer.addChild(new Text(theme.bold(theme.fg("accent", "What's New")), 1, 0));
|
|
3234
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
3235
|
-
this.chatContainer.addChild(new Markdown(changelogMarkdown, 1, 1, getMarkdownTheme()));
|
|
3236
|
-
this.chatContainer.addChild(new DynamicBorder());
|
|
3237
|
-
this.ui.requestRender();
|
|
3238
|
-
}
|
|
3239
|
-
|
|
3240
|
-
/**
|
|
3241
|
-
* Register extension-defined keyboard shortcuts with the editor.
|
|
3242
|
-
*/
|
|
3243
|
-
private registerExtensionShortcuts(): void {
|
|
3244
|
-
const runner = this.session.extensionRunner;
|
|
3245
|
-
if (!runner) return;
|
|
3246
|
-
|
|
3247
|
-
const shortcuts = runner.getShortcuts();
|
|
3248
|
-
for (const [keyId, shortcut] of shortcuts) {
|
|
3249
|
-
this.editor.setCustomKeyHandler(keyId, () => {
|
|
3250
|
-
const ctx = runner.createCommandContext();
|
|
3251
|
-
try {
|
|
3252
|
-
shortcut.handler(ctx);
|
|
3253
|
-
} catch (err) {
|
|
3254
|
-
runner.emitError({
|
|
3255
|
-
extensionPath: shortcut.extensionPath,
|
|
3256
|
-
event: "shortcut",
|
|
3257
|
-
error: err instanceof Error ? err.message : String(err),
|
|
3258
|
-
stack: err instanceof Error ? err.stack : undefined,
|
|
3259
|
-
});
|
|
3260
|
-
}
|
|
3261
|
-
});
|
|
3262
|
-
}
|
|
3263
|
-
}
|
|
3264
|
-
|
|
3265
|
-
private handleHotkeysCommand(): void {
|
|
3266
|
-
const hotkeys = `
|
|
3267
|
-
**Navigation**
|
|
3268
|
-
| Key | Action |
|
|
3269
|
-
|-----|--------|
|
|
3270
|
-
| \`Arrow keys\` | Move cursor / browse history (Up when empty) |
|
|
3271
|
-
| \`Option+Left/Right\` | Move by word |
|
|
3272
|
-
| \`Ctrl+A\` / \`Home\` / \`Cmd+Left\` | Start of line |
|
|
3273
|
-
| \`Ctrl+E\` / \`End\` / \`Cmd+Right\` | End of line |
|
|
3274
|
-
|
|
3275
|
-
**Editing**
|
|
3276
|
-
| Key | Action |
|
|
3277
|
-
|-----|--------|
|
|
3278
|
-
| \`Enter\` | Send message |
|
|
3279
|
-
| \`Shift+Enter\` / \`Alt+Enter\` | New line |
|
|
3280
|
-
| \`Ctrl+W\` / \`Option+Backspace\` | Delete word backwards |
|
|
3281
|
-
| \`Ctrl+U\` | Delete to start of line |
|
|
3282
|
-
| \`Ctrl+K\` | Delete to end of line |
|
|
3283
|
-
|
|
3284
|
-
**Other**
|
|
3285
|
-
| Key | Action |
|
|
3286
|
-
|-----|--------|
|
|
3287
|
-
| \`Tab\` | Path completion / accept autocomplete |
|
|
3288
|
-
| \`Escape\` | Cancel autocomplete / abort streaming |
|
|
3289
|
-
| \`Ctrl+C\` | Clear editor (first) / exit (second) |
|
|
3290
|
-
| \`Ctrl+D\` | Exit (when editor is empty) |
|
|
3291
|
-
| \`Ctrl+Z\` | Suspend to background |
|
|
3292
|
-
| \`Shift+Tab\` | Cycle thinking level |
|
|
3293
|
-
| \`Ctrl+P\` | Cycle role models (slow/default/smol) |
|
|
3294
|
-
| \`Shift+Ctrl+P\` | Cycle role models (temporary) |
|
|
3295
|
-
| \`Ctrl+Y\` | Select model (temporary) |
|
|
3296
|
-
| \`Ctrl+L\` | Select model (set roles) |
|
|
3297
|
-
| \`Ctrl+R\` | Search prompt history |
|
|
3298
|
-
| \`Ctrl+O\` | Toggle tool output expansion |
|
|
3299
|
-
| \`Ctrl+T\` | Toggle thinking block visibility |
|
|
3300
|
-
| \`Ctrl+G\` | Edit message in external editor |
|
|
3301
|
-
| \`/\` | Slash commands |
|
|
3302
|
-
| \`!\` | Run bash command |
|
|
3303
|
-
| \`!!\` | Run bash command (excluded from context) |
|
|
3304
|
-
`;
|
|
3305
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
3306
|
-
this.chatContainer.addChild(new DynamicBorder());
|
|
3307
|
-
this.chatContainer.addChild(new Text(theme.bold(theme.fg("accent", "Keyboard Shortcuts")), 1, 0));
|
|
3308
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
3309
|
-
this.chatContainer.addChild(new Markdown(hotkeys.trim(), 1, 1, getMarkdownTheme()));
|
|
3310
|
-
this.chatContainer.addChild(new DynamicBorder());
|
|
3311
|
-
this.ui.requestRender();
|
|
3312
|
-
}
|
|
3313
|
-
|
|
3314
|
-
private async handleClearCommand(): Promise<void> {
|
|
3315
|
-
// Stop loading animation
|
|
3316
|
-
if (this.loadingAnimation) {
|
|
3317
|
-
this.loadingAnimation.stop();
|
|
3318
|
-
this.loadingAnimation = undefined;
|
|
3319
|
-
}
|
|
3320
|
-
this.statusContainer.clear();
|
|
3321
|
-
|
|
3322
|
-
// New session via session (emits hook and tool session events)
|
|
3323
|
-
await this.session.newSession();
|
|
3324
|
-
|
|
3325
|
-
// Update status line (token counts, cost reset)
|
|
3326
|
-
this.statusLine.invalidate();
|
|
3327
|
-
this.updateEditorTopBorder();
|
|
3328
|
-
|
|
3329
|
-
// Clear UI state
|
|
3330
|
-
this.chatContainer.clear();
|
|
3331
|
-
this.pendingMessagesContainer.clear();
|
|
3332
|
-
this.compactionQueuedMessages = [];
|
|
3333
|
-
this.streamingComponent = undefined;
|
|
3334
|
-
this.streamingMessage = undefined;
|
|
3335
|
-
this.pendingTools.clear();
|
|
3336
|
-
|
|
3337
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
3338
|
-
this.chatContainer.addChild(
|
|
3339
|
-
new Text(`${theme.fg("accent", `${theme.status.success} New session started`)}`, 1, 1),
|
|
3340
|
-
);
|
|
3341
|
-
this.ui.requestRender();
|
|
3342
|
-
}
|
|
3343
|
-
|
|
3344
|
-
private handleDebugCommand(): void {
|
|
3345
|
-
const width = this.ui.terminal.columns;
|
|
3346
|
-
const allLines = this.ui.render(width);
|
|
3347
|
-
|
|
3348
|
-
const debugLogPath = getDebugLogPath();
|
|
3349
|
-
const debugData = [
|
|
3350
|
-
`Debug output at ${new Date().toISOString()}`,
|
|
3351
|
-
`Terminal width: ${width}`,
|
|
3352
|
-
`Total lines: ${allLines.length}`,
|
|
3353
|
-
"",
|
|
3354
|
-
"=== All rendered lines with visible widths ===",
|
|
3355
|
-
...allLines.map((line, idx) => {
|
|
3356
|
-
const vw = visibleWidth(line);
|
|
3357
|
-
const escaped = JSON.stringify(line);
|
|
3358
|
-
return `[${idx}] (w=${vw}) ${escaped}`;
|
|
3359
|
-
}),
|
|
3360
|
-
"",
|
|
3361
|
-
"=== Agent messages (JSONL) ===",
|
|
3362
|
-
...this.session.messages.map((msg) => JSON.stringify(msg)),
|
|
3363
|
-
"",
|
|
3364
|
-
].join("\n");
|
|
3365
|
-
|
|
3366
|
-
fs.mkdirSync(path.dirname(debugLogPath), { recursive: true });
|
|
3367
|
-
fs.writeFileSync(debugLogPath, debugData);
|
|
3368
|
-
|
|
3369
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
3370
|
-
this.chatContainer.addChild(
|
|
3371
|
-
new Text(
|
|
3372
|
-
`${theme.fg("accent", `${theme.status.success} Debug log written`)}\n${theme.fg("muted", debugLogPath)}`,
|
|
3373
|
-
1,
|
|
3374
|
-
1,
|
|
3375
|
-
),
|
|
3376
|
-
);
|
|
3377
|
-
this.ui.requestRender();
|
|
3378
|
-
}
|
|
3379
|
-
|
|
3380
|
-
private handleArminSaysHi(): void {
|
|
3381
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
3382
|
-
this.chatContainer.addChild(new ArminComponent(this.ui));
|
|
3383
|
-
this.ui.requestRender();
|
|
3384
|
-
}
|
|
3385
|
-
|
|
3386
|
-
private async handleBashCommand(command: string, excludeFromContext = false): Promise<void> {
|
|
3387
|
-
const isDeferred = this.session.isStreaming;
|
|
3388
|
-
this.bashComponent = new BashExecutionComponent(command, this.ui, excludeFromContext);
|
|
3389
|
-
|
|
3390
|
-
if (isDeferred) {
|
|
3391
|
-
// Show in pending area when agent is streaming
|
|
3392
|
-
this.pendingMessagesContainer.addChild(this.bashComponent);
|
|
3393
|
-
this.pendingBashComponents.push(this.bashComponent);
|
|
3394
|
-
} else {
|
|
3395
|
-
// Show in chat immediately when agent is idle
|
|
3396
|
-
this.chatContainer.addChild(this.bashComponent);
|
|
3397
|
-
}
|
|
3398
|
-
this.ui.requestRender();
|
|
3399
|
-
|
|
3400
|
-
try {
|
|
3401
|
-
const result = await this.session.executeBash(
|
|
3402
|
-
command,
|
|
3403
|
-
(chunk) => {
|
|
3404
|
-
if (this.bashComponent) {
|
|
3405
|
-
this.bashComponent.appendOutput(chunk);
|
|
3406
|
-
this.ui.requestRender();
|
|
3407
|
-
}
|
|
3408
|
-
},
|
|
3409
|
-
{ excludeFromContext },
|
|
3410
|
-
);
|
|
3411
|
-
|
|
3412
|
-
if (this.bashComponent) {
|
|
3413
|
-
this.bashComponent.setComplete(
|
|
3414
|
-
result.exitCode,
|
|
3415
|
-
result.cancelled,
|
|
3416
|
-
result.truncated ? ({ truncated: true, content: result.output } as TruncationResult) : undefined,
|
|
3417
|
-
result.fullOutputPath,
|
|
3418
|
-
);
|
|
3419
|
-
}
|
|
3420
|
-
} catch (error) {
|
|
3421
|
-
if (this.bashComponent) {
|
|
3422
|
-
this.bashComponent.setComplete(undefined, false);
|
|
3423
|
-
}
|
|
3424
|
-
this.showError(`Bash command failed: ${error instanceof Error ? error.message : "Unknown error"}`);
|
|
3425
|
-
}
|
|
3426
|
-
|
|
3427
|
-
this.bashComponent = undefined;
|
|
3428
|
-
this.ui.requestRender();
|
|
713
|
+
showHookCustom<T>(
|
|
714
|
+
factory: (
|
|
715
|
+
tui: TUI,
|
|
716
|
+
theme: Theme,
|
|
717
|
+
keybindings: KeybindingsManager,
|
|
718
|
+
done: (result: T) => void,
|
|
719
|
+
) => (Component & { dispose?(): void }) | Promise<Component & { dispose?(): void }>,
|
|
720
|
+
): Promise<T> {
|
|
721
|
+
return this.extensionUiController.showHookCustom(factory);
|
|
3429
722
|
}
|
|
3430
723
|
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
const messageCount = entries.filter((e) => e.type === "message").length;
|
|
3434
|
-
|
|
3435
|
-
if (messageCount < 2) {
|
|
3436
|
-
this.showWarning("Nothing to compact (no messages yet)");
|
|
3437
|
-
return;
|
|
3438
|
-
}
|
|
3439
|
-
|
|
3440
|
-
await this.executeCompaction(customInstructions, false);
|
|
724
|
+
showExtensionError(extensionPath: string, error: string): void {
|
|
725
|
+
this.extensionUiController.showExtensionError(extensionPath, error);
|
|
3441
726
|
}
|
|
3442
727
|
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
if (this.loadingAnimation) {
|
|
3446
|
-
this.loadingAnimation.stop();
|
|
3447
|
-
this.loadingAnimation = undefined;
|
|
3448
|
-
}
|
|
3449
|
-
this.statusContainer.clear();
|
|
3450
|
-
|
|
3451
|
-
// Set up escape handler during compaction
|
|
3452
|
-
const originalOnEscape = this.editor.onEscape;
|
|
3453
|
-
this.editor.onEscape = () => {
|
|
3454
|
-
this.session.abortCompaction();
|
|
3455
|
-
};
|
|
3456
|
-
|
|
3457
|
-
// Show compacting status
|
|
3458
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
3459
|
-
const label = isAuto ? "Auto-compacting context... (esc to cancel)" : "Compacting context... (esc to cancel)";
|
|
3460
|
-
const compactingLoader = new Loader(
|
|
3461
|
-
this.ui,
|
|
3462
|
-
(spinner) => theme.fg("accent", spinner),
|
|
3463
|
-
(text) => theme.fg("muted", text),
|
|
3464
|
-
label,
|
|
3465
|
-
getSymbolTheme().spinnerFrames,
|
|
3466
|
-
);
|
|
3467
|
-
this.statusContainer.addChild(compactingLoader);
|
|
3468
|
-
this.ui.requestRender();
|
|
3469
|
-
|
|
3470
|
-
try {
|
|
3471
|
-
const result = await this.session.compact(customInstructions);
|
|
3472
|
-
|
|
3473
|
-
// Rebuild UI
|
|
3474
|
-
this.rebuildChatFromMessages();
|
|
3475
|
-
|
|
3476
|
-
// Add compaction component at bottom so user sees it without scrolling
|
|
3477
|
-
const msg = createCompactionSummaryMessage(result.summary, result.tokensBefore, new Date().toISOString());
|
|
3478
|
-
this.addMessageToChat(msg);
|
|
3479
|
-
|
|
3480
|
-
this.statusLine.invalidate();
|
|
3481
|
-
this.updateEditorTopBorder();
|
|
3482
|
-
} catch (error) {
|
|
3483
|
-
const message = error instanceof Error ? error.message : String(error);
|
|
3484
|
-
if (message === "Compaction cancelled" || (error instanceof Error && error.name === "AbortError")) {
|
|
3485
|
-
this.showError("Compaction cancelled");
|
|
3486
|
-
} else {
|
|
3487
|
-
this.showError(`Compaction failed: ${message}`);
|
|
3488
|
-
}
|
|
3489
|
-
} finally {
|
|
3490
|
-
compactingLoader.stop();
|
|
3491
|
-
this.statusContainer.clear();
|
|
3492
|
-
this.editor.onEscape = originalOnEscape;
|
|
3493
|
-
}
|
|
3494
|
-
await this.flushCompactionQueue({ willRetry: false });
|
|
728
|
+
showToolError(toolName: string, error: string): void {
|
|
729
|
+
this.extensionUiController.showToolError(toolName, error);
|
|
3495
730
|
}
|
|
3496
731
|
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
this.loadingAnimation.stop();
|
|
3500
|
-
this.loadingAnimation = undefined;
|
|
3501
|
-
}
|
|
3502
|
-
this.statusLine.dispose();
|
|
3503
|
-
if (this.unsubscribe) {
|
|
3504
|
-
this.unsubscribe();
|
|
3505
|
-
}
|
|
3506
|
-
if (this.cleanupUnsubscribe) {
|
|
3507
|
-
this.cleanupUnsubscribe();
|
|
3508
|
-
}
|
|
3509
|
-
if (this.isInitialized) {
|
|
3510
|
-
this.ui.stop();
|
|
3511
|
-
this.isInitialized = false;
|
|
3512
|
-
}
|
|
732
|
+
private subscribeToAgent(): void {
|
|
733
|
+
this.eventController.subscribeToAgent();
|
|
3513
734
|
}
|
|
3514
735
|
}
|