@robota-sdk/agent-ui-terminal 3.0.0-beta.81
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/LICENSE +661 -0
- package/README.md +27 -0
- package/dist/node/index.cjs +32 -0
- package/dist/node/index.d.cts +1066 -0
- package/dist/node/index.d.cts.map +1 -0
- package/dist/node/index.d.ts +1066 -0
- package/dist/node/index.d.ts.map +1 -0
- package/dist/node/index.js +33 -0
- package/dist/node/index.js.map +1 -0
- package/package.json +93 -0
- package/src/App.tsx +146 -0
- package/src/AppPresentation.tsx +190 -0
- package/src/AppView.tsx +26 -0
- package/src/BackgroundTaskPanel.tsx +73 -0
- package/src/CjkTextInput.tsx +336 -0
- package/src/ConfirmPrompt.tsx +140 -0
- package/src/ContextWarningBanner.tsx +45 -0
- package/src/ExecutionWorkspaceDetailPane.tsx +85 -0
- package/src/ExecutionWorkspaceSwitcher.tsx +213 -0
- package/src/HistorySearchOverlay.tsx +150 -0
- package/src/InputArea.tsx +338 -0
- package/src/ListPicker.tsx +158 -0
- package/src/MenuSelect.tsx +159 -0
- package/src/MessageList.tsx +308 -0
- package/src/MultiSelectList.tsx +294 -0
- package/src/PendingActionPrompt.tsx +121 -0
- package/src/PermissionPrompt.tsx +186 -0
- package/src/PluginTUI.tsx +258 -0
- package/src/RoleLabel.tsx +72 -0
- package/src/SafeText.tsx +66 -0
- package/src/SessionEventNotices.tsx +27 -0
- package/src/SessionPicker.tsx +72 -0
- package/src/SessionStatusBar.tsx +76 -0
- package/src/SlashAutocomplete.tsx +154 -0
- package/src/StatusBar.tsx +284 -0
- package/src/StreamingIndicator.tsx +145 -0
- package/src/SupervisedSessionView.tsx +455 -0
- package/src/TextPrompt.tsx +112 -0
- package/src/ThemePicker.tsx +366 -0
- package/src/ToolCommandOutput.tsx +48 -0
- package/src/ToolDiffBlock.tsx +44 -0
- package/src/TransportTUI.tsx +166 -0
- package/src/TuiInteractionChannel.ts +567 -0
- package/src/UpdateNotice.tsx +18 -0
- package/src/UsageSummaryEntry.tsx +49 -0
- package/src/WaveText.tsx +70 -0
- package/src/__tests__/ListPicker.test.tsx +188 -0
- package/src/__tests__/MenuSelect.test.tsx +127 -0
- package/src/__tests__/PendingActionPrompt.test.tsx +193 -0
- package/src/__tests__/PluginTUI.test.tsx +167 -0
- package/src/__tests__/SlashAutocomplete.test.tsx +162 -0
- package/src/__tests__/SupervisedSessionView-render.test.tsx +24 -0
- package/src/__tests__/SupervisedSessionView.test.tsx +629 -0
- package/src/__tests__/TextPrompt.test.tsx +112 -0
- package/src/__tests__/TransportTUI.test.tsx +124 -0
- package/src/__tests__/TuiInteractionChannel.askUser.test.ts +124 -0
- package/src/__tests__/TuiInteractionChannel.display-contract.test.ts +284 -0
- package/src/__tests__/TuiInteractionChannel.lifecycle.test.ts +642 -0
- package/src/__tests__/UpdateNotice.test.tsx +15 -0
- package/src/__tests__/abort-after-permission.test.tsx +160 -0
- package/src/__tests__/abort-streaming-e2e.test.tsx +183 -0
- package/src/__tests__/attention-bell-and-marks.test.ts +144 -0
- package/src/__tests__/autocomplete-editing-keys.test.tsx +127 -0
- package/src/__tests__/background-task-panel-countdown.test.tsx +75 -0
- package/src/__tests__/background-task-panel.test.tsx +98 -0
- package/src/__tests__/background-task-row-format.test.ts +152 -0
- package/src/__tests__/channel-factory-integration.test.ts +150 -0
- package/src/__tests__/cjk-defer-submit.test.tsx +67 -0
- package/src/__tests__/cjk-fallback-render.test.tsx +78 -0
- package/src/__tests__/cjk-text-input-flow.test.ts +186 -0
- package/src/__tests__/cjk-text-input.test.ts +191 -0
- package/src/__tests__/command-handoff-pty-e2e.test.ts +107 -0
- package/src/__tests__/command-output-summary.test.ts +95 -0
- package/src/__tests__/command-result-handler.test.ts +171 -0
- package/src/__tests__/compact-event-bridge.test.ts +20 -0
- package/src/__tests__/confirm-permission-flow.test.ts +149 -0
- package/src/__tests__/confirm-prompt.test.tsx +103 -0
- package/src/__tests__/contextual-keybindings-input.test.tsx +158 -0
- package/src/__tests__/default-tui-cli-adapter-host-settings.test.ts +45 -0
- package/src/__tests__/effort-reaches-the-session.test.ts +41 -0
- package/src/__tests__/execution-workspace-switcher.test.tsx +147 -0
- package/src/__tests__/execution-workspace-view-model.test.ts +94 -0
- package/src/__tests__/external-prompt-notice.test.tsx +100 -0
- package/src/__tests__/fixtures/command-handoff-driver.tsx +111 -0
- package/src/__tests__/fixtures/fake-editor.sh +7 -0
- package/src/__tests__/fixtures/terminal-handoff-driver.tsx +90 -0
- package/src/__tests__/fork-attach.test.tsx +235 -0
- package/src/__tests__/helpers/terminal-profiles.ts +152 -0
- package/src/__tests__/helpers/vt-cursor-interpreter.ts +175 -0
- package/src/__tests__/history-clear-broadcast.test.ts +66 -0
- package/src/__tests__/history-search-overlay.test.tsx +329 -0
- package/src/__tests__/humanize-tool-name.test.ts +30 -0
- package/src/__tests__/input-area-bottom-border.test.tsx +45 -0
- package/src/__tests__/input-area-flow.test.ts +199 -0
- package/src/__tests__/input-area-focus-handoff.test.tsx +77 -0
- package/src/__tests__/interaction-channel-charter.test.ts +13 -0
- package/src/__tests__/key-hint-consistency.test.tsx +249 -0
- package/src/__tests__/key-hint-footer.test.tsx +69 -0
- package/src/__tests__/live-trace-reaches-session.test.ts +14 -0
- package/src/__tests__/message-list-rendering.test.tsx +473 -0
- package/src/__tests__/org-policy-reaches-the-channel.test.ts +77 -0
- package/src/__tests__/output-style-reaches-session.test.ts +35 -0
- package/src/__tests__/palette-consistency.test.ts +330 -0
- package/src/__tests__/permission-prompt-availability.test.tsx +23 -0
- package/src/__tests__/permission-prompt-peer.test.tsx +34 -0
- package/src/__tests__/product-display-name.test.tsx +79 -0
- package/src/__tests__/prompt-queue.test.tsx +260 -0
- package/src/__tests__/provider-definitions-reach-the-session.test.ts +75 -0
- package/src/__tests__/pty/ask-user-question.ptytest.ts +72 -0
- package/src/__tests__/pty/background-work-switcher.ptytest.ts +53 -0
- package/src/__tests__/pty/behavior-2437-git.ptytest.ts +342 -0
- package/src/__tests__/pty/fixtures/ask-user-question.jsonl +3 -0
- package/src/__tests__/pty/fixtures/replay-conversation.jsonl +4 -0
- package/src/__tests__/pty/fixtures/screen-005-ask-shapes.jsonl +5 -0
- package/src/__tests__/pty/fixtures/screen-005-permission.jsonl +3 -0
- package/src/__tests__/pty/fixtures/screen-006-colors.jsonl +3 -0
- package/src/__tests__/pty/fixtures/screen-2002-themes.jsonl +5 -0
- package/src/__tests__/pty/flag-tui.ptytest.ts +56 -0
- package/src/__tests__/pty/flow-2006-deep-link.ptytest.ts +291 -0
- package/src/__tests__/pty/ime-cursor-tmux.ptytest.ts +165 -0
- package/src/__tests__/pty/ime-cursor.ptytest.ts +186 -0
- package/src/__tests__/pty/isolated-home.ts +64 -0
- package/src/__tests__/pty/org-policy.ptytest.ts +71 -0
- package/src/__tests__/pty/provider-setup.ptytest.ts +61 -0
- package/src/__tests__/pty/pty-driver.ts +153 -0
- package/src/__tests__/pty/replay-conversation.ptytest.ts +68 -0
- package/src/__tests__/pty/screen-005-prompt-footers.ptytest.ts +134 -0
- package/src/__tests__/pty/screen-006-no-color.ptytest.ts +138 -0
- package/src/__tests__/pty/screen-010-scrollback.ptytest.ts +123 -0
- package/src/__tests__/pty/screen-1993-scrollback.ptytest.ts +124 -0
- package/src/__tests__/pty/screen-2002-themes.ptytest.ts +292 -0
- package/src/__tests__/pty/screen-2670-prepark.ptytest.ts +228 -0
- package/src/__tests__/pty/screen-reader-mode.ptytest.ts +228 -0
- package/src/__tests__/pty/settings-screen.ptytest.ts +49 -0
- package/src/__tests__/pty/spawn-pty.test.ts +120 -0
- package/src/__tests__/pty/spawn-pty.ts +229 -0
- package/src/__tests__/pty/terminal-handoff.ptytest.ts +79 -0
- package/src/__tests__/pty/tui-pty.ptytest.ts +65 -0
- package/src/__tests__/pty-driver-dispose.test.ts +43 -0
- package/src/__tests__/real-cursor-positioning.test.tsx +263 -0
- package/src/__tests__/rename-broadcast-persistence.test.tsx +140 -0
- package/src/__tests__/render-channel-options.test.ts +201 -0
- package/src/__tests__/render-lifecycle.test.ts +36 -0
- package/src/__tests__/render-markdown.test.ts +164 -0
- package/src/__tests__/rendered-markdown-styling.test.tsx +98 -0
- package/src/__tests__/safe-text-boundary.test.tsx +75 -0
- package/src/__tests__/screen-reader-input.test.tsx +106 -0
- package/src/__tests__/screen-reader-labels.test.ts +91 -0
- package/src/__tests__/screen-reader-menus.test.tsx +200 -0
- package/src/__tests__/screen-reader-pacing.test.ts +230 -0
- package/src/__tests__/screen-reader-prepark-echo.test.tsx +200 -0
- package/src/__tests__/screen-reader-render-options.test.ts +262 -0
- package/src/__tests__/screen-reader-stdout.test.ts +322 -0
- package/src/__tests__/screen-reader-turn-marks-port.test.tsx +85 -0
- package/src/__tests__/screen-reader-turn-signals.test.tsx +125 -0
- package/src/__tests__/sec-019-terminal-sanitizer.test.ts +276 -0
- package/src/__tests__/sec-019-tool-label-render.test.tsx +207 -0
- package/src/__tests__/selection-flow.test.ts +61 -0
- package/src/__tests__/session-event-notices.test.tsx +31 -0
- package/src/__tests__/session-init-poller.test.ts +102 -0
- package/src/__tests__/session-switch-channel.test.tsx +470 -0
- package/src/__tests__/shutdown-signal.test.ts +34 -0
- package/src/__tests__/status-activity.test.ts +71 -0
- package/src/__tests__/status-bar.test.tsx +282 -0
- package/src/__tests__/status-glyph.test.ts +30 -0
- package/src/__tests__/streaming-indicator.test.tsx +177 -0
- package/src/__tests__/terminal-capabilities.test.ts +153 -0
- package/src/__tests__/terminal-handoff-controller.test.ts +173 -0
- package/src/__tests__/terminal-handoff-pty-e2e.test.ts +77 -0
- package/src/__tests__/text-prompt-flow.test.ts +77 -0
- package/src/__tests__/theme-picker.test.tsx +345 -0
- package/src/__tests__/transport-boundary.test.ts +11 -0
- package/src/__tests__/tui-app-channel-port.test.ts +31 -0
- package/src/__tests__/tui-channel-init-failure.test.ts +62 -0
- package/src/__tests__/tui-channel-lifecycle-coordinator.test.ts +258 -0
- package/src/__tests__/tui-interaction-queues.test.ts +139 -0
- package/src/__tests__/tui-preset-capabilities.test.ts +33 -0
- package/src/__tests__/tui-state-manager.error-stall.test.ts +169 -0
- package/src/__tests__/tui-state-manager.test.ts +451 -0
- package/src/__tests__/ui-intent-rendering.test.tsx +291 -0
- package/src/__tests__/wave-text.test.tsx +133 -0
- package/src/app-banner.tsx +42 -0
- package/src/app-static-items.ts +35 -0
- package/src/app-view-model.ts +136 -0
- package/src/attention/__tests__/attention-coordinator.test.ts +166 -0
- package/src/attention/__tests__/attention-tracker.test.ts +103 -0
- package/src/attention/__tests__/countdown.test.ts +15 -0
- package/src/attention/__tests__/focus-input-filter.test.ts +92 -0
- package/src/attention/__tests__/interval-recap.test.ts +49 -0
- package/src/attention/attention-coordinator.ts +71 -0
- package/src/attention/attention-tracker.ts +124 -0
- package/src/attention/countdown.ts +24 -0
- package/src/attention/focus-input-filter.ts +131 -0
- package/src/attention/interval-recap.ts +148 -0
- package/src/attention/time-units.ts +6 -0
- package/src/attention-bell.ts +79 -0
- package/src/attributed-user-echo.ts +30 -0
- package/src/background-task-row-format.ts +99 -0
- package/src/command-interaction.ts +8 -0
- package/src/command-output-summary.ts +129 -0
- package/src/create-default-tui-cli-adapter.ts +45 -0
- package/src/execution-workspace-switcher-selection.ts +118 -0
- package/src/execution-workspace-view-model.ts +139 -0
- package/src/external-prompt-notice.tsx +38 -0
- package/src/flows/__tests__/background-focus-flow.test.ts +48 -0
- package/src/flows/__tests__/defer-submit.test.ts +87 -0
- package/src/flows/__tests__/real-cursor-flow.test.ts +124 -0
- package/src/flows/background-focus-flow.ts +44 -0
- package/src/flows/cjk-cursor-motion.ts +75 -0
- package/src/flows/cjk-text-deletion.ts +53 -0
- package/src/flows/cjk-text-input-flow.ts +248 -0
- package/src/flows/cjk-text-input-types.ts +24 -0
- package/src/flows/confirm-prompt-flow.ts +90 -0
- package/src/flows/defer-submit.ts +67 -0
- package/src/flows/fork-attach-flow.ts +62 -0
- package/src/flows/input-area-flow.ts +188 -0
- package/src/flows/permission-prompt-flow.ts +108 -0
- package/src/flows/real-cursor-flow.ts +83 -0
- package/src/flows/selection-flow.ts +205 -0
- package/src/flows/session-init-poller.ts +76 -0
- package/src/flows/text-prompt-flow.ts +93 -0
- package/src/history-search/__tests__/history-search-flow.test.ts +86 -0
- package/src/history-search/history-search-flow.ts +94 -0
- package/src/history-search/useHistorySearch.ts +336 -0
- package/src/hooks/__tests__/use-app-loop-escape.test.tsx +74 -0
- package/src/hooks/__tests__/use-plugin-callbacks.test.ts +18 -0
- package/src/hooks/__tests__/use-tui-channel-stability.test.tsx +100 -0
- package/src/hooks/__tests__/useAppThemeState.test.tsx +130 -0
- package/src/hooks/command-result-handler.ts +44 -0
- package/src/hooks/side-effects-types.ts +45 -0
- package/src/hooks/useAppController.ts +267 -0
- package/src/hooks/useAppInputBindings.ts +145 -0
- package/src/hooks/useAppInteractionState.ts +81 -0
- package/src/hooks/useAppLifecycleState.ts +81 -0
- package/src/hooks/useAppOverlays.ts +74 -0
- package/src/hooks/useAppScreenState.ts +81 -0
- package/src/hooks/useAppSubmissionState.ts +45 -0
- package/src/hooks/useAppThemeState.ts +157 -0
- package/src/hooks/useAppWorkspaceState.ts +149 -0
- package/src/hooks/useAppearanceSettings.ts +30 -0
- package/src/hooks/useAutocomplete.ts +101 -0
- package/src/hooks/useBackgroundPanel.ts +58 -0
- package/src/hooks/useCountdownTick.ts +24 -0
- package/src/hooks/useExecutionDetailPage.ts +69 -0
- package/src/hooks/useForkAttach.ts +60 -0
- package/src/hooks/useInputAreaHistorySearch.ts +72 -0
- package/src/hooks/useInputAreaKeys.ts +114 -0
- package/src/hooks/useNumberedSelection.ts +76 -0
- package/src/hooks/usePluginCallbacks.ts +38 -0
- package/src/hooks/usePluginScreenData.ts +85 -0
- package/src/hooks/useRealCursorPosition.ts +125 -0
- package/src/hooks/useRenderMarkdown.ts +38 -0
- package/src/hooks/useScreenReaderTurnSignals.ts +113 -0
- package/src/hooks/useSideEffects.ts +144 -0
- package/src/hooks/useStatusLineSettings.ts +50 -0
- package/src/hooks/useTerminalHandoffSuspension.ts +30 -0
- package/src/hooks/useTuiChannel.ts +129 -0
- package/src/humanize-tool-name.ts +51 -0
- package/src/index.ts +56 -0
- package/src/input-area-rules.tsx +71 -0
- package/src/json-value.ts +18 -0
- package/src/key-hint-footer.tsx +54 -0
- package/src/keybindings/__tests__/keybinding-registry.test.ts +228 -0
- package/src/keybindings/__tests__/node-keybindings-source.test.ts +111 -0
- package/src/keybindings/keybinding-catalogue.ts +171 -0
- package/src/keybindings/keybinding-registry.ts +303 -0
- package/src/keybindings/keybinding-syntax.ts +155 -0
- package/src/keybindings/keybindings-context.tsx +124 -0
- package/src/keybindings/node-keybindings-source.ts +189 -0
- package/src/numbered-list.tsx +113 -0
- package/src/plugin-tui-handlers.ts +163 -0
- package/src/product-display-name-context.tsx +30 -0
- package/src/render-markdown.ts +209 -0
- package/src/render.tsx +544 -0
- package/src/sanitize-terminal-text.ts +171 -0
- package/src/screen-reader-announcement.ts +52 -0
- package/src/screen-reader-context.tsx +32 -0
- package/src/screen-reader-labels.ts +64 -0
- package/src/screen-reader-pacing-context.tsx +47 -0
- package/src/screen-reader-pacing.ts +178 -0
- package/src/screen-reader-stdout.ts +328 -0
- package/src/shutdown-signal.ts +34 -0
- package/src/status-activity.ts +70 -0
- package/src/status-glyph.ts +78 -0
- package/src/terminal-capabilities-context.tsx +27 -0
- package/src/terminal-capabilities.ts +77 -0
- package/src/terminal-focus-reporting.ts +50 -0
- package/src/terminal-handoff-controller.ts +98 -0
- package/src/terminal-marks.ts +63 -0
- package/src/theme/__tests__/built-in-themes.test.ts +117 -0
- package/src/theme/__tests__/color-vision.test.ts +82 -0
- package/src/theme/__tests__/theme-context.test.tsx +146 -0
- package/src/theme/__tests__/theme-document.test.ts +222 -0
- package/src/theme/__tests__/theme-registry.test.ts +138 -0
- package/src/theme/__tests__/theme-styles.test.ts +233 -0
- package/src/theme/built-in-themes.ts +342 -0
- package/src/theme/color-vision.ts +171 -0
- package/src/theme/index.ts +45 -0
- package/src/theme/theme-context.tsx +81 -0
- package/src/theme/theme-contracts.ts +139 -0
- package/src/theme/theme-document.ts +278 -0
- package/src/theme/theme-registry.ts +127 -0
- package/src/theme/theme-styles.ts +177 -0
- package/src/tool-summary-status.ts +59 -0
- package/src/tui-app-channel-port.ts +83 -0
- package/src/tui-channel-lifecycle-coordinator.ts +149 -0
- package/src/tui-channel-options.ts +172 -0
- package/src/tui-cli-adapter-context.tsx +13 -0
- package/src/tui-cli-adapter.ts +24 -0
- package/src/tui-interaction-queues.ts +163 -0
- package/src/tui-session-binding.ts +52 -0
- package/src/tui-session-event-projector.ts +140 -0
- package/src/tui-session-events.ts +82 -0
- package/src/tui-session-notice-store.ts +43 -0
- package/src/tui-session-options.ts +118 -0
- package/src/tui-state-manager.ts +327 -0
- package/src/types.ts +19 -0
- package/src/use-terminal-title.ts +29 -0
- package/src/utils/__tests__/edit-diff.test.ts +426 -0
- package/src/utils/__tests__/paste-detection.test.ts +116 -0
- package/src/utils/__tests__/paste-labels.test.ts +46 -0
- package/src/utils/__tests__/tool-call-extractor.test.ts +227 -0
- package/src/utils/__tests__/tool-diff-summary.test.ts +104 -0
- package/src/utils/edit-diff.ts +151 -0
- package/src/utils/input-top-border.ts +19 -0
- package/src/utils/paste-labels.ts +9 -0
- package/src/utils/tool-call-extractor.ts +92 -0
- package/src/utils/tool-diff-summary.ts +75 -0
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CMD-004 Phase 2: `applySystemCommandResult` is pure rendering. Host actions are applied (and
|
|
3
|
+
* consumed) by the session, UI intents arrive via the `ui_intent` session event, and state-change
|
|
4
|
+
* notifications arrive as broadcast session events (`session_renamed`, `history_cleared`). The
|
|
5
|
+
* only result-carried hint consumed here is `data.pluginRegistryReloaded` — the requester-local
|
|
6
|
+
* command-registry/autocomplete refresh.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import { createTestInteractiveSession } from '@robota-sdk/agent-interface-session/testing';
|
|
10
|
+
|
|
11
|
+
import { homedir } from 'node:os';
|
|
12
|
+
import { mkdirSync, mkdtempSync, writeFileSync, realpathSync } from 'node:fs';
|
|
13
|
+
import { tmpdir } from 'node:os';
|
|
14
|
+
import { join } from 'node:path';
|
|
15
|
+
import { describe, expect, it } from 'vitest';
|
|
16
|
+
import { afterEach, vi } from 'vitest';
|
|
17
|
+
import {
|
|
18
|
+
CommandRegistry,
|
|
19
|
+
BundlePluginLoader,
|
|
20
|
+
PluginCommandSource,
|
|
21
|
+
} from '@robota-sdk/agent-framework';
|
|
22
|
+
import type { IInteractiveSession } from '@robota-sdk/agent-interface-session';
|
|
23
|
+
import { TuiStateManager } from '../tui-state-manager.js';
|
|
24
|
+
import { applySystemCommandResult } from '../hooks/command-result-handler.js';
|
|
25
|
+
|
|
26
|
+
const PLUGIN_SOURCE_NAME = 'plugin';
|
|
27
|
+
|
|
28
|
+
function reloadPluginCommandSource(registry: CommandRegistry): void {
|
|
29
|
+
const pluginsDir = join(process.env.HOME ?? homedir(), '.robota', 'plugins');
|
|
30
|
+
const loader = new BundlePluginLoader(pluginsDir);
|
|
31
|
+
try {
|
|
32
|
+
// allow-fallback: test helper — empty registry on load error is safe
|
|
33
|
+
const plugins = loader.loadPluginsSync();
|
|
34
|
+
if (plugins.length === 0) {
|
|
35
|
+
registry.replaceSource(PLUGIN_SOURCE_NAME);
|
|
36
|
+
} else {
|
|
37
|
+
registry.replaceSource(PLUGIN_SOURCE_NAME, new PluginCommandSource(plugins));
|
|
38
|
+
}
|
|
39
|
+
} catch {
|
|
40
|
+
// allow-fallback: test helper — empty registry on load error is safe
|
|
41
|
+
registry.replaceSource(PLUGIN_SOURCE_NAME);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
describe('applySystemCommandResult', () => {
|
|
46
|
+
afterEach(() => {
|
|
47
|
+
vi.unstubAllEnvs();
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
function createSession(): IInteractiveSession {
|
|
51
|
+
return Object.assign(createTestInteractiveSession(), {
|
|
52
|
+
getContextState: () => ({ usedPercentage: 0, usedTokens: 0, maxTokens: 0 }),
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
it('renders the message only — UI intents are delivered via the ui_intent session event', () => {
|
|
57
|
+
const manager = new TuiStateManager();
|
|
58
|
+
|
|
59
|
+
applySystemCommandResult(
|
|
60
|
+
{
|
|
61
|
+
success: true,
|
|
62
|
+
message: 'Opening plugin manager...',
|
|
63
|
+
uiIntents: [{ type: 'show-plugin-manager' }],
|
|
64
|
+
},
|
|
65
|
+
createSession(),
|
|
66
|
+
new CommandRegistry(),
|
|
67
|
+
manager,
|
|
68
|
+
);
|
|
69
|
+
|
|
70
|
+
// Pure rendering: the message lands in history; the legacy screen effect does nothing here.
|
|
71
|
+
expect(manager.history).toHaveLength(1);
|
|
72
|
+
expect(manager.history[0]?.data).toMatchObject({ content: 'Opening plugin manager...' });
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
it('renders a host-actioned result as message only (host applied it; TUI refreshes on result)', () => {
|
|
76
|
+
const manager = new TuiStateManager();
|
|
77
|
+
|
|
78
|
+
applySystemCommandResult(
|
|
79
|
+
{
|
|
80
|
+
success: true,
|
|
81
|
+
message: 'Status line disabled.',
|
|
82
|
+
},
|
|
83
|
+
createSession(),
|
|
84
|
+
new CommandRegistry(),
|
|
85
|
+
manager,
|
|
86
|
+
);
|
|
87
|
+
|
|
88
|
+
expect(manager.history).toHaveLength(1);
|
|
89
|
+
expect(manager.history[0]?.data).toMatchObject({ content: 'Status line disabled.' });
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
it('appends the /clear result message AFTER the broadcast-driven clear (event fired during executeCommand)', () => {
|
|
93
|
+
const manager = new TuiStateManager();
|
|
94
|
+
manager.addEntry({
|
|
95
|
+
id: 'old',
|
|
96
|
+
timestamp: new Date('2026-05-03T00:00:00.000Z'),
|
|
97
|
+
category: 'chat',
|
|
98
|
+
type: 'user',
|
|
99
|
+
data: { role: 'user', content: 'old message' },
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
// Stage E: the transcript clear itself rides the broadcast `history_cleared` session event
|
|
103
|
+
// (bound in TuiInteractionChannel and emitted while the command executes — before the result
|
|
104
|
+
// returns), so by the time this renderer runs the history is already empty.
|
|
105
|
+
manager.clearHistory();
|
|
106
|
+
applySystemCommandResult(
|
|
107
|
+
{
|
|
108
|
+
success: true,
|
|
109
|
+
message: 'Conversation cleared.',
|
|
110
|
+
},
|
|
111
|
+
createSession(),
|
|
112
|
+
new CommandRegistry(),
|
|
113
|
+
manager,
|
|
114
|
+
);
|
|
115
|
+
|
|
116
|
+
expect(manager.history).toHaveLength(1);
|
|
117
|
+
expect(manager.history[0]?.type).toBe('system');
|
|
118
|
+
expect(manager.history[0]?.data).toMatchObject({ content: 'Conversation cleared.' });
|
|
119
|
+
});
|
|
120
|
+
|
|
121
|
+
it('reloads plugin command source immediately when requested', () => {
|
|
122
|
+
const home = realpathSync(mkdtempSync(join(tmpdir(), 'robota-plugin-reload-')));
|
|
123
|
+
const pluginDir = join(
|
|
124
|
+
home,
|
|
125
|
+
'.robota',
|
|
126
|
+
'plugins',
|
|
127
|
+
'cache',
|
|
128
|
+
'community',
|
|
129
|
+
'fresh-plugin',
|
|
130
|
+
'1.0.0',
|
|
131
|
+
);
|
|
132
|
+
mkdirSync(join(pluginDir, '.claude-plugin'), { recursive: true });
|
|
133
|
+
mkdirSync(join(pluginDir, 'skills', 'fresh-skill'), { recursive: true });
|
|
134
|
+
writeFileSync(
|
|
135
|
+
join(pluginDir, '.claude-plugin', 'plugin.json'),
|
|
136
|
+
JSON.stringify({
|
|
137
|
+
name: 'fresh-plugin',
|
|
138
|
+
version: '1.0.0',
|
|
139
|
+
description: 'Fresh plugin',
|
|
140
|
+
features: { skills: true },
|
|
141
|
+
}),
|
|
142
|
+
'utf8',
|
|
143
|
+
);
|
|
144
|
+
writeFileSync(
|
|
145
|
+
join(pluginDir, 'skills', 'fresh-skill', 'SKILL.md'),
|
|
146
|
+
'---\ndescription: Fresh skill\n---\n# Fresh Skill\n',
|
|
147
|
+
'utf8',
|
|
148
|
+
);
|
|
149
|
+
vi.stubEnv('HOME', home);
|
|
150
|
+
const registry = new CommandRegistry();
|
|
151
|
+
registry.addSource({
|
|
152
|
+
name: 'plugin',
|
|
153
|
+
getCommands: () => [{ name: 'stale-skill', description: 'Stale', source: 'plugin' }],
|
|
154
|
+
});
|
|
155
|
+
const manager = new TuiStateManager();
|
|
156
|
+
|
|
157
|
+
applySystemCommandResult(
|
|
158
|
+
{
|
|
159
|
+
success: true,
|
|
160
|
+
message: 'Reloaded 1 plugin resource.',
|
|
161
|
+
data: { pluginRegistryReloaded: true },
|
|
162
|
+
},
|
|
163
|
+
createSession(),
|
|
164
|
+
registry,
|
|
165
|
+
manager,
|
|
166
|
+
reloadPluginCommandSource,
|
|
167
|
+
);
|
|
168
|
+
|
|
169
|
+
expect(registry.getCommands().map((command) => command.name)).toEqual(['fresh-skill']);
|
|
170
|
+
});
|
|
171
|
+
});
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { describe, expect, it } from 'vitest';
|
|
2
|
+
import { createSystemMessage, messageToHistoryEntry } from '@robota-sdk/agent-core';
|
|
3
|
+
import { TuiStateManager } from '../tui-state-manager.js';
|
|
4
|
+
import { applyCompactEventToManager } from '../hooks/useTuiChannel.js';
|
|
5
|
+
|
|
6
|
+
describe('compact event bridge', () => {
|
|
7
|
+
it('syncs session history so automatic compaction notifications render', () => {
|
|
8
|
+
const manager = new TuiStateManager();
|
|
9
|
+
const notification = messageToHistoryEntry(
|
|
10
|
+
createSystemMessage('Auto compacted context: 84% -> 35%'),
|
|
11
|
+
);
|
|
12
|
+
const session = {
|
|
13
|
+
getFullHistory: () => [notification],
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
applyCompactEventToManager(session, manager);
|
|
17
|
+
|
|
18
|
+
expect(manager.history).toEqual([notification]);
|
|
19
|
+
});
|
|
20
|
+
});
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import { describe, expect, it } from 'vitest';
|
|
2
|
+
import {
|
|
3
|
+
applyConfirmPromptInput,
|
|
4
|
+
getConfirmPromptInputAction,
|
|
5
|
+
} from '../flows/confirm-prompt-flow.js';
|
|
6
|
+
import {
|
|
7
|
+
applyPermissionPromptInput,
|
|
8
|
+
getPermissionPromptInputAction,
|
|
9
|
+
PERMISSION_PROMPT_OPTIONS,
|
|
10
|
+
permissionPromptOptionsFor,
|
|
11
|
+
} from '../flows/permission-prompt-flow.js';
|
|
12
|
+
import { createSelectionFlowState } from '../flows/selection-flow.js';
|
|
13
|
+
|
|
14
|
+
describe('confirm prompt flow', () => {
|
|
15
|
+
it('Given two options When y shortcut is mapped and applied Then first option is selected', () => {
|
|
16
|
+
const action = getConfirmPromptInputAction('y', {}, 2);
|
|
17
|
+
expect(action).toEqual({ type: 'shortcut', index: 0 });
|
|
18
|
+
|
|
19
|
+
const result = applyConfirmPromptInput(createSelectionFlowState(), action!, 2);
|
|
20
|
+
|
|
21
|
+
expect(result.effect).toEqual({ type: 'select', index: 0 });
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it('Given more than two options When y or n is typed Then shortcuts are ignored', () => {
|
|
25
|
+
expect(getConfirmPromptInputAction('y', {}, 3)).toBeUndefined();
|
|
26
|
+
expect(getConfirmPromptInputAction('n', {}, 3)).toBeUndefined();
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
it('Given selection moved right When enter is applied Then current option is selected', () => {
|
|
30
|
+
const moved = applyConfirmPromptInput(createSelectionFlowState(), 'next', 2).state;
|
|
31
|
+
|
|
32
|
+
const result = applyConfirmPromptInput(moved, 'select', 2);
|
|
33
|
+
|
|
34
|
+
expect(result.effect).toEqual({ type: 'select', index: 1 });
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
it('Given prompt is resolved When shortcut is applied Then no second selection is emitted', () => {
|
|
38
|
+
const selected = applyConfirmPromptInput(createSelectionFlowState(), 'select', 2).state;
|
|
39
|
+
|
|
40
|
+
const result = applyConfirmPromptInput(selected, { type: 'shortcut', index: 1 }, 2);
|
|
41
|
+
|
|
42
|
+
expect(result.effect).toEqual({ type: 'none' });
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
describe('permission prompt flow', () => {
|
|
47
|
+
it('Given y shortcut When applied Then allow decision is emitted', () => {
|
|
48
|
+
const action = getPermissionPromptInputAction('y', {});
|
|
49
|
+
|
|
50
|
+
const result = applyPermissionPromptInput(createSelectionFlowState(), action!);
|
|
51
|
+
|
|
52
|
+
expect(result.effect).toEqual({ type: 'resolve', decision: true });
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('Given a shortcut When applied Then allow-session decision is emitted', () => {
|
|
56
|
+
const action = getPermissionPromptInputAction('a', {});
|
|
57
|
+
|
|
58
|
+
const result = applyPermissionPromptInput(createSelectionFlowState(), action!);
|
|
59
|
+
|
|
60
|
+
expect(result.effect).toEqual({ type: 'resolve', decision: 'allow-session' });
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
it('Given p or 3 shortcut When applied Then allow-project decision is emitted', () => {
|
|
64
|
+
expect(
|
|
65
|
+
applyPermissionPromptInput(
|
|
66
|
+
createSelectionFlowState(),
|
|
67
|
+
getPermissionPromptInputAction('p', {})!,
|
|
68
|
+
).effect,
|
|
69
|
+
).toEqual({ type: 'resolve', decision: 'allow-project' });
|
|
70
|
+
expect(
|
|
71
|
+
applyPermissionPromptInput(
|
|
72
|
+
createSelectionFlowState(),
|
|
73
|
+
getPermissionPromptInputAction('3', {})!,
|
|
74
|
+
).effect,
|
|
75
|
+
).toEqual({ type: 'resolve', decision: 'allow-project' });
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
it('labels unavailable project approval and ignores its shortcut or selection', () => {
|
|
79
|
+
expect(permissionPromptOptionsFor('Bash(git *)', false)[2]).toBe(
|
|
80
|
+
'Project-wide approval unavailable',
|
|
81
|
+
);
|
|
82
|
+
const state = createSelectionFlowState();
|
|
83
|
+
expect(
|
|
84
|
+
applyPermissionPromptInput(state, getPermissionPromptInputAction('p', {})!, false),
|
|
85
|
+
).toEqual({ state, effect: { type: 'none' } });
|
|
86
|
+
const selectedProject = applyPermissionPromptInput(
|
|
87
|
+
applyPermissionPromptInput(state, 'next', false).state,
|
|
88
|
+
'next',
|
|
89
|
+
false,
|
|
90
|
+
).state;
|
|
91
|
+
expect(applyPermissionPromptInput(selectedProject, 'select', false).effect).toEqual({
|
|
92
|
+
type: 'none',
|
|
93
|
+
});
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
it('Given deny shortcuts When applied Then false decision is emitted', () => {
|
|
97
|
+
expect(
|
|
98
|
+
applyPermissionPromptInput(
|
|
99
|
+
createSelectionFlowState(),
|
|
100
|
+
getPermissionPromptInputAction('n', {})!,
|
|
101
|
+
).effect,
|
|
102
|
+
).toEqual({ type: 'resolve', decision: false });
|
|
103
|
+
expect(
|
|
104
|
+
applyPermissionPromptInput(
|
|
105
|
+
createSelectionFlowState(),
|
|
106
|
+
getPermissionPromptInputAction('4', {})!,
|
|
107
|
+
).effect,
|
|
108
|
+
).toEqual({ type: 'resolve', decision: false });
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
it('Given arrow navigation When enter is applied Then selected permission is resolved', () => {
|
|
112
|
+
const moved = applyPermissionPromptInput(createSelectionFlowState(), 'next').state;
|
|
113
|
+
|
|
114
|
+
const result = applyPermissionPromptInput(moved, 'select');
|
|
115
|
+
|
|
116
|
+
expect(result.effect).toEqual({ type: 'resolve', decision: 'allow-session' });
|
|
117
|
+
});
|
|
118
|
+
|
|
119
|
+
it('Given permission is resolved When shortcut is applied Then no second decision is emitted', () => {
|
|
120
|
+
const resolved = applyPermissionPromptInput(createSelectionFlowState(), 'select').state;
|
|
121
|
+
|
|
122
|
+
const result = applyPermissionPromptInput(resolved, { type: 'shortcut', index: 2 });
|
|
123
|
+
|
|
124
|
+
expect(result.effect).toEqual({ type: 'none' });
|
|
125
|
+
});
|
|
126
|
+
|
|
127
|
+
// CLI-030 TC-03: [s] option is shown
|
|
128
|
+
it('Given PERMISSION_PROMPT_OPTIONS When inspected Then session option contains [s] hint', () => {
|
|
129
|
+
expect(PERMISSION_PROMPT_OPTIONS[1]).toContain('[s]');
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
// CLI-030 TC-03: s key maps to allow-session
|
|
133
|
+
it('Given s shortcut When applied Then allow-session decision is emitted', () => {
|
|
134
|
+
const action = getPermissionPromptInputAction('s', {});
|
|
135
|
+
|
|
136
|
+
const result = applyPermissionPromptInput(createSelectionFlowState(), action!);
|
|
137
|
+
|
|
138
|
+
expect(result.effect).toEqual({ type: 'resolve', decision: 'allow-session' });
|
|
139
|
+
});
|
|
140
|
+
|
|
141
|
+
// CLI-030 TC-04: allow-once (y) does not add to session list
|
|
142
|
+
it('Given y (allow-once) shortcut When applied Then true decision is emitted (not allow-session)', () => {
|
|
143
|
+
const action = getPermissionPromptInputAction('y', {});
|
|
144
|
+
|
|
145
|
+
const result = applyPermissionPromptInput(createSelectionFlowState(), action!);
|
|
146
|
+
|
|
147
|
+
expect(result.effect).toEqual({ type: 'resolve', decision: true });
|
|
148
|
+
});
|
|
149
|
+
});
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { describe, it, expect, vi } from 'vitest';
|
|
3
|
+
import { render } from 'ink-testing-library';
|
|
4
|
+
import ConfirmPrompt from '../ConfirmPrompt.js';
|
|
5
|
+
import { formatKeyHints } from '../key-hint-footer.js';
|
|
6
|
+
|
|
7
|
+
const delay = (ms: number) => new Promise((r) => setTimeout(r, ms));
|
|
8
|
+
|
|
9
|
+
describe('ConfirmPrompt', () => {
|
|
10
|
+
it('renders message text', () => {
|
|
11
|
+
const { lastFrame } = render(<ConfirmPrompt message="Are you sure?" onSelect={() => {}} />);
|
|
12
|
+
expect(lastFrame()).toContain('Are you sure?');
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
it('renders default Yes/No options', () => {
|
|
16
|
+
const { lastFrame } = render(<ConfirmPrompt message="Confirm?" onSelect={() => {}} />);
|
|
17
|
+
const frame = lastFrame()!;
|
|
18
|
+
expect(frame).toContain('Yes');
|
|
19
|
+
expect(frame).toContain('No');
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
it('renders custom options', () => {
|
|
23
|
+
const { lastFrame } = render(
|
|
24
|
+
<ConfirmPrompt message="Pick" options={['A', 'B', 'C']} onSelect={() => {}} />,
|
|
25
|
+
);
|
|
26
|
+
const frame = lastFrame()!;
|
|
27
|
+
expect(frame).toContain('A');
|
|
28
|
+
expect(frame).toContain('B');
|
|
29
|
+
expect(frame).toContain('C');
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
it('first option is highlighted by default', () => {
|
|
33
|
+
const { lastFrame } = render(<ConfirmPrompt message="Confirm?" onSelect={() => {}} />);
|
|
34
|
+
const frame = lastFrame()!;
|
|
35
|
+
// The selected item has '> ' prefix
|
|
36
|
+
expect(frame).toContain('> Yes');
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
it('selects first option on Enter', () => {
|
|
40
|
+
const onSelect = vi.fn();
|
|
41
|
+
const { stdin } = render(<ConfirmPrompt message="Confirm?" onSelect={onSelect} />);
|
|
42
|
+
stdin.write('\r');
|
|
43
|
+
expect(onSelect).toHaveBeenCalledWith(0);
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
it('navigates to second option with arrow down and selects', async () => {
|
|
47
|
+
const onSelect = vi.fn();
|
|
48
|
+
const { stdin } = render(<ConfirmPrompt message="Confirm?" onSelect={onSelect} />);
|
|
49
|
+
// Arrow down (move to No)
|
|
50
|
+
stdin.write('\x1b[B');
|
|
51
|
+
await delay(50);
|
|
52
|
+
stdin.write('\r');
|
|
53
|
+
expect(onSelect).toHaveBeenCalledWith(1);
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
it('y shortcut selects first option (Yes)', () => {
|
|
57
|
+
const onSelect = vi.fn();
|
|
58
|
+
const { stdin } = render(<ConfirmPrompt message="Confirm?" onSelect={onSelect} />);
|
|
59
|
+
stdin.write('y');
|
|
60
|
+
expect(onSelect).toHaveBeenCalledWith(0);
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
it('n shortcut selects second option (No)', () => {
|
|
64
|
+
const onSelect = vi.fn();
|
|
65
|
+
const { stdin } = render(<ConfirmPrompt message="Confirm?" onSelect={onSelect} />);
|
|
66
|
+
stdin.write('n');
|
|
67
|
+
expect(onSelect).toHaveBeenCalledWith(1);
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
it('y/n shortcuts do not work with more than 2 options', () => {
|
|
71
|
+
const onSelect = vi.fn();
|
|
72
|
+
const { stdin } = render(
|
|
73
|
+
<ConfirmPrompt message="Pick" options={['A', 'B', 'C']} onSelect={onSelect} />,
|
|
74
|
+
);
|
|
75
|
+
stdin.write('y');
|
|
76
|
+
stdin.write('n');
|
|
77
|
+
expect(onSelect).not.toHaveBeenCalled();
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
it('ignores input after selection (no double-fire)', () => {
|
|
81
|
+
const onSelect = vi.fn();
|
|
82
|
+
const { stdin } = render(<ConfirmPrompt message="Confirm?" onSelect={onSelect} />);
|
|
83
|
+
stdin.write('\r');
|
|
84
|
+
stdin.write('\r');
|
|
85
|
+
stdin.write('y');
|
|
86
|
+
expect(onSelect).toHaveBeenCalledTimes(1);
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
// SCREEN-005: footer names the real keys (←→; the flow suppresses Esc, so the footer omits it —
|
|
90
|
+
// the footer lists exactly the keys that do something).
|
|
91
|
+
it('renders the footer in the shared key-hint grammar and omits Esc', () => {
|
|
92
|
+
const { lastFrame } = render(<ConfirmPrompt message="Confirm?" onSelect={() => {}} />);
|
|
93
|
+
const frame = lastFrame()!;
|
|
94
|
+
expect(frame).toContain(
|
|
95
|
+
formatKeyHints([
|
|
96
|
+
{ keys: '←→', label: 'Navigate' },
|
|
97
|
+
{ keys: 'Enter', label: 'Confirm' },
|
|
98
|
+
]),
|
|
99
|
+
);
|
|
100
|
+
expect(frame).not.toContain('Esc');
|
|
101
|
+
expect(frame).not.toContain('arrow keys');
|
|
102
|
+
});
|
|
103
|
+
});
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { render } from 'ink-testing-library';
|
|
3
|
+
import { describe, expect, it, vi } from 'vitest';
|
|
4
|
+
|
|
5
|
+
import { createLoopCommandEntry, createRemoteControlCommandEntry } from '@robota-sdk/agent-command';
|
|
6
|
+
import InputArea from '../InputArea.js';
|
|
7
|
+
import { KeybindingsProvider } from '../keybindings/keybindings-context.js';
|
|
8
|
+
import { parseKeybindingsDocument } from '../keybindings/keybinding-registry.js';
|
|
9
|
+
|
|
10
|
+
import type { IInputAreaHistorySearch } from '../hooks/useInputAreaHistorySearch.js';
|
|
11
|
+
import type { IKeybindingsSource } from '../keybindings/node-keybindings-source.js';
|
|
12
|
+
import type { ITuiCommandQueryPort } from '../tui-app-channel-port.js';
|
|
13
|
+
|
|
14
|
+
async function tick(ms = 25): Promise<void> {
|
|
15
|
+
await new Promise((resolve) => setTimeout(resolve, ms));
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
function source(
|
|
19
|
+
bindings: Record<string, Record<string, string>> = {
|
|
20
|
+
'chat-input': { submit: 'ctrl+j' },
|
|
21
|
+
'autocomplete-menu': { accept: 'ctrl+j' },
|
|
22
|
+
},
|
|
23
|
+
): IKeybindingsSource {
|
|
24
|
+
const parsed = parseKeybindingsDocument(
|
|
25
|
+
JSON.stringify({ version: 1, bindings }),
|
|
26
|
+
'/tmp/keybindings.json',
|
|
27
|
+
);
|
|
28
|
+
if (!parsed.ok) throw new Error(parsed.diagnostic.message);
|
|
29
|
+
return {
|
|
30
|
+
filePath: '/tmp/keybindings.json',
|
|
31
|
+
start: async () => undefined,
|
|
32
|
+
isStarted: () => true,
|
|
33
|
+
ensureFile: async () => '/tmp/keybindings.json',
|
|
34
|
+
getSnapshot: () => parsed.snapshot,
|
|
35
|
+
subscribe: () => () => undefined,
|
|
36
|
+
dispose: () => undefined,
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
describe('InputArea contextual keybindings', () => {
|
|
41
|
+
it('uses the same chord for autocomplete accept and then chat submit without double execution', async () => {
|
|
42
|
+
const onSubmit = vi.fn();
|
|
43
|
+
const commandQueryPort: ITuiCommandQueryPort = {
|
|
44
|
+
getCommands: () => [{ name: 'help', description: 'Show help', source: 'test' }],
|
|
45
|
+
getSubcommands: () => [],
|
|
46
|
+
};
|
|
47
|
+
const { stdin, lastFrame } = render(
|
|
48
|
+
<KeybindingsProvider source={source()}>
|
|
49
|
+
<InputArea onSubmit={onSubmit} isDisabled={false} commandQueryPort={commandQueryPort} />
|
|
50
|
+
</KeybindingsProvider>,
|
|
51
|
+
);
|
|
52
|
+
await tick();
|
|
53
|
+
stdin.write('/he');
|
|
54
|
+
await tick();
|
|
55
|
+
expect(lastFrame()).toContain('/help');
|
|
56
|
+
expect(lastFrame()).toContain('Ctrl+J Submit');
|
|
57
|
+
|
|
58
|
+
stdin.write('\r\n');
|
|
59
|
+
await tick();
|
|
60
|
+
expect(onSubmit).not.toHaveBeenCalled();
|
|
61
|
+
|
|
62
|
+
stdin.write('\r\n');
|
|
63
|
+
await tick(50);
|
|
64
|
+
expect(onSubmit).toHaveBeenCalledTimes(1);
|
|
65
|
+
expect(onSubmit).toHaveBeenCalledWith('/help');
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
it.each([
|
|
69
|
+
{ name: 'remote-control', firstAction: 'status', entry: createRemoteControlCommandEntry() },
|
|
70
|
+
{ name: 'loop', firstAction: 'list', entry: createLoopCommandEntry() },
|
|
71
|
+
])(
|
|
72
|
+
'resets the selection when autocomplete changes from another parent to /$name',
|
|
73
|
+
async ({ name, firstAction, entry }) => {
|
|
74
|
+
const onSubmit = vi.fn();
|
|
75
|
+
const otherChildren = ['first', 'second', 'third'].map((child) => ({
|
|
76
|
+
name: child,
|
|
77
|
+
description: child,
|
|
78
|
+
source: 'test',
|
|
79
|
+
execute: async () => {},
|
|
80
|
+
}));
|
|
81
|
+
const commandQueryPort: ITuiCommandQueryPort = {
|
|
82
|
+
getCommands: () => [],
|
|
83
|
+
getSubcommands: (parent) =>
|
|
84
|
+
parent === 'other' ? otherChildren : parent === name ? (entry.subcommands ?? []) : [],
|
|
85
|
+
};
|
|
86
|
+
const { stdin, lastFrame } = render(
|
|
87
|
+
<KeybindingsProvider source={source()}>
|
|
88
|
+
<InputArea
|
|
89
|
+
initialValue="/other "
|
|
90
|
+
onSubmit={onSubmit}
|
|
91
|
+
isDisabled={false}
|
|
92
|
+
commandQueryPort={commandQueryPort}
|
|
93
|
+
/>
|
|
94
|
+
</KeybindingsProvider>,
|
|
95
|
+
);
|
|
96
|
+
await tick();
|
|
97
|
+
|
|
98
|
+
stdin.write('\x1b[B\x1b[B'); // select index 2 under /other
|
|
99
|
+
await tick();
|
|
100
|
+
expect(lastFrame()).toContain('> third');
|
|
101
|
+
stdin.write('\x1b'); // dismiss so the text editor owns the next key
|
|
102
|
+
await tick();
|
|
103
|
+
stdin.write('\x15'); // Ctrl+U clears the current line
|
|
104
|
+
stdin.write(`/${name} `);
|
|
105
|
+
await tick();
|
|
106
|
+
expect(lastFrame()).toContain(`> ${firstAction}`);
|
|
107
|
+
|
|
108
|
+
stdin.write('\r\n');
|
|
109
|
+
await tick();
|
|
110
|
+
expect(onSubmit).not.toHaveBeenCalled();
|
|
111
|
+
stdin.write('\r\n');
|
|
112
|
+
await tick(50);
|
|
113
|
+
expect(onSubmit).toHaveBeenCalledWith(`/${name} ${firstAction}`);
|
|
114
|
+
},
|
|
115
|
+
);
|
|
116
|
+
|
|
117
|
+
// SCREEN-1993 TC-05: the open key and every overlay action are rebindable through the document,
|
|
118
|
+
// and the footer lists the live keys rather than the defaults.
|
|
119
|
+
it('rebinds the history-search open key and its actions through the document', async () => {
|
|
120
|
+
const onSubmit = vi.fn();
|
|
121
|
+
const historySearch: IInputAreaHistorySearch = {
|
|
122
|
+
source: {
|
|
123
|
+
async *read() {
|
|
124
|
+
yield {
|
|
125
|
+
entries: [
|
|
126
|
+
{ at: '', sessionId: 'x', project: '/x', text: 'rotate the staging secrets' },
|
|
127
|
+
],
|
|
128
|
+
skippedLines: 0,
|
|
129
|
+
};
|
|
130
|
+
},
|
|
131
|
+
},
|
|
132
|
+
sessionId: 's1',
|
|
133
|
+
project: '/p',
|
|
134
|
+
};
|
|
135
|
+
const { stdin, lastFrame } = render(
|
|
136
|
+
<KeybindingsProvider
|
|
137
|
+
source={source({
|
|
138
|
+
'chat-input': { 'history-search': 'ctrl+o' },
|
|
139
|
+
'history-search': { execute: 'ctrl+x', cancel: 'ctrl+g' },
|
|
140
|
+
})}
|
|
141
|
+
>
|
|
142
|
+
<InputArea onSubmit={onSubmit} isDisabled={false} historySearch={historySearch} />
|
|
143
|
+
</KeybindingsProvider>,
|
|
144
|
+
);
|
|
145
|
+
await tick();
|
|
146
|
+
stdin.write('\x12'); // the default ctrl+r no longer opens it
|
|
147
|
+
await tick();
|
|
148
|
+
expect(lastFrame()).not.toContain('(reverse-i-search)');
|
|
149
|
+
stdin.write('\x0f'); // ctrl+o
|
|
150
|
+
await tick();
|
|
151
|
+
expect(lastFrame()).toContain('(reverse-i-search)');
|
|
152
|
+
expect(lastFrame()).toContain('Ctrl+X Run');
|
|
153
|
+
expect(lastFrame()).toContain('Ctrl+G Close');
|
|
154
|
+
stdin.write('\x18'); // ctrl+x
|
|
155
|
+
await tick();
|
|
156
|
+
expect(onSubmit).toHaveBeenCalledWith('rotate the staging secrets');
|
|
157
|
+
});
|
|
158
|
+
});
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { mkdtempSync, readFileSync, rmSync, writeFileSync } from 'node:fs';
|
|
2
|
+
import { tmpdir } from 'node:os';
|
|
3
|
+
import { join } from 'node:path';
|
|
4
|
+
|
|
5
|
+
import { createNodeHostSettingsSource } from '@robota-sdk/agent-framework';
|
|
6
|
+
import { afterEach, expect, it } from 'vitest';
|
|
7
|
+
|
|
8
|
+
import { createDefaultTuiCliAdapter } from '../create-default-tui-cli-adapter.js';
|
|
9
|
+
|
|
10
|
+
const roots: string[] = [];
|
|
11
|
+
|
|
12
|
+
afterEach(() => {
|
|
13
|
+
for (const root of roots.splice(0)) rmSync(root, { recursive: true, force: true });
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it('updates the host-selected settings file when changing the active model', () => {
|
|
17
|
+
const root = mkdtempSync(join(tmpdir(), 'tui-host-settings-'));
|
|
18
|
+
roots.push(root);
|
|
19
|
+
const settingsPath = join(root, 'product-settings.json');
|
|
20
|
+
writeFileSync(settingsPath, JSON.stringify({ currentProvider: 'custom', providers: { custom: {} } }));
|
|
21
|
+
|
|
22
|
+
const adapter = createDefaultTuiCliAdapter({
|
|
23
|
+
providerDefinitions: [],
|
|
24
|
+
reloadPluginCommandSource: () => undefined,
|
|
25
|
+
userSettingsPath: settingsPath,
|
|
26
|
+
settingsSources: [createNodeHostSettingsSource('user', settingsPath)],
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
adapter.applyActiveModelChange(root, 'custom-model', {});
|
|
30
|
+
|
|
31
|
+
expect(JSON.parse(readFileSync(settingsPath, 'utf8'))).toMatchObject({
|
|
32
|
+
providers: { custom: { model: 'custom-model' } },
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
it('keeps the host resume command formatter when one is supplied', () => {
|
|
37
|
+
const adapter = createDefaultTuiCliAdapter({
|
|
38
|
+
providerDefinitions: [],
|
|
39
|
+
reloadPluginCommandSource: () => undefined,
|
|
40
|
+
userSettingsPath: '/tmp/product-settings.json',
|
|
41
|
+
settingsSources: [],
|
|
42
|
+
formatResumeCommand: (sessionId) => `product --resume ${sessionId}`,
|
|
43
|
+
});
|
|
44
|
+
expect(adapter.formatResumeCommand?.('session_1')).toBe('product --resume session_1');
|
|
45
|
+
});
|