@robota-sdk/agent-command 3.0.0-beta.82 → 3.0.0-beta.83
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 +1044 -0
- package/dist/node/index.cjs +76 -70
- package/dist/node/index.d.cts +100 -8
- package/dist/node/index.d.cts.map +1 -1
- package/dist/node/index.d.ts +100 -8
- package/dist/node/index.d.ts.map +1 -1
- package/dist/node/index.js +76 -70
- package/dist/node/index.js.map +1 -1
- package/package.json +14 -9
- package/src/command-module-utils.test.ts +37 -0
- package/src/command-module-utils.ts +2 -0
- package/src/default/__tests__/default-command-modules.test.ts +50 -11
- package/src/default/__tests__/model-exposure.test.ts +16 -3
- package/src/default/__tests__/org-policy-forwarding.test.ts +10 -2
- package/src/default/default-command-modules.ts +7 -8
- package/src/devices/__tests__/devices-command-module.test.ts +99 -12
- package/src/devices/devices-command-module.ts +108 -24
- package/src/devices/devices-command-port.ts +62 -1
- package/src/devices/index.ts +3 -0
- package/src/doctor/doctor-node-deps.ts +6 -7
- package/src/editor/editor-command-module.ts +5 -0
- package/src/events/__tests__/events-command.test.ts +73 -0
- package/src/events/events-command-module.ts +49 -0
- package/src/events/events-command.ts +69 -0
- package/src/events/index.ts +2 -0
- package/src/git/__tests__/git-command-module.test.ts +10 -2
- package/src/handoff/__tests__/handoff-command-module.test.ts +2 -1
- package/src/handoff/handoff-command-module.ts +1 -1
- package/src/handoff/handoff-command.ts +2 -2
- package/src/help/__tests__/help-command-module.test.ts +3 -0
- package/src/help/__tests__/help-command.test.ts +3 -0
- package/src/index.ts +8 -0
- package/src/keybindings/keybindings-command-module.ts +17 -3
- package/src/mcp-activation/__tests__/mcp-activation-command.test.ts +41 -0
- package/src/mcp-activation/mcp-activation-command.ts +8 -3
- package/src/peers/__tests__/peers-command-module.test.ts +24 -0
- package/src/peers/__tests__/peers-command.test.ts +78 -0
- package/src/peers/peers-command-module.ts +1 -1
- package/src/peers/peers-command.ts +33 -4
- package/src/rewind/__tests__/rewind-command-module.test.ts +31 -1
- package/src/rewind/rewind-command.ts +23 -2
- package/src/schedule/__tests__/schedule-redos.test.ts +33 -0
- package/src/schedule/loop-command.ts +3 -1
- package/src/shell/shell-command-module.ts +5 -0
- package/src/terminal-client/__tests__/terminal-client-commands.test.ts +216 -0
- package/src/terminal-client/index.ts +5 -0
- package/src/terminal-client/terminal-client-commands.ts +109 -0
- package/src/theme/__tests__/theme-command.test.ts +1 -1
- package/src/theme/theme-command-module.ts +12 -2
- package/src/user-local/__tests__/user-local-command.test.ts +2 -2
package/dist/node/index.d.cts
CHANGED
|
@@ -48,7 +48,25 @@ type TDevicesRefusal =
|
|
|
48
48
|
/** The phrase is valid but derives another identity than this device's. */
|
|
49
49
|
'phrase-mismatch' | 'no-signing-key' | 'signing-key-expired' | 'unknown-device' | 'ambiguous-device' | 'self-revocation' |
|
|
50
50
|
/** Another process changed the identity while this operation waited on the operator. */
|
|
51
|
-
'changed-concurrently'
|
|
51
|
+
'changed-concurrently' |
|
|
52
|
+
/** No signaling relay is configured to meet the other device through. */
|
|
53
|
+
'no-relay' |
|
|
54
|
+
/** What was typed is not an enrollment code. */
|
|
55
|
+
'code-invalid' |
|
|
56
|
+
/** The code was typed on the command line, where history keeps it. */
|
|
57
|
+
'code-on-command-line' |
|
|
58
|
+
/** No device waits for that code or proved it: wrong, expired, already used, or something in between. */
|
|
59
|
+
'code-not-accepted' |
|
|
60
|
+
/** Nobody joined before the code expired. */
|
|
61
|
+
'enrollment-expired' |
|
|
62
|
+
/** Too many attempts failed to prove the code; it no longer works. */
|
|
63
|
+
'too-many-attempts' |
|
|
64
|
+
/** The operator of either device declined. */
|
|
65
|
+
'enrollment-declined' |
|
|
66
|
+
/** An operator did not answer in time. */
|
|
67
|
+
'enrollment-timed-out' |
|
|
68
|
+
/** The connection or the exchange with the other device failed partway. */
|
|
69
|
+
'enrollment-failed';
|
|
52
70
|
type TDevicesOutcome<T> = {
|
|
53
71
|
readonly ok: true;
|
|
54
72
|
readonly value: T;
|
|
@@ -74,9 +92,39 @@ interface IDevicesRevokeResult {
|
|
|
74
92
|
readonly deviceId: string;
|
|
75
93
|
readonly name: string;
|
|
76
94
|
}
|
|
95
|
+
/** This session's endpoint in the device mesh. */
|
|
96
|
+
interface IDevicesMeshStatus {
|
|
97
|
+
/** `off`: the setting is off, or this run does not open the mesh. `failed`: it could not open. */
|
|
98
|
+
readonly state: 'off' | 'starting' | 'on' | 'failed';
|
|
99
|
+
/** Why it could not open, for `failed`. */
|
|
100
|
+
readonly reason?: string;
|
|
101
|
+
/** How this device looks for the others, in the operator's words. */
|
|
102
|
+
readonly sources: readonly string[];
|
|
103
|
+
/** The devices with an admitted link now. */
|
|
104
|
+
readonly linked: readonly {
|
|
105
|
+
readonly deviceId: string;
|
|
106
|
+
readonly name?: string;
|
|
107
|
+
readonly locality: 'same-host' | 'another-host';
|
|
108
|
+
}[];
|
|
109
|
+
}
|
|
110
|
+
interface IDevicesAddResult {
|
|
111
|
+
readonly deviceId: string;
|
|
112
|
+
readonly name: string;
|
|
113
|
+
/** Whether the new device said it kept what it was given. */
|
|
114
|
+
readonly confirmed: boolean;
|
|
115
|
+
}
|
|
116
|
+
interface IDevicesJoinResult {
|
|
117
|
+
readonly userId: string;
|
|
118
|
+
readonly deviceId: string;
|
|
119
|
+
readonly name: string;
|
|
120
|
+
/** Where the private keys were kept, for the operator. */
|
|
121
|
+
readonly keyStorage?: string;
|
|
122
|
+
}
|
|
77
123
|
interface IDevicesCommandPort {
|
|
78
124
|
/** This device's view of the roster, or `undefined` when it has no identity yet. */
|
|
79
125
|
list(): Promise<IDevicesView | undefined>;
|
|
126
|
+
/** The device mesh as this session runs it. Absent on a host with no device mesh. */
|
|
127
|
+
meshStatus?(): IDevicesMeshStatus;
|
|
80
128
|
/** Create the identity. Runs on the operator terminal (it shows the phrase once). */
|
|
81
129
|
init(options: {
|
|
82
130
|
readonly name?: string;
|
|
@@ -85,6 +133,18 @@ interface IDevicesCommandPort {
|
|
|
85
133
|
recover(): Promise<TDevicesOutcome<IDevicesRecoverResult>>;
|
|
86
134
|
/** Revoke a device by id prefix with the signing key. Confirms on the operator terminal. */
|
|
87
135
|
revoke(deviceIdPrefix: string): Promise<TDevicesOutcome<IDevicesRevokeResult>>;
|
|
136
|
+
/**
|
|
137
|
+
* Enrol another device with the signing key: show a one-time code, and certify the device that
|
|
138
|
+
* proves it once both operators confirm the string both devices show. Runs on the operator terminal.
|
|
139
|
+
*/
|
|
140
|
+
add(): Promise<TDevicesOutcome<IDevicesAddResult>>;
|
|
141
|
+
/**
|
|
142
|
+
* Join the user's devices with a code another device shows, once both operators confirm the string
|
|
143
|
+
* both devices show. Runs on the operator terminal.
|
|
144
|
+
*/
|
|
145
|
+
join(options: {
|
|
146
|
+
readonly name?: string;
|
|
147
|
+
}): Promise<TDevicesOutcome<IDevicesJoinResult>>;
|
|
88
148
|
}
|
|
89
149
|
//#endregion
|
|
90
150
|
//#region src/devices/devices-command-module.d.ts
|
|
@@ -271,7 +331,7 @@ declare class KeybindingsCommandSource implements ICommandSource {
|
|
|
271
331
|
readonly name = "keybindings";
|
|
272
332
|
getCommands(): ICommand[];
|
|
273
333
|
}
|
|
274
|
-
declare function createKeybindingsCommandModule(file: IKeybindingsFilePort): ICommandModule;
|
|
334
|
+
declare function createKeybindingsCommandModule(file: IKeybindingsFilePort | undefined): ICommandModule;
|
|
275
335
|
//#endregion
|
|
276
336
|
//#region src/default/default-command-modules.d.ts
|
|
277
337
|
interface IDefaultCommandModulesOptions {
|
|
@@ -292,12 +352,11 @@ interface IDefaultCommandModulesOptions {
|
|
|
292
352
|
* red when the producer dropped it.
|
|
293
353
|
*/
|
|
294
354
|
orgPolicy?: IOrgPolicy;
|
|
295
|
-
/** Optional TUI-owned file capability;
|
|
355
|
+
/** Optional TUI-owned file capability; absent, `/keybindings` says it belongs to the robota terminal. */
|
|
296
356
|
keybindingsFilePort?: IKeybindingsFilePort;
|
|
297
357
|
/**
|
|
298
|
-
* SCREEN-2002: the surface's theme catalogue.
|
|
299
|
-
*
|
|
300
|
-
* missing than present-and-failing.
|
|
358
|
+
* SCREEN-2002: the surface's theme catalogue. Absent (print mode, `--serve`), `/theme` is still
|
|
359
|
+
* listed and says it belongs to the robota terminal, which runs it itself when attached.
|
|
301
360
|
*/
|
|
302
361
|
themeCataloguePort?: IThemeCataloguePort$1;
|
|
303
362
|
/**
|
|
@@ -551,7 +610,7 @@ declare class ThemeCommandSource implements ICommandSource {
|
|
|
551
610
|
readonly name = "theme";
|
|
552
611
|
getCommands(): ICommand[];
|
|
553
612
|
}
|
|
554
|
-
declare function createThemeCommandModule(catalogue: IThemeCataloguePort$1): ICommandModule;
|
|
613
|
+
declare function createThemeCommandModule(catalogue: IThemeCataloguePort$1 | undefined): ICommandModule;
|
|
555
614
|
//#endregion
|
|
556
615
|
//#region src/language/language-command-module.d.ts
|
|
557
616
|
declare function createLanguageCommandEntry(): ICommand;
|
|
@@ -917,6 +976,39 @@ declare function createStatusLineCommandModule(): ICommandModule;
|
|
|
917
976
|
declare const STATUSLINE_USAGE: string;
|
|
918
977
|
declare function executeStatusLineCommand(_context: ICommandHostNoCapability, args: string): ICommandResult;
|
|
919
978
|
//#endregion
|
|
979
|
+
//#region src/terminal-client/terminal-client-commands.d.ts
|
|
980
|
+
/** A command the terminal runs itself, with the terminal's own handoff and working directory. */
|
|
981
|
+
interface ITerminalClientCommand {
|
|
982
|
+
readonly name: string;
|
|
983
|
+
execute(host: ICommandHostTerminalHandoff & ICommandHostWorkspace, args: string): ICommandResult | Promise<ICommandResult>;
|
|
984
|
+
}
|
|
985
|
+
/** The terminal's own capabilities — the same ones its in-process command modules are given. */
|
|
986
|
+
interface ITerminalClientCommandOptions {
|
|
987
|
+
/** The shell `/shell` runs; absent → the platform shell, as for the in-process command. */
|
|
988
|
+
readonly shellExecutable?: string;
|
|
989
|
+
/** Product-owned prefix for `/editor`'s temporary directory; absent → the command's default. */
|
|
990
|
+
readonly editorTemporaryDirectoryPrefix?: string;
|
|
991
|
+
/** Absent → `/keybindings` answers where key bindings live, as the in-process command does. */
|
|
992
|
+
readonly keybindingsFile?: IKeybindingsFilePort;
|
|
993
|
+
/** Absent → `/theme` answers where themes live, as the in-process command does. */
|
|
994
|
+
readonly themeCatalogue?: IThemeCataloguePort$1;
|
|
995
|
+
/**
|
|
996
|
+
* The same module selection the default assembly is given (`agent-command-shell`, …): a module it
|
|
997
|
+
* leaves out is left out here too, so an attached terminal offers no command a standalone one
|
|
998
|
+
* would not. Absent → every client-run module.
|
|
999
|
+
*/
|
|
1000
|
+
readonly enabledCommandModules?: readonly string[];
|
|
1001
|
+
/** Applied after `enabledCommandModules`, as in the default assembly (deny > allow). */
|
|
1002
|
+
readonly disabledCommandModules?: readonly string[];
|
|
1003
|
+
}
|
|
1004
|
+
/**
|
|
1005
|
+
* Every client-run command the module selection keeps, whether or not its port is given. The set
|
|
1006
|
+
* shrinks only with the selection, never with a missing port: the attached terminal routes by it, so
|
|
1007
|
+
* a selected command left out would run on the daemon instead — and without its port the command
|
|
1008
|
+
* still answers as its in-process twin does.
|
|
1009
|
+
*/
|
|
1010
|
+
declare function createTerminalClientCommands(options: ITerminalClientCommandOptions): readonly ITerminalClientCommand[];
|
|
1011
|
+
//#endregion
|
|
920
1012
|
//#region src/user-local/user-local-command-module.d.ts
|
|
921
1013
|
declare function createUserLocalCommandEntry(): ICommand;
|
|
922
1014
|
declare class UserLocalCommandSource implements ICommandSource {
|
|
@@ -942,5 +1034,5 @@ interface IUserLocalDirectCommandOptions {
|
|
|
942
1034
|
declare function executeUserLocalDirectCommand(options: IUserLocalDirectCommandOptions): Promise<ICommandResult>;
|
|
943
1035
|
declare function executeUserLocalCommand(context: ICommandHostWorkspace, rawArgs: string, storageRoot: string): Promise<ICommandResult>;
|
|
944
1036
|
//#endregion
|
|
945
|
-
export { ADVISOR_SETTING_KEY, AdvisorCommandSource, AgentCommandSource, BackgroundCommandSource, CLEAR_COMMAND_MESSAGE, CompactCommandSource, ContextCommandSource, DoctorCommandSource, EDITOR_COMMAND_DESCRIPTION, EditorCommandSource, EffortCommandSource, ExitCommandSource, GOAL_COMMAND_DESCRIPTION, GitCommandSource, GoalCommandSource, HandoffCommandSource, HelpCommandSource, type ICreateGitProcessOptions, type IDefaultCommandModulesOptions, type IDefaultCommandModulesResult, type IDeviceListEntry, type IDevicesCommandPort, type IDevicesInitResult, type IDevicesRecoverResult, type IDevicesRevokeResult, type IDevicesView, type IDoctorCheck, type IDoctorDeps, type IDoctorDisplayVocabulary, type IDoctorEndpointProbeResult, type IDoctorInputs, type IDoctorPathFacts, type IDoctorRepairPlan, type IDoctorReport, type IEnsureProviderConfigOptions, type IGitCommandModuleOptions, type IGitProcessPort, type IGitProcessRunOptions, type IKeybindingsFilePort, type ILoopCommandOptions, type IProviderCommandModuleOptions, type IProviderCommandSettingsAdapter, type IProviderSetupFlowOptions, type IProviderSetupFlowState, type IProviderSetupPromptStep, type IProviderStartupContext, type IResolvedEditor, type IResolvedShell, type IScheduleSpec, type ISkillsCommandModuleOptions, type IThemeAppearanceState, type IThemeCatalogueEntry, type IThemeCataloguePort, type IUserLocalDirectCommandOptions, KeybindingsCommandSource, LanguageCommandSource, MCPActivationCommandSource, MemoryCommandSource, ModeCommandSource, OutputStyleCommandSource, PermissionsCommandSource, PluginManagerCommandSource, PresetCommandSource, ProviderCommandSource, RemoteControlCommandSource, RewindCommandSource, SANDBOX_MODES, SHELL_COMMAND_DESCRIPTION, SKILLS_COMMAND_DESCRIPTION, STATUSLINE_USAGE, STORAGE_REPAIR_ID, SandboxCommandSource, ScheduleCommandSource, SessionCommandSource, SettingsCommandSource, ShellCommandSource, SkillsCommandSource, StatusLineCommandSource, type TDevicesOutcome, type TDevicesRefusal, type TDoctorCheckStatus, type TDoctorNotProbed, type TDoctorRepairOutcome, type TDoctorRepairPlanResult, type TGitCommandContext, type TGitProcessFailureReason, type TGitProcessOutcome, type TMCPUserAction, type TMCPUserActionSurface, type TPromptInput, type TProviderSetupFlowSubmitResult, type TProviderSetupType, type TReducedMotionOverride, type TScheduleParseResult, ThemeCommandSource, USER_LOCAL_COMMAND_ARGUMENT_HINT, USER_LOCAL_COMMAND_DESCRIPTION, USER_LOCAL_COMMAND_USAGE, UserLocalCommandSource, applyDoctorRepair, buildDoctorReport, collectSettingsSecrets, createAdvisorCommandEntry, createAdvisorCommandModule, createAgentCommandEntry, createAgentCommandModule, createAgentSystemCommand, createBackgroundCommandEntry, createBackgroundCommandModule, createClearCommandEntry, createCompactCommandEntry, createCompactCommandModule, createContextCommandEntry, createContextCommandModule, createCostCommandEntry, createDefaultCommandModules, createDevicesCommandModule, createDoctorCommandEntry, createDoctorCommandModule, createEditorCommandEntry, createEditorCommandModule, createEffortCommandEntry, createEffortCommandModule, createExitCommandEntry, createExitCommandModule, createGitCommandEntry, createGitCommandModule, createGitProcess, createGoalCommandEntry, createGoalCommandModule, createHandoffCommandEntry, createHandoffCommandModule, createHelpCommandEntry, createHelpCommandModule, createKeybindingsCommandEntry, createKeybindingsCommandModule, createLanguageCommandEntry, createLanguageCommandModule, createLoopCommandEntry, createMCPActivationCommandEntry, createMCPActivationCommandModule, createMemoryCommandEntry, createMemoryCommandModule, createModeCommandEntry, createModeCommandModule, createMonitorCommandEntry, createNodeDoctorDeps, createOutputStyleCommandEntry, createOutputStyleCommandModule, createPermissionsCommandEntry, createPermissionsCommandModule, createPlanCommandModule, createPluginCommandEntry, createPluginCommandModule, createPresetCommandEntry, createPresetCommandModule, createProviderCommandEntry, createProviderCommandModule, createProviderSetupFlow, createReloadPluginsCommandEntry, createRemoteControlCommandEntry, createRemoteControlCommandModule, createRenameCommandEntry, createResetCommandEntry, createResetCommandModule, createResumeCommandEntry, createRewindCommandModule, createSandboxCommandModule, createScheduleCommandEntry, createScheduleCommandModule, createSessionCommandModule, createSettingsCommandEntry, createSettingsCommandModule, createShellCommandEntry, createShellCommandModule, createSkillsCommandEntry, createSkillsCommandModule, createStatusLineCommandEntry, createStatusLineCommandModule, createThemeCommandEntry, createThemeCommandModule, createUserLocalCommandEntry, createUserLocalCommandModule, createValidateSessionCommandEntry, doctorRepairAllowlist, ensureProviderConfig, executeAdvisorCommand, executeAgentCommand, executeBackgroundCommand, executeClearCommand, executeCompactCommand, executeContextCommand, executeCostCommand, executeEditorCommand, executeEffortCommand, executeExitCommand, executeGitCommand, executeGoalCommand, executeHandoffCommand, executeHelpCommand, executeLanguageCommand, executeLoopCommand, executeMCPActivationCommand, executeMemoryCommand, executeModeCommand, executeMonitorCommand, executeOutputStyleCommand, executePermissionsCommand, executePluginCommand, executePresetCommand, executeProviderCommand, executeReloadPluginsCommand, executeRemoteControlCommand, executeRenameCommand, executeResetCommand, executeResumeCommand, executeRewindCommand, executeSandboxCommand, executeScheduleCommand, executeShellCommand, executeSkillsCommand, executeStatusLineCommand, executeThemeCommand, executeUserLocalCommand, executeUserLocalDirectCommand, executeValidateSessionCommand, formatProviderSetupChoiceLabel, formatProviderSetupHelpLinks, formatProviderSetupPromptLabel, formatProviderSetupSelectionPrompt, formatSandboxStatus, getProviderSetupStep, gitEnvironment, isDoctorRepairId, mcpUnavailableServersNotice, mcpUserActionCommand, mcpUserActionNotice, parseScheduleSpec, planDoctorRepair, redactDiagnosticText, renderDoctorReport, resolveCommandOnPath, resolveEditor, resolveProviderSetupSelection, resolveShell, runDoctor, runProviderSetupPromptFlow, runProviderStartupSetup, spawnInherited, submitProviderSetupValue, validateProviderSetupValue };
|
|
1037
|
+
export { ADVISOR_SETTING_KEY, AdvisorCommandSource, AgentCommandSource, BackgroundCommandSource, CLEAR_COMMAND_MESSAGE, CompactCommandSource, ContextCommandSource, DoctorCommandSource, EDITOR_COMMAND_DESCRIPTION, EditorCommandSource, EffortCommandSource, ExitCommandSource, GOAL_COMMAND_DESCRIPTION, GitCommandSource, GoalCommandSource, HandoffCommandSource, HelpCommandSource, type ICreateGitProcessOptions, type IDefaultCommandModulesOptions, type IDefaultCommandModulesResult, type IDeviceListEntry, type IDevicesAddResult, type IDevicesCommandPort, type IDevicesInitResult, type IDevicesJoinResult, type IDevicesMeshStatus, type IDevicesRecoverResult, type IDevicesRevokeResult, type IDevicesView, type IDoctorCheck, type IDoctorDeps, type IDoctorDisplayVocabulary, type IDoctorEndpointProbeResult, type IDoctorInputs, type IDoctorPathFacts, type IDoctorRepairPlan, type IDoctorReport, type IEnsureProviderConfigOptions, type IGitCommandModuleOptions, type IGitProcessPort, type IGitProcessRunOptions, type IKeybindingsFilePort, type ILoopCommandOptions, type IProviderCommandModuleOptions, type IProviderCommandSettingsAdapter, type IProviderSetupFlowOptions, type IProviderSetupFlowState, type IProviderSetupPromptStep, type IProviderStartupContext, type IResolvedEditor, type IResolvedShell, type IScheduleSpec, type ISkillsCommandModuleOptions, type ITerminalClientCommand, type ITerminalClientCommandOptions, type IThemeAppearanceState, type IThemeCatalogueEntry, type IThemeCataloguePort, type IUserLocalDirectCommandOptions, KeybindingsCommandSource, LanguageCommandSource, MCPActivationCommandSource, MemoryCommandSource, ModeCommandSource, OutputStyleCommandSource, PermissionsCommandSource, PluginManagerCommandSource, PresetCommandSource, ProviderCommandSource, RemoteControlCommandSource, RewindCommandSource, SANDBOX_MODES, SHELL_COMMAND_DESCRIPTION, SKILLS_COMMAND_DESCRIPTION, STATUSLINE_USAGE, STORAGE_REPAIR_ID, SandboxCommandSource, ScheduleCommandSource, SessionCommandSource, SettingsCommandSource, ShellCommandSource, SkillsCommandSource, StatusLineCommandSource, type TDevicesOutcome, type TDevicesRefusal, type TDoctorCheckStatus, type TDoctorNotProbed, type TDoctorRepairOutcome, type TDoctorRepairPlanResult, type TGitCommandContext, type TGitProcessFailureReason, type TGitProcessOutcome, type TMCPUserAction, type TMCPUserActionSurface, type TPromptInput, type TProviderSetupFlowSubmitResult, type TProviderSetupType, type TReducedMotionOverride, type TScheduleParseResult, ThemeCommandSource, USER_LOCAL_COMMAND_ARGUMENT_HINT, USER_LOCAL_COMMAND_DESCRIPTION, USER_LOCAL_COMMAND_USAGE, UserLocalCommandSource, applyDoctorRepair, buildDoctorReport, collectSettingsSecrets, createAdvisorCommandEntry, createAdvisorCommandModule, createAgentCommandEntry, createAgentCommandModule, createAgentSystemCommand, createBackgroundCommandEntry, createBackgroundCommandModule, createClearCommandEntry, createCompactCommandEntry, createCompactCommandModule, createContextCommandEntry, createContextCommandModule, createCostCommandEntry, createDefaultCommandModules, createDevicesCommandModule, createDoctorCommandEntry, createDoctorCommandModule, createEditorCommandEntry, createEditorCommandModule, createEffortCommandEntry, createEffortCommandModule, createExitCommandEntry, createExitCommandModule, createGitCommandEntry, createGitCommandModule, createGitProcess, createGoalCommandEntry, createGoalCommandModule, createHandoffCommandEntry, createHandoffCommandModule, createHelpCommandEntry, createHelpCommandModule, createKeybindingsCommandEntry, createKeybindingsCommandModule, createLanguageCommandEntry, createLanguageCommandModule, createLoopCommandEntry, createMCPActivationCommandEntry, createMCPActivationCommandModule, createMemoryCommandEntry, createMemoryCommandModule, createModeCommandEntry, createModeCommandModule, createMonitorCommandEntry, createNodeDoctorDeps, createOutputStyleCommandEntry, createOutputStyleCommandModule, createPermissionsCommandEntry, createPermissionsCommandModule, createPlanCommandModule, createPluginCommandEntry, createPluginCommandModule, createPresetCommandEntry, createPresetCommandModule, createProviderCommandEntry, createProviderCommandModule, createProviderSetupFlow, createReloadPluginsCommandEntry, createRemoteControlCommandEntry, createRemoteControlCommandModule, createRenameCommandEntry, createResetCommandEntry, createResetCommandModule, createResumeCommandEntry, createRewindCommandModule, createSandboxCommandModule, createScheduleCommandEntry, createScheduleCommandModule, createSessionCommandModule, createSettingsCommandEntry, createSettingsCommandModule, createShellCommandEntry, createShellCommandModule, createSkillsCommandEntry, createSkillsCommandModule, createStatusLineCommandEntry, createStatusLineCommandModule, createTerminalClientCommands, createThemeCommandEntry, createThemeCommandModule, createUserLocalCommandEntry, createUserLocalCommandModule, createValidateSessionCommandEntry, doctorRepairAllowlist, ensureProviderConfig, executeAdvisorCommand, executeAgentCommand, executeBackgroundCommand, executeClearCommand, executeCompactCommand, executeContextCommand, executeCostCommand, executeEditorCommand, executeEffortCommand, executeExitCommand, executeGitCommand, executeGoalCommand, executeHandoffCommand, executeHelpCommand, executeLanguageCommand, executeLoopCommand, executeMCPActivationCommand, executeMemoryCommand, executeModeCommand, executeMonitorCommand, executeOutputStyleCommand, executePermissionsCommand, executePluginCommand, executePresetCommand, executeProviderCommand, executeReloadPluginsCommand, executeRemoteControlCommand, executeRenameCommand, executeResetCommand, executeResumeCommand, executeRewindCommand, executeSandboxCommand, executeScheduleCommand, executeShellCommand, executeSkillsCommand, executeStatusLineCommand, executeThemeCommand, executeUserLocalCommand, executeUserLocalDirectCommand, executeValidateSessionCommand, formatProviderSetupChoiceLabel, formatProviderSetupHelpLinks, formatProviderSetupPromptLabel, formatProviderSetupSelectionPrompt, formatSandboxStatus, getProviderSetupStep, gitEnvironment, isDoctorRepairId, mcpUnavailableServersNotice, mcpUserActionCommand, mcpUserActionNotice, parseScheduleSpec, planDoctorRepair, redactDiagnosticText, renderDoctorReport, resolveCommandOnPath, resolveEditor, resolveProviderSetupSelection, resolveShell, runDoctor, runProviderSetupPromptFlow, runProviderStartupSetup, spawnInherited, submitProviderSetupValue, validateProviderSetupValue };
|
|
946
1038
|
//# sourceMappingURL=index.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../../src/agent/agent-command-module.ts","../../src/agent/agent-command.ts","../../src/devices/devices-command-port.ts","../../src/devices/devices-command-module.ts","../../src/doctor/doctor-types.ts","../../src/doctor/doctor-render.ts","../../src/doctor/doctor-command-module.ts","../../src/doctor/doctor-node-deps.ts","../../src/doctor/doctor-redaction.ts","../../src/doctor/doctor-repair.ts","../../src/doctor/doctor-runner.ts","../../src/keybindings/keybindings-command-module.ts","../../src/default/default-command-modules.ts","../../src/background/background-command-module.ts","../../src/background/background-command.ts","../../src/goal/goal-command-module.ts","../../src/goal/goal-command.ts","../../src/handoff/handoff-command.ts","../../src/handoff/handoff-command-module.ts","../../src/plan/plan-command-module.ts","../../src/compact/compact-command-module.ts","../../src/compact/compact-command.ts","../../src/context/context-command-module.ts","../../src/context/context-command.ts","../../src/editor/resolve-editor.ts","../../src/editor/editor-command.ts","../../src/editor/editor-command-module.ts","../../src/git/git-process.ts","../../src/git/git-command-module.ts","../../src/effort/effort-command-module.ts","../../src/effort/effort-command.ts","../../src/advisor/advisor-command-module.ts","../../src/advisor/advisor-command.ts","../../src/exit/exit-command-module.ts","../../src/exit/exit-command.ts","../../src/help/help-command-module.ts","../../src/help/help-command.ts","../../src/theme/theme-command-module.ts","../../src/language/language-command-module.ts","../../src/language/language-command.ts","../../src/memory/memory-command-module.ts","../../src/memory/memory-command.ts","../../src/mcp-activation/mcp-activation-command-module.ts","../../src/mcp-activation/mcp-activation-command.ts","../../src/mcp-activation/mcp-model-notice.ts","../../src/mode/mode-command-module.ts","../../src/mode/mode-command.ts","../../src/sandbox/sandbox-command-module.ts","../../src/sandbox/sandbox-command.ts","../../src/output-style/output-style-command-module.ts","../../src/permissions/permissions-command-module.ts","../../src/permissions/permissions-command.ts","../../src/plugin/plugin-command-module.ts","../../src/plugin/plugin-command.ts","../../src/preset/preset-command-module.ts","../../src/preset/preset-command.ts","../../src/shell/resolve-shell.ts","../../src/shell/spawn-inherited.ts","../../src/shell/shell-command.ts","../../src/shell/shell-command-module.ts","../../src/provider/provider-command-module.ts","../../src/provider/provider-command-execution.ts","../../src/provider/provider-setup-flow.ts","../../src/provider/provider-startup.ts","../../src/remote-control/remote-control-command-module.ts","../../src/remote-control/remote-control-command.ts","../../src/reset/reset-command-module.ts","../../src/reset/reset-command.ts","../../src/rewind/rewind-command-module.ts","../../src/rewind/rewind-command.ts","../../src/schedule/loop-command.ts","../../src/schedule/schedule-command-module.ts","../../src/schedule/schedule-command.ts","../../src/schedule/schedule-spec-parser.ts","../../src/session/session-command.ts","../../src/session/session-command-module.ts","../../src/settings/settings-command-module.ts","../../src/skills/skills-command-module.ts","../../src/skills/skills-command.ts","../../src/statusline/statusline-command-module.ts","../../src/statusline/statusline-command.ts","../../src/user-local/user-local-command-module.ts","../../src/user-local/user-local-command-constants.ts","../../src/user-local/user-local-command.ts"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../../src/agent/agent-command-module.ts","../../src/agent/agent-command.ts","../../src/devices/devices-command-port.ts","../../src/devices/devices-command-module.ts","../../src/doctor/doctor-types.ts","../../src/doctor/doctor-render.ts","../../src/doctor/doctor-command-module.ts","../../src/doctor/doctor-node-deps.ts","../../src/doctor/doctor-redaction.ts","../../src/doctor/doctor-repair.ts","../../src/doctor/doctor-runner.ts","../../src/keybindings/keybindings-command-module.ts","../../src/default/default-command-modules.ts","../../src/background/background-command-module.ts","../../src/background/background-command.ts","../../src/goal/goal-command-module.ts","../../src/goal/goal-command.ts","../../src/handoff/handoff-command.ts","../../src/handoff/handoff-command-module.ts","../../src/plan/plan-command-module.ts","../../src/compact/compact-command-module.ts","../../src/compact/compact-command.ts","../../src/context/context-command-module.ts","../../src/context/context-command.ts","../../src/editor/resolve-editor.ts","../../src/editor/editor-command.ts","../../src/editor/editor-command-module.ts","../../src/git/git-process.ts","../../src/git/git-command-module.ts","../../src/effort/effort-command-module.ts","../../src/effort/effort-command.ts","../../src/advisor/advisor-command-module.ts","../../src/advisor/advisor-command.ts","../../src/exit/exit-command-module.ts","../../src/exit/exit-command.ts","../../src/help/help-command-module.ts","../../src/help/help-command.ts","../../src/theme/theme-command-module.ts","../../src/language/language-command-module.ts","../../src/language/language-command.ts","../../src/memory/memory-command-module.ts","../../src/memory/memory-command.ts","../../src/mcp-activation/mcp-activation-command-module.ts","../../src/mcp-activation/mcp-activation-command.ts","../../src/mcp-activation/mcp-model-notice.ts","../../src/mode/mode-command-module.ts","../../src/mode/mode-command.ts","../../src/sandbox/sandbox-command-module.ts","../../src/sandbox/sandbox-command.ts","../../src/output-style/output-style-command-module.ts","../../src/permissions/permissions-command-module.ts","../../src/permissions/permissions-command.ts","../../src/plugin/plugin-command-module.ts","../../src/plugin/plugin-command.ts","../../src/preset/preset-command-module.ts","../../src/preset/preset-command.ts","../../src/shell/resolve-shell.ts","../../src/shell/spawn-inherited.ts","../../src/shell/shell-command.ts","../../src/shell/shell-command-module.ts","../../src/provider/provider-command-module.ts","../../src/provider/provider-command-execution.ts","../../src/provider/provider-setup-flow.ts","../../src/provider/provider-startup.ts","../../src/remote-control/remote-control-command-module.ts","../../src/remote-control/remote-control-command.ts","../../src/reset/reset-command-module.ts","../../src/reset/reset-command.ts","../../src/rewind/rewind-command-module.ts","../../src/rewind/rewind-command.ts","../../src/schedule/loop-command.ts","../../src/schedule/schedule-command-module.ts","../../src/schedule/schedule-command.ts","../../src/schedule/schedule-spec-parser.ts","../../src/session/session-command.ts","../../src/session/session-command-module.ts","../../src/settings/settings-command-module.ts","../../src/skills/skills-command-module.ts","../../src/skills/skills-command.ts","../../src/statusline/statusline-command-module.ts","../../src/statusline/statusline-command.ts","../../src/terminal-client/terminal-client-commands.ts","../../src/user-local/user-local-command-module.ts","../../src/user-local/user-local-command-constants.ts","../../src/user-local/user-local-command.ts"],"mappings":"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"}
|
package/dist/node/index.d.ts
CHANGED
|
@@ -48,7 +48,25 @@ type TDevicesRefusal =
|
|
|
48
48
|
/** The phrase is valid but derives another identity than this device's. */
|
|
49
49
|
'phrase-mismatch' | 'no-signing-key' | 'signing-key-expired' | 'unknown-device' | 'ambiguous-device' | 'self-revocation' |
|
|
50
50
|
/** Another process changed the identity while this operation waited on the operator. */
|
|
51
|
-
'changed-concurrently'
|
|
51
|
+
'changed-concurrently' |
|
|
52
|
+
/** No signaling relay is configured to meet the other device through. */
|
|
53
|
+
'no-relay' |
|
|
54
|
+
/** What was typed is not an enrollment code. */
|
|
55
|
+
'code-invalid' |
|
|
56
|
+
/** The code was typed on the command line, where history keeps it. */
|
|
57
|
+
'code-on-command-line' |
|
|
58
|
+
/** No device waits for that code or proved it: wrong, expired, already used, or something in between. */
|
|
59
|
+
'code-not-accepted' |
|
|
60
|
+
/** Nobody joined before the code expired. */
|
|
61
|
+
'enrollment-expired' |
|
|
62
|
+
/** Too many attempts failed to prove the code; it no longer works. */
|
|
63
|
+
'too-many-attempts' |
|
|
64
|
+
/** The operator of either device declined. */
|
|
65
|
+
'enrollment-declined' |
|
|
66
|
+
/** An operator did not answer in time. */
|
|
67
|
+
'enrollment-timed-out' |
|
|
68
|
+
/** The connection or the exchange with the other device failed partway. */
|
|
69
|
+
'enrollment-failed';
|
|
52
70
|
type TDevicesOutcome<T> = {
|
|
53
71
|
readonly ok: true;
|
|
54
72
|
readonly value: T;
|
|
@@ -74,9 +92,39 @@ interface IDevicesRevokeResult {
|
|
|
74
92
|
readonly deviceId: string;
|
|
75
93
|
readonly name: string;
|
|
76
94
|
}
|
|
95
|
+
/** This session's endpoint in the device mesh. */
|
|
96
|
+
interface IDevicesMeshStatus {
|
|
97
|
+
/** `off`: the setting is off, or this run does not open the mesh. `failed`: it could not open. */
|
|
98
|
+
readonly state: 'off' | 'starting' | 'on' | 'failed';
|
|
99
|
+
/** Why it could not open, for `failed`. */
|
|
100
|
+
readonly reason?: string;
|
|
101
|
+
/** How this device looks for the others, in the operator's words. */
|
|
102
|
+
readonly sources: readonly string[];
|
|
103
|
+
/** The devices with an admitted link now. */
|
|
104
|
+
readonly linked: readonly {
|
|
105
|
+
readonly deviceId: string;
|
|
106
|
+
readonly name?: string;
|
|
107
|
+
readonly locality: 'same-host' | 'another-host';
|
|
108
|
+
}[];
|
|
109
|
+
}
|
|
110
|
+
interface IDevicesAddResult {
|
|
111
|
+
readonly deviceId: string;
|
|
112
|
+
readonly name: string;
|
|
113
|
+
/** Whether the new device said it kept what it was given. */
|
|
114
|
+
readonly confirmed: boolean;
|
|
115
|
+
}
|
|
116
|
+
interface IDevicesJoinResult {
|
|
117
|
+
readonly userId: string;
|
|
118
|
+
readonly deviceId: string;
|
|
119
|
+
readonly name: string;
|
|
120
|
+
/** Where the private keys were kept, for the operator. */
|
|
121
|
+
readonly keyStorage?: string;
|
|
122
|
+
}
|
|
77
123
|
interface IDevicesCommandPort {
|
|
78
124
|
/** This device's view of the roster, or `undefined` when it has no identity yet. */
|
|
79
125
|
list(): Promise<IDevicesView | undefined>;
|
|
126
|
+
/** The device mesh as this session runs it. Absent on a host with no device mesh. */
|
|
127
|
+
meshStatus?(): IDevicesMeshStatus;
|
|
80
128
|
/** Create the identity. Runs on the operator terminal (it shows the phrase once). */
|
|
81
129
|
init(options: {
|
|
82
130
|
readonly name?: string;
|
|
@@ -85,6 +133,18 @@ interface IDevicesCommandPort {
|
|
|
85
133
|
recover(): Promise<TDevicesOutcome<IDevicesRecoverResult>>;
|
|
86
134
|
/** Revoke a device by id prefix with the signing key. Confirms on the operator terminal. */
|
|
87
135
|
revoke(deviceIdPrefix: string): Promise<TDevicesOutcome<IDevicesRevokeResult>>;
|
|
136
|
+
/**
|
|
137
|
+
* Enrol another device with the signing key: show a one-time code, and certify the device that
|
|
138
|
+
* proves it once both operators confirm the string both devices show. Runs on the operator terminal.
|
|
139
|
+
*/
|
|
140
|
+
add(): Promise<TDevicesOutcome<IDevicesAddResult>>;
|
|
141
|
+
/**
|
|
142
|
+
* Join the user's devices with a code another device shows, once both operators confirm the string
|
|
143
|
+
* both devices show. Runs on the operator terminal.
|
|
144
|
+
*/
|
|
145
|
+
join(options: {
|
|
146
|
+
readonly name?: string;
|
|
147
|
+
}): Promise<TDevicesOutcome<IDevicesJoinResult>>;
|
|
88
148
|
}
|
|
89
149
|
//#endregion
|
|
90
150
|
//#region src/devices/devices-command-module.d.ts
|
|
@@ -271,7 +331,7 @@ declare class KeybindingsCommandSource implements ICommandSource {
|
|
|
271
331
|
readonly name = "keybindings";
|
|
272
332
|
getCommands(): ICommand[];
|
|
273
333
|
}
|
|
274
|
-
declare function createKeybindingsCommandModule(file: IKeybindingsFilePort): ICommandModule;
|
|
334
|
+
declare function createKeybindingsCommandModule(file: IKeybindingsFilePort | undefined): ICommandModule;
|
|
275
335
|
//#endregion
|
|
276
336
|
//#region src/default/default-command-modules.d.ts
|
|
277
337
|
interface IDefaultCommandModulesOptions {
|
|
@@ -292,12 +352,11 @@ interface IDefaultCommandModulesOptions {
|
|
|
292
352
|
* red when the producer dropped it.
|
|
293
353
|
*/
|
|
294
354
|
orgPolicy?: IOrgPolicy;
|
|
295
|
-
/** Optional TUI-owned file capability;
|
|
355
|
+
/** Optional TUI-owned file capability; absent, `/keybindings` says it belongs to the robota terminal. */
|
|
296
356
|
keybindingsFilePort?: IKeybindingsFilePort;
|
|
297
357
|
/**
|
|
298
|
-
* SCREEN-2002: the surface's theme catalogue.
|
|
299
|
-
*
|
|
300
|
-
* missing than present-and-failing.
|
|
358
|
+
* SCREEN-2002: the surface's theme catalogue. Absent (print mode, `--serve`), `/theme` is still
|
|
359
|
+
* listed and says it belongs to the robota terminal, which runs it itself when attached.
|
|
301
360
|
*/
|
|
302
361
|
themeCataloguePort?: IThemeCataloguePort$1;
|
|
303
362
|
/**
|
|
@@ -551,7 +610,7 @@ declare class ThemeCommandSource implements ICommandSource {
|
|
|
551
610
|
readonly name = "theme";
|
|
552
611
|
getCommands(): ICommand[];
|
|
553
612
|
}
|
|
554
|
-
declare function createThemeCommandModule(catalogue: IThemeCataloguePort$1): ICommandModule;
|
|
613
|
+
declare function createThemeCommandModule(catalogue: IThemeCataloguePort$1 | undefined): ICommandModule;
|
|
555
614
|
//#endregion
|
|
556
615
|
//#region src/language/language-command-module.d.ts
|
|
557
616
|
declare function createLanguageCommandEntry(): ICommand;
|
|
@@ -917,6 +976,39 @@ declare function createStatusLineCommandModule(): ICommandModule;
|
|
|
917
976
|
declare const STATUSLINE_USAGE: string;
|
|
918
977
|
declare function executeStatusLineCommand(_context: ICommandHostNoCapability, args: string): ICommandResult;
|
|
919
978
|
//#endregion
|
|
979
|
+
//#region src/terminal-client/terminal-client-commands.d.ts
|
|
980
|
+
/** A command the terminal runs itself, with the terminal's own handoff and working directory. */
|
|
981
|
+
interface ITerminalClientCommand {
|
|
982
|
+
readonly name: string;
|
|
983
|
+
execute(host: ICommandHostTerminalHandoff & ICommandHostWorkspace, args: string): ICommandResult | Promise<ICommandResult>;
|
|
984
|
+
}
|
|
985
|
+
/** The terminal's own capabilities — the same ones its in-process command modules are given. */
|
|
986
|
+
interface ITerminalClientCommandOptions {
|
|
987
|
+
/** The shell `/shell` runs; absent → the platform shell, as for the in-process command. */
|
|
988
|
+
readonly shellExecutable?: string;
|
|
989
|
+
/** Product-owned prefix for `/editor`'s temporary directory; absent → the command's default. */
|
|
990
|
+
readonly editorTemporaryDirectoryPrefix?: string;
|
|
991
|
+
/** Absent → `/keybindings` answers where key bindings live, as the in-process command does. */
|
|
992
|
+
readonly keybindingsFile?: IKeybindingsFilePort;
|
|
993
|
+
/** Absent → `/theme` answers where themes live, as the in-process command does. */
|
|
994
|
+
readonly themeCatalogue?: IThemeCataloguePort$1;
|
|
995
|
+
/**
|
|
996
|
+
* The same module selection the default assembly is given (`agent-command-shell`, …): a module it
|
|
997
|
+
* leaves out is left out here too, so an attached terminal offers no command a standalone one
|
|
998
|
+
* would not. Absent → every client-run module.
|
|
999
|
+
*/
|
|
1000
|
+
readonly enabledCommandModules?: readonly string[];
|
|
1001
|
+
/** Applied after `enabledCommandModules`, as in the default assembly (deny > allow). */
|
|
1002
|
+
readonly disabledCommandModules?: readonly string[];
|
|
1003
|
+
}
|
|
1004
|
+
/**
|
|
1005
|
+
* Every client-run command the module selection keeps, whether or not its port is given. The set
|
|
1006
|
+
* shrinks only with the selection, never with a missing port: the attached terminal routes by it, so
|
|
1007
|
+
* a selected command left out would run on the daemon instead — and without its port the command
|
|
1008
|
+
* still answers as its in-process twin does.
|
|
1009
|
+
*/
|
|
1010
|
+
declare function createTerminalClientCommands(options: ITerminalClientCommandOptions): readonly ITerminalClientCommand[];
|
|
1011
|
+
//#endregion
|
|
920
1012
|
//#region src/user-local/user-local-command-module.d.ts
|
|
921
1013
|
declare function createUserLocalCommandEntry(): ICommand;
|
|
922
1014
|
declare class UserLocalCommandSource implements ICommandSource {
|
|
@@ -942,5 +1034,5 @@ interface IUserLocalDirectCommandOptions {
|
|
|
942
1034
|
declare function executeUserLocalDirectCommand(options: IUserLocalDirectCommandOptions): Promise<ICommandResult>;
|
|
943
1035
|
declare function executeUserLocalCommand(context: ICommandHostWorkspace, rawArgs: string, storageRoot: string): Promise<ICommandResult>;
|
|
944
1036
|
//#endregion
|
|
945
|
-
export { ADVISOR_SETTING_KEY, AdvisorCommandSource, AgentCommandSource, BackgroundCommandSource, CLEAR_COMMAND_MESSAGE, CompactCommandSource, ContextCommandSource, DoctorCommandSource, EDITOR_COMMAND_DESCRIPTION, EditorCommandSource, EffortCommandSource, ExitCommandSource, GOAL_COMMAND_DESCRIPTION, GitCommandSource, GoalCommandSource, HandoffCommandSource, HelpCommandSource, type ICreateGitProcessOptions, type IDefaultCommandModulesOptions, type IDefaultCommandModulesResult, type IDeviceListEntry, type IDevicesCommandPort, type IDevicesInitResult, type IDevicesRecoverResult, type IDevicesRevokeResult, type IDevicesView, type IDoctorCheck, type IDoctorDeps, type IDoctorDisplayVocabulary, type IDoctorEndpointProbeResult, type IDoctorInputs, type IDoctorPathFacts, type IDoctorRepairPlan, type IDoctorReport, type IEnsureProviderConfigOptions, type IGitCommandModuleOptions, type IGitProcessPort, type IGitProcessRunOptions, type IKeybindingsFilePort, type ILoopCommandOptions, type IProviderCommandModuleOptions, type IProviderCommandSettingsAdapter, type IProviderSetupFlowOptions, type IProviderSetupFlowState, type IProviderSetupPromptStep, type IProviderStartupContext, type IResolvedEditor, type IResolvedShell, type IScheduleSpec, type ISkillsCommandModuleOptions, type IThemeAppearanceState, type IThemeCatalogueEntry, type IThemeCataloguePort, type IUserLocalDirectCommandOptions, KeybindingsCommandSource, LanguageCommandSource, MCPActivationCommandSource, MemoryCommandSource, ModeCommandSource, OutputStyleCommandSource, PermissionsCommandSource, PluginManagerCommandSource, PresetCommandSource, ProviderCommandSource, RemoteControlCommandSource, RewindCommandSource, SANDBOX_MODES, SHELL_COMMAND_DESCRIPTION, SKILLS_COMMAND_DESCRIPTION, STATUSLINE_USAGE, STORAGE_REPAIR_ID, SandboxCommandSource, ScheduleCommandSource, SessionCommandSource, SettingsCommandSource, ShellCommandSource, SkillsCommandSource, StatusLineCommandSource, type TDevicesOutcome, type TDevicesRefusal, type TDoctorCheckStatus, type TDoctorNotProbed, type TDoctorRepairOutcome, type TDoctorRepairPlanResult, type TGitCommandContext, type TGitProcessFailureReason, type TGitProcessOutcome, type TMCPUserAction, type TMCPUserActionSurface, type TPromptInput, type TProviderSetupFlowSubmitResult, type TProviderSetupType, type TReducedMotionOverride, type TScheduleParseResult, ThemeCommandSource, USER_LOCAL_COMMAND_ARGUMENT_HINT, USER_LOCAL_COMMAND_DESCRIPTION, USER_LOCAL_COMMAND_USAGE, UserLocalCommandSource, applyDoctorRepair, buildDoctorReport, collectSettingsSecrets, createAdvisorCommandEntry, createAdvisorCommandModule, createAgentCommandEntry, createAgentCommandModule, createAgentSystemCommand, createBackgroundCommandEntry, createBackgroundCommandModule, createClearCommandEntry, createCompactCommandEntry, createCompactCommandModule, createContextCommandEntry, createContextCommandModule, createCostCommandEntry, createDefaultCommandModules, createDevicesCommandModule, createDoctorCommandEntry, createDoctorCommandModule, createEditorCommandEntry, createEditorCommandModule, createEffortCommandEntry, createEffortCommandModule, createExitCommandEntry, createExitCommandModule, createGitCommandEntry, createGitCommandModule, createGitProcess, createGoalCommandEntry, createGoalCommandModule, createHandoffCommandEntry, createHandoffCommandModule, createHelpCommandEntry, createHelpCommandModule, createKeybindingsCommandEntry, createKeybindingsCommandModule, createLanguageCommandEntry, createLanguageCommandModule, createLoopCommandEntry, createMCPActivationCommandEntry, createMCPActivationCommandModule, createMemoryCommandEntry, createMemoryCommandModule, createModeCommandEntry, createModeCommandModule, createMonitorCommandEntry, createNodeDoctorDeps, createOutputStyleCommandEntry, createOutputStyleCommandModule, createPermissionsCommandEntry, createPermissionsCommandModule, createPlanCommandModule, createPluginCommandEntry, createPluginCommandModule, createPresetCommandEntry, createPresetCommandModule, createProviderCommandEntry, createProviderCommandModule, createProviderSetupFlow, createReloadPluginsCommandEntry, createRemoteControlCommandEntry, createRemoteControlCommandModule, createRenameCommandEntry, createResetCommandEntry, createResetCommandModule, createResumeCommandEntry, createRewindCommandModule, createSandboxCommandModule, createScheduleCommandEntry, createScheduleCommandModule, createSessionCommandModule, createSettingsCommandEntry, createSettingsCommandModule, createShellCommandEntry, createShellCommandModule, createSkillsCommandEntry, createSkillsCommandModule, createStatusLineCommandEntry, createStatusLineCommandModule, createThemeCommandEntry, createThemeCommandModule, createUserLocalCommandEntry, createUserLocalCommandModule, createValidateSessionCommandEntry, doctorRepairAllowlist, ensureProviderConfig, executeAdvisorCommand, executeAgentCommand, executeBackgroundCommand, executeClearCommand, executeCompactCommand, executeContextCommand, executeCostCommand, executeEditorCommand, executeEffortCommand, executeExitCommand, executeGitCommand, executeGoalCommand, executeHandoffCommand, executeHelpCommand, executeLanguageCommand, executeLoopCommand, executeMCPActivationCommand, executeMemoryCommand, executeModeCommand, executeMonitorCommand, executeOutputStyleCommand, executePermissionsCommand, executePluginCommand, executePresetCommand, executeProviderCommand, executeReloadPluginsCommand, executeRemoteControlCommand, executeRenameCommand, executeResetCommand, executeResumeCommand, executeRewindCommand, executeSandboxCommand, executeScheduleCommand, executeShellCommand, executeSkillsCommand, executeStatusLineCommand, executeThemeCommand, executeUserLocalCommand, executeUserLocalDirectCommand, executeValidateSessionCommand, formatProviderSetupChoiceLabel, formatProviderSetupHelpLinks, formatProviderSetupPromptLabel, formatProviderSetupSelectionPrompt, formatSandboxStatus, getProviderSetupStep, gitEnvironment, isDoctorRepairId, mcpUnavailableServersNotice, mcpUserActionCommand, mcpUserActionNotice, parseScheduleSpec, planDoctorRepair, redactDiagnosticText, renderDoctorReport, resolveCommandOnPath, resolveEditor, resolveProviderSetupSelection, resolveShell, runDoctor, runProviderSetupPromptFlow, runProviderStartupSetup, spawnInherited, submitProviderSetupValue, validateProviderSetupValue };
|
|
1037
|
+
export { ADVISOR_SETTING_KEY, AdvisorCommandSource, AgentCommandSource, BackgroundCommandSource, CLEAR_COMMAND_MESSAGE, CompactCommandSource, ContextCommandSource, DoctorCommandSource, EDITOR_COMMAND_DESCRIPTION, EditorCommandSource, EffortCommandSource, ExitCommandSource, GOAL_COMMAND_DESCRIPTION, GitCommandSource, GoalCommandSource, HandoffCommandSource, HelpCommandSource, type ICreateGitProcessOptions, type IDefaultCommandModulesOptions, type IDefaultCommandModulesResult, type IDeviceListEntry, type IDevicesAddResult, type IDevicesCommandPort, type IDevicesInitResult, type IDevicesJoinResult, type IDevicesMeshStatus, type IDevicesRecoverResult, type IDevicesRevokeResult, type IDevicesView, type IDoctorCheck, type IDoctorDeps, type IDoctorDisplayVocabulary, type IDoctorEndpointProbeResult, type IDoctorInputs, type IDoctorPathFacts, type IDoctorRepairPlan, type IDoctorReport, type IEnsureProviderConfigOptions, type IGitCommandModuleOptions, type IGitProcessPort, type IGitProcessRunOptions, type IKeybindingsFilePort, type ILoopCommandOptions, type IProviderCommandModuleOptions, type IProviderCommandSettingsAdapter, type IProviderSetupFlowOptions, type IProviderSetupFlowState, type IProviderSetupPromptStep, type IProviderStartupContext, type IResolvedEditor, type IResolvedShell, type IScheduleSpec, type ISkillsCommandModuleOptions, type ITerminalClientCommand, type ITerminalClientCommandOptions, type IThemeAppearanceState, type IThemeCatalogueEntry, type IThemeCataloguePort, type IUserLocalDirectCommandOptions, KeybindingsCommandSource, LanguageCommandSource, MCPActivationCommandSource, MemoryCommandSource, ModeCommandSource, OutputStyleCommandSource, PermissionsCommandSource, PluginManagerCommandSource, PresetCommandSource, ProviderCommandSource, RemoteControlCommandSource, RewindCommandSource, SANDBOX_MODES, SHELL_COMMAND_DESCRIPTION, SKILLS_COMMAND_DESCRIPTION, STATUSLINE_USAGE, STORAGE_REPAIR_ID, SandboxCommandSource, ScheduleCommandSource, SessionCommandSource, SettingsCommandSource, ShellCommandSource, SkillsCommandSource, StatusLineCommandSource, type TDevicesOutcome, type TDevicesRefusal, type TDoctorCheckStatus, type TDoctorNotProbed, type TDoctorRepairOutcome, type TDoctorRepairPlanResult, type TGitCommandContext, type TGitProcessFailureReason, type TGitProcessOutcome, type TMCPUserAction, type TMCPUserActionSurface, type TPromptInput, type TProviderSetupFlowSubmitResult, type TProviderSetupType, type TReducedMotionOverride, type TScheduleParseResult, ThemeCommandSource, USER_LOCAL_COMMAND_ARGUMENT_HINT, USER_LOCAL_COMMAND_DESCRIPTION, USER_LOCAL_COMMAND_USAGE, UserLocalCommandSource, applyDoctorRepair, buildDoctorReport, collectSettingsSecrets, createAdvisorCommandEntry, createAdvisorCommandModule, createAgentCommandEntry, createAgentCommandModule, createAgentSystemCommand, createBackgroundCommandEntry, createBackgroundCommandModule, createClearCommandEntry, createCompactCommandEntry, createCompactCommandModule, createContextCommandEntry, createContextCommandModule, createCostCommandEntry, createDefaultCommandModules, createDevicesCommandModule, createDoctorCommandEntry, createDoctorCommandModule, createEditorCommandEntry, createEditorCommandModule, createEffortCommandEntry, createEffortCommandModule, createExitCommandEntry, createExitCommandModule, createGitCommandEntry, createGitCommandModule, createGitProcess, createGoalCommandEntry, createGoalCommandModule, createHandoffCommandEntry, createHandoffCommandModule, createHelpCommandEntry, createHelpCommandModule, createKeybindingsCommandEntry, createKeybindingsCommandModule, createLanguageCommandEntry, createLanguageCommandModule, createLoopCommandEntry, createMCPActivationCommandEntry, createMCPActivationCommandModule, createMemoryCommandEntry, createMemoryCommandModule, createModeCommandEntry, createModeCommandModule, createMonitorCommandEntry, createNodeDoctorDeps, createOutputStyleCommandEntry, createOutputStyleCommandModule, createPermissionsCommandEntry, createPermissionsCommandModule, createPlanCommandModule, createPluginCommandEntry, createPluginCommandModule, createPresetCommandEntry, createPresetCommandModule, createProviderCommandEntry, createProviderCommandModule, createProviderSetupFlow, createReloadPluginsCommandEntry, createRemoteControlCommandEntry, createRemoteControlCommandModule, createRenameCommandEntry, createResetCommandEntry, createResetCommandModule, createResumeCommandEntry, createRewindCommandModule, createSandboxCommandModule, createScheduleCommandEntry, createScheduleCommandModule, createSessionCommandModule, createSettingsCommandEntry, createSettingsCommandModule, createShellCommandEntry, createShellCommandModule, createSkillsCommandEntry, createSkillsCommandModule, createStatusLineCommandEntry, createStatusLineCommandModule, createTerminalClientCommands, createThemeCommandEntry, createThemeCommandModule, createUserLocalCommandEntry, createUserLocalCommandModule, createValidateSessionCommandEntry, doctorRepairAllowlist, ensureProviderConfig, executeAdvisorCommand, executeAgentCommand, executeBackgroundCommand, executeClearCommand, executeCompactCommand, executeContextCommand, executeCostCommand, executeEditorCommand, executeEffortCommand, executeExitCommand, executeGitCommand, executeGoalCommand, executeHandoffCommand, executeHelpCommand, executeLanguageCommand, executeLoopCommand, executeMCPActivationCommand, executeMemoryCommand, executeModeCommand, executeMonitorCommand, executeOutputStyleCommand, executePermissionsCommand, executePluginCommand, executePresetCommand, executeProviderCommand, executeReloadPluginsCommand, executeRemoteControlCommand, executeRenameCommand, executeResetCommand, executeResumeCommand, executeRewindCommand, executeSandboxCommand, executeScheduleCommand, executeShellCommand, executeSkillsCommand, executeStatusLineCommand, executeThemeCommand, executeUserLocalCommand, executeUserLocalDirectCommand, executeValidateSessionCommand, formatProviderSetupChoiceLabel, formatProviderSetupHelpLinks, formatProviderSetupPromptLabel, formatProviderSetupSelectionPrompt, formatSandboxStatus, getProviderSetupStep, gitEnvironment, isDoctorRepairId, mcpUnavailableServersNotice, mcpUserActionCommand, mcpUserActionNotice, parseScheduleSpec, planDoctorRepair, redactDiagnosticText, renderDoctorReport, resolveCommandOnPath, resolveEditor, resolveProviderSetupSelection, resolveShell, runDoctor, runProviderSetupPromptFlow, runProviderStartupSetup, spawnInherited, submitProviderSetupValue, validateProviderSetupValue };
|
|
946
1038
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/node/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../../src/agent/agent-command-module.ts","../../src/agent/agent-command.ts","../../src/devices/devices-command-port.ts","../../src/devices/devices-command-module.ts","../../src/doctor/doctor-types.ts","../../src/doctor/doctor-render.ts","../../src/doctor/doctor-command-module.ts","../../src/doctor/doctor-node-deps.ts","../../src/doctor/doctor-redaction.ts","../../src/doctor/doctor-repair.ts","../../src/doctor/doctor-runner.ts","../../src/keybindings/keybindings-command-module.ts","../../src/default/default-command-modules.ts","../../src/background/background-command-module.ts","../../src/background/background-command.ts","../../src/goal/goal-command-module.ts","../../src/goal/goal-command.ts","../../src/handoff/handoff-command.ts","../../src/handoff/handoff-command-module.ts","../../src/plan/plan-command-module.ts","../../src/compact/compact-command-module.ts","../../src/compact/compact-command.ts","../../src/context/context-command-module.ts","../../src/context/context-command.ts","../../src/editor/resolve-editor.ts","../../src/editor/editor-command.ts","../../src/editor/editor-command-module.ts","../../src/git/git-process.ts","../../src/git/git-command-module.ts","../../src/effort/effort-command-module.ts","../../src/effort/effort-command.ts","../../src/advisor/advisor-command-module.ts","../../src/advisor/advisor-command.ts","../../src/exit/exit-command-module.ts","../../src/exit/exit-command.ts","../../src/help/help-command-module.ts","../../src/help/help-command.ts","../../src/theme/theme-command-module.ts","../../src/language/language-command-module.ts","../../src/language/language-command.ts","../../src/memory/memory-command-module.ts","../../src/memory/memory-command.ts","../../src/mcp-activation/mcp-activation-command-module.ts","../../src/mcp-activation/mcp-activation-command.ts","../../src/mcp-activation/mcp-model-notice.ts","../../src/mode/mode-command-module.ts","../../src/mode/mode-command.ts","../../src/sandbox/sandbox-command-module.ts","../../src/sandbox/sandbox-command.ts","../../src/output-style/output-style-command-module.ts","../../src/permissions/permissions-command-module.ts","../../src/permissions/permissions-command.ts","../../src/plugin/plugin-command-module.ts","../../src/plugin/plugin-command.ts","../../src/preset/preset-command-module.ts","../../src/preset/preset-command.ts","../../src/shell/resolve-shell.ts","../../src/shell/spawn-inherited.ts","../../src/shell/shell-command.ts","../../src/shell/shell-command-module.ts","../../src/provider/provider-command-module.ts","../../src/provider/provider-command-execution.ts","../../src/provider/provider-setup-flow.ts","../../src/provider/provider-startup.ts","../../src/remote-control/remote-control-command-module.ts","../../src/remote-control/remote-control-command.ts","../../src/reset/reset-command-module.ts","../../src/reset/reset-command.ts","../../src/rewind/rewind-command-module.ts","../../src/rewind/rewind-command.ts","../../src/schedule/loop-command.ts","../../src/schedule/schedule-command-module.ts","../../src/schedule/schedule-command.ts","../../src/schedule/schedule-spec-parser.ts","../../src/session/session-command.ts","../../src/session/session-command-module.ts","../../src/settings/settings-command-module.ts","../../src/skills/skills-command-module.ts","../../src/skills/skills-command.ts","../../src/statusline/statusline-command-module.ts","../../src/statusline/statusline-command.ts","../../src/user-local/user-local-command-module.ts","../../src/user-local/user-local-command-constants.ts","../../src/user-local/user-local-command.ts"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../../src/agent/agent-command-module.ts","../../src/agent/agent-command.ts","../../src/devices/devices-command-port.ts","../../src/devices/devices-command-module.ts","../../src/doctor/doctor-types.ts","../../src/doctor/doctor-render.ts","../../src/doctor/doctor-command-module.ts","../../src/doctor/doctor-node-deps.ts","../../src/doctor/doctor-redaction.ts","../../src/doctor/doctor-repair.ts","../../src/doctor/doctor-runner.ts","../../src/keybindings/keybindings-command-module.ts","../../src/default/default-command-modules.ts","../../src/background/background-command-module.ts","../../src/background/background-command.ts","../../src/goal/goal-command-module.ts","../../src/goal/goal-command.ts","../../src/handoff/handoff-command.ts","../../src/handoff/handoff-command-module.ts","../../src/plan/plan-command-module.ts","../../src/compact/compact-command-module.ts","../../src/compact/compact-command.ts","../../src/context/context-command-module.ts","../../src/context/context-command.ts","../../src/editor/resolve-editor.ts","../../src/editor/editor-command.ts","../../src/editor/editor-command-module.ts","../../src/git/git-process.ts","../../src/git/git-command-module.ts","../../src/effort/effort-command-module.ts","../../src/effort/effort-command.ts","../../src/advisor/advisor-command-module.ts","../../src/advisor/advisor-command.ts","../../src/exit/exit-command-module.ts","../../src/exit/exit-command.ts","../../src/help/help-command-module.ts","../../src/help/help-command.ts","../../src/theme/theme-command-module.ts","../../src/language/language-command-module.ts","../../src/language/language-command.ts","../../src/memory/memory-command-module.ts","../../src/memory/memory-command.ts","../../src/mcp-activation/mcp-activation-command-module.ts","../../src/mcp-activation/mcp-activation-command.ts","../../src/mcp-activation/mcp-model-notice.ts","../../src/mode/mode-command-module.ts","../../src/mode/mode-command.ts","../../src/sandbox/sandbox-command-module.ts","../../src/sandbox/sandbox-command.ts","../../src/output-style/output-style-command-module.ts","../../src/permissions/permissions-command-module.ts","../../src/permissions/permissions-command.ts","../../src/plugin/plugin-command-module.ts","../../src/plugin/plugin-command.ts","../../src/preset/preset-command-module.ts","../../src/preset/preset-command.ts","../../src/shell/resolve-shell.ts","../../src/shell/spawn-inherited.ts","../../src/shell/shell-command.ts","../../src/shell/shell-command-module.ts","../../src/provider/provider-command-module.ts","../../src/provider/provider-command-execution.ts","../../src/provider/provider-setup-flow.ts","../../src/provider/provider-startup.ts","../../src/remote-control/remote-control-command-module.ts","../../src/remote-control/remote-control-command.ts","../../src/reset/reset-command-module.ts","../../src/reset/reset-command.ts","../../src/rewind/rewind-command-module.ts","../../src/rewind/rewind-command.ts","../../src/schedule/loop-command.ts","../../src/schedule/schedule-command-module.ts","../../src/schedule/schedule-command.ts","../../src/schedule/schedule-spec-parser.ts","../../src/session/session-command.ts","../../src/session/session-command-module.ts","../../src/settings/settings-command-module.ts","../../src/skills/skills-command-module.ts","../../src/skills/skills-command.ts","../../src/statusline/statusline-command-module.ts","../../src/statusline/statusline-command.ts","../../src/terminal-client/terminal-client-commands.ts","../../src/user-local/user-local-command-module.ts","../../src/user-local/user-local-command-constants.ts","../../src/user-local/user-local-command.ts"],"mappings":"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"}
|