@robota-sdk/agent-framework 3.0.0-beta.73 → 3.0.0-beta.74
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/dist/node/index.cjs +37 -37
- package/dist/node/index.d.ts +131 -702
- package/dist/node/index.d.ts.map +1 -1
- package/dist/node/index.js +41 -41
- package/dist/node/index.js.map +1 -1
- package/package.json +11 -11
package/dist/node/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { IActionRequest, IActionResponse, IBackgroundJobGroupCreateRequest, IBackgroundJobGroupCreateRequest as IBackgroundJobGroupCreateRequest$1, IBackgroundJobGroupState, IBackgroundJobGroupState as IBackgroundJobGroupState$1, IBackgroundJobGroupSummary, IBackgroundJobGroupSummary as IBackgroundJobGroupSummary$1, IBackgroundJobResultEnvelope, ICapabilityDescriptor, ICommand, ICommandAvailablePlugin, ICommandChoicePromptOption, ICommandInfo, ICommandInstalledPlugin, ICommandInteraction, ICommandInteractionHint, ICommandListEntry, ICommandMarketplaceSource, ICommandPluginAdapter, ICommandPluginAdapter as ICommandPluginAdapter$1, ICommandPluginReloadResult, ICommandResult, ICommandSource, IConfigurableTransport, IContextFileRefreshedEvent, IContextReferenceItem, ICreateExecutionWorkspaceSnapshotInput, ICreateLineDetailPageInput, ICreateMainThreadDetailPageInput, ICreateMainThreadEntryInput, IDiffLine, IExecutionDetailCursor, IExecutionDetailPage, IExecutionDetailRecord, IExecutionOrigin, IExecutionOrigin as IExecutionOrigin$1, IExecutionResult, IExecutionWorkspaceEntry, IExecutionWorkspaceEntryRef, IExecutionWorkspaceEntryRef as IExecutionWorkspaceEntryRef$1, IExecutionWorkspaceEvent, IExecutionWorkspaceFilter, IExecutionWorkspaceSnapshot, IExecutionWorkspaceSnapshotOptions, IInteractionChannel, IInteractiveSession, IInteractiveSessionEvents, IInteractiveSessionRecord, IInteractiveSessionStore, IMemoryEvent, IMemoryReference, IPermissionRequest, IPickItem, IPromptFileReferenceRecord, IResumableSessionSummary, ISkillActivationEvent, IStatusLineCommandSettings, IToolState, IToolSummary, ITransportAdapter, ITransportAdapter as ITransportAdapter$1, ITransportConfig, ITransportRegistryView, IUsageSnapshot, InteractionEvent, TBackgroundJobGroupEvent, TBackgroundJobGroupEventListener, TBackgroundJobGroupEventListener as TBackgroundJobGroupEventListener$1, TBackgroundJobGroupIdFactory, TBackgroundJobGroupIdFactory as TBackgroundJobGroupIdFactory$1, TBackgroundJobGroupStatus, TBackgroundJobWaitPolicy, TCapabilityKind, TCapabilitySafety, TCommandEffect, TCommandInteractionPrompt, TCommandResultDataValue, TContextReferenceLoadType, TContextReferenceStatus, TExecutionAttention, TExecutionControl, TExecutionDetailRecordKind, TExecutionEntryKind, TExecutionOriginKind, TExecutionWorkspaceStatus, TExecutionWorkspaceUpdateCause, TExecutionWorkspaceVisibility, TInteractiveEventName, TInteractivePermissionHandler, TMemoryType, TPermissionResultValue, TPluginInstallScope, TPromptFileReferenceReason, TSkillActivationInvocation, TSkillActivationMode, TSkillActivationSource, TSkillActivationStatus, TStatusLineCommandSettingsPatch } from "@robota-sdk/agent-interface-transport";
|
|
2
|
+
import { IAIProvider, IContextWindowState, IFileSystem, IFileSystemAsync, IHistoryEntry, IHookInput, IHookResult, IHookTypeExecutor, IProviderConfig, IProviderDefinition, IProviderProbeResult, IProviderProfileConfig, ISession, ITerminalOutput, ITerminalOutput as ITerminalOutput$2, IToolWithEventService, THookDefinition, THooksConfig, TPermissionMode, TSessionEndReason, TToolArgs, TUniversalMessage, TUniversalValue, formatEnvReference, hasUsableSecretReference, isEnvReference, resolveEnvReference } from "@robota-sdk/agent-core";
|
|
3
|
+
import { IAgentBackgroundTaskRequest, IBackgroundTaskError, IBackgroundTaskHandle, IBackgroundTaskInput, IBackgroundTaskListFilter, IBackgroundTaskLogCursor, IBackgroundTaskLogPage, IBackgroundTaskManager, IBackgroundTaskManager as IBackgroundTaskManager$1, IBackgroundTaskManagerOptions, IBackgroundTaskResult, IBackgroundTaskRunner, IBackgroundTaskRunner as IBackgroundTaskRunner$1, IBackgroundTaskStart, IBackgroundTaskState, IBackgroundTaskState as IBackgroundTaskState$1, IBaseBackgroundTaskRequest, ICreateLimitedOutputCaptureOptions, ILimitedOutputCapture, IPreparedSubagentWorktree, IProcessBackgroundTaskRequest, ISerializableProviderProfile, ISubagentJobHandle, ISubagentJobResult, ISubagentJobStart, ISubagentJobState, ISubagentManager, ISubagentManagerOptions, ISubagentRunner, ISubagentRunner as ISubagentRunner$1, ISubagentSpawnRequest, ISubagentWorktreeAdapter, ISubagentWorktreePrepareRequest, IWorktreeSubagentRunnerOptions, TBackgroundPermissionPolicy, TBackgroundPermissionPolicy as TBackgroundPermissionPolicy$1, TBackgroundPrimitive, TBackgroundPrimitive as TBackgroundPrimitive$1, TBackgroundTaskErrorCategory, TBackgroundTaskEvent, TBackgroundTaskEventListener, TBackgroundTaskIdFactory, TBackgroundTaskIsolation, TBackgroundTaskIsolation as TBackgroundTaskIsolation$1, TBackgroundTaskKind, TBackgroundTaskMode, TBackgroundTaskMode as TBackgroundTaskMode$1, TBackgroundTaskRequest, TBackgroundTaskRunnerEvent, TBackgroundTaskStatus, TBackgroundTaskTimeoutReason, TBackgroundTaskTransitionEvent, TSubagentJobMode, TSubagentJobStatus } from "@robota-sdk/agent-executor";
|
|
3
4
|
import { FileSessionLogger, ICompactEvent, ISessionLogger, ISessionReplayValidationResult, ITerminalOutput as ITerminalOutput$1, Session, TPermissionHandler, TPermissionResult } from "@robota-sdk/agent-session";
|
|
4
5
|
import { ISandboxClient, IWorkspaceManifest, createZodFunctionTool } from "@robota-sdk/agent-tools";
|
|
5
|
-
import { IConfigurableTransport, ITransportAdapter, ITransportAdapter as ITransportAdapter$1, ITransportConfig, ITransportRegistryView } from "@robota-sdk/agent-interface-transport";
|
|
6
6
|
|
|
7
7
|
//#region src/command-api/org-policy/org-policy-types.d.ts
|
|
8
8
|
interface IOrgPolicy {
|
|
@@ -21,215 +21,13 @@ declare function loadOrgPolicy(): IOrgPolicy | null;
|
|
|
21
21
|
declare function formatOrgPolicyViolationMessage(reason: string, adminContact: string | undefined): string;
|
|
22
22
|
declare function isApiKeyPlaintext(apiKey: string | undefined): boolean;
|
|
23
23
|
//#endregion
|
|
24
|
-
//#region src/capabilities/types.d.ts
|
|
25
|
-
type TCapabilityKind = 'builtin-command' | 'skill' | 'agent' | 'tool';
|
|
26
|
-
type TCapabilitySafety = 'read-only' | 'write' | 'process' | 'network' | 'background-agent';
|
|
27
|
-
interface ICapabilityDescriptor {
|
|
28
|
-
readonly name: string;
|
|
29
|
-
readonly kind: TCapabilityKind;
|
|
30
|
-
readonly description: string;
|
|
31
|
-
readonly userInvocable: boolean;
|
|
32
|
-
readonly modelInvocable: boolean;
|
|
33
|
-
readonly argumentHint?: string;
|
|
34
|
-
readonly safety?: TCapabilitySafety;
|
|
35
|
-
/** When false, the projected tool is auto-approved without prompting the user. */
|
|
36
|
-
readonly requiresPermission?: boolean;
|
|
37
|
-
}
|
|
38
|
-
//#endregion
|
|
39
|
-
//#region src/command-api/types.d.ts
|
|
40
|
-
/** A command entry */
|
|
41
|
-
interface ICommand {
|
|
42
|
-
/** Command name without slash (e.g., "mode") — used for invocation */
|
|
43
|
-
name: string;
|
|
44
|
-
/** User-friendly display label (e.g., "Interaction Mode"). Falls back to `name` if not set. */
|
|
45
|
-
displayName?: string;
|
|
46
|
-
/** Short description shown in autocomplete */
|
|
47
|
-
description: string;
|
|
48
|
-
/** Optional usage example shown in /help output (e.g., "/compact Summarize the context"). */
|
|
49
|
-
example?: string;
|
|
50
|
-
/** Source identifier (e.g., "builtin", "skill") */
|
|
51
|
-
source: string;
|
|
52
|
-
/** Subcommands for hierarchical menus */
|
|
53
|
-
subcommands?: ICommand[];
|
|
54
|
-
/** Execute the command. Args is everything after the command name. */
|
|
55
|
-
execute?: (args: string) => void | Promise<void>;
|
|
56
|
-
/** Full SKILL.md content (only for skill commands) */
|
|
57
|
-
skillContent?: string;
|
|
58
|
-
/** Hint for the expected argument (Claude Code frontmatter) */
|
|
59
|
-
argumentHint?: string;
|
|
60
|
-
/** When true, models cannot invoke this skill autonomously */
|
|
61
|
-
disableModelInvocation?: boolean;
|
|
62
|
-
/** When true, models may invoke this command through the SDK-projected command tool */
|
|
63
|
-
modelInvocable?: boolean;
|
|
64
|
-
/** When false, users cannot invoke this skill directly */
|
|
65
|
-
userInvocable?: boolean;
|
|
66
|
-
/** Safety category for model-visible capability descriptors */
|
|
67
|
-
safety?: TCapabilitySafety;
|
|
68
|
-
/** List of tools this skill is allowed to use */
|
|
69
|
-
allowedTools?: string[];
|
|
70
|
-
/** Preferred model for executing this skill */
|
|
71
|
-
model?: string;
|
|
72
|
-
/** Effort level hint for the skill */
|
|
73
|
-
effort?: string;
|
|
74
|
-
/** Context scope for the skill (e.g., "project") */
|
|
75
|
-
context?: string;
|
|
76
|
-
/** Agent identity to use when executing this skill */
|
|
77
|
-
agent?: string;
|
|
78
|
-
/** Plugin installation directory (plugin skills/commands only) */
|
|
79
|
-
pluginDir?: string;
|
|
80
|
-
}
|
|
81
|
-
/** A source that provides commands */
|
|
82
|
-
interface ICommandSource {
|
|
83
|
-
name: string;
|
|
84
|
-
getCommands(): ICommand[];
|
|
85
|
-
}
|
|
86
|
-
//#endregion
|
|
87
|
-
//#region src/config/settings-io.d.ts
|
|
88
|
-
type TSettingsData = Record<string, TUniversalValue>;
|
|
89
|
-
declare function getUserSettingsPath(): string;
|
|
90
|
-
type TSettingsScope = 'user' | 'project-local';
|
|
91
|
-
declare function resolveSettingsPathForScope(cwd: string, scope: TSettingsScope | undefined): string;
|
|
92
|
-
declare function readSettings(path: string): TSettingsData;
|
|
93
|
-
declare function writeSettings(path: string, settings: TSettingsData): void;
|
|
94
|
-
declare function updateModelInSettings(settingsPath: string, modelId: string): void;
|
|
95
|
-
declare function deleteSettings(path: string): boolean;
|
|
96
|
-
//#endregion
|
|
97
|
-
//#region src/command-api/statusline/statusline-command-api.d.ts
|
|
98
|
-
declare const STATUSLINE_COMMAND_DESCRIPTION = "Configure TUI status-line visibility and fields such as model, context, tokens, session, and git branch.";
|
|
99
|
-
declare const STATUSLINE_COMMAND_ARGUMENT_HINT = "on | off | reset | git on | git off";
|
|
100
|
-
interface IStatusLineCommandSettings {
|
|
101
|
-
enabled: boolean;
|
|
102
|
-
gitBranch: boolean;
|
|
103
|
-
}
|
|
104
|
-
type TStatusLineCommandSettingsPatch = Partial<IStatusLineCommandSettings> & Record<string, TUniversalValue>;
|
|
105
|
-
declare const DEFAULT_STATUS_LINE_COMMAND_SETTINGS: Readonly<IStatusLineCommandSettings>;
|
|
106
|
-
declare function buildStatusLineCommandSubcommands(source?: string): ICommand[];
|
|
107
|
-
declare function isStatusLineCommandSettingsPatch(value: Record<string, TUniversalValue>): value is TStatusLineCommandSettingsPatch;
|
|
108
|
-
declare function readStatusLineSettings(settings: TSettingsData): IStatusLineCommandSettings;
|
|
109
|
-
declare function applyStatusLineSettings(settingsPath: string, patch: TStatusLineCommandSettingsPatch): IStatusLineCommandSettings;
|
|
110
|
-
//#endregion
|
|
111
|
-
//#region src/command-api/effects.d.ts
|
|
112
|
-
type TCommandEffect = {
|
|
113
|
-
type: 'provider-hot-swap-requested';
|
|
114
|
-
profileName: string;
|
|
115
|
-
} | {
|
|
116
|
-
type: 'language-change-requested';
|
|
117
|
-
language: string;
|
|
118
|
-
} | {
|
|
119
|
-
type: 'settings-reset-requested';
|
|
120
|
-
} | {
|
|
121
|
-
type: 'session-exit-requested';
|
|
122
|
-
reason?: TSessionEndReason;
|
|
123
|
-
message?: string;
|
|
124
|
-
} | {
|
|
125
|
-
type: 'session-restart-requested';
|
|
126
|
-
reason: TSessionEndReason;
|
|
127
|
-
message: string;
|
|
128
|
-
} | {
|
|
129
|
-
type: 'plugin-tui-requested';
|
|
130
|
-
} | {
|
|
131
|
-
type: 'plugin-registry-reload-requested';
|
|
132
|
-
} | {
|
|
133
|
-
type: 'settings-tui-requested';
|
|
134
|
-
} | {
|
|
135
|
-
type: 'session-picker-requested';
|
|
136
|
-
} | {
|
|
137
|
-
type: 'session-renamed';
|
|
138
|
-
name: string;
|
|
139
|
-
} | {
|
|
140
|
-
type: 'conversation-history-cleared';
|
|
141
|
-
} | {
|
|
142
|
-
type: 'session-execution-started';
|
|
143
|
-
} | {
|
|
144
|
-
type: 'statusline-settings-patch';
|
|
145
|
-
patch: TStatusLineCommandSettingsPatch;
|
|
146
|
-
} | {
|
|
147
|
-
type: 'agent-switcher-requested';
|
|
148
|
-
};
|
|
149
|
-
//#endregion
|
|
150
|
-
//#region src/command-api/interactions.d.ts
|
|
151
|
-
/** Choice option for command-owned follow-up prompts. */
|
|
152
|
-
interface ICommandChoicePromptOption {
|
|
153
|
-
value: string;
|
|
154
|
-
label: string;
|
|
155
|
-
}
|
|
156
|
-
/** Generic prompt descriptor rendered by host UIs for command interactions. */
|
|
157
|
-
type TCommandInteractionPrompt = {
|
|
158
|
-
kind: 'choice';
|
|
159
|
-
title: string;
|
|
160
|
-
description?: string;
|
|
161
|
-
options: readonly ICommandChoicePromptOption[];
|
|
162
|
-
maxVisible?: number;
|
|
163
|
-
} | {
|
|
164
|
-
kind: 'text';
|
|
165
|
-
title: string;
|
|
166
|
-
description?: string;
|
|
167
|
-
placeholder?: string;
|
|
168
|
-
allowEmpty?: boolean;
|
|
169
|
-
masked?: boolean;
|
|
170
|
-
validate?: (value: string) => string | undefined;
|
|
171
|
-
};
|
|
172
|
-
/** Stateful command continuation owned by the command module. */
|
|
173
|
-
interface ICommandInteraction {
|
|
174
|
-
prompt: TCommandInteractionPrompt;
|
|
175
|
-
submit(value: string): Promise<ICommandResult> | ICommandResult;
|
|
176
|
-
cancel?(): Promise<ICommandResult> | ICommandResult;
|
|
177
|
-
}
|
|
178
|
-
//#endregion
|
|
179
|
-
//#region src/command-api/command-result.d.ts
|
|
180
|
-
type TCommandResultDataValue = TUniversalValue | Record<string, unknown> | readonly Record<string, unknown>[];
|
|
181
|
-
/** Result of a system command execution. */
|
|
182
|
-
interface ICommandResult {
|
|
183
|
-
/** Human-readable output message */
|
|
184
|
-
message: string;
|
|
185
|
-
/** Command completed successfully */
|
|
186
|
-
success: boolean;
|
|
187
|
-
/** Additional structured data (command-specific diagnostics only) */
|
|
188
|
-
data?: Record<string, unknown>;
|
|
189
|
-
/** Typed host effects requested by the command */
|
|
190
|
-
effects?: readonly TCommandEffect[];
|
|
191
|
-
/** Command-owned follow-up prompt and continuation */
|
|
192
|
-
interaction?: ICommandInteraction;
|
|
193
|
-
}
|
|
194
|
-
//#endregion
|
|
195
24
|
//#region src/command-api/plugin/plugin-command-api.d.ts
|
|
196
25
|
declare const PLUGIN_COMMAND_DESCRIPTION = "Manage plugins";
|
|
197
26
|
declare const PLUGIN_COMMAND_ARGUMENT_HINT = "manage | install <name@marketplace> | uninstall <name@marketplace> | enable <name@marketplace> | disable <name@marketplace> | marketplace <action>";
|
|
198
27
|
declare const RELOAD_PLUGINS_COMMAND_DESCRIPTION = "Reload all plugin resources";
|
|
199
|
-
type TPluginInstallScope = 'user' | 'project';
|
|
200
|
-
interface ICommandInstalledPlugin {
|
|
201
|
-
name: string;
|
|
202
|
-
description: string;
|
|
203
|
-
enabled: boolean;
|
|
204
|
-
}
|
|
205
|
-
interface ICommandAvailablePlugin {
|
|
206
|
-
name: string;
|
|
207
|
-
description: string;
|
|
208
|
-
installed: boolean;
|
|
209
|
-
}
|
|
210
|
-
interface ICommandMarketplaceSource {
|
|
211
|
-
name: string;
|
|
212
|
-
type: string;
|
|
213
|
-
}
|
|
214
|
-
interface ICommandPluginReloadResult {
|
|
215
|
-
loadedPluginCount: number;
|
|
216
|
-
}
|
|
217
|
-
interface ICommandPluginAdapter {
|
|
218
|
-
listInstalled(): Promise<readonly ICommandInstalledPlugin[]>;
|
|
219
|
-
listAvailablePlugins(marketplace: string): Promise<readonly ICommandAvailablePlugin[]>;
|
|
220
|
-
install(pluginId: string, scope?: TPluginInstallScope): Promise<void>;
|
|
221
|
-
uninstall(pluginId: string): Promise<void>;
|
|
222
|
-
enable(pluginId: string): Promise<void>;
|
|
223
|
-
disable(pluginId: string): Promise<void>;
|
|
224
|
-
marketplaceAdd(source: string): Promise<string>;
|
|
225
|
-
marketplaceRemove(name: string): Promise<void>;
|
|
226
|
-
marketplaceUpdate(name: string): Promise<void>;
|
|
227
|
-
marketplaceList(): Promise<readonly ICommandMarketplaceSource[]>;
|
|
228
|
-
reloadPlugins(): Promise<ICommandPluginReloadResult>;
|
|
229
|
-
}
|
|
230
28
|
declare function createPluginTuiRequestedEffect(): TCommandEffect;
|
|
231
29
|
declare function createPluginRegistryReloadRequestedEffect(): TCommandEffect;
|
|
232
|
-
declare function resolvePluginCommandAdapter(context: ICommandHostContext): ICommandPluginAdapter | undefined;
|
|
30
|
+
declare function resolvePluginCommandAdapter(context: ICommandHostContext): ICommandPluginAdapter$1 | undefined;
|
|
233
31
|
declare function buildPluginCommandSubcommands(): ICommand[];
|
|
234
32
|
//#endregion
|
|
235
33
|
//#region src/command-api/host-adapters.d.ts
|
|
@@ -260,63 +58,11 @@ interface ICommandHostAdapters {
|
|
|
260
58
|
}
|
|
261
59
|
//#endregion
|
|
262
60
|
//#region src/background-tasks/background-job-orchestrator.d.ts
|
|
263
|
-
type TBackgroundJobWaitPolicy = 'detached' | 'wait_all' | 'wait_any' | 'manual';
|
|
264
|
-
type TBackgroundJobGroupStatus = 'running' | 'completed';
|
|
265
|
-
interface IBackgroundJobResultEnvelope {
|
|
266
|
-
taskId: string;
|
|
267
|
-
label: string;
|
|
268
|
-
status: TBackgroundTaskStatus$1;
|
|
269
|
-
summary?: string;
|
|
270
|
-
outputRef?: string;
|
|
271
|
-
error?: IBackgroundTaskError$1;
|
|
272
|
-
startedAt?: string;
|
|
273
|
-
completedAt?: string;
|
|
274
|
-
}
|
|
275
|
-
interface IBackgroundJobGroupState {
|
|
276
|
-
id: string;
|
|
277
|
-
parentSessionId: string;
|
|
278
|
-
waitPolicy: TBackgroundJobWaitPolicy;
|
|
279
|
-
taskIds: string[];
|
|
280
|
-
status: TBackgroundJobGroupStatus;
|
|
281
|
-
createdAt: string;
|
|
282
|
-
updatedAt: string;
|
|
283
|
-
label?: string;
|
|
284
|
-
completedAt?: string;
|
|
285
|
-
results: IBackgroundJobResultEnvelope[];
|
|
286
|
-
}
|
|
287
|
-
interface IBackgroundJobGroupSummary {
|
|
288
|
-
groupId: string;
|
|
289
|
-
status: TBackgroundJobGroupStatus;
|
|
290
|
-
total: number;
|
|
291
|
-
completed: number;
|
|
292
|
-
failed: number;
|
|
293
|
-
cancelled: number;
|
|
294
|
-
pending: number;
|
|
295
|
-
lines: string[];
|
|
296
|
-
}
|
|
297
|
-
interface IBackgroundJobGroupCreateRequest {
|
|
298
|
-
parentSessionId: string;
|
|
299
|
-
waitPolicy: TBackgroundJobWaitPolicy;
|
|
300
|
-
taskIds: string[];
|
|
301
|
-
label?: string;
|
|
302
|
-
}
|
|
303
|
-
type TBackgroundJobGroupEvent = {
|
|
304
|
-
type: 'background_job_group_created';
|
|
305
|
-
group: IBackgroundJobGroupState;
|
|
306
|
-
} | {
|
|
307
|
-
type: 'background_job_group_updated';
|
|
308
|
-
group: IBackgroundJobGroupState;
|
|
309
|
-
} | {
|
|
310
|
-
type: 'background_job_group_completed';
|
|
311
|
-
group: IBackgroundJobGroupState;
|
|
312
|
-
};
|
|
313
|
-
type TBackgroundJobGroupEventListener = (event: TBackgroundJobGroupEvent) => void;
|
|
314
|
-
type TBackgroundJobGroupIdFactory = (request: IBackgroundJobGroupCreateRequest) => string;
|
|
315
61
|
interface IBackgroundJobOrchestratorOptions {
|
|
316
62
|
manager: IBackgroundTaskManager$1;
|
|
317
63
|
now?: () => string;
|
|
318
|
-
idFactory?: TBackgroundJobGroupIdFactory;
|
|
319
|
-
initialGroups?: readonly IBackgroundJobGroupState[];
|
|
64
|
+
idFactory?: TBackgroundJobGroupIdFactory$1;
|
|
65
|
+
initialGroups?: readonly IBackgroundJobGroupState$1[];
|
|
320
66
|
}
|
|
321
67
|
declare class BackgroundJobOrchestrator {
|
|
322
68
|
private readonly manager;
|
|
@@ -327,11 +73,11 @@ declare class BackgroundJobOrchestrator {
|
|
|
327
73
|
private readonly groups;
|
|
328
74
|
private sequence;
|
|
329
75
|
constructor(options: IBackgroundJobOrchestratorOptions);
|
|
330
|
-
createGroup(request: IBackgroundJobGroupCreateRequest): IBackgroundJobGroupState;
|
|
331
|
-
listGroups(): IBackgroundJobGroupState[];
|
|
332
|
-
getGroup(groupId: string): IBackgroundJobGroupState | undefined;
|
|
333
|
-
waitGroup(groupId: string): Promise<IBackgroundJobGroupState>;
|
|
334
|
-
subscribe(listener: TBackgroundJobGroupEventListener): () => void;
|
|
76
|
+
createGroup(request: IBackgroundJobGroupCreateRequest$1): IBackgroundJobGroupState$1;
|
|
77
|
+
listGroups(): IBackgroundJobGroupState$1[];
|
|
78
|
+
getGroup(groupId: string): IBackgroundJobGroupState$1 | undefined;
|
|
79
|
+
waitGroup(groupId: string): Promise<IBackgroundJobGroupState$1>;
|
|
80
|
+
subscribe(listener: TBackgroundJobGroupEventListener$1): () => void;
|
|
335
81
|
dispose(): void;
|
|
336
82
|
private nextGroupId;
|
|
337
83
|
private restoreGroup;
|
|
@@ -342,7 +88,7 @@ declare class BackgroundJobOrchestrator {
|
|
|
342
88
|
private evaluateCompletion;
|
|
343
89
|
private emit;
|
|
344
90
|
}
|
|
345
|
-
declare function summarizeBackgroundJobGroup(group: IBackgroundJobGroupState): IBackgroundJobGroupSummary;
|
|
91
|
+
declare function summarizeBackgroundJobGroup(group: IBackgroundJobGroupState$1): IBackgroundJobGroupSummary$1;
|
|
346
92
|
//#endregion
|
|
347
93
|
//#region src/background-tasks/execution-workspace-types.d.ts
|
|
348
94
|
declare const EXECUTION_ORIGIN_METADATA_KEYS: {
|
|
@@ -354,116 +100,11 @@ declare const EXECUTION_ORIGIN_METADATA_KEYS: {
|
|
|
354
100
|
readonly skillId: "executionOriginSkillId";
|
|
355
101
|
readonly label: "executionOriginLabel";
|
|
356
102
|
};
|
|
357
|
-
type TExecutionEntryKind = 'main_thread' | 'background_task' | 'background_group';
|
|
358
|
-
type TExecutionWorkspaceStatus = 'active' | 'idle' | TBackgroundTaskStatus$1;
|
|
359
|
-
type TExecutionAttention = 'none' | 'unread' | 'failed' | 'permission' | 'completed';
|
|
360
|
-
type TExecutionWorkspaceVisibility = 'default' | 'collapsed';
|
|
361
|
-
type TExecutionControl = 'select' | 'cancel' | 'close' | 'send' | 'read_log' | 'wait';
|
|
362
|
-
type TExecutionOriginKind = 'user_prompt' | 'slash_command' | 'model_command' | 'tool_call' | 'skill' | 'transport' | 'system';
|
|
363
|
-
type TExecutionDetailRecordKind = 'message' | 'tool_activity' | 'process_output' | 'progress' | 'result' | 'error' | 'group_summary';
|
|
364
|
-
type TExecutionWorkspaceUpdateCause = 'main_thread' | 'background_task' | 'background_group';
|
|
365
|
-
interface IExecutionOrigin {
|
|
366
|
-
readonly kind: TExecutionOriginKind;
|
|
367
|
-
readonly sessionId: string;
|
|
368
|
-
readonly turnId?: string;
|
|
369
|
-
readonly commandName?: string;
|
|
370
|
-
readonly toolCallId?: string;
|
|
371
|
-
readonly skillId?: string;
|
|
372
|
-
readonly label?: string;
|
|
373
|
-
}
|
|
374
|
-
interface IExecutionWorkspaceEntry {
|
|
375
|
-
readonly id: string;
|
|
376
|
-
readonly sourceId: string;
|
|
377
|
-
readonly kind: TExecutionEntryKind;
|
|
378
|
-
readonly parentId?: string;
|
|
379
|
-
readonly groupId?: string;
|
|
380
|
-
readonly origin: IExecutionOrigin;
|
|
381
|
-
readonly taskKind?: TBackgroundTaskKind$1;
|
|
382
|
-
readonly status: TExecutionWorkspaceStatus;
|
|
383
|
-
readonly title: string;
|
|
384
|
-
readonly subtitle?: string;
|
|
385
|
-
readonly preview?: string;
|
|
386
|
-
readonly currentAction?: string;
|
|
387
|
-
readonly unread: boolean;
|
|
388
|
-
readonly attention: TExecutionAttention;
|
|
389
|
-
readonly visibility: TExecutionWorkspaceVisibility;
|
|
390
|
-
readonly updatedAt: string;
|
|
391
|
-
readonly controls: readonly TExecutionControl[];
|
|
392
|
-
}
|
|
393
|
-
interface IExecutionWorkspaceFilter {
|
|
394
|
-
readonly includeMainThread?: boolean;
|
|
395
|
-
readonly kinds?: readonly TExecutionEntryKind[];
|
|
396
|
-
readonly visibility?: readonly TExecutionWorkspaceVisibility[];
|
|
397
|
-
}
|
|
398
|
-
interface IExecutionWorkspaceSnapshot {
|
|
399
|
-
readonly sessionId: string;
|
|
400
|
-
readonly selectedEntryId?: string;
|
|
401
|
-
readonly updatedAt: string;
|
|
402
|
-
readonly entries: readonly IExecutionWorkspaceEntry[];
|
|
403
|
-
}
|
|
404
|
-
interface IExecutionWorkspaceSnapshotOptions {
|
|
405
|
-
readonly selectedEntryId?: string;
|
|
406
|
-
readonly filter?: IExecutionWorkspaceFilter;
|
|
407
|
-
}
|
|
408
|
-
interface IExecutionWorkspaceEvent {
|
|
409
|
-
readonly type: 'execution_workspace_updated';
|
|
410
|
-
readonly cause: TExecutionWorkspaceUpdateCause;
|
|
411
|
-
readonly entryId?: string;
|
|
412
|
-
readonly snapshot: IExecutionWorkspaceSnapshot;
|
|
413
|
-
}
|
|
414
|
-
interface IExecutionDetailCursor {
|
|
415
|
-
readonly offset: number;
|
|
416
|
-
}
|
|
417
|
-
interface IExecutionDetailRecord {
|
|
418
|
-
readonly id: string;
|
|
419
|
-
readonly kind: TExecutionDetailRecordKind;
|
|
420
|
-
readonly text: string;
|
|
421
|
-
readonly timestamp?: string;
|
|
422
|
-
readonly sourceId?: string;
|
|
423
|
-
}
|
|
424
|
-
interface IExecutionDetailPage {
|
|
425
|
-
readonly entryId: string;
|
|
426
|
-
readonly cursor?: IExecutionDetailCursor;
|
|
427
|
-
readonly nextCursor?: IExecutionDetailCursor;
|
|
428
|
-
readonly records: readonly IExecutionDetailRecord[];
|
|
429
|
-
}
|
|
430
|
-
interface ICreateMainThreadEntryInput {
|
|
431
|
-
readonly sessionId: string;
|
|
432
|
-
readonly isExecuting: boolean;
|
|
433
|
-
readonly hasPendingPrompt: boolean;
|
|
434
|
-
readonly historyLength: number;
|
|
435
|
-
readonly updatedAt: string;
|
|
436
|
-
readonly preview?: string;
|
|
437
|
-
}
|
|
438
|
-
interface ICreateExecutionWorkspaceSnapshotInput {
|
|
439
|
-
readonly sessionId: string;
|
|
440
|
-
readonly mainThread: ICreateMainThreadEntryInput;
|
|
441
|
-
readonly tasks: readonly IBackgroundTaskState$1[];
|
|
442
|
-
readonly groups: readonly IBackgroundJobGroupState[];
|
|
443
|
-
readonly selectedEntryId?: string;
|
|
444
|
-
readonly filter?: IExecutionWorkspaceFilter;
|
|
445
|
-
}
|
|
446
|
-
interface IExecutionWorkspaceEntryRef {
|
|
447
|
-
readonly kind: TExecutionEntryKind;
|
|
448
|
-
readonly sourceId: string;
|
|
449
|
-
}
|
|
450
|
-
interface ICreateMainThreadDetailPageInput {
|
|
451
|
-
readonly entryId: string;
|
|
452
|
-
readonly history: readonly IHistoryEntry[];
|
|
453
|
-
readonly cursor?: IExecutionDetailCursor;
|
|
454
|
-
}
|
|
455
|
-
interface ICreateLineDetailPageInput {
|
|
456
|
-
readonly entryId: string;
|
|
457
|
-
readonly lines: readonly string[];
|
|
458
|
-
readonly cursor?: IBackgroundTaskLogCursor$1;
|
|
459
|
-
readonly nextCursor?: IBackgroundTaskLogCursor$1;
|
|
460
|
-
readonly kind?: TExecutionDetailRecordKind;
|
|
461
|
-
}
|
|
462
103
|
declare function createMainThreadExecutionEntryId(sessionId: string): string;
|
|
463
104
|
declare function createBackgroundTaskExecutionEntryId(taskId: string): string;
|
|
464
105
|
declare function createBackgroundGroupExecutionEntryId(groupId: string): string;
|
|
465
|
-
declare function parseExecutionWorkspaceEntryId(entryId: string): IExecutionWorkspaceEntryRef | undefined;
|
|
466
|
-
declare function createExecutionOriginMetadata(origin: IExecutionOrigin): Record<string, TBackgroundPrimitive$1>;
|
|
106
|
+
declare function parseExecutionWorkspaceEntryId(entryId: string): IExecutionWorkspaceEntryRef$1 | undefined;
|
|
107
|
+
declare function createExecutionOriginMetadata(origin: IExecutionOrigin$1): Record<string, TBackgroundPrimitive$1>;
|
|
467
108
|
//#endregion
|
|
468
109
|
//#region src/background-tasks/execution-workspace-projection.d.ts
|
|
469
110
|
declare function createExecutionWorkspaceSnapshot(input: ICreateExecutionWorkspaceSnapshotInput): IExecutionWorkspaceSnapshot;
|
|
@@ -612,21 +253,12 @@ declare class EditCheckpointStore {
|
|
|
612
253
|
declare function wrapEditCheckpointTools(tools: readonly IToolWithEventService[], recorder: IEditCheckpointRecorder): IToolWithEventService[];
|
|
613
254
|
//#endregion
|
|
614
255
|
//#region src/context/prompt-file-reference-types.d.ts
|
|
615
|
-
type TPromptFileReferenceReason = 'manual' | 'prompt-reference';
|
|
616
256
|
type TPromptFileReferenceDiagnosticCode = 'not-found' | 'outside-root' | 'directory-not-supported' | 'file-too-large' | 'total-too-large' | 'too-many-references' | 'max-depth' | 'circular-reference' | 'unreadable';
|
|
617
257
|
interface IPromptFileReferenceToken {
|
|
618
258
|
original: string;
|
|
619
259
|
path: string;
|
|
620
260
|
index: number;
|
|
621
261
|
}
|
|
622
|
-
interface IPromptFileReferenceRecord {
|
|
623
|
-
originalReference: string;
|
|
624
|
-
sourcePath: string;
|
|
625
|
-
relativePath: string;
|
|
626
|
-
reason: TPromptFileReferenceReason;
|
|
627
|
-
depth: number;
|
|
628
|
-
byteLength: number;
|
|
629
|
-
}
|
|
630
262
|
interface IResolvedPromptFileReference extends IPromptFileReferenceRecord {
|
|
631
263
|
content: string;
|
|
632
264
|
}
|
|
@@ -659,19 +291,6 @@ interface IPromptFileReferenceHistoryData {
|
|
|
659
291
|
}
|
|
660
292
|
//#endregion
|
|
661
293
|
//#region src/context/context-reference-inventory.d.ts
|
|
662
|
-
type TContextReferenceLoadType = 'manual' | 'prompt-reference' | 'system';
|
|
663
|
-
type TContextReferenceStatus = 'active' | 'observed';
|
|
664
|
-
interface IContextReferenceItem {
|
|
665
|
-
id: string;
|
|
666
|
-
sourcePath: string;
|
|
667
|
-
relativePath: string;
|
|
668
|
-
originalReference: string;
|
|
669
|
-
loadType: TContextReferenceLoadType;
|
|
670
|
-
status: TContextReferenceStatus;
|
|
671
|
-
byteLength: number;
|
|
672
|
-
loadedAt: string;
|
|
673
|
-
lastUsedAt?: string;
|
|
674
|
-
}
|
|
675
294
|
interface IContextReferenceInventoryLimits {
|
|
676
295
|
maxActiveReferences?: number;
|
|
677
296
|
maxActiveBytes?: number;
|
|
@@ -705,7 +324,6 @@ declare function toContextReferenceRecords(references: readonly IContextReferenc
|
|
|
705
324
|
//#region src/memory/project-memory-store.d.ts
|
|
706
325
|
declare const MEMORY_INDEX_MAX_LINES = 200;
|
|
707
326
|
declare const MEMORY_INDEX_MAX_BYTES: number;
|
|
708
|
-
type TMemoryType = 'user' | 'feedback' | 'project' | 'reference';
|
|
709
327
|
interface IStartupMemory {
|
|
710
328
|
content: string;
|
|
711
329
|
path: string;
|
|
@@ -762,20 +380,6 @@ interface IMemoryPendingRecord extends IMemoryCandidate {
|
|
|
762
380
|
updatedAt: string;
|
|
763
381
|
decisionReason?: string;
|
|
764
382
|
}
|
|
765
|
-
interface IMemoryReference {
|
|
766
|
-
topic: string;
|
|
767
|
-
path: string;
|
|
768
|
-
score: number;
|
|
769
|
-
truncated: boolean;
|
|
770
|
-
}
|
|
771
|
-
interface IMemoryEvent {
|
|
772
|
-
type: 'memory_candidate_extracted' | 'memory_candidate_queued' | 'memory_candidate_saved' | 'memory_candidate_skipped' | 'memory_candidate_approved' | 'memory_candidate_rejected' | 'memory_retrieved';
|
|
773
|
-
at: string;
|
|
774
|
-
candidateId?: string;
|
|
775
|
-
topic?: string;
|
|
776
|
-
reason?: string;
|
|
777
|
-
data?: Record<string, TUniversalValue>;
|
|
778
|
-
}
|
|
779
383
|
//#endregion
|
|
780
384
|
//#region src/agents/agent-definition-types.d.ts
|
|
781
385
|
/**
|
|
@@ -985,14 +589,6 @@ declare function removeCommandContextReference(context: ICommandHostContext, pat
|
|
|
985
589
|
declare function clearCommandContextReferences(context: ICommandHostContext): IContextReferenceClearResult;
|
|
986
590
|
//#endregion
|
|
987
591
|
//#region src/command-api/host-context.d.ts
|
|
988
|
-
interface ICommandListEntry {
|
|
989
|
-
name: string;
|
|
990
|
-
/** User-friendly display label. Falls back to `name` if not set. */
|
|
991
|
-
displayName?: string;
|
|
992
|
-
description: string;
|
|
993
|
-
/** Optional usage example shown in /help output (e.g., "/compact Summarize the context"). */
|
|
994
|
-
example?: string;
|
|
995
|
-
}
|
|
996
592
|
interface ICommandSkillListEntry {
|
|
997
593
|
readonly name: string;
|
|
998
594
|
readonly description: string;
|
|
@@ -1084,6 +680,26 @@ interface IAgentJobHostContext {
|
|
|
1084
680
|
closeAgentJob(jobId: string): Promise<void>;
|
|
1085
681
|
createBackgroundJobGroup(input: Omit<IBackgroundJobGroupCreateRequest, 'parentSessionId'>): IBackgroundJobGroupState;
|
|
1086
682
|
waitBackgroundJobGroup(groupId: string): Promise<IBackgroundJobGroupState>;
|
|
683
|
+
/**
|
|
684
|
+
* FLOW-005: schedule a recurring/one-shot agent wake. On each cron fire the agent loop
|
|
685
|
+
* re-enters with `agentInstruction` (FLOW-001/002). `cronExpression` may be a standard cron
|
|
686
|
+
* string or an ISO timestamp (one-shot).
|
|
687
|
+
*/
|
|
688
|
+
spawnScheduledWake(input: {
|
|
689
|
+
label: string;
|
|
690
|
+
cronExpression: string;
|
|
691
|
+
agentInstruction: string;
|
|
692
|
+
}): Promise<IBackgroundTaskState>;
|
|
693
|
+
/**
|
|
694
|
+
* FLOW-005: monitor a process's output and wake the agent with `agentInstruction` when a
|
|
695
|
+
* line matches `matchPattern` (FLOW-004).
|
|
696
|
+
*/
|
|
697
|
+
spawnMonitorWake(input: {
|
|
698
|
+
label: string;
|
|
699
|
+
command: string;
|
|
700
|
+
matchPattern: string;
|
|
701
|
+
agentInstruction: string;
|
|
702
|
+
}): Promise<IBackgroundTaskState>;
|
|
1087
703
|
readBackgroundTaskLog(taskId: string, cursor?: IBackgroundTaskLogCursor): Promise<IBackgroundTaskLogPage>;
|
|
1088
704
|
}
|
|
1089
705
|
//#endregion
|
|
@@ -1113,89 +729,6 @@ interface ISystemCommand {
|
|
|
1113
729
|
execute(context: ICommandHostContext, args: string): Promise<ICommandResult> | ICommandResult;
|
|
1114
730
|
}
|
|
1115
731
|
//#endregion
|
|
1116
|
-
//#region src/interaction/types.d.ts
|
|
1117
|
-
/** One-way display events pushed by the framework to the channel. */
|
|
1118
|
-
type InteractionEvent = {
|
|
1119
|
-
type: 'user-message';
|
|
1120
|
-
text: string;
|
|
1121
|
-
} | {
|
|
1122
|
-
type: 'assistant-chunk';
|
|
1123
|
-
chunk: string;
|
|
1124
|
-
} | {
|
|
1125
|
-
type: 'assistant-done';
|
|
1126
|
-
fullText: string;
|
|
1127
|
-
} | {
|
|
1128
|
-
type: 'tool-call';
|
|
1129
|
-
id: string;
|
|
1130
|
-
name: string;
|
|
1131
|
-
args: unknown;
|
|
1132
|
-
} | {
|
|
1133
|
-
type: 'tool-result';
|
|
1134
|
-
id: string;
|
|
1135
|
-
name: string;
|
|
1136
|
-
result: unknown;
|
|
1137
|
-
} | {
|
|
1138
|
-
type: 'permission-request';
|
|
1139
|
-
request: IPermissionRequest;
|
|
1140
|
-
} | {
|
|
1141
|
-
type: 'permission-resolved';
|
|
1142
|
-
id: string;
|
|
1143
|
-
granted: boolean;
|
|
1144
|
-
} | {
|
|
1145
|
-
type: 'command-result';
|
|
1146
|
-
name: string;
|
|
1147
|
-
output: string;
|
|
1148
|
-
} | {
|
|
1149
|
-
type: 'error';
|
|
1150
|
-
error: Error;
|
|
1151
|
-
};
|
|
1152
|
-
/** Framework-level permission request (id used to correlate with permission-resolved). */
|
|
1153
|
-
interface IPermissionRequest {
|
|
1154
|
-
id: string;
|
|
1155
|
-
toolName: string;
|
|
1156
|
-
toolArgs: unknown;
|
|
1157
|
-
}
|
|
1158
|
-
/** Request-response contract for disambiguation dialogs. */
|
|
1159
|
-
type IActionRequest = {
|
|
1160
|
-
type: 'pick';
|
|
1161
|
-
id: string;
|
|
1162
|
-
title: string;
|
|
1163
|
-
items: IPickItem[];
|
|
1164
|
-
defaultIndex?: number;
|
|
1165
|
-
} | {
|
|
1166
|
-
type: 'confirm';
|
|
1167
|
-
id: string;
|
|
1168
|
-
message: string;
|
|
1169
|
-
defaultValue?: boolean;
|
|
1170
|
-
};
|
|
1171
|
-
type IActionResponse = {
|
|
1172
|
-
type: 'pick';
|
|
1173
|
-
item: IPickItem;
|
|
1174
|
-
} | {
|
|
1175
|
-
type: 'confirm';
|
|
1176
|
-
confirmed: boolean;
|
|
1177
|
-
} | {
|
|
1178
|
-
type: 'cancelled';
|
|
1179
|
-
};
|
|
1180
|
-
interface IPickItem {
|
|
1181
|
-
label: string;
|
|
1182
|
-
value: string;
|
|
1183
|
-
description?: string;
|
|
1184
|
-
}
|
|
1185
|
-
interface ICommandInfo {
|
|
1186
|
-
name: string;
|
|
1187
|
-
description: string;
|
|
1188
|
-
subcommands?: ICommandInfo[];
|
|
1189
|
-
}
|
|
1190
|
-
/** Declared by command modules; consumed by createInteractiveRuntime to call requestAction. */
|
|
1191
|
-
type ICommandInteractionHint = {
|
|
1192
|
-
type: 'pick';
|
|
1193
|
-
getItems(): IPickItem[];
|
|
1194
|
-
} | {
|
|
1195
|
-
type: 'confirm';
|
|
1196
|
-
message: string;
|
|
1197
|
-
};
|
|
1198
|
-
//#endregion
|
|
1199
732
|
//#region src/command-api/command-module.d.ts
|
|
1200
733
|
type TCommandModuleSessionRequirement = 'agent-runtime';
|
|
1201
734
|
/** Composable command capability module. */
|
|
@@ -1248,6 +781,8 @@ interface IProviderSetupPatch {
|
|
|
1248
781
|
}
|
|
1249
782
|
interface IProviderSettingsBuildOptions {
|
|
1250
783
|
providerDefinitions?: readonly IProviderDefinition[];
|
|
784
|
+
/** Environment map for configure-time checks (test seam, default: process.env). */
|
|
785
|
+
env?: Record<string, string | undefined>;
|
|
1251
786
|
}
|
|
1252
787
|
declare function upsertProviderProfile(settings: TProviderSettingsDocument, profileName: string, profile: IProviderProfileSettings): TProviderSettingsDocument;
|
|
1253
788
|
declare function setCurrentProvider(settings: TProviderSettingsDocument, profileName: string): TProviderSettingsDocument;
|
|
@@ -1321,8 +856,24 @@ declare function resolveActiveProvider(settings: TProviderSettingsDocument, prov
|
|
|
1321
856
|
interface IReadProviderSettingsOptions {
|
|
1322
857
|
providerOverride?: string;
|
|
1323
858
|
providerDefinitions?: readonly IProviderDefinition[];
|
|
859
|
+
/** Environment map for env-default synthesis (test seam, default: process.env). */
|
|
860
|
+
env?: Record<string, string | undefined>;
|
|
861
|
+
}
|
|
862
|
+
/**
|
|
863
|
+
* Missing or unusable provider configuration at session start.
|
|
864
|
+
* Typed so callers can map it to a distinct exit code without message matching.
|
|
865
|
+
*/
|
|
866
|
+
declare class ProviderConfigError extends Error {
|
|
867
|
+
constructor(message: string);
|
|
1324
868
|
}
|
|
1325
869
|
declare function readMergedProviderSettings(cwd: string): TProviderSettingsDocument;
|
|
870
|
+
/**
|
|
871
|
+
* Zero-config fallback: synthesize an in-memory provider config from the first
|
|
872
|
+
* definition (in order) whose defaults are complete — `$ENV:` apiKey reference with the
|
|
873
|
+
* referenced variable set, plus a default model. Settings profiles always win; nothing
|
|
874
|
+
* is persisted. Returns undefined when no definition qualifies.
|
|
875
|
+
*/
|
|
876
|
+
declare function resolveEnvDefaultProvider(providerDefinitions: readonly IProviderDefinition[], env?: Record<string, string | undefined>): IProviderConfig | undefined;
|
|
1326
877
|
declare function readProviderSettings(cwd: string, options?: IReadProviderSettingsOptions): IProviderConfig;
|
|
1327
878
|
declare function createProviderFromSettings(cwd: string, modelOverride?: string, options?: IReadProviderSettingsOptions): IAIProvider;
|
|
1328
879
|
//#endregion
|
|
@@ -1383,6 +934,29 @@ declare function listCommandSessionAllowedTools(context: ICommandHostContext): r
|
|
|
1383
934
|
declare function readCommandPermissionsState(context: ICommandHostContext): IPermissionsCommandState;
|
|
1384
935
|
declare function formatCommandPermissionsMessage(state: IPermissionsCommandState): string;
|
|
1385
936
|
//#endregion
|
|
937
|
+
//#region src/config/settings-io.d.ts
|
|
938
|
+
type TSettingsData = Record<string, TUniversalValue>;
|
|
939
|
+
declare function getUserSettingsPath(): string;
|
|
940
|
+
type TSettingsScope = 'user' | 'project-local';
|
|
941
|
+
declare function resolveSettingsPathForScope(cwd: string, scope: TSettingsScope | undefined): string;
|
|
942
|
+
/**
|
|
943
|
+
* CLI-069: missing file → empty defaults (non-error); an EXISTING file that
|
|
944
|
+
* fails to parse throws SettingsParseError — no warn-and-continue masking.
|
|
945
|
+
*/
|
|
946
|
+
declare function readSettings(path: string): TSettingsData;
|
|
947
|
+
declare function writeSettings(path: string, settings: TSettingsData): void;
|
|
948
|
+
declare function updateModelInSettings(settingsPath: string, modelId: string): void;
|
|
949
|
+
declare function deleteSettings(path: string): boolean;
|
|
950
|
+
//#endregion
|
|
951
|
+
//#region src/command-api/statusline/statusline-command-api.d.ts
|
|
952
|
+
declare const STATUSLINE_COMMAND_DESCRIPTION = "Configure TUI status-line visibility and fields such as model, context, tokens, session, and git branch.";
|
|
953
|
+
declare const STATUSLINE_COMMAND_ARGUMENT_HINT = "on | off | reset | git on | git off";
|
|
954
|
+
declare const DEFAULT_STATUS_LINE_COMMAND_SETTINGS: Readonly<IStatusLineCommandSettings>;
|
|
955
|
+
declare function buildStatusLineCommandSubcommands(source?: string): ICommand[];
|
|
956
|
+
declare function isStatusLineCommandSettingsPatch(value: Record<string, TUniversalValue>): value is TStatusLineCommandSettingsPatch;
|
|
957
|
+
declare function readStatusLineSettings(settings: TSettingsData): IStatusLineCommandSettings;
|
|
958
|
+
declare function applyStatusLineSettings(settingsPath: string, patch: TStatusLineCommandSettingsPatch): IStatusLineCommandSettings;
|
|
959
|
+
//#endregion
|
|
1386
960
|
//#region src/command-api/session/session-command-api.d.ts
|
|
1387
961
|
declare const CLEAR_COMMAND_DESCRIPTION = "Clear conversation history";
|
|
1388
962
|
declare const RENAME_COMMAND_DESCRIPTION = "Rename the current session";
|
|
@@ -1912,21 +1486,6 @@ interface ISkillExecutionResult {
|
|
|
1912
1486
|
declare function executeSkill(skill: ICommand, args: string, callbacks: ISkillExecutionCallbacks, context?: SkillPromptContext): Promise<ISkillExecutionResult>;
|
|
1913
1487
|
//#endregion
|
|
1914
1488
|
//#region src/commands/skill-activation-events.d.ts
|
|
1915
|
-
type TSkillActivationSource = 'skill' | 'plugin';
|
|
1916
|
-
type TSkillActivationInvocation = 'user-slash' | 'model-tool';
|
|
1917
|
-
type TSkillActivationMode = 'inject' | 'fork';
|
|
1918
|
-
type TSkillActivationStatus = 'started' | 'completed' | 'failed';
|
|
1919
|
-
interface ISkillActivationEvent {
|
|
1920
|
-
readonly type: 'skill-activation';
|
|
1921
|
-
readonly skillName: string;
|
|
1922
|
-
readonly source: TSkillActivationSource;
|
|
1923
|
-
readonly invocation: TSkillActivationInvocation;
|
|
1924
|
-
readonly mode: TSkillActivationMode;
|
|
1925
|
-
readonly status: TSkillActivationStatus;
|
|
1926
|
-
readonly timestamp: string;
|
|
1927
|
-
readonly qualifiedName?: string;
|
|
1928
|
-
readonly error?: string;
|
|
1929
|
-
}
|
|
1930
1489
|
interface ISkillActivationHistoryData extends ISkillActivationEvent {
|
|
1931
1490
|
readonly message: string;
|
|
1932
1491
|
}
|
|
@@ -1944,6 +1503,8 @@ declare class SessionBackgroundTaskTracker {
|
|
|
1944
1503
|
private readonly emitTaskEvent;
|
|
1945
1504
|
private readonly emitGroupEvent;
|
|
1946
1505
|
private readonly persistSession;
|
|
1506
|
+
private readonly onWake?;
|
|
1507
|
+
private readonly appendSystemNote?;
|
|
1947
1508
|
private backgroundTasks;
|
|
1948
1509
|
private backgroundTaskEvents;
|
|
1949
1510
|
private backgroundJobGroups;
|
|
@@ -1951,8 +1512,13 @@ declare class SessionBackgroundTaskTracker {
|
|
|
1951
1512
|
private backgroundTaskUnsubscribe;
|
|
1952
1513
|
private backgroundJobUnsubscribe;
|
|
1953
1514
|
private backgroundJobOrchestrator;
|
|
1954
|
-
constructor(getManager: () => IBackgroundTaskManager | undefined, onChanged: (cause: TExecutionWorkspaceUpdateCause, entryId?: string) => void, emitTaskEvent: (event: TBackgroundTaskEvent) => void, emitGroupEvent: (event: TBackgroundJobGroupEvent) => void, persistSession: () => void);
|
|
1515
|
+
constructor(getManager: () => IBackgroundTaskManager | undefined, onChanged: (cause: TExecutionWorkspaceUpdateCause, entryId?: string) => void, emitTaskEvent: (event: TBackgroundTaskEvent) => void, emitGroupEvent: (event: TBackgroundJobGroupEvent) => void, persistSession: () => void, onWake?: ((instruction: string, taskId: string) => void) | undefined, appendSystemNote?: ((message: string) => void) | undefined);
|
|
1955
1516
|
subscribe(session: Session): void;
|
|
1517
|
+
/**
|
|
1518
|
+
* FLOW-003: re-spawn restored sleeping scheduled wakes so they fire again after a resume,
|
|
1519
|
+
* and surface a one-time note for any whose fire time elapsed while the CLI was closed.
|
|
1520
|
+
*/
|
|
1521
|
+
private reArmRestoredSchedules;
|
|
1956
1522
|
dispose(): void;
|
|
1957
1523
|
restoreState(state: IBackgroundTrackerState): void;
|
|
1958
1524
|
getState(): IBackgroundTrackerState;
|
|
@@ -2039,6 +1605,7 @@ declare class SessionHistoryTracker {
|
|
|
2039
1605
|
private readonly getExecuting;
|
|
2040
1606
|
private readonly persistSession;
|
|
2041
1607
|
private readonly emitSkillActivation;
|
|
1608
|
+
private readonly emitMemoryEvent;
|
|
2042
1609
|
private history;
|
|
2043
1610
|
private editCheckpointStore;
|
|
2044
1611
|
private memoryEvents;
|
|
@@ -2046,7 +1613,7 @@ declare class SessionHistoryTracker {
|
|
|
2046
1613
|
private contextReferences;
|
|
2047
1614
|
private systemContextReferences;
|
|
2048
1615
|
private skillActivationEvents;
|
|
2049
|
-
constructor(cwd: string, getSessionId: () => string, getExecuting: () => boolean, persistSession: () => void, emitSkillActivation: (event: ISkillActivationEvent) => void, editCheckpointStore?: EditCheckpointStore | null);
|
|
1616
|
+
constructor(cwd: string, getSessionId: () => string, getExecuting: () => boolean, persistSession: () => void, emitSkillActivation: (event: ISkillActivationEvent) => void, emitMemoryEvent: (event: IMemoryEvent) => void, editCheckpointStore?: EditCheckpointStore | null);
|
|
2050
1617
|
restoreState(state: IHistoryTrackerState): void;
|
|
2051
1618
|
getState(): IHistoryTrackerState;
|
|
2052
1619
|
append(entry: IHistoryEntry): void;
|
|
@@ -2076,119 +1643,11 @@ declare class SessionHistoryTracker {
|
|
|
2076
1643
|
}
|
|
2077
1644
|
//#endregion
|
|
2078
1645
|
//#region src/interactive/session-persistence.d.ts
|
|
2079
|
-
interface IInteractiveSessionRecord {
|
|
2080
|
-
id: string;
|
|
2081
|
-
name?: string;
|
|
2082
|
-
cwd: string;
|
|
2083
|
-
createdAt: string;
|
|
2084
|
-
updatedAt: string;
|
|
2085
|
-
messages: TUniversalMessage[];
|
|
2086
|
-
history?: IHistoryEntry[];
|
|
2087
|
-
systemPrompt?: string;
|
|
2088
|
-
toolSchemas?: IToolSchema[];
|
|
2089
|
-
backgroundTasks?: IBackgroundTaskState[];
|
|
2090
|
-
backgroundTaskEvents?: TBackgroundTaskEvent[];
|
|
2091
|
-
backgroundJobGroups?: IBackgroundJobGroupState[];
|
|
2092
|
-
backgroundJobGroupEvents?: TBackgroundJobGroupEvent[];
|
|
2093
|
-
skillActivationEvents?: ISkillActivationEvent[];
|
|
2094
|
-
memoryEvents?: IMemoryEvent[];
|
|
2095
|
-
usedMemoryReferences?: IMemoryReference[];
|
|
2096
|
-
contextReferences?: IContextReferenceItem[];
|
|
2097
|
-
sandboxSnapshotId?: string;
|
|
2098
|
-
}
|
|
2099
|
-
interface IInteractiveSessionStore {
|
|
2100
|
-
save(session: IInteractiveSessionRecord): void;
|
|
2101
|
-
load(id: string): IInteractiveSessionRecord | undefined;
|
|
2102
|
-
list(): IInteractiveSessionRecord[];
|
|
2103
|
-
delete(id: string): void;
|
|
2104
|
-
}
|
|
2105
|
-
interface IResumableSessionSummary {
|
|
2106
|
-
id: string;
|
|
2107
|
-
name?: string;
|
|
2108
|
-
cwd: string;
|
|
2109
|
-
updatedAt: string;
|
|
2110
|
-
messageCount: number;
|
|
2111
|
-
preview: string;
|
|
2112
|
-
}
|
|
2113
1646
|
declare function createProjectSessionStore(cwd: string, fs?: IFileSystem): IInteractiveSessionStore;
|
|
2114
1647
|
declare function listResumableSessionSummaries(sessionStore: IInteractiveSessionStore | undefined, cwd: string): IResumableSessionSummary[];
|
|
2115
1648
|
declare function resolveLatestSessionId(sessionStore: IInteractiveSessionStore | undefined, cwd: string): string | undefined;
|
|
2116
1649
|
declare function resolveSessionIdByIdOrName(sessionStore: IInteractiveSessionStore | undefined, idOrName: string): string | undefined;
|
|
2117
1650
|
//#endregion
|
|
2118
|
-
//#region src/interactive/types.d.ts
|
|
2119
|
-
/** Permission handler result — SDK-owned type (mirrors agent-sessions TPermissionResult).
|
|
2120
|
-
* true = allow, false = deny, 'allow-session' = allow and remember for this session,
|
|
2121
|
-
* 'allow-project' = allow and persist to .robota/settings.local.json. */
|
|
2122
|
-
type TPermissionResultValue = boolean | 'allow-session' | 'allow-project';
|
|
2123
|
-
/** Tool execution state visible to clients. */
|
|
2124
|
-
interface IToolState {
|
|
2125
|
-
toolName: string;
|
|
2126
|
-
firstArg: string;
|
|
2127
|
-
isRunning: boolean;
|
|
2128
|
-
result?: 'success' | 'error' | 'denied';
|
|
2129
|
-
diffLines?: IDiffLine[];
|
|
2130
|
-
diffFile?: string;
|
|
2131
|
-
toolResultData?: string;
|
|
2132
|
-
executionId?: string;
|
|
2133
|
-
}
|
|
2134
|
-
/** A single diff line for Edit tool display. */
|
|
2135
|
-
interface IDiffLine {
|
|
2136
|
-
type: 'add' | 'remove' | 'context' | 'hunk';
|
|
2137
|
-
text: string;
|
|
2138
|
-
lineNumber: number;
|
|
2139
|
-
}
|
|
2140
|
-
interface IUsageSnapshot {
|
|
2141
|
-
kind: 'exact' | 'estimated';
|
|
2142
|
-
scope: 'turn';
|
|
2143
|
-
totalTokens: number;
|
|
2144
|
-
promptTokens?: number;
|
|
2145
|
-
completionTokens?: number;
|
|
2146
|
-
contextUsedTokens: number;
|
|
2147
|
-
contextMaxTokens: number;
|
|
2148
|
-
contextUsedPercentage: number;
|
|
2149
|
-
costStatus: 'unknown' | 'estimated' | 'exact';
|
|
2150
|
-
}
|
|
2151
|
-
/** Result of a completed prompt execution. */
|
|
2152
|
-
interface IExecutionResult {
|
|
2153
|
-
response: string;
|
|
2154
|
-
history: IHistoryEntry[];
|
|
2155
|
-
toolSummaries: IToolSummary[];
|
|
2156
|
-
contextState: IContextWindowState;
|
|
2157
|
-
usage?: IUsageSnapshot;
|
|
2158
|
-
promptFileReferences?: IPromptFileReferenceRecord[];
|
|
2159
|
-
}
|
|
2160
|
-
/** Summary of a tool call extracted from history. */
|
|
2161
|
-
interface IToolSummary {
|
|
2162
|
-
name: string;
|
|
2163
|
-
args: string;
|
|
2164
|
-
}
|
|
2165
|
-
/** Permission handler delegate — clients provide their own UI. */
|
|
2166
|
-
type TInteractivePermissionHandler = (toolName: string, toolArgs: TToolArgs) => Promise<TPermissionResultValue>;
|
|
2167
|
-
/** Events emitted by InteractiveSession. */
|
|
2168
|
-
interface IInteractiveSessionEvents {
|
|
2169
|
-
text_delta: (delta: string) => void;
|
|
2170
|
-
tool_start: (state: IToolState) => void;
|
|
2171
|
-
tool_end: (state: IToolState) => void;
|
|
2172
|
-
thinking: (isThinking: boolean) => void;
|
|
2173
|
-
complete: (result: IExecutionResult) => void;
|
|
2174
|
-
error: (error: Error) => void;
|
|
2175
|
-
context_update: (state: IContextWindowState) => void;
|
|
2176
|
-
compact: (event: ICompactEvent) => void;
|
|
2177
|
-
interrupted: (result: IExecutionResult) => void;
|
|
2178
|
-
skill_activation: (event: ISkillActivationEvent) => void;
|
|
2179
|
-
background_task_event: (event: TBackgroundTaskEvent) => void;
|
|
2180
|
-
background_job_group_event: (event: TBackgroundJobGroupEvent) => void;
|
|
2181
|
-
execution_workspace_event: (event: IExecutionWorkspaceEvent) => void;
|
|
2182
|
-
user_message: (content: string) => void;
|
|
2183
|
-
/** Emitted when a context file (AGENTS.md or CLAUDE.md) is refreshed due to staleness. */
|
|
2184
|
-
context_file_refreshed: (event: IContextFileRefreshedEvent) => void;
|
|
2185
|
-
}
|
|
2186
|
-
/** Emitted when a context file is found stale and re-read before a turn. */
|
|
2187
|
-
interface IContextFileRefreshedEvent {
|
|
2188
|
-
filePath: string;
|
|
2189
|
-
}
|
|
2190
|
-
type TInteractiveEventName = keyof IInteractiveSessionEvents;
|
|
2191
|
-
//#endregion
|
|
2192
1651
|
//#region src/context/project-detector.d.ts
|
|
2193
1652
|
type TProjectType = 'node' | 'python' | 'rust' | 'go' | 'unknown';
|
|
2194
1653
|
type TPackageManager = 'pnpm' | 'yarn' | 'npm' | 'bun';
|
|
@@ -2212,8 +1671,8 @@ interface ISystemPromptParams {
|
|
|
2212
1671
|
taskContext?: string;
|
|
2213
1672
|
/** Human-readable tool descriptions, one per entry */
|
|
2214
1673
|
toolDescriptions: string[];
|
|
2215
|
-
/** Active
|
|
2216
|
-
|
|
1674
|
+
/** Active permission mode — the value the permission gate enforces */
|
|
1675
|
+
permissionMode: TPermissionMode;
|
|
2217
1676
|
/** Detected project metadata */
|
|
2218
1677
|
projectInfo: IProjectInfo;
|
|
2219
1678
|
/** Current working directory */
|
|
@@ -2634,6 +2093,16 @@ interface IExecutionControllerCallbacks {
|
|
|
2634
2093
|
emit: <E extends string>(event: E, ...args: unknown[]) => void;
|
|
2635
2094
|
persistSession: () => void;
|
|
2636
2095
|
}
|
|
2096
|
+
/** Origin of a turn — distinguishes a human prompt from an agent-wakeup (FLOW-002). */
|
|
2097
|
+
type TTurnSource = 'user' | 'agent-wakeup';
|
|
2098
|
+
/** Options threaded through submit/executePrompt for non-user turns (FLOW-002). */
|
|
2099
|
+
interface ITurnOptions {
|
|
2100
|
+
turnSource?: TTurnSource;
|
|
2101
|
+
/** When set, the in-flight wake for this background task id is cleared on turn completion. */
|
|
2102
|
+
wakeTaskId?: string;
|
|
2103
|
+
}
|
|
2104
|
+
/** A submit callback that optionally carries turn options (default = user turn). */
|
|
2105
|
+
type TSubmitFn = (prompt: string, displayInput?: string, rawInput?: string, options?: ITurnOptions) => Promise<void>;
|
|
2637
2106
|
declare class SessionExecutionController {
|
|
2638
2107
|
private readonly histTracker;
|
|
2639
2108
|
private readonly skillRouter;
|
|
@@ -2645,7 +2114,10 @@ declare class SessionExecutionController {
|
|
|
2645
2114
|
pendingPrompt: string | null;
|
|
2646
2115
|
pendingDisplayInput: string | undefined;
|
|
2647
2116
|
pendingRawInput: string | undefined;
|
|
2117
|
+
pendingTurnOptions: ITurnOptions;
|
|
2648
2118
|
shuttingDown: boolean;
|
|
2119
|
+
/** FLOW-002: background task ids with an in-flight wake turn (coalesces duplicate wakes). */
|
|
2120
|
+
readonly wakeTaskIds: Set<string>;
|
|
2649
2121
|
constructor(histTracker: SessionHistoryTracker, skillRouter: SessionSkillRouter, callbacks: IExecutionControllerCallbacks);
|
|
2650
2122
|
clearPendingQueue(): void;
|
|
2651
2123
|
clearStreaming(): void;
|
|
@@ -2663,7 +2135,7 @@ declare class SessionExecutionController {
|
|
|
2663
2135
|
}): void;
|
|
2664
2136
|
emitExecutionWorkspaceUpdated(cause: TExecutionWorkspaceUpdateCause, entryId?: string): void;
|
|
2665
2137
|
private drainPendingQueue;
|
|
2666
|
-
executePrompt(input: string, displayInput: string | undefined, rawInput: string | undefined, agentsFileEntries: IContextFileEntry[], claudeFileEntries: IContextFileEntry[], rebuildSystemMessage: ICreatedInteractiveSession['rebuildSystemMessage'] | null, setEntries: (agents: IContextFileEntry[], claude: IContextFileEntry[]) => void, submit:
|
|
2138
|
+
executePrompt(input: string, displayInput: string | undefined, rawInput: string | undefined, agentsFileEntries: IContextFileEntry[], claudeFileEntries: IContextFileEntry[], rebuildSystemMessage: ICreatedInteractiveSession['rebuildSystemMessage'] | null, setEntries: (agents: IContextFileEntry[], claude: IContextFileEntry[]) => void, submit: TSubmitFn, turnOptions?: ITurnOptions): Promise<void>;
|
|
2667
2139
|
executeForkSkillCommand(skill: ICommand, args: string, displayInput: string | undefined, qualifiedName: string | undefined, invocation: ISkillActivationEvent['invocation'], submit: (p: string, d?: string, r?: string) => Promise<void>): Promise<ISkillExecutionResult>;
|
|
2668
2140
|
executeForegroundCommand(execute: () => Promise<ICommandResult>, submit: (p: string, d?: string, r?: string) => Promise<void>): Promise<ICommandResult>;
|
|
2669
2141
|
applyForkSkillResult(result: string): Promise<void>;
|
|
@@ -2739,59 +2211,17 @@ declare abstract class InteractiveSessionBase {
|
|
|
2739
2211
|
sendAgentJob(jobId: string, prompt: string): Promise<void>;
|
|
2740
2212
|
cancelAgentJob(jobId: string, reason?: string): Promise<void>;
|
|
2741
2213
|
closeAgentJob(jobId: string): Promise<void>;
|
|
2742
|
-
|
|
2743
|
-
//#endregion
|
|
2744
|
-
//#region src/interactive/i-interactive-session.d.ts
|
|
2745
|
-
/** Minimal session surface consumed by transport adapters and test factories. */
|
|
2746
|
-
interface IInteractiveSession {
|
|
2747
|
-
/** True once the underlying session has been initialized. */
|
|
2748
|
-
readonly isInitialized?: boolean;
|
|
2749
|
-
submit(input: string, displayInput?: string, rawInput?: string): Promise<void>;
|
|
2750
|
-
abort(): void;
|
|
2751
|
-
cancelQueue(): void;
|
|
2752
|
-
shutdown(options?: {
|
|
2753
|
-
reason?: string;
|
|
2754
|
-
message?: string;
|
|
2755
|
-
}): Promise<void>;
|
|
2756
|
-
isExecuting(): boolean;
|
|
2757
|
-
getPendingPrompt(): string | null;
|
|
2758
|
-
getMessages(): TUniversalMessage[];
|
|
2759
|
-
getContextState(): IContextWindowState;
|
|
2760
|
-
getSession(): {
|
|
2761
|
-
getSessionId(): string;
|
|
2762
|
-
};
|
|
2763
|
-
getCwd(): string;
|
|
2764
|
-
executeCommand(name: string, args: string): Promise<ICommandResult | null>;
|
|
2765
|
-
listCommands(): ICommandListEntry[];
|
|
2766
|
-
on<E extends TInteractiveEventName>(event: E, handler: IInteractiveSessionEvents[E]): void;
|
|
2767
|
-
off<E extends TInteractiveEventName>(event: E, handler: IInteractiveSessionEvents[E]): void;
|
|
2768
|
-
listBackgroundTasks(filter?: IBackgroundTaskListFilter): IBackgroundTaskState[];
|
|
2769
|
-
getBackgroundTask(taskId: string): IBackgroundTaskState | undefined;
|
|
2770
|
-
cancelBackgroundTask(taskId: string, reason?: string): Promise<void>;
|
|
2771
|
-
closeBackgroundTask(taskId: string): Promise<void>;
|
|
2772
|
-
sendBackgroundTask(taskId: string, input: IBackgroundTaskInput): Promise<void>;
|
|
2773
|
-
readBackgroundTaskLog(taskId: string, cursor?: IBackgroundTaskLogCursor): Promise<IBackgroundTaskLogPage>;
|
|
2774
|
-
listBackgroundJobGroups(): IBackgroundJobGroupState[];
|
|
2775
|
-
getBackgroundJobGroup(groupId: string): IBackgroundJobGroupState | undefined;
|
|
2776
|
-
createBackgroundJobGroup(input: Omit<IBackgroundJobGroupCreateRequest, 'parentSessionId'>): IBackgroundJobGroupState;
|
|
2777
|
-
waitBackgroundJobGroup(groupId: string): Promise<IBackgroundJobGroupState>;
|
|
2778
|
-
getExecutionWorkspaceSnapshot(options?: IExecutionWorkspaceSnapshotOptions): IExecutionWorkspaceSnapshot;
|
|
2779
|
-
listAgentDefinitions(): Array<{
|
|
2780
|
-
name: string;
|
|
2781
|
-
description: string;
|
|
2782
|
-
}>;
|
|
2783
|
-
listAgentJobs(): ISubagentJobState[];
|
|
2784
|
-
spawnAgentJob(input: {
|
|
2785
|
-
agentType: string;
|
|
2214
|
+
spawnScheduledWake(input: {
|
|
2786
2215
|
label: string;
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2216
|
+
cronExpression: string;
|
|
2217
|
+
agentInstruction: string;
|
|
2218
|
+
}): Promise<IBackgroundTaskState>;
|
|
2219
|
+
spawnMonitorWake(input: {
|
|
2220
|
+
label: string;
|
|
2221
|
+
command: string;
|
|
2222
|
+
matchPattern: string;
|
|
2223
|
+
agentInstruction: string;
|
|
2224
|
+
}): Promise<IBackgroundTaskState>;
|
|
2795
2225
|
}
|
|
2796
2226
|
//#endregion
|
|
2797
2227
|
//#region src/interactive/interactive-session.d.ts
|
|
@@ -2835,7 +2265,13 @@ declare class InteractiveSession extends InteractiveSessionBase implements ISess
|
|
|
2835
2265
|
on<E extends TInteractiveEventName>(event: E, handler: IInteractiveSessionEvents[E]): void;
|
|
2836
2266
|
off<E extends TInteractiveEventName>(event: E, handler: IInteractiveSessionEvents[E]): void;
|
|
2837
2267
|
private emit;
|
|
2838
|
-
submit(input: string, displayInput?: string, rawInput?: string): Promise<void>;
|
|
2268
|
+
submit(input: string, displayInput?: string, rawInput?: string, options?: ITurnOptions): Promise<void>;
|
|
2269
|
+
/**
|
|
2270
|
+
* FLOW-002: re-enter the agent loop with a non-user turn triggered by a background wake
|
|
2271
|
+
* (a scheduled fire or, later, a monitor match). Coalesces by source task id so repeated
|
|
2272
|
+
* wakes for the same task while one is still in flight collapse to a single turn.
|
|
2273
|
+
*/
|
|
2274
|
+
requestWakeup(instruction: string, sourceTaskId: string): void;
|
|
2839
2275
|
abort(): void;
|
|
2840
2276
|
shutdown(options?: IInteractiveSessionShutdownOptions): Promise<void>;
|
|
2841
2277
|
get isInitialized(): boolean;
|
|
@@ -3133,25 +2569,6 @@ declare function formatTaskContext(tasks: readonly ITaskContextFile[]): string;
|
|
|
3133
2569
|
declare function loadTaskContext(cwd: string, options?: ITaskSelectionOptions, fs?: IFileSystem): string;
|
|
3134
2570
|
declare function updateTaskFileStatus(taskPath: string, status: TTaskFileStatus, options?: IUpdateTaskFileStatusOptions, fs?: IFileSystem): void;
|
|
3135
2571
|
//#endregion
|
|
3136
|
-
//#region src/interaction/IInteractionChannel.d.ts
|
|
3137
|
-
interface IInteractionChannel {
|
|
3138
|
-
/** Framework registers input handler. Channel calls it when user submits text. */
|
|
3139
|
-
onSubmit(handler: (text: string) => Promise<void>): void;
|
|
3140
|
-
/** Framework pushes one-way display events. Fire-and-forget. */
|
|
3141
|
-
write(event: InteractionEvent): void;
|
|
3142
|
-
/**
|
|
3143
|
-
* Framework requests user disambiguation. Channel decides HOW to present it
|
|
3144
|
-
* (Ink dialog, web modal, programmatic preset). Resolves when user responds.
|
|
3145
|
-
*/
|
|
3146
|
-
requestAction(action: IActionRequest): Promise<IActionResponse>;
|
|
3147
|
-
/** Framework provides registered slash commands for autocomplete. */
|
|
3148
|
-
setAvailableCommands(commands: ICommandInfo[]): void;
|
|
3149
|
-
/** Signal whether session is busy (channel may disable input). */
|
|
3150
|
-
setBusy(busy: boolean): void;
|
|
3151
|
-
start(): Promise<void>;
|
|
3152
|
-
stop(): Promise<void>;
|
|
3153
|
-
}
|
|
3154
|
-
//#endregion
|
|
3155
2572
|
//#region src/interaction/input-parser.d.ts
|
|
3156
2573
|
type ParsedInput = {
|
|
3157
2574
|
type: 'slash-command';
|
|
@@ -3200,6 +2617,18 @@ declare function promptForApproval(terminal: ITerminalOutput$2, toolName: string
|
|
|
3200
2617
|
* Pass overrides to spy on or replace specific methods. */
|
|
3201
2618
|
declare function createTestInteractiveSession(overrides?: Partial<IInteractiveSession>): IInteractiveSession;
|
|
3202
2619
|
//#endregion
|
|
2620
|
+
//#region src/config/settings-parse-error.d.ts
|
|
2621
|
+
/**
|
|
2622
|
+
* CLI-069: an EXISTING settings file that fails to parse is an error condition,
|
|
2623
|
+
* never silently equated with a missing file (forbidden-fallback class). Thrown
|
|
2624
|
+
* by the settings readers; session start propagates it (fail fast, exit 1),
|
|
2625
|
+
* reporting consumers (e.g. diagnose) catch it and present it as a finding.
|
|
2626
|
+
*/
|
|
2627
|
+
declare class SettingsParseError extends Error {
|
|
2628
|
+
readonly filePath: string;
|
|
2629
|
+
constructor(filePath: string, parseMessage: string);
|
|
2630
|
+
}
|
|
2631
|
+
//#endregion
|
|
3203
2632
|
//#region src/config/reset-user-config.d.ts
|
|
3204
2633
|
interface IResetUserConfigResult {
|
|
3205
2634
|
deleted: boolean;
|
|
@@ -3337,5 +2766,5 @@ interface IStatelessRuntimeConfig {
|
|
|
3337
2766
|
}
|
|
3338
2767
|
declare function createStatelessRuntime(config: IStatelessRuntimeConfig): IAgentRuntime;
|
|
3339
2768
|
//#endregion
|
|
3340
|
-
export { AUTO_COMPACT_THRESHOLD_SETTINGS_KEY, AgentExecutor, BACKGROUND_COMMAND_DESCRIPTION, BACKGROUND_COMMAND_USAGE, BUILT_IN_AGENTS, BackgroundJobOrchestrator, BuiltinCommandSource, BundlePluginInstaller, BundlePluginLoader, CLEAR_COMMAND_DESCRIPTION, CLI_UPDATE_CACHE_TTL_MS, CLI_UPDATE_PACKAGE_NAME, CLI_UPDATE_REGISTRY_URL, CLI_UPDATE_TIMEOUT_MS, COST_COMMAND_DESCRIPTION, CommandRegistry, DEFAULT_AUTO_COMPACT_THRESHOLD, DEFAULT_STATUS_LINE_COMMAND_SETTINGS, EXECUTION_ORIGIN_METADATA_KEYS, EXIT_COMMAND_DESCRIPTION, EditCheckpointStore, HELP_COMMAND_DESCRIPTION, type IActionRequest, type IActionResponse, type IActiveModelChangeOptions, type IActiveModelChangeResult, type IAgentBackgroundTaskRequest, type IAgentDefinition, type IAgentExecutorOptions, type IAgentJobHostContext, type IAgentRuntime, type IAgentRuntimeConfig, type IAgentSession, type IAgentToolDeps, type IAppendMemoryInput, type IAppendMemoryResult, type IBackgroundJobGroupCreateRequest, type IBackgroundJobGroupState, type IBackgroundJobGroupSummary, type IBackgroundJobOrchestratorOptions, type IBackgroundJobResultEnvelope, type IBackgroundProcessToolDeps, type IBackgroundTaskError, type IBackgroundTaskHandle, type IBackgroundTaskInput, type IBackgroundTaskListFilter, type IBackgroundTaskLogCursor, type IBackgroundTaskLogPage, type IBackgroundTaskManager, type IBackgroundTaskManagerOptions, type IBackgroundTaskResult, type IBackgroundTaskRunner, type IBackgroundTaskSpawnerGroupRequest, type IBackgroundTaskStart, type IBackgroundTaskState, type IBaseBackgroundTaskRequest, type IBundlePluginFeatures, type IBundlePluginInstallerOptions, type IBundlePluginManifest, type IBundleSkill, type ICapabilityDescriptor, type ICheckForCliUpdateOptions, type ICliUpdateNotice, type ICommand, type ICommandAvailablePlugin, type ICommandChoicePromptOption, type ICommandExecutionToolDeps, type ICommandHostAdapters, type ICommandHostContext, type ICommandInfo, type ICommandInstalledPlugin, type ICommandInteraction, type ICommandInteractionHint, type ICommandListEntry, type ICommandMarketplaceSource, type ICommandMemoryStores, type ICommandModule, type ICommandPendingMemoryStore, type ICommandPermissionModeAdapter, type ICommandPickerAdapter, type ICommandPluginAdapter, type ICommandPluginReloadResult, type ICommandProcessAdapter, type ICommandProjectMemoryStore, type ICommandResult, type ICommandSessionInfo, type ICommandSessionReplayValidationReport, type ICommandSessionRuntime, type ICommandSettingsAdapter, type ICommandSettingsDocument, type ICommandSkillListEntry, type ICommandSource, type ICompactContextResult, type IConfigurableTransport, type IContextFileRefreshedEvent, type IContextReferenceAddResult, type IContextReferenceClearResult, type IContextReferenceInventoryLimits, type IContextReferenceItem, type IContextReferenceRemoveResult, type IContextReferenceUpsertResult, type ICreateExecutionWorkspaceSnapshotInput, type ICreateExecutionWorkspaceTaskSpawnerOptions, type ICreateLimitedOutputCaptureOptions, type ICreateLineDetailPageInput, type ICreateMainThreadDetailPageInput, type ICreateMainThreadEntryInput, type ICreateQueryOptions, type IDiffLine, type IEditCheckpointFileInspection, type IEditCheckpointFileRecord, type IEditCheckpointInspection, type IEditCheckpointInspectionPlan, type IEditCheckpointManifest, type IEditCheckpointRecorder, type IEditCheckpointRestoreResult, type IEditCheckpointSummary, type IEditCheckpointTurnInput, type IExecutionDetailCursor, type IExecutionDetailPage, type IExecutionDetailRecord, type IExecutionOrigin, type IExecutionResult, type IExecutionWorkspaceEntry, type IExecutionWorkspaceEntryRef, type IExecutionWorkspaceEvent, type IExecutionWorkspaceFilter, type IExecutionWorkspaceSnapshot, type IExecutionWorkspaceSnapshotOptions, type IExecutionWorkspaceTaskSpawner, type IForkExecutionOptions, type IHeadlessSessionOptions, type IInProcessSubagentRunnerDeps, type IInspectUserLocalStorageOptions, type IInstalledPluginRecord, type IInteractionChannel, type IInteractiveRuntime, type IInteractiveRuntimeOptions, type IInteractiveSession, type IInteractiveSessionEvents, type IInteractiveSessionRecord, type IInteractiveSessionShutdownOptions, type IInteractiveSessionStore, type IKnownMarketplaceEntry, type ILegacyProviderSettings, type ILimitedOutputCapture, type ILoadedBundlePlugin, type IMarketplaceClientOptions, type IMarketplaceManifest, type IMarketplacePluginEntry, type IMemoryCandidate, type IMemoryEvent, type IMemoryPendingRecord, type IMemoryReference, type IModelCommandToolProjection, type IOrgPolicy, type IPermissionRequest, type IPermissionsCommandState, type IPickItem, type IPluginSettings, type IPreparedSubagentWorktree, type IProcessBackgroundTaskRequest, type IProjectMemorySummary, type IProjectedCommandExecutionToolsDeps, type IProjectedModelCommandTool, type IPromptExecutorOptions, type IPromptFileReferenceDiagnostic, type IPromptFileReferenceHistoryData, type IPromptFileReferenceLimits, type IPromptFileReferenceRecord, type IPromptFileReferenceResolveOptions, type IPromptFileReferenceToken, type IPromptProvider, type IProviderCommandModuleOptions, type IProviderCommandSettingsAdapter, type IProviderProfileNameSuggestionInput, type IProviderProfileNameSuggestionOptions, type IProviderProfileSettings, type IProviderSettingsBuildOptions, type IProviderSettingsWriteTargetOptions, type IProviderSetupInput, type IProviderSetupPatch, type IProviderSwitchOptions, type IReadProviderSettingsOptions, type IResetUserConfigResult, type IResolveUserLocalStorageRootOptions, type IResolvedConfig, type IResolvedPromptFileReference, type IResolvedPromptFileReferences, type IResumableSessionSummary, type IReversibleExecutionOptions, type IReversibleToolSafetyContext, type IReversibleToolSafetyInput, type IReversibleToolSafetyReport, type ISelfHostingVerificationPlan, type ISelfHostingVerificationPlanInput, type ISelfHostingVerificationStep, type ISerializableProviderProfile, type ISkillActivationEvent, type ISkillActivationHistoryData, type ISkillExecutionCallbacks, type ISkillExecutionResult, type ISpawnAgentTaskRequest, type ISpawnProcessTaskRequest, type IStartupCliUpdatePolicyInput, type IStartupMemory, type IStatelessRuntimeConfig, type IStatusLineCommandSettings, type ISubagentJobHandle, type ISubagentJobResult, type ISubagentJobStart, type ISubagentJobState, type ISubagentManager, type ISubagentManagerOptions, type ISubagentOptions, type ISubagentPromptOptions, type ISubagentRunner, type ISubagentSpawnRequest, type ISubagentWorktreeAdapter, type ISubagentWorktreePrepareRequest, type ISystemCommand, type ITaskContextFile, type ITaskSelectionOptions, type IToolState, type IToolSummary, type ITransportAdapter, type ITransportConfig, type IUpdateCheckCache, type IUpdateTaskFileStatusOptions, type IUsageSnapshot, type IUserLocalMemoryDeleteResult, type IUserLocalMemoryItemOptions, type IUserLocalMemoryItemProjection, type IUserLocalMemoryListOptions, type IUserLocalMemoryListProjection, type IUserLocalMemorySetOptions, type IUserLocalStorageCategoryDefinition, type IUserLocalStorageCategoryProjection, type IUserLocalStorageInspection, type IUserLocalStorageItemSummary, type IWorktreeSubagentRunnerOptions, type InteractionEvent, InteractiveSession, LANGUAGE_COMMAND_ARGUMENT_HINT, LANGUAGE_COMMAND_DESCRIPTION, MEMORY_COMMAND_ARGUMENT_HINT, MEMORY_COMMAND_DESCRIPTION, MEMORY_COMMAND_USAGE, MEMORY_INDEX_MAX_BYTES, MEMORY_INDEX_MAX_LINES, MODEL_COMMAND_TOOL_PREFIX, MarketplaceClient, PERMISSIONS_COMMAND_DESCRIPTION, PERMISSION_MODE_ARGUMENT_HINT, PERMISSION_MODE_COMMAND_DESCRIPTION, PLUGIN_COMMAND_ARGUMENT_HINT, PLUGIN_COMMAND_DESCRIPTION, PROVIDER_SAFE_TOOL_NAME_PATTERN, type ParsedInput, PluginCommandSource, PluginSettingsStore, ProjectMemoryStore, PromptExecutor, RECOMMENDED_RESPONSE_LANGUAGES, RELOAD_PLUGINS_COMMAND_DESCRIPTION, RENAME_COMMAND_DESCRIPTION, RENAME_COMMAND_USAGE, RESUME_COMMAND_DESCRIPTION, REWIND_COMMAND_ARGUMENT_HINT, REWIND_COMMAND_DESCRIPTION, STATUSLINE_COMMAND_ARGUMENT_HINT, STATUSLINE_COMMAND_DESCRIPTION, SkillCommandSource, type SkillPromptContext, SystemCommandExecutor, type TAutoCompactThreshold, type TAutoCompactThresholdSource, type TBackgroundJobGroupEvent, type TBackgroundJobGroupEventListener, type TBackgroundJobGroupIdFactory, type TBackgroundJobGroupStatus, type TBackgroundJobWaitPolicy, type TBackgroundPermissionPolicy, type TBackgroundPrimitive, type TBackgroundTaskErrorCategory, type TBackgroundTaskEvent, type TBackgroundTaskEventListener, type TBackgroundTaskIdFactory, type TBackgroundTaskIsolation, type TBackgroundTaskKind, type TBackgroundTaskMode, type TBackgroundTaskRequest, type TBackgroundTaskRunnerEvent, type TBackgroundTaskStatus, type TBackgroundTaskTimeoutReason, type TBackgroundTaskTransitionEvent, type TCapabilityKind, type TCapabilitySafety, type TCliUpdateCheckResult, type TCommandEffect, type TCommandInteractionPrompt, type TCommandModuleSessionRequirement, type TCommandResultDataValue, type TContextReferenceLoadType, type TContextReferenceStatus, type TEditCheckpointFileRestoreAction, type TEnabledPlugins, type TExecutionAttention, type TExecutionControl, type TExecutionDetailRecordKind, type TExecutionEntryKind, type TExecutionOriginKind, type TExecutionWorkspaceStatus, type TExecutionWorkspaceUpdateCause, type TExecutionWorkspaceVisibility, type TInstalledPluginsRegistry, type TInteractiveEventName, type TInteractivePermissionHandler, type TInteractiveSessionOptions, type TKnownMarketplacesRegistry, type TMarketplaceSource, type TMemoryCandidateStatus, type TMemoryType, type TPermissionResultValue, type TPluginInstallScope, type TPromptFileReferenceDiagnosticCode, type TPromptFileReferenceReason, type TProviderFactory, type TProviderSettingsDocument, type TQueryFunction, type TRecommendedResponseLanguage, type TReversibleExecutionIsolation, type TReversibleRollbackLayer, type TReversibleSafetyStatus, type TReversibleSideEffect, type TSelfHostingLoopEvent, type TSelfHostingLoopState, type TSelfHostingVerificationPhase, type TSessionFactory, type TSettingsCheck, type TSettingsData, type TSettingsScope, type TShellExecFn, type TSkillActivationInvocation, type TSkillActivationMode, type TSkillActivationSource, type TSkillActivationStatus, type TStatusLineCommandSettingsPatch, type TSubagentJobMode, type TSubagentJobStatus, type TSubagentRunnerFactory, type TSystemCommandLifecycle, type TTaskFileStatus, type TUserLocalMemoryCategory, type TUserLocalMemoryCommandExecutionEffect, type TUserLocalStorageCategory, USER_LOCAL_MEMORY_CATEGORIES, USER_LOCAL_STORAGE_CATEGORIES, USER_LOCAL_STORAGE_CATEGORY_DEFINITIONS, VALIDATE_SESSION_COMMAND_DESCRIPTION, VALID_PERMISSION_MODES, addCommandContextReference, applyActiveModelChange, applyProviderConfiguration, applyProviderSwitch, applyStatusLineSettings, assembleSubagentPrompt, buildBackgroundCommandSubcommands, buildLanguageCommandSubcommands, buildMemoryCommandSubcommands, buildPermissionModeSubcommands, buildPluginCommandSubcommands, buildPromptWithFileReferences, buildProviderProfile, buildProviderSetupPatch, buildRewindCommandSubcommands, buildStatusLineCommandSubcommands, cancelCommandBackgroundTask, checkForCliUpdate, checkSettingsDocument, checkSettingsFile, clearCommandContextReferences, clearContextReferences, clearConversationHistory, closeCommandBackgroundTask, compactCommandContext, compareSemverVersions, createAgentRuntime, createAgentTool, createBackgroundGroupExecutionEntryId, createBackgroundProcessTool, createBackgroundTaskExecutionEntryId, createBuiltinCommandModule, createCommandExecutionTool, createCommandMemoryStores, createCommandPendingMemoryStore, createCommandProjectMemoryStore, createContextReferenceItem, createDefaultTools, createExecutionOriginMetadata, createExecutionWorkspaceSnapshot, createExecutionWorkspaceTaskSpawner, createInProcessSubagentRunner, createInteractiveRuntime, createLineDetailPage, createMainThreadDetailPage, createMainThreadExecutionEntryId, createModelCommandToolProjection, createPluginRegistryReloadRequestedEffect, createPluginTuiRequestedEffect, createProjectSessionStore, createProjectedCommandExecutionTools, createPromptFileReferenceHistoryEntry, createProviderFromSettings, createProviderSafeModelCommandToolName, createQuery, createSessionExitRequestedEffect, createSessionPickerRequestedEffect, createSessionRenamedEffect, createStatelessRuntime, createSubagentLogger, createSubagentSession, createSystemCommands, createTestInteractiveSession, deleteProviderProfile, deleteSettings, deleteUserLocalMemoryItem, disableUserLocalMemoryItem, discoverTaskFiles, evaluateReversibleToolSafety, executeSkill, formatCliUpdateCheckMessage, formatCliUpdateNotice, formatCommandBackgroundTask, formatCommandBackgroundTaskList, formatCommandHelpMessage, formatCommandPermissionsMessage, formatCommandSessionReplayValidationReport, formatEnvReference, formatInvalidPermissionModeMessage, formatLanguageUsageMessage, formatOrgPolicyViolationMessage, formatProjectedModelCommandToolPromptDescription, formatPromptFileReferenceDiagnostics, formatTaskContext, getBuiltInAgent, getForkWorkerSuffix, getProviderSettingsPaths, getStartupCliUpdateNotice, getSubagentSuffix, getUserSettingsPath, getUserUpdateCheckCachePath, hasBlockingPromptFileReferenceDiagnostics, hasSensitiveCommandMemoryContent, hasUsableSecretReference, inspectCommandEditCheckpoint, inspectUserLocalMemoryItem, inspectUserLocalStorage, isApiKeyPlaintext, isCommandMemoryType, isEnvReference, isMemoryType, isNewerSemverVersion, isPermissionMode, isSlashCommand, isStatusLineCommandSettingsPatch, listActiveContextReferences, listCommandBackgroundTasks, listCommandContextReferences, listCommandEditCheckpoints, listCommandSessionAllowedTools, listCommandUsedMemoryReferences, listResumableSessionSummaries, listUserLocalMemoryItems, loadOrgPolicy, loadTaskContext, mergeProviderPatch, mergeProviders, mergeSettings, normalizeModelCommandName, parseCommandBackgroundLogCursor, parseExecutionWorkspaceEntryId, parseFrontmatter, parseInput, parseLanguageArgument, parsePermissionModeArgument, parsePromptFileReferences, parseSessionNameArgument, parseTaskFile, planSelfHostingVerification, preprocessShellCommands, probeProviderProfile, projectPaths, promptForApproval, readAutoCompactThreshold, readAutoCompactThresholdSource, readCommandBackgroundTaskLog, readCommandContextState, readCommandPermissionMode, readCommandPermissionsState, readCommandSessionInfo, readCurrentGitBranch, readEnabledUserLocalMemoryItem, readMergedProviderSettings, readMergedProviderSettingsFromPaths, readPackageVersion, readProviderSettings, readSettings, readStatusLineSettings, readUpdateCheckCache, recordCommandMemoryEvent, removeCommandContextReference, removeContextReference, resetAutoCompactThresholdSetting, resetUserConfig, resolveActiveProvider, resolveEnvReference, resolveGitBranch, resolveLatestSessionId, resolvePermissionModeAdapter, resolvePluginCommandAdapter, resolvePromptFileReferencePaths, resolvePromptFileReferences, resolveProviderSettingsWriteTargetPath, resolveSessionIdByIdOrName, resolveSettingsPathForScope, resolveSubagentLogDir, resolveUserLocalStorageRoot, restoreCommandEditCheckpoint, retrieveAgentToolDeps, rollbackCommandEditCheckpoint, sanitizeProviderProfileName, selectRelevantTasks, setCommandAutoCompactThreshold, setCurrentProvider, setUserLocalMemoryItem, shouldRunStartupCliUpdateCheck, storeAgentToolDeps, substituteVariables, suggestProviderProfileName, summarizeBackgroundJobGroup, testProviderProfileCommand, toContextReferenceRecords, toPromptFileReferenceRecords, tokeniseSlashCommand, transitionSelfHostingLoop, updateModelInSettings, updateTaskFileStatus, upsertContextReference, upsertProviderProfile, userPaths, validateCommandSessionReplayLog, validateProviderProfile, wrapEditCheckpointTools, wrapReversibleExecutionTools, writeAutoCompactThresholdSetting, writeCommandPermissionMode, writeSettings, writeUpdateCheckCache };
|
|
2769
|
+
export { AUTO_COMPACT_THRESHOLD_SETTINGS_KEY, AgentExecutor, BACKGROUND_COMMAND_DESCRIPTION, BACKGROUND_COMMAND_USAGE, BUILT_IN_AGENTS, BackgroundJobOrchestrator, BuiltinCommandSource, BundlePluginInstaller, BundlePluginLoader, CLEAR_COMMAND_DESCRIPTION, CLI_UPDATE_CACHE_TTL_MS, CLI_UPDATE_PACKAGE_NAME, CLI_UPDATE_REGISTRY_URL, CLI_UPDATE_TIMEOUT_MS, COST_COMMAND_DESCRIPTION, CommandRegistry, DEFAULT_AUTO_COMPACT_THRESHOLD, DEFAULT_STATUS_LINE_COMMAND_SETTINGS, EXECUTION_ORIGIN_METADATA_KEYS, EXIT_COMMAND_DESCRIPTION, EditCheckpointStore, HELP_COMMAND_DESCRIPTION, type IActionRequest, type IActionResponse, type IActiveModelChangeOptions, type IActiveModelChangeResult, type IAgentBackgroundTaskRequest, type IAgentDefinition, type IAgentExecutorOptions, type IAgentJobHostContext, type IAgentRuntime, type IAgentRuntimeConfig, type IAgentSession, type IAgentToolDeps, type IAppendMemoryInput, type IAppendMemoryResult, type IBackgroundJobGroupCreateRequest, type IBackgroundJobGroupState, type IBackgroundJobGroupSummary, type IBackgroundJobOrchestratorOptions, type IBackgroundJobResultEnvelope, type IBackgroundProcessToolDeps, type IBackgroundTaskError, type IBackgroundTaskHandle, type IBackgroundTaskInput, type IBackgroundTaskListFilter, type IBackgroundTaskLogCursor, type IBackgroundTaskLogPage, type IBackgroundTaskManager, type IBackgroundTaskManagerOptions, type IBackgroundTaskResult, type IBackgroundTaskRunner, type IBackgroundTaskSpawnerGroupRequest, type IBackgroundTaskStart, type IBackgroundTaskState, type IBaseBackgroundTaskRequest, type IBundlePluginFeatures, type IBundlePluginInstallerOptions, type IBundlePluginManifest, type IBundleSkill, type ICapabilityDescriptor, type ICheckForCliUpdateOptions, type ICliUpdateNotice, type ICommand, type ICommandAvailablePlugin, type ICommandChoicePromptOption, type ICommandExecutionToolDeps, type ICommandHostAdapters, type ICommandHostContext, type ICommandInfo, type ICommandInstalledPlugin, type ICommandInteraction, type ICommandInteractionHint, type ICommandListEntry, type ICommandMarketplaceSource, type ICommandMemoryStores, type ICommandModule, type ICommandPendingMemoryStore, type ICommandPermissionModeAdapter, type ICommandPickerAdapter, type ICommandPluginAdapter, type ICommandPluginReloadResult, type ICommandProcessAdapter, type ICommandProjectMemoryStore, type ICommandResult, type ICommandSessionInfo, type ICommandSessionReplayValidationReport, type ICommandSessionRuntime, type ICommandSettingsAdapter, type ICommandSettingsDocument, type ICommandSkillListEntry, type ICommandSource, type ICompactContextResult, type IConfigurableTransport, type IContextFileRefreshedEvent, type IContextReferenceAddResult, type IContextReferenceClearResult, type IContextReferenceInventoryLimits, type IContextReferenceItem, type IContextReferenceRemoveResult, type IContextReferenceUpsertResult, type ICreateExecutionWorkspaceSnapshotInput, type ICreateExecutionWorkspaceTaskSpawnerOptions, type ICreateLimitedOutputCaptureOptions, type ICreateLineDetailPageInput, type ICreateMainThreadDetailPageInput, type ICreateMainThreadEntryInput, type ICreateQueryOptions, type IDiffLine, type IEditCheckpointFileInspection, type IEditCheckpointFileRecord, type IEditCheckpointInspection, type IEditCheckpointInspectionPlan, type IEditCheckpointManifest, type IEditCheckpointRecorder, type IEditCheckpointRestoreResult, type IEditCheckpointSummary, type IEditCheckpointTurnInput, type IExecutionDetailCursor, type IExecutionDetailPage, type IExecutionDetailRecord, type IExecutionOrigin, type IExecutionResult, type IExecutionWorkspaceEntry, type IExecutionWorkspaceEntryRef, type IExecutionWorkspaceEvent, type IExecutionWorkspaceFilter, type IExecutionWorkspaceSnapshot, type IExecutionWorkspaceSnapshotOptions, type IExecutionWorkspaceTaskSpawner, type IForkExecutionOptions, type IHeadlessSessionOptions, type IInProcessSubagentRunnerDeps, type IInspectUserLocalStorageOptions, type IInstalledPluginRecord, type IInteractionChannel, type IInteractiveRuntime, type IInteractiveRuntimeOptions, type IInteractiveSession, type IInteractiveSessionEvents, type IInteractiveSessionRecord, type IInteractiveSessionShutdownOptions, type IInteractiveSessionStore, type IKnownMarketplaceEntry, type ILegacyProviderSettings, type ILimitedOutputCapture, type ILoadedBundlePlugin, type IMarketplaceClientOptions, type IMarketplaceManifest, type IMarketplacePluginEntry, type IMemoryCandidate, type IMemoryEvent, type IMemoryPendingRecord, type IMemoryReference, type IModelCommandToolProjection, type IOrgPolicy, type IPermissionRequest, type IPermissionsCommandState, type IPickItem, type IPluginSettings, type IPreparedSubagentWorktree, type IProcessBackgroundTaskRequest, type IProjectMemorySummary, type IProjectedCommandExecutionToolsDeps, type IProjectedModelCommandTool, type IPromptExecutorOptions, type IPromptFileReferenceDiagnostic, type IPromptFileReferenceHistoryData, type IPromptFileReferenceLimits, type IPromptFileReferenceRecord, type IPromptFileReferenceResolveOptions, type IPromptFileReferenceToken, type IPromptProvider, type IProviderCommandModuleOptions, type IProviderCommandSettingsAdapter, type IProviderProfileNameSuggestionInput, type IProviderProfileNameSuggestionOptions, type IProviderProfileSettings, type IProviderSettingsBuildOptions, type IProviderSettingsWriteTargetOptions, type IProviderSetupInput, type IProviderSetupPatch, type IProviderSwitchOptions, type IReadProviderSettingsOptions, type IResetUserConfigResult, type IResolveUserLocalStorageRootOptions, type IResolvedConfig, type IResolvedPromptFileReference, type IResolvedPromptFileReferences, type IResumableSessionSummary, type IReversibleExecutionOptions, type IReversibleToolSafetyContext, type IReversibleToolSafetyInput, type IReversibleToolSafetyReport, type ISelfHostingVerificationPlan, type ISelfHostingVerificationPlanInput, type ISelfHostingVerificationStep, type ISerializableProviderProfile, type ISkillActivationEvent, type ISkillActivationHistoryData, type ISkillExecutionCallbacks, type ISkillExecutionResult, type ISpawnAgentTaskRequest, type ISpawnProcessTaskRequest, type IStartupCliUpdatePolicyInput, type IStartupMemory, type IStatelessRuntimeConfig, type IStatusLineCommandSettings, type ISubagentJobHandle, type ISubagentJobResult, type ISubagentJobStart, type ISubagentJobState, type ISubagentManager, type ISubagentManagerOptions, type ISubagentOptions, type ISubagentPromptOptions, type ISubagentRunner, type ISubagentSpawnRequest, type ISubagentWorktreeAdapter, type ISubagentWorktreePrepareRequest, type ISystemCommand, type ITaskContextFile, type ITaskSelectionOptions, type IToolState, type IToolSummary, type ITransportAdapter, type ITransportConfig, type IUpdateCheckCache, type IUpdateTaskFileStatusOptions, type IUsageSnapshot, type IUserLocalMemoryDeleteResult, type IUserLocalMemoryItemOptions, type IUserLocalMemoryItemProjection, type IUserLocalMemoryListOptions, type IUserLocalMemoryListProjection, type IUserLocalMemorySetOptions, type IUserLocalStorageCategoryDefinition, type IUserLocalStorageCategoryProjection, type IUserLocalStorageInspection, type IUserLocalStorageItemSummary, type IWorktreeSubagentRunnerOptions, type InteractionEvent, InteractiveSession, LANGUAGE_COMMAND_ARGUMENT_HINT, LANGUAGE_COMMAND_DESCRIPTION, MEMORY_COMMAND_ARGUMENT_HINT, MEMORY_COMMAND_DESCRIPTION, MEMORY_COMMAND_USAGE, MEMORY_INDEX_MAX_BYTES, MEMORY_INDEX_MAX_LINES, MODEL_COMMAND_TOOL_PREFIX, MarketplaceClient, PERMISSIONS_COMMAND_DESCRIPTION, PERMISSION_MODE_ARGUMENT_HINT, PERMISSION_MODE_COMMAND_DESCRIPTION, PLUGIN_COMMAND_ARGUMENT_HINT, PLUGIN_COMMAND_DESCRIPTION, PROVIDER_SAFE_TOOL_NAME_PATTERN, type ParsedInput, PluginCommandSource, PluginSettingsStore, ProjectMemoryStore, PromptExecutor, ProviderConfigError, RECOMMENDED_RESPONSE_LANGUAGES, RELOAD_PLUGINS_COMMAND_DESCRIPTION, RENAME_COMMAND_DESCRIPTION, RENAME_COMMAND_USAGE, RESUME_COMMAND_DESCRIPTION, REWIND_COMMAND_ARGUMENT_HINT, REWIND_COMMAND_DESCRIPTION, STATUSLINE_COMMAND_ARGUMENT_HINT, STATUSLINE_COMMAND_DESCRIPTION, SettingsParseError, SkillCommandSource, type SkillPromptContext, SystemCommandExecutor, type TAutoCompactThreshold, type TAutoCompactThresholdSource, type TBackgroundJobGroupEvent, type TBackgroundJobGroupEventListener, type TBackgroundJobGroupIdFactory, type TBackgroundJobGroupStatus, type TBackgroundJobWaitPolicy, type TBackgroundPermissionPolicy, type TBackgroundPrimitive, type TBackgroundTaskErrorCategory, type TBackgroundTaskEvent, type TBackgroundTaskEventListener, type TBackgroundTaskIdFactory, type TBackgroundTaskIsolation, type TBackgroundTaskKind, type TBackgroundTaskMode, type TBackgroundTaskRequest, type TBackgroundTaskRunnerEvent, type TBackgroundTaskStatus, type TBackgroundTaskTimeoutReason, type TBackgroundTaskTransitionEvent, type TCapabilityKind, type TCapabilitySafety, type TCliUpdateCheckResult, type TCommandEffect, type TCommandInteractionPrompt, type TCommandModuleSessionRequirement, type TCommandResultDataValue, type TContextReferenceLoadType, type TContextReferenceStatus, type TEditCheckpointFileRestoreAction, type TEnabledPlugins, type TExecutionAttention, type TExecutionControl, type TExecutionDetailRecordKind, type TExecutionEntryKind, type TExecutionOriginKind, type TExecutionWorkspaceStatus, type TExecutionWorkspaceUpdateCause, type TExecutionWorkspaceVisibility, type TInstalledPluginsRegistry, type TInteractiveEventName, type TInteractivePermissionHandler, type TInteractiveSessionOptions, type TKnownMarketplacesRegistry, type TMarketplaceSource, type TMemoryCandidateStatus, type TMemoryType, type TPermissionResultValue, type TPluginInstallScope, type TPromptFileReferenceDiagnosticCode, type TPromptFileReferenceReason, type TProviderFactory, type TProviderSettingsDocument, type TQueryFunction, type TRecommendedResponseLanguage, type TReversibleExecutionIsolation, type TReversibleRollbackLayer, type TReversibleSafetyStatus, type TReversibleSideEffect, type TSelfHostingLoopEvent, type TSelfHostingLoopState, type TSelfHostingVerificationPhase, type TSessionFactory, type TSettingsCheck, type TSettingsData, type TSettingsScope, type TShellExecFn, type TSkillActivationInvocation, type TSkillActivationMode, type TSkillActivationSource, type TSkillActivationStatus, type TStatusLineCommandSettingsPatch, type TSubagentJobMode, type TSubagentJobStatus, type TSubagentRunnerFactory, type TSystemCommandLifecycle, type TTaskFileStatus, type TUserLocalMemoryCategory, type TUserLocalMemoryCommandExecutionEffect, type TUserLocalStorageCategory, USER_LOCAL_MEMORY_CATEGORIES, USER_LOCAL_STORAGE_CATEGORIES, USER_LOCAL_STORAGE_CATEGORY_DEFINITIONS, VALIDATE_SESSION_COMMAND_DESCRIPTION, VALID_PERMISSION_MODES, addCommandContextReference, applyActiveModelChange, applyProviderConfiguration, applyProviderSwitch, applyStatusLineSettings, assembleSubagentPrompt, buildBackgroundCommandSubcommands, buildLanguageCommandSubcommands, buildMemoryCommandSubcommands, buildPermissionModeSubcommands, buildPluginCommandSubcommands, buildPromptWithFileReferences, buildProviderProfile, buildProviderSetupPatch, buildRewindCommandSubcommands, buildStatusLineCommandSubcommands, cancelCommandBackgroundTask, checkForCliUpdate, checkSettingsDocument, checkSettingsFile, clearCommandContextReferences, clearContextReferences, clearConversationHistory, closeCommandBackgroundTask, compactCommandContext, compareSemverVersions, createAgentRuntime, createAgentTool, createBackgroundGroupExecutionEntryId, createBackgroundProcessTool, createBackgroundTaskExecutionEntryId, createBuiltinCommandModule, createCommandExecutionTool, createCommandMemoryStores, createCommandPendingMemoryStore, createCommandProjectMemoryStore, createContextReferenceItem, createDefaultTools, createExecutionOriginMetadata, createExecutionWorkspaceSnapshot, createExecutionWorkspaceTaskSpawner, createInProcessSubagentRunner, createInteractiveRuntime, createLineDetailPage, createMainThreadDetailPage, createMainThreadExecutionEntryId, createModelCommandToolProjection, createPluginRegistryReloadRequestedEffect, createPluginTuiRequestedEffect, createProjectSessionStore, createProjectedCommandExecutionTools, createPromptFileReferenceHistoryEntry, createProviderFromSettings, createProviderSafeModelCommandToolName, createQuery, createSessionExitRequestedEffect, createSessionPickerRequestedEffect, createSessionRenamedEffect, createStatelessRuntime, createSubagentLogger, createSubagentSession, createSystemCommands, createTestInteractiveSession, deleteProviderProfile, deleteSettings, deleteUserLocalMemoryItem, disableUserLocalMemoryItem, discoverTaskFiles, evaluateReversibleToolSafety, executeSkill, formatCliUpdateCheckMessage, formatCliUpdateNotice, formatCommandBackgroundTask, formatCommandBackgroundTaskList, formatCommandHelpMessage, formatCommandPermissionsMessage, formatCommandSessionReplayValidationReport, formatEnvReference, formatInvalidPermissionModeMessage, formatLanguageUsageMessage, formatOrgPolicyViolationMessage, formatProjectedModelCommandToolPromptDescription, formatPromptFileReferenceDiagnostics, formatTaskContext, getBuiltInAgent, getForkWorkerSuffix, getProviderSettingsPaths, getStartupCliUpdateNotice, getSubagentSuffix, getUserSettingsPath, getUserUpdateCheckCachePath, hasBlockingPromptFileReferenceDiagnostics, hasSensitiveCommandMemoryContent, hasUsableSecretReference, inspectCommandEditCheckpoint, inspectUserLocalMemoryItem, inspectUserLocalStorage, isApiKeyPlaintext, isCommandMemoryType, isEnvReference, isMemoryType, isNewerSemverVersion, isPermissionMode, isSlashCommand, isStatusLineCommandSettingsPatch, listActiveContextReferences, listCommandBackgroundTasks, listCommandContextReferences, listCommandEditCheckpoints, listCommandSessionAllowedTools, listCommandUsedMemoryReferences, listResumableSessionSummaries, listUserLocalMemoryItems, loadOrgPolicy, loadTaskContext, mergeProviderPatch, mergeProviders, mergeSettings, normalizeModelCommandName, parseCommandBackgroundLogCursor, parseExecutionWorkspaceEntryId, parseFrontmatter, parseInput, parseLanguageArgument, parsePermissionModeArgument, parsePromptFileReferences, parseSessionNameArgument, parseTaskFile, planSelfHostingVerification, preprocessShellCommands, probeProviderProfile, projectPaths, promptForApproval, readAutoCompactThreshold, readAutoCompactThresholdSource, readCommandBackgroundTaskLog, readCommandContextState, readCommandPermissionMode, readCommandPermissionsState, readCommandSessionInfo, readCurrentGitBranch, readEnabledUserLocalMemoryItem, readMergedProviderSettings, readMergedProviderSettingsFromPaths, readPackageVersion, readProviderSettings, readSettings, readStatusLineSettings, readUpdateCheckCache, recordCommandMemoryEvent, removeCommandContextReference, removeContextReference, resetAutoCompactThresholdSetting, resetUserConfig, resolveActiveProvider, resolveEnvDefaultProvider, resolveEnvReference, resolveGitBranch, resolveLatestSessionId, resolvePermissionModeAdapter, resolvePluginCommandAdapter, resolvePromptFileReferencePaths, resolvePromptFileReferences, resolveProviderSettingsWriteTargetPath, resolveSessionIdByIdOrName, resolveSettingsPathForScope, resolveSubagentLogDir, resolveUserLocalStorageRoot, restoreCommandEditCheckpoint, retrieveAgentToolDeps, rollbackCommandEditCheckpoint, sanitizeProviderProfileName, selectRelevantTasks, setCommandAutoCompactThreshold, setCurrentProvider, setUserLocalMemoryItem, shouldRunStartupCliUpdateCheck, storeAgentToolDeps, substituteVariables, suggestProviderProfileName, summarizeBackgroundJobGroup, testProviderProfileCommand, toContextReferenceRecords, toPromptFileReferenceRecords, tokeniseSlashCommand, transitionSelfHostingLoop, updateModelInSettings, updateTaskFileStatus, upsertContextReference, upsertProviderProfile, userPaths, validateCommandSessionReplayLog, validateProviderProfile, wrapEditCheckpointTools, wrapReversibleExecutionTools, writeAutoCompactThresholdSetting, writeCommandPermissionMode, writeSettings, writeUpdateCheckCache };
|
|
3341
2770
|
//# sourceMappingURL=index.d.ts.map
|