erosolar-cli 1.7.341 → 1.7.343
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/README.md +24 -148
- package/dist/bin/erosolar.js +5 -21
- package/dist/bin/erosolar.js.map +1 -1
- package/dist/capabilities/agentSpawningCapability.d.ts.map +1 -1
- package/dist/capabilities/agentSpawningCapability.js +56 -31
- package/dist/capabilities/agentSpawningCapability.js.map +1 -1
- package/dist/contracts/agent-schemas.json +0 -15
- package/dist/contracts/tools.schema.json +0 -9
- package/dist/core/agent.d.ts +2 -2
- package/dist/core/agent.d.ts.map +1 -1
- package/dist/core/agent.js.map +1 -1
- package/dist/core/customCommands.d.ts +1 -0
- package/dist/core/customCommands.d.ts.map +1 -1
- package/dist/core/customCommands.js +3 -0
- package/dist/core/customCommands.js.map +1 -1
- package/dist/core/hooks.d.ts +113 -0
- package/dist/core/hooks.d.ts.map +1 -0
- package/dist/core/hooks.js +267 -0
- package/dist/core/hooks.js.map +1 -0
- package/dist/core/metricsTracker.d.ts +122 -0
- package/dist/core/metricsTracker.d.ts.map +1 -0
- package/dist/{alpha-zero → core}/metricsTracker.js +2 -5
- package/dist/core/metricsTracker.js.map +1 -0
- package/dist/core/securityAssessment.d.ts +91 -0
- package/dist/core/securityAssessment.d.ts.map +1 -0
- package/dist/core/securityAssessment.js +580 -0
- package/dist/core/securityAssessment.js.map +1 -0
- package/dist/core/sessionStore.d.ts +2 -0
- package/dist/core/sessionStore.d.ts.map +1 -1
- package/dist/core/sessionStore.js +1 -0
- package/dist/core/sessionStore.js.map +1 -1
- package/dist/core/toolPreconditions.d.ts.map +1 -1
- package/dist/core/toolPreconditions.js +0 -14
- package/dist/core/toolPreconditions.js.map +1 -1
- package/dist/core/toolRuntime.d.ts +22 -1
- package/dist/core/toolRuntime.d.ts.map +1 -1
- package/dist/core/toolRuntime.js +0 -5
- package/dist/core/toolRuntime.js.map +1 -1
- package/dist/core/toolValidation.d.ts.map +1 -1
- package/dist/core/toolValidation.js +14 -3
- package/dist/core/toolValidation.js.map +1 -1
- package/dist/core/validationRunner.d.ts +1 -3
- package/dist/core/validationRunner.d.ts.map +1 -1
- package/dist/core/validationRunner.js.map +1 -1
- package/dist/core/verification.d.ts +137 -0
- package/dist/core/verification.d.ts.map +1 -0
- package/dist/core/verification.js +323 -0
- package/dist/core/verification.js.map +1 -0
- package/dist/headless/headlessApp.d.ts.map +1 -1
- package/dist/headless/headlessApp.js +21 -0
- package/dist/headless/headlessApp.js.map +1 -1
- package/dist/mcp/sseClient.d.ts.map +1 -1
- package/dist/mcp/sseClient.js +9 -18
- package/dist/mcp/sseClient.js.map +1 -1
- package/dist/plugins/tools/build/buildPlugin.d.ts +0 -6
- package/dist/plugins/tools/build/buildPlugin.d.ts.map +1 -1
- package/dist/plugins/tools/build/buildPlugin.js +4 -10
- package/dist/plugins/tools/build/buildPlugin.js.map +1 -1
- package/dist/plugins/tools/nodeDefaults.d.ts.map +1 -1
- package/dist/plugins/tools/nodeDefaults.js +0 -2
- package/dist/plugins/tools/nodeDefaults.js.map +1 -1
- package/dist/runtime/agentSession.d.ts +2 -2
- package/dist/runtime/agentSession.d.ts.map +1 -1
- package/dist/runtime/agentSession.js +2 -2
- package/dist/runtime/agentSession.js.map +1 -1
- package/dist/shell/interactiveShell.d.ts +19 -7
- package/dist/shell/interactiveShell.d.ts.map +1 -1
- package/dist/shell/interactiveShell.js +271 -166
- package/dist/shell/interactiveShell.js.map +1 -1
- package/dist/shell/shellApp.d.ts +2 -0
- package/dist/shell/shellApp.d.ts.map +1 -1
- package/dist/shell/shellApp.js +82 -9
- package/dist/shell/shellApp.js.map +1 -1
- package/dist/shell/systemPrompt.d.ts.map +1 -1
- package/dist/shell/systemPrompt.js +1 -4
- package/dist/shell/systemPrompt.js.map +1 -1
- package/dist/shell/terminalInput.d.ts +218 -120
- package/dist/shell/terminalInput.d.ts.map +1 -1
- package/dist/shell/terminalInput.js +932 -537
- package/dist/shell/terminalInput.js.map +1 -1
- package/dist/shell/terminalInputAdapter.d.ts +99 -21
- package/dist/shell/terminalInputAdapter.d.ts.map +1 -1
- package/dist/shell/terminalInputAdapter.js +135 -30
- package/dist/shell/terminalInputAdapter.js.map +1 -1
- package/dist/subagents/agentConfig.d.ts +27 -0
- package/dist/subagents/agentConfig.d.ts.map +1 -0
- package/dist/subagents/agentConfig.js +89 -0
- package/dist/subagents/agentConfig.js.map +1 -0
- package/dist/subagents/agentRegistry.d.ts +33 -0
- package/dist/subagents/agentRegistry.d.ts.map +1 -0
- package/dist/subagents/agentRegistry.js +162 -0
- package/dist/subagents/agentRegistry.js.map +1 -0
- package/dist/subagents/taskRunner.d.ts +7 -1
- package/dist/subagents/taskRunner.d.ts.map +1 -1
- package/dist/subagents/taskRunner.js +180 -47
- package/dist/subagents/taskRunner.js.map +1 -1
- package/dist/ui/ShellUIAdapter.d.ts.map +1 -1
- package/dist/ui/ShellUIAdapter.js +13 -12
- package/dist/ui/ShellUIAdapter.js.map +1 -1
- package/dist/ui/display.d.ts +24 -45
- package/dist/ui/display.d.ts.map +1 -1
- package/dist/ui/display.js +140 -259
- package/dist/ui/display.js.map +1 -1
- package/dist/ui/theme.d.ts.map +1 -1
- package/dist/ui/theme.js +6 -8
- package/dist/ui/theme.js.map +1 -1
- package/dist/ui/toolDisplay.d.ts +0 -158
- package/dist/ui/toolDisplay.d.ts.map +1 -1
- package/dist/ui/toolDisplay.js +0 -348
- package/dist/ui/toolDisplay.js.map +1 -1
- package/dist/ui/unified/layout.d.ts +1 -0
- package/dist/ui/unified/layout.d.ts.map +1 -1
- package/dist/ui/unified/layout.js +25 -179
- package/dist/ui/unified/layout.js.map +1 -1
- package/dist/utils/frontmatter.d.ts +10 -0
- package/dist/utils/frontmatter.d.ts.map +1 -0
- package/dist/utils/frontmatter.js +78 -0
- package/dist/utils/frontmatter.js.map +1 -0
- package/package.json +4 -4
- package/dist/alpha-zero/agentWrapper.d.ts +0 -84
- package/dist/alpha-zero/agentWrapper.d.ts.map +0 -1
- package/dist/alpha-zero/agentWrapper.js +0 -171
- package/dist/alpha-zero/agentWrapper.js.map +0 -1
- package/dist/alpha-zero/codeEvaluator.d.ts +0 -25
- package/dist/alpha-zero/codeEvaluator.d.ts.map +0 -1
- package/dist/alpha-zero/codeEvaluator.js +0 -273
- package/dist/alpha-zero/codeEvaluator.js.map +0 -1
- package/dist/alpha-zero/competitiveRunner.d.ts +0 -66
- package/dist/alpha-zero/competitiveRunner.d.ts.map +0 -1
- package/dist/alpha-zero/competitiveRunner.js +0 -224
- package/dist/alpha-zero/competitiveRunner.js.map +0 -1
- package/dist/alpha-zero/index.d.ts +0 -67
- package/dist/alpha-zero/index.d.ts.map +0 -1
- package/dist/alpha-zero/index.js +0 -99
- package/dist/alpha-zero/index.js.map +0 -1
- package/dist/alpha-zero/introspection.d.ts +0 -128
- package/dist/alpha-zero/introspection.d.ts.map +0 -1
- package/dist/alpha-zero/introspection.js +0 -300
- package/dist/alpha-zero/introspection.js.map +0 -1
- package/dist/alpha-zero/metricsTracker.d.ts +0 -71
- package/dist/alpha-zero/metricsTracker.d.ts.map +0 -1
- package/dist/alpha-zero/metricsTracker.js.map +0 -1
- package/dist/alpha-zero/security/core.d.ts +0 -125
- package/dist/alpha-zero/security/core.d.ts.map +0 -1
- package/dist/alpha-zero/security/core.js +0 -271
- package/dist/alpha-zero/security/core.js.map +0 -1
- package/dist/alpha-zero/security/google.d.ts +0 -125
- package/dist/alpha-zero/security/google.d.ts.map +0 -1
- package/dist/alpha-zero/security/google.js +0 -311
- package/dist/alpha-zero/security/google.js.map +0 -1
- package/dist/alpha-zero/security/googleLoader.d.ts +0 -17
- package/dist/alpha-zero/security/googleLoader.d.ts.map +0 -1
- package/dist/alpha-zero/security/googleLoader.js +0 -41
- package/dist/alpha-zero/security/googleLoader.js.map +0 -1
- package/dist/alpha-zero/security/index.d.ts +0 -29
- package/dist/alpha-zero/security/index.d.ts.map +0 -1
- package/dist/alpha-zero/security/index.js +0 -32
- package/dist/alpha-zero/security/index.js.map +0 -1
- package/dist/alpha-zero/security/simulation.d.ts +0 -124
- package/dist/alpha-zero/security/simulation.d.ts.map +0 -1
- package/dist/alpha-zero/security/simulation.js +0 -277
- package/dist/alpha-zero/security/simulation.js.map +0 -1
- package/dist/alpha-zero/selfModification.d.ts +0 -109
- package/dist/alpha-zero/selfModification.d.ts.map +0 -1
- package/dist/alpha-zero/selfModification.js +0 -233
- package/dist/alpha-zero/selfModification.js.map +0 -1
- package/dist/alpha-zero/types.d.ts +0 -170
- package/dist/alpha-zero/types.d.ts.map +0 -1
- package/dist/alpha-zero/types.js +0 -31
- package/dist/alpha-zero/types.js.map +0 -1
- package/dist/capabilities/securityTestingCapability.d.ts +0 -13
- package/dist/capabilities/securityTestingCapability.d.ts.map +0 -1
- package/dist/capabilities/securityTestingCapability.js +0 -25
- package/dist/capabilities/securityTestingCapability.js.map +0 -1
- package/dist/core/aiFlowOptimizer.d.ts +0 -26
- package/dist/core/aiFlowOptimizer.d.ts.map +0 -1
- package/dist/core/aiFlowOptimizer.js +0 -31
- package/dist/core/aiFlowOptimizer.js.map +0 -1
- package/dist/core/aiOptimizationEngine.d.ts +0 -158
- package/dist/core/aiOptimizationEngine.d.ts.map +0 -1
- package/dist/core/aiOptimizationEngine.js +0 -428
- package/dist/core/aiOptimizationEngine.js.map +0 -1
- package/dist/core/aiOptimizationIntegration.d.ts +0 -93
- package/dist/core/aiOptimizationIntegration.d.ts.map +0 -1
- package/dist/core/aiOptimizationIntegration.js +0 -250
- package/dist/core/aiOptimizationIntegration.js.map +0 -1
- package/dist/core/enhancedErrorRecovery.d.ts +0 -100
- package/dist/core/enhancedErrorRecovery.d.ts.map +0 -1
- package/dist/core/enhancedErrorRecovery.js +0 -345
- package/dist/core/enhancedErrorRecovery.js.map +0 -1
- package/dist/core/hooksSystem.d.ts +0 -65
- package/dist/core/hooksSystem.d.ts.map +0 -1
- package/dist/core/hooksSystem.js +0 -273
- package/dist/core/hooksSystem.js.map +0 -1
- package/dist/core/memorySystem.d.ts +0 -48
- package/dist/core/memorySystem.d.ts.map +0 -1
- package/dist/core/memorySystem.js +0 -271
- package/dist/core/memorySystem.js.map +0 -1
- package/dist/core/unified/errors.d.ts +0 -189
- package/dist/core/unified/errors.d.ts.map +0 -1
- package/dist/core/unified/errors.js +0 -497
- package/dist/core/unified/errors.js.map +0 -1
- package/dist/core/unified/index.d.ts +0 -19
- package/dist/core/unified/index.d.ts.map +0 -1
- package/dist/core/unified/index.js +0 -68
- package/dist/core/unified/index.js.map +0 -1
- package/dist/core/unified/schema.d.ts +0 -101
- package/dist/core/unified/schema.d.ts.map +0 -1
- package/dist/core/unified/schema.js +0 -350
- package/dist/core/unified/schema.js.map +0 -1
- package/dist/core/unified/toolRuntime.d.ts +0 -179
- package/dist/core/unified/toolRuntime.d.ts.map +0 -1
- package/dist/core/unified/toolRuntime.js +0 -517
- package/dist/core/unified/toolRuntime.js.map +0 -1
- package/dist/core/unified/tools.d.ts +0 -127
- package/dist/core/unified/tools.d.ts.map +0 -1
- package/dist/core/unified/tools.js +0 -1333
- package/dist/core/unified/tools.js.map +0 -1
- package/dist/core/unified/types.d.ts +0 -352
- package/dist/core/unified/types.d.ts.map +0 -1
- package/dist/core/unified/types.js +0 -12
- package/dist/core/unified/types.js.map +0 -1
- package/dist/core/unified/version.d.ts +0 -209
- package/dist/core/unified/version.d.ts.map +0 -1
- package/dist/core/unified/version.js +0 -454
- package/dist/core/unified/version.js.map +0 -1
- package/dist/plugins/tools/security/securityPlugin.d.ts +0 -3
- package/dist/plugins/tools/security/securityPlugin.d.ts.map +0 -1
- package/dist/plugins/tools/security/securityPlugin.js +0 -12
- package/dist/plugins/tools/security/securityPlugin.js.map +0 -1
- package/dist/security/active-stack-security.d.ts +0 -112
- package/dist/security/active-stack-security.d.ts.map +0 -1
- package/dist/security/active-stack-security.js +0 -296
- package/dist/security/active-stack-security.js.map +0 -1
- package/dist/security/advanced-persistence-research.d.ts +0 -92
- package/dist/security/advanced-persistence-research.d.ts.map +0 -1
- package/dist/security/advanced-persistence-research.js +0 -195
- package/dist/security/advanced-persistence-research.js.map +0 -1
- package/dist/security/advanced-targeting.d.ts +0 -119
- package/dist/security/advanced-targeting.d.ts.map +0 -1
- package/dist/security/advanced-targeting.js +0 -233
- package/dist/security/advanced-targeting.js.map +0 -1
- package/dist/security/assessment/vulnerabilityAssessment.d.ts +0 -104
- package/dist/security/assessment/vulnerabilityAssessment.d.ts.map +0 -1
- package/dist/security/assessment/vulnerabilityAssessment.js +0 -315
- package/dist/security/assessment/vulnerabilityAssessment.js.map +0 -1
- package/dist/security/authorization/securityAuthorization.d.ts +0 -88
- package/dist/security/authorization/securityAuthorization.d.ts.map +0 -1
- package/dist/security/authorization/securityAuthorization.js +0 -172
- package/dist/security/authorization/securityAuthorization.js.map +0 -1
- package/dist/security/comprehensive-targeting.d.ts +0 -85
- package/dist/security/comprehensive-targeting.d.ts.map +0 -1
- package/dist/security/comprehensive-targeting.js +0 -438
- package/dist/security/comprehensive-targeting.js.map +0 -1
- package/dist/security/global-security-integration.d.ts +0 -91
- package/dist/security/global-security-integration.d.ts.map +0 -1
- package/dist/security/global-security-integration.js +0 -218
- package/dist/security/global-security-integration.js.map +0 -1
- package/dist/security/index.d.ts +0 -38
- package/dist/security/index.d.ts.map +0 -1
- package/dist/security/index.js +0 -47
- package/dist/security/index.js.map +0 -1
- package/dist/security/persistence-analyzer.d.ts +0 -56
- package/dist/security/persistence-analyzer.d.ts.map +0 -1
- package/dist/security/persistence-analyzer.js +0 -187
- package/dist/security/persistence-analyzer.js.map +0 -1
- package/dist/security/persistence-cli.d.ts +0 -36
- package/dist/security/persistence-cli.d.ts.map +0 -1
- package/dist/security/persistence-cli.js +0 -160
- package/dist/security/persistence-cli.js.map +0 -1
- package/dist/security/persistence-research.d.ts +0 -92
- package/dist/security/persistence-research.d.ts.map +0 -1
- package/dist/security/persistence-research.js +0 -364
- package/dist/security/persistence-research.js.map +0 -1
- package/dist/security/research/persistenceResearch.d.ts +0 -97
- package/dist/security/research/persistenceResearch.d.ts.map +0 -1
- package/dist/security/research/persistenceResearch.js +0 -282
- package/dist/security/research/persistenceResearch.js.map +0 -1
- package/dist/security/security-integration.d.ts +0 -74
- package/dist/security/security-integration.d.ts.map +0 -1
- package/dist/security/security-integration.js +0 -137
- package/dist/security/security-integration.js.map +0 -1
- package/dist/security/security-testing-framework.d.ts +0 -112
- package/dist/security/security-testing-framework.d.ts.map +0 -1
- package/dist/security/security-testing-framework.js +0 -364
- package/dist/security/security-testing-framework.js.map +0 -1
- package/dist/security/simulation/attackSimulation.d.ts +0 -93
- package/dist/security/simulation/attackSimulation.d.ts.map +0 -1
- package/dist/security/simulation/attackSimulation.js +0 -341
- package/dist/security/simulation/attackSimulation.js.map +0 -1
- package/dist/security/strategic-operations.d.ts +0 -100
- package/dist/security/strategic-operations.d.ts.map +0 -1
- package/dist/security/strategic-operations.js +0 -276
- package/dist/security/strategic-operations.js.map +0 -1
- package/dist/security/tool-security-wrapper.d.ts +0 -58
- package/dist/security/tool-security-wrapper.d.ts.map +0 -1
- package/dist/security/tool-security-wrapper.js +0 -156
- package/dist/security/tool-security-wrapper.js.map +0 -1
- package/dist/shell/claudeCodeStreamHandler.d.ts +0 -145
- package/dist/shell/claudeCodeStreamHandler.d.ts.map +0 -1
- package/dist/shell/claudeCodeStreamHandler.js +0 -322
- package/dist/shell/claudeCodeStreamHandler.js.map +0 -1
- package/dist/shell/inputQueueManager.d.ts +0 -144
- package/dist/shell/inputQueueManager.d.ts.map +0 -1
- package/dist/shell/inputQueueManager.js +0 -290
- package/dist/shell/inputQueueManager.js.map +0 -1
- package/dist/shell/metricsTracker.d.ts +0 -60
- package/dist/shell/metricsTracker.d.ts.map +0 -1
- package/dist/shell/metricsTracker.js +0 -119
- package/dist/shell/metricsTracker.js.map +0 -1
- package/dist/shell/streamingOutputManager.d.ts +0 -115
- package/dist/shell/streamingOutputManager.d.ts.map +0 -1
- package/dist/shell/streamingOutputManager.js +0 -225
- package/dist/shell/streamingOutputManager.js.map +0 -1
- package/dist/tools/securityTools.d.ts +0 -22
- package/dist/tools/securityTools.d.ts.map +0 -1
- package/dist/tools/securityTools.js +0 -448
- package/dist/tools/securityTools.js.map +0 -1
- package/dist/ui/persistentPrompt.d.ts +0 -50
- package/dist/ui/persistentPrompt.d.ts.map +0 -1
- package/dist/ui/persistentPrompt.js +0 -92
- package/dist/ui/persistentPrompt.js.map +0 -1
- package/dist/ui/terminalUISchema.d.ts +0 -195
- package/dist/ui/terminalUISchema.d.ts.map +0 -1
- package/dist/ui/terminalUISchema.js +0 -113
- package/dist/ui/terminalUISchema.js.map +0 -1
- package/scripts/deploy-security-capabilities.js +0 -178
|
@@ -3,14 +3,23 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Design principles:
|
|
5
5
|
* - Single source of truth for input state
|
|
6
|
+
* - Hybrid floating/scroll approach:
|
|
7
|
+
* - Initially: chat box floats below content
|
|
8
|
+
* - When terminal fills: scroll region activates, chat box pins to bottom
|
|
6
9
|
* - Native bracketed paste support (no heuristics)
|
|
7
10
|
* - Clean cursor model with render-time wrapping
|
|
8
11
|
* - State machine for different input modes
|
|
9
12
|
* - No readline dependency for display
|
|
13
|
+
* - Text selection enabled: mouse tracking disabled by default to preserve
|
|
14
|
+
* native terminal text selection and copy/paste functionality
|
|
15
|
+
* - Scrollback navigation via keyboard: PageUp/PageDown, Ctrl+Home/End
|
|
10
16
|
*/
|
|
11
17
|
import { EventEmitter } from 'node:events';
|
|
12
|
-
|
|
13
|
-
|
|
18
|
+
/**
|
|
19
|
+
* Input modes - determines how input is handled
|
|
20
|
+
*/
|
|
21
|
+
export type InputMode = 'idle' | 'streaming' | 'paste';
|
|
22
|
+
export type EditGuardMode = 'display-edits' | 'ask-permission';
|
|
14
23
|
/**
|
|
15
24
|
* Events emitted by TerminalInput
|
|
16
25
|
*/
|
|
@@ -62,32 +71,39 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
62
71
|
private statusMessage;
|
|
63
72
|
private overrideStatusMessage;
|
|
64
73
|
private streamingLabel;
|
|
74
|
+
private metaElapsedSeconds;
|
|
75
|
+
private metaTokensUsed;
|
|
76
|
+
private metaTokenLimit;
|
|
77
|
+
private metaThinkingMs;
|
|
78
|
+
private metaThinkingHasContent;
|
|
65
79
|
private lastRenderContent;
|
|
66
80
|
private lastRenderCursor;
|
|
67
81
|
private renderDirty;
|
|
68
82
|
private isRendering;
|
|
69
|
-
private flowModeRenderedLines;
|
|
70
|
-
private inputAreaStartRow;
|
|
71
|
-
private contentEndRow;
|
|
72
|
-
private commandSuggestions;
|
|
73
|
-
private filteredSuggestions;
|
|
74
|
-
private selectedSuggestionIndex;
|
|
75
|
-
private showSuggestions;
|
|
76
83
|
private disposed;
|
|
77
84
|
private enabled;
|
|
78
85
|
private contextUsage;
|
|
86
|
+
private contextAutoCompactThreshold;
|
|
87
|
+
private contentRow;
|
|
88
|
+
private scrollRegionActive;
|
|
89
|
+
private thinkingModeLabel;
|
|
90
|
+
private scrollbackBuffer;
|
|
91
|
+
private readonly maxScrollbackLines;
|
|
92
|
+
private scrollbackOffset;
|
|
93
|
+
private isInScrollbackMode;
|
|
94
|
+
private scrollIndicatorFrame;
|
|
95
|
+
private alternateScreenActive;
|
|
79
96
|
private editMode;
|
|
80
97
|
private verificationEnabled;
|
|
81
98
|
private autoContinueEnabled;
|
|
82
99
|
private verificationHotkey;
|
|
83
100
|
private autoContinueHotkey;
|
|
84
|
-
private
|
|
85
|
-
private
|
|
86
|
-
private
|
|
87
|
-
private
|
|
101
|
+
private thinkingHotkey;
|
|
102
|
+
private modelLabel;
|
|
103
|
+
private providerLabel;
|
|
104
|
+
private lastStreamingRender;
|
|
105
|
+
private streamingRenderInterval;
|
|
88
106
|
private streamingRenderTimer;
|
|
89
|
-
private displayRef;
|
|
90
|
-
private unifiedUIInitialized;
|
|
91
107
|
constructor(writeStream?: NodeJS.WriteStream, config?: TerminalInputConfig);
|
|
92
108
|
/**
|
|
93
109
|
* Enable bracketed paste mode in terminal
|
|
@@ -98,7 +114,15 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
98
114
|
*/
|
|
99
115
|
disableBracketedPaste(): void;
|
|
100
116
|
/**
|
|
101
|
-
*
|
|
117
|
+
* Enable mouse tracking in terminal
|
|
118
|
+
*/
|
|
119
|
+
enableMouseTracking(): void;
|
|
120
|
+
/**
|
|
121
|
+
* Disable mouse tracking
|
|
122
|
+
*/
|
|
123
|
+
disableMouseTracking(): void;
|
|
124
|
+
/**
|
|
125
|
+
* Process raw terminal data (handles bracketed paste sequences and mouse events)
|
|
102
126
|
* Returns true if the data was consumed (paste sequence)
|
|
103
127
|
*/
|
|
104
128
|
processRawData(data: string): {
|
|
@@ -106,91 +130,24 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
106
130
|
passthrough: string;
|
|
107
131
|
};
|
|
108
132
|
/**
|
|
109
|
-
* Handle
|
|
110
|
-
*/
|
|
111
|
-
handleKeypress(str: string | undefined, key: KeyInfo): void;
|
|
112
|
-
private bannerContent;
|
|
113
|
-
/**
|
|
114
|
-
* Set banner content to be written when unified UI initializes.
|
|
115
|
-
*/
|
|
116
|
-
setBannerContent(content: string | null): void;
|
|
117
|
-
/**
|
|
118
|
-
* Initialize the unified UI system with BOTTOM PINNED chat box.
|
|
119
|
-
*
|
|
120
|
-
* Layout:
|
|
121
|
-
* 1. Clear screen
|
|
122
|
-
* 2. Write banner at top
|
|
123
|
-
* 3. Set content cursor row after banner
|
|
124
|
-
* 4. Render chat box at bottom (sets up scroll region)
|
|
125
|
-
*/
|
|
126
|
-
initializeUnifiedUI(): void;
|
|
127
|
-
/**
|
|
128
|
-
* Clear the input area at its tracked position.
|
|
129
|
-
* Returns true if something was cleared.
|
|
130
|
-
*/
|
|
131
|
-
private clearInputArea;
|
|
132
|
-
/**
|
|
133
|
-
* Reset input area tracking state.
|
|
133
|
+
* Handle mouse events (button, x, y coordinates, action)
|
|
134
134
|
*/
|
|
135
|
-
private
|
|
135
|
+
private handleMouseEvent;
|
|
136
136
|
/**
|
|
137
|
-
*
|
|
138
|
-
* Chat box appears right after content and moves down as content grows.
|
|
139
|
-
* Content and banner scroll naturally off the top of the screen.
|
|
140
|
-
*/
|
|
141
|
-
private renderFloatingInputArea;
|
|
142
|
-
/**
|
|
143
|
-
* Build Claude Code style controls line.
|
|
144
|
-
* Shows: edit mode indicator (shift+tab to cycle)
|
|
137
|
+
* Handle a keypress event
|
|
145
138
|
*/
|
|
146
|
-
|
|
139
|
+
handleKeypress(str: string | undefined, key: KeyInfo): void;
|
|
147
140
|
/**
|
|
148
141
|
* Set the input mode
|
|
149
142
|
*
|
|
150
|
-
*
|
|
151
|
-
* Scroll region protects chat box, content scrolls above it.
|
|
143
|
+
* Content flows naturally - no scroll region pinning.
|
|
152
144
|
*/
|
|
153
145
|
setMode(mode: InputMode): void;
|
|
154
146
|
/**
|
|
155
|
-
*
|
|
156
|
-
*
|
|
157
|
-
*/
|
|
158
|
-
setContentEndRow(row: number): void;
|
|
159
|
-
/**
|
|
160
|
-
* Set available slash commands for auto-complete suggestions.
|
|
161
|
-
*/
|
|
162
|
-
setCommands(commands: Array<{
|
|
163
|
-
command: string;
|
|
164
|
-
description: string;
|
|
165
|
-
}>): void;
|
|
166
|
-
/**
|
|
167
|
-
* Update filtered suggestions based on current input.
|
|
168
|
-
*/
|
|
169
|
-
private updateSuggestions;
|
|
170
|
-
/**
|
|
171
|
-
* Select next suggestion (arrow down / tab).
|
|
172
|
-
*/
|
|
173
|
-
selectNextSuggestion(): void;
|
|
174
|
-
/**
|
|
175
|
-
* Select previous suggestion (arrow up / shift+tab).
|
|
176
|
-
*/
|
|
177
|
-
selectPrevSuggestion(): void;
|
|
178
|
-
/**
|
|
179
|
-
* Accept current suggestion and insert into buffer.
|
|
180
|
-
*/
|
|
181
|
-
acceptSuggestion(): boolean;
|
|
182
|
-
/**
|
|
183
|
-
* Check if suggestions are visible.
|
|
147
|
+
* Legacy method - no longer used (content flows naturally).
|
|
148
|
+
* @deprecated Use setContentRow instead
|
|
184
149
|
*/
|
|
185
|
-
|
|
186
|
-
/**
|
|
187
|
-
* Toggle thinking/reasoning mode
|
|
188
|
-
*/
|
|
189
|
-
toggleThinking(): void;
|
|
190
|
-
/**
|
|
191
|
-
* Get thinking enabled state
|
|
192
|
-
*/
|
|
193
|
-
isThinkingEnabled(): boolean;
|
|
150
|
+
setPinnedHeaderLines(_count: number): void;
|
|
194
151
|
/**
|
|
195
152
|
* Get current mode
|
|
196
153
|
*/
|
|
@@ -209,9 +166,8 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
209
166
|
setBuffer(text: string, cursorPos?: number): void;
|
|
210
167
|
/**
|
|
211
168
|
* Clear the buffer
|
|
212
|
-
* @param skipRender - If true, don't trigger a re-render (used during submit flow)
|
|
213
169
|
*/
|
|
214
|
-
clear(
|
|
170
|
+
clear(): void;
|
|
215
171
|
/**
|
|
216
172
|
* Get queued inputs
|
|
217
173
|
*/
|
|
@@ -238,6 +194,16 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
238
194
|
* Can be shown alongside override status messages.
|
|
239
195
|
*/
|
|
240
196
|
setStreamingLabel(label: string | null): void;
|
|
197
|
+
/**
|
|
198
|
+
* Surface meta status just above the divider (e.g., elapsed time or token usage).
|
|
199
|
+
*/
|
|
200
|
+
setMetaStatus(meta: {
|
|
201
|
+
elapsedSeconds?: number | null;
|
|
202
|
+
tokensUsed?: number | null;
|
|
203
|
+
tokenLimit?: number | null;
|
|
204
|
+
thinkingMs?: number | null;
|
|
205
|
+
thinkingHasContent?: boolean;
|
|
206
|
+
}): void;
|
|
241
207
|
/**
|
|
242
208
|
* Keep mode toggles (verification/auto-continue) visible in the control bar.
|
|
243
209
|
* Hotkey labels remain stable so the bar looks the same before/during streaming.
|
|
@@ -247,34 +213,58 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
247
213
|
autoContinueEnabled: boolean;
|
|
248
214
|
verificationHotkey?: string;
|
|
249
215
|
autoContinueHotkey?: string;
|
|
216
|
+
thinkingModeLabel?: string | null;
|
|
217
|
+
thinkingHotkey?: string;
|
|
250
218
|
}): void;
|
|
251
|
-
/**
|
|
252
|
-
* Set the model info string (e.g., "OpenAI · gpt-4")
|
|
253
|
-
* This is displayed persistently above the input area.
|
|
254
|
-
*/
|
|
255
|
-
setModelInfo(info: string | null): void;
|
|
256
219
|
/**
|
|
257
220
|
* Clear all status messages at once (convenience method).
|
|
258
221
|
*/
|
|
259
222
|
clearAllStatus(): void;
|
|
260
223
|
/**
|
|
261
|
-
*
|
|
262
|
-
|
|
263
|
-
|
|
224
|
+
* Surface model/provider context in the controls bar.
|
|
225
|
+
*/
|
|
226
|
+
setModelContext(options: {
|
|
227
|
+
model?: string | null;
|
|
228
|
+
provider?: string | null;
|
|
229
|
+
}): void;
|
|
230
|
+
/**
|
|
231
|
+
* Render the floating input area at contentRow.
|
|
232
|
+
*
|
|
233
|
+
* The chat box "floats" - it renders right below the last streamed content.
|
|
234
|
+
* As content is added, contentRow advances, and the chat box moves down.
|
|
235
|
+
* No scroll regions - pure floating behavior.
|
|
264
236
|
*/
|
|
265
237
|
render(): void;
|
|
266
238
|
/**
|
|
267
|
-
*
|
|
268
|
-
*
|
|
239
|
+
* Unified scroll region renderer.
|
|
240
|
+
* Chat box is ALWAYS pinned at the bottom of the terminal.
|
|
241
|
+
* Content scrolls in the region above the chat box.
|
|
269
242
|
*/
|
|
270
|
-
private
|
|
243
|
+
private renderPinnedChatBox;
|
|
271
244
|
/**
|
|
272
|
-
* Build
|
|
273
|
-
*
|
|
274
|
-
|
|
275
|
-
|
|
245
|
+
* Build compact meta line above the divider.
|
|
246
|
+
* Shows model/provider and key metrics in a single line.
|
|
247
|
+
*/
|
|
248
|
+
private buildMetaLines;
|
|
249
|
+
/**
|
|
250
|
+
* Build mode controls line with all keyboard shortcuts.
|
|
251
|
+
* Shows status, all toggles, and contextual information.
|
|
276
252
|
*/
|
|
277
253
|
private buildModeControls;
|
|
254
|
+
private formatHotkey;
|
|
255
|
+
private computeContextRemaining;
|
|
256
|
+
private computeTokensRemaining;
|
|
257
|
+
private formatElapsedLabel;
|
|
258
|
+
private formatTokenCount;
|
|
259
|
+
private visibleLength;
|
|
260
|
+
/**
|
|
261
|
+
* Debug-only snapshot used by tests to assert rendered strings without
|
|
262
|
+
* needing a TTY. Not used by production code.
|
|
263
|
+
*/
|
|
264
|
+
getDebugUiSnapshot(width?: number): {
|
|
265
|
+
meta: string[];
|
|
266
|
+
controls: string;
|
|
267
|
+
};
|
|
278
268
|
/**
|
|
279
269
|
* Force a re-render
|
|
280
270
|
*/
|
|
@@ -287,18 +277,89 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
287
277
|
* Handle terminal resize
|
|
288
278
|
*/
|
|
289
279
|
handleResize(): void;
|
|
290
|
-
private contentCursorRow;
|
|
291
280
|
/**
|
|
292
|
-
*
|
|
293
|
-
*
|
|
281
|
+
* Enter streaming mode with scroll region.
|
|
282
|
+
* Sets up terminal scroll region to exclude chat box.
|
|
283
|
+
*/
|
|
284
|
+
enterStreamingScrollRegion(): void;
|
|
285
|
+
/**
|
|
286
|
+
* Exit streaming mode and restore normal operation.
|
|
294
287
|
*/
|
|
295
|
-
|
|
288
|
+
exitStreamingScrollRegion(): void;
|
|
289
|
+
/**
|
|
290
|
+
* Render chat box at bottom - now uses unified renderer.
|
|
291
|
+
* @deprecated Use renderPinnedChatBox() directly via render()/forceRender()
|
|
292
|
+
*/
|
|
293
|
+
private renderChatBoxAtBottom;
|
|
294
|
+
/**
|
|
295
|
+
* Stream content within the scroll region.
|
|
296
|
+
* Content is written directly and scrolls naturally.
|
|
297
|
+
*/
|
|
298
|
+
streamContent(content: string): void;
|
|
299
|
+
/**
|
|
300
|
+
* Enable scroll region (no-op in floating mode).
|
|
301
|
+
*/
|
|
302
|
+
enableScrollRegion(): void;
|
|
303
|
+
/**
|
|
304
|
+
* Disable scroll region (no-op in floating mode).
|
|
305
|
+
*/
|
|
306
|
+
disableScrollRegion(): void;
|
|
307
|
+
/**
|
|
308
|
+
* Calculate chat box height.
|
|
309
|
+
*/
|
|
310
|
+
private getChatBoxHeight;
|
|
311
|
+
/**
|
|
312
|
+
* @deprecated Use streamContent() instead
|
|
313
|
+
* Register with display's output interceptor - kept for backwards compatibility
|
|
314
|
+
*/
|
|
315
|
+
registerOutputInterceptor(_display: {
|
|
296
316
|
registerOutputInterceptor: (i: {
|
|
297
317
|
beforeWrite?: () => void;
|
|
298
318
|
afterWrite?: () => void;
|
|
299
319
|
}) => () => void;
|
|
300
|
-
getTotalWrittenLines?: () => number;
|
|
301
320
|
}): void;
|
|
321
|
+
/**
|
|
322
|
+
* Write content above the floating chat box.
|
|
323
|
+
* Works both during streaming and when idle.
|
|
324
|
+
*/
|
|
325
|
+
writeToScrollRegion(content: string): void;
|
|
326
|
+
/**
|
|
327
|
+
* Enter alternate screen buffer and clear it.
|
|
328
|
+
* This gives us full control over the terminal without affecting user's history.
|
|
329
|
+
*/
|
|
330
|
+
enterAlternateScreen(): void;
|
|
331
|
+
/**
|
|
332
|
+
* Exit alternate screen buffer.
|
|
333
|
+
* Restores the user's previous terminal content.
|
|
334
|
+
*/
|
|
335
|
+
exitAlternateScreen(): void;
|
|
336
|
+
/**
|
|
337
|
+
* Check if alternate screen buffer is currently active.
|
|
338
|
+
*/
|
|
339
|
+
isAlternateScreenActive(): boolean;
|
|
340
|
+
/**
|
|
341
|
+
* Get a snapshot of the scrollback buffer (for display on exit).
|
|
342
|
+
*/
|
|
343
|
+
getScrollbackSnapshot(): string[];
|
|
344
|
+
/**
|
|
345
|
+
* Clear the entire terminal screen and reset content position.
|
|
346
|
+
* This removes all content including the launching command.
|
|
347
|
+
*/
|
|
348
|
+
clearScreen(): void;
|
|
349
|
+
/**
|
|
350
|
+
* Reset content position to row 1.
|
|
351
|
+
* Does NOT clear the terminal - content starts from current position.
|
|
352
|
+
*/
|
|
353
|
+
resetContentPosition(): void;
|
|
354
|
+
/**
|
|
355
|
+
* Set the content row explicitly (used after banner is written).
|
|
356
|
+
* This tells the input where content should start flowing from.
|
|
357
|
+
*/
|
|
358
|
+
setContentRow(row: number): void;
|
|
359
|
+
/**
|
|
360
|
+
* Get the current content row position.
|
|
361
|
+
*/
|
|
362
|
+
getContentRow(): number;
|
|
302
363
|
/**
|
|
303
364
|
* Dispose and clean up
|
|
304
365
|
*/
|
|
@@ -327,26 +388,63 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
327
388
|
private submit;
|
|
328
389
|
private finishPaste;
|
|
329
390
|
private wrapBuffer;
|
|
391
|
+
/**
|
|
392
|
+
* Add content to the scrollback buffer for history retention
|
|
393
|
+
*/
|
|
394
|
+
private addToScrollback;
|
|
395
|
+
/**
|
|
396
|
+
* Scroll up by a number of lines (PageUp)
|
|
397
|
+
*/
|
|
398
|
+
private scrollUp;
|
|
399
|
+
/**
|
|
400
|
+
* Scroll down by a number of lines (PageDown)
|
|
401
|
+
*/
|
|
402
|
+
private scrollDown;
|
|
403
|
+
/**
|
|
404
|
+
* Jump to the top of scrollback buffer
|
|
405
|
+
*/
|
|
406
|
+
private scrollToTop;
|
|
407
|
+
/**
|
|
408
|
+
* Jump to the bottom (live mode)
|
|
409
|
+
*/
|
|
410
|
+
private scrollToBottom;
|
|
411
|
+
/**
|
|
412
|
+
* Render the scrollback buffer view with enhanced visuals
|
|
413
|
+
*/
|
|
414
|
+
private renderScrollbackView;
|
|
415
|
+
/**
|
|
416
|
+
* Build a visual progress bar
|
|
417
|
+
*/
|
|
418
|
+
private buildProgressBar;
|
|
419
|
+
/**
|
|
420
|
+
* Get scrollback buffer content (for persistence)
|
|
421
|
+
*/
|
|
422
|
+
getScrollbackBuffer(): string[];
|
|
423
|
+
/**
|
|
424
|
+
* Load scrollback buffer (for restoration)
|
|
425
|
+
*/
|
|
426
|
+
loadScrollbackBuffer(lines: string[]): void;
|
|
427
|
+
/**
|
|
428
|
+
* Clear scrollback buffer
|
|
429
|
+
*/
|
|
430
|
+
clearScrollbackBuffer(): void;
|
|
330
431
|
private getComposedLength;
|
|
331
432
|
private assembleText;
|
|
332
433
|
private shiftPlaceholders;
|
|
333
434
|
private removeRange;
|
|
334
435
|
private insertPlainText;
|
|
436
|
+
private shouldInlineMultiline;
|
|
335
437
|
private findPlaceholderAt;
|
|
336
438
|
private buildPlaceholder;
|
|
337
439
|
private insertPastePlaceholder;
|
|
338
|
-
/**
|
|
339
|
-
* Toggle expansion of a paste placeholder at the current cursor position.
|
|
340
|
-
* When expanded, shows first 3 and last 2 lines of the content.
|
|
341
|
-
*/
|
|
342
|
-
togglePasteExpansion(): boolean;
|
|
343
|
-
private buildExpandedPlaceholder;
|
|
344
440
|
private deletePlaceholder;
|
|
345
|
-
updateContextUsage(value: number | null): void;
|
|
441
|
+
updateContextUsage(value: number | null, autoCompactThreshold?: number): void;
|
|
346
442
|
getEditMode(): EditGuardMode;
|
|
347
443
|
applyEditMode(mode: EditGuardMode): void;
|
|
348
444
|
private setEditMode;
|
|
349
445
|
toggleEditMode(): void;
|
|
446
|
+
private scheduleStreamingRender;
|
|
447
|
+
private resetStreamingRenderThrottle;
|
|
350
448
|
private scheduleRender;
|
|
351
449
|
private canRender;
|
|
352
450
|
private isTTY;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"terminalInput.d.ts","sourceRoot":"","sources":["../../src/shell/terminalInput.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"terminalInput.d.ts","sourceRoot":"","sources":["../../src/shell/terminalInput.ts"],"names":[],"mappings":"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"}
|