kode-sdk 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +74 -0
- package/dist/core/agent/breakpoint-manager.d.ts +16 -0
- package/dist/core/agent/breakpoint-manager.js +36 -0
- package/dist/core/agent/message-queue.d.ts +26 -0
- package/dist/core/agent/message-queue.js +47 -0
- package/dist/core/agent/permission-manager.d.ts +9 -0
- package/dist/core/agent/permission-manager.js +32 -0
- package/dist/core/agent/todo-manager.d.ts +26 -0
- package/dist/core/agent/todo-manager.js +91 -0
- package/dist/core/agent/tool-runner.d.ts +9 -0
- package/dist/core/agent/tool-runner.js +45 -0
- package/dist/core/agent.d.ts +271 -0
- package/dist/core/agent.js +2334 -0
- package/dist/core/checkpointer.d.ts +96 -0
- package/dist/core/checkpointer.js +57 -0
- package/dist/core/checkpointers/file.d.ts +20 -0
- package/dist/core/checkpointers/file.js +153 -0
- package/dist/core/checkpointers/index.d.ts +3 -0
- package/dist/core/checkpointers/index.js +9 -0
- package/dist/core/checkpointers/redis.d.ts +35 -0
- package/dist/core/checkpointers/redis.js +113 -0
- package/dist/core/compression/ai-strategy.d.ts +53 -0
- package/dist/core/compression/ai-strategy.js +298 -0
- package/dist/core/compression/index.d.ts +12 -0
- package/dist/core/compression/index.js +27 -0
- package/dist/core/compression/prompts.d.ts +35 -0
- package/dist/core/compression/prompts.js +114 -0
- package/dist/core/compression/simple-strategy.d.ts +44 -0
- package/dist/core/compression/simple-strategy.js +240 -0
- package/dist/core/compression/token-estimator.d.ts +42 -0
- package/dist/core/compression/token-estimator.js +121 -0
- package/dist/core/compression/types.d.ts +140 -0
- package/dist/core/compression/types.js +9 -0
- package/dist/core/config.d.ts +10 -0
- package/dist/core/config.js +2 -0
- package/dist/core/context-manager.d.ts +115 -0
- package/dist/core/context-manager.js +107 -0
- package/dist/core/errors.d.ts +6 -0
- package/dist/core/errors.js +17 -0
- package/dist/core/events.d.ts +49 -0
- package/dist/core/events.js +312 -0
- package/dist/core/file-pool.d.ts +43 -0
- package/dist/core/file-pool.js +120 -0
- package/dist/core/hooks.d.ts +23 -0
- package/dist/core/hooks.js +71 -0
- package/dist/core/permission-modes.d.ts +31 -0
- package/dist/core/permission-modes.js +61 -0
- package/dist/core/pool.d.ts +31 -0
- package/dist/core/pool.js +87 -0
- package/dist/core/room.d.ts +15 -0
- package/dist/core/room.js +57 -0
- package/dist/core/scheduler.d.ts +33 -0
- package/dist/core/scheduler.js +58 -0
- package/dist/core/template.d.ts +69 -0
- package/dist/core/template.js +35 -0
- package/dist/core/time-bridge.d.ts +18 -0
- package/dist/core/time-bridge.js +100 -0
- package/dist/core/todo.d.ts +34 -0
- package/dist/core/todo.js +89 -0
- package/dist/core/types.d.ts +380 -0
- package/dist/core/types.js +3 -0
- package/dist/index.d.ts +51 -0
- package/dist/index.js +147 -0
- package/dist/infra/provider.d.ts +144 -0
- package/dist/infra/provider.js +294 -0
- package/dist/infra/sandbox-factory.d.ts +10 -0
- package/dist/infra/sandbox-factory.js +21 -0
- package/dist/infra/sandbox.d.ts +87 -0
- package/dist/infra/sandbox.js +255 -0
- package/dist/infra/store.d.ts +154 -0
- package/dist/infra/store.js +584 -0
- package/dist/skills/index.d.ts +12 -0
- package/dist/skills/index.js +36 -0
- package/dist/skills/injector.d.ts +29 -0
- package/dist/skills/injector.js +96 -0
- package/dist/skills/loader.d.ts +59 -0
- package/dist/skills/loader.js +215 -0
- package/dist/skills/manager.d.ts +85 -0
- package/dist/skills/manager.js +221 -0
- package/dist/skills/parser.d.ts +40 -0
- package/dist/skills/parser.js +107 -0
- package/dist/skills/types.d.ts +107 -0
- package/dist/skills/types.js +7 -0
- package/dist/skills/validator.d.ts +30 -0
- package/dist/skills/validator.js +121 -0
- package/dist/store.d.ts +1 -0
- package/dist/store.js +5 -0
- package/dist/tools/bash_kill/index.d.ts +1 -0
- package/dist/tools/bash_kill/index.js +35 -0
- package/dist/tools/bash_kill/prompt.d.ts +2 -0
- package/dist/tools/bash_kill/prompt.js +14 -0
- package/dist/tools/bash_logs/index.d.ts +1 -0
- package/dist/tools/bash_logs/index.js +40 -0
- package/dist/tools/bash_logs/prompt.d.ts +2 -0
- package/dist/tools/bash_logs/prompt.js +14 -0
- package/dist/tools/bash_run/index.d.ts +16 -0
- package/dist/tools/bash_run/index.js +61 -0
- package/dist/tools/bash_run/prompt.d.ts +2 -0
- package/dist/tools/bash_run/prompt.js +18 -0
- package/dist/tools/builtin.d.ts +9 -0
- package/dist/tools/builtin.js +27 -0
- package/dist/tools/define.d.ts +101 -0
- package/dist/tools/define.js +214 -0
- package/dist/tools/fs_edit/index.d.ts +1 -0
- package/dist/tools/fs_edit/index.js +62 -0
- package/dist/tools/fs_edit/prompt.d.ts +2 -0
- package/dist/tools/fs_edit/prompt.js +15 -0
- package/dist/tools/fs_glob/index.d.ts +1 -0
- package/dist/tools/fs_glob/index.js +60 -0
- package/dist/tools/fs_glob/prompt.d.ts +2 -0
- package/dist/tools/fs_glob/prompt.js +18 -0
- package/dist/tools/fs_grep/index.d.ts +1 -0
- package/dist/tools/fs_grep/index.js +66 -0
- package/dist/tools/fs_grep/prompt.d.ts +2 -0
- package/dist/tools/fs_grep/prompt.js +16 -0
- package/dist/tools/fs_multi_edit/index.d.ts +1 -0
- package/dist/tools/fs_multi_edit/index.js +106 -0
- package/dist/tools/fs_multi_edit/prompt.d.ts +2 -0
- package/dist/tools/fs_multi_edit/prompt.js +16 -0
- package/dist/tools/fs_read/index.d.ts +1 -0
- package/dist/tools/fs_read/index.js +40 -0
- package/dist/tools/fs_read/prompt.d.ts +2 -0
- package/dist/tools/fs_read/prompt.js +16 -0
- package/dist/tools/fs_rm/index.d.ts +1 -0
- package/dist/tools/fs_rm/index.js +41 -0
- package/dist/tools/fs_rm/prompt.d.ts +2 -0
- package/dist/tools/fs_rm/prompt.js +14 -0
- package/dist/tools/fs_write/index.d.ts +1 -0
- package/dist/tools/fs_write/index.js +40 -0
- package/dist/tools/fs_write/prompt.d.ts +2 -0
- package/dist/tools/fs_write/prompt.js +15 -0
- package/dist/tools/index.d.ts +9 -0
- package/dist/tools/index.js +56 -0
- package/dist/tools/mcp.d.ts +73 -0
- package/dist/tools/mcp.js +198 -0
- package/dist/tools/registry.d.ts +29 -0
- package/dist/tools/registry.js +26 -0
- package/dist/tools/skill_activate/index.d.ts +5 -0
- package/dist/tools/skill_activate/index.js +63 -0
- package/dist/tools/skill_list/index.d.ts +5 -0
- package/dist/tools/skill_list/index.js +48 -0
- package/dist/tools/skill_resource/index.d.ts +5 -0
- package/dist/tools/skill_resource/index.js +82 -0
- package/dist/tools/task_run/index.d.ts +7 -0
- package/dist/tools/task_run/index.js +60 -0
- package/dist/tools/task_run/prompt.d.ts +5 -0
- package/dist/tools/task_run/prompt.js +29 -0
- package/dist/tools/todo_read/index.d.ts +1 -0
- package/dist/tools/todo_read/index.js +29 -0
- package/dist/tools/todo_read/prompt.d.ts +2 -0
- package/dist/tools/todo_read/prompt.js +18 -0
- package/dist/tools/todo_write/index.d.ts +1 -0
- package/dist/tools/todo_write/index.js +42 -0
- package/dist/tools/todo_write/prompt.d.ts +2 -0
- package/dist/tools/todo_write/prompt.js +23 -0
- package/dist/tools/tool.d.ts +43 -0
- package/dist/tools/tool.js +104 -0
- package/dist/tools/toolkit.d.ts +69 -0
- package/dist/tools/toolkit.js +98 -0
- package/dist/tools/type-inference.d.ts +127 -0
- package/dist/tools/type-inference.js +207 -0
- package/dist/utils/agent-id.d.ts +1 -0
- package/dist/utils/agent-id.js +28 -0
- package/dist/utils/session-id.d.ts +21 -0
- package/dist/utils/session-id.js +64 -0
- package/dist/utils/unicode.d.ts +17 -0
- package/dist/utils/unicode.js +62 -0
- package/package.json +117 -0
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
import { AgentEvent, AgentEventEnvelope, AgentInfo, AgentStatus, Bookmark, ControlEvent, MonitorEvent, ProgressEvent, ReminderOptions, ResumeStrategy, SnapshotId } from './types';
|
|
2
|
+
import { Hooks } from './hooks';
|
|
3
|
+
import { Scheduler } from './scheduler';
|
|
4
|
+
import { TodoInput, TodoItem } from './todo';
|
|
5
|
+
import { AgentTemplateRegistry, AgentTemplateDefinition, PermissionConfig, SubAgentConfig, TodoConfig } from './template';
|
|
6
|
+
import { Store } from '../infra/store';
|
|
7
|
+
import { Sandbox, SandboxKind } from '../infra/sandbox';
|
|
8
|
+
import { SandboxFactory } from '../infra/sandbox-factory';
|
|
9
|
+
import { ModelProvider, ModelConfig } from '../infra/provider';
|
|
10
|
+
import { ToolRegistry, ToolInstance, ToolDescriptor } from '../tools/registry';
|
|
11
|
+
import { ContextManagerOptions } from './context-manager';
|
|
12
|
+
import { SendOptions as QueueSendOptions } from './agent/message-queue';
|
|
13
|
+
import { SkillsManager, SkillsConfig, Skill } from '../skills';
|
|
14
|
+
export interface ModelFactory {
|
|
15
|
+
(config: ModelConfig): ModelProvider;
|
|
16
|
+
}
|
|
17
|
+
export interface AgentDependencies {
|
|
18
|
+
store: Store;
|
|
19
|
+
templateRegistry: AgentTemplateRegistry;
|
|
20
|
+
sandboxFactory: SandboxFactory;
|
|
21
|
+
toolRegistry: ToolRegistry;
|
|
22
|
+
modelFactory?: ModelFactory;
|
|
23
|
+
}
|
|
24
|
+
export type SendOptions = QueueSendOptions;
|
|
25
|
+
export interface SandboxConfig {
|
|
26
|
+
kind: SandboxKind;
|
|
27
|
+
workDir?: string;
|
|
28
|
+
enforceBoundary?: boolean;
|
|
29
|
+
allowPaths?: string[];
|
|
30
|
+
watchFiles?: boolean;
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
}
|
|
33
|
+
export interface AgentConfig {
|
|
34
|
+
agentId?: string;
|
|
35
|
+
templateId: string;
|
|
36
|
+
templateVersion?: string;
|
|
37
|
+
model?: ModelProvider;
|
|
38
|
+
modelConfig?: ModelConfig;
|
|
39
|
+
sandbox?: Sandbox | SandboxConfig;
|
|
40
|
+
tools?: string[];
|
|
41
|
+
exposeThinking?: boolean;
|
|
42
|
+
overrides?: {
|
|
43
|
+
permission?: PermissionConfig;
|
|
44
|
+
todo?: TodoConfig;
|
|
45
|
+
subagents?: SubAgentConfig;
|
|
46
|
+
hooks?: Hooks;
|
|
47
|
+
};
|
|
48
|
+
context?: ContextManagerOptions;
|
|
49
|
+
skills?: SkillsConfig;
|
|
50
|
+
metadata?: Record<string, any>;
|
|
51
|
+
}
|
|
52
|
+
interface SubAgentRuntime {
|
|
53
|
+
depthRemaining: number;
|
|
54
|
+
}
|
|
55
|
+
export interface CompleteResult {
|
|
56
|
+
status: 'ok' | 'paused';
|
|
57
|
+
text?: string;
|
|
58
|
+
last?: Bookmark;
|
|
59
|
+
permissionIds?: string[];
|
|
60
|
+
agentId?: string;
|
|
61
|
+
}
|
|
62
|
+
export interface StreamOptions {
|
|
63
|
+
since?: Bookmark;
|
|
64
|
+
kinds?: Array<ProgressEvent['type']>;
|
|
65
|
+
}
|
|
66
|
+
export interface SubscribeOptions {
|
|
67
|
+
since?: Bookmark;
|
|
68
|
+
kinds?: Array<AgentEvent['type']>;
|
|
69
|
+
}
|
|
70
|
+
export declare class Agent {
|
|
71
|
+
private readonly config;
|
|
72
|
+
private readonly deps;
|
|
73
|
+
private readonly events;
|
|
74
|
+
private readonly hooks;
|
|
75
|
+
private readonly scheduler;
|
|
76
|
+
private readonly todoService?;
|
|
77
|
+
private readonly contextManager;
|
|
78
|
+
private readonly filePool;
|
|
79
|
+
private readonly breakpoints;
|
|
80
|
+
private readonly permissions;
|
|
81
|
+
private readonly model;
|
|
82
|
+
private readonly sandbox;
|
|
83
|
+
private readonly sandboxConfig?;
|
|
84
|
+
private readonly todoConfig?;
|
|
85
|
+
private readonly messageQueue;
|
|
86
|
+
private readonly todoManager;
|
|
87
|
+
private readonly ajv;
|
|
88
|
+
private readonly validatorCache;
|
|
89
|
+
private invalidToolArgsStreak;
|
|
90
|
+
private invalidToolArgsLastTool;
|
|
91
|
+
private suppressAutoContinue;
|
|
92
|
+
private suppressAutoContinueReason?;
|
|
93
|
+
private nextModelToolsOverride;
|
|
94
|
+
private nextModelNudgeText?;
|
|
95
|
+
private readonly toolControllers;
|
|
96
|
+
private readonly toolAbortNotes;
|
|
97
|
+
private readonly toolTimeoutMs;
|
|
98
|
+
private readonly maxToolConcurrency;
|
|
99
|
+
private readonly tools;
|
|
100
|
+
private readonly toolDescriptors;
|
|
101
|
+
private readonly toolDescriptorIndex;
|
|
102
|
+
private createdAt;
|
|
103
|
+
private readonly pendingPermissions;
|
|
104
|
+
private readonly toolRunner;
|
|
105
|
+
private readonly skillsManager?;
|
|
106
|
+
private readonly skillsConfig?;
|
|
107
|
+
private messages;
|
|
108
|
+
private state;
|
|
109
|
+
private toolRecords;
|
|
110
|
+
private interrupted;
|
|
111
|
+
private processingPromise;
|
|
112
|
+
private lastProcessingStart;
|
|
113
|
+
private readonly PROCESSING_TIMEOUT;
|
|
114
|
+
private processingQueued;
|
|
115
|
+
private stepCount;
|
|
116
|
+
private lastSfpIndex;
|
|
117
|
+
private lastBookmark?;
|
|
118
|
+
private exposeThinking;
|
|
119
|
+
private permission;
|
|
120
|
+
private subagents?;
|
|
121
|
+
private template;
|
|
122
|
+
private lineage;
|
|
123
|
+
private get persistentStore();
|
|
124
|
+
private static requireStore;
|
|
125
|
+
constructor(config: AgentConfig, deps: AgentDependencies, runtime: {
|
|
126
|
+
template: AgentTemplateDefinition;
|
|
127
|
+
model: ModelProvider;
|
|
128
|
+
sandbox: Sandbox;
|
|
129
|
+
sandboxConfig?: SandboxConfig;
|
|
130
|
+
tools: ToolInstance[];
|
|
131
|
+
toolDescriptors: ToolDescriptor[];
|
|
132
|
+
permission: PermissionConfig;
|
|
133
|
+
todoConfig?: TodoConfig;
|
|
134
|
+
subagents?: SubAgentConfig;
|
|
135
|
+
context?: ContextManagerOptions;
|
|
136
|
+
skills?: SkillsConfig;
|
|
137
|
+
});
|
|
138
|
+
get agentId(): string;
|
|
139
|
+
static create(config: AgentConfig, deps: AgentDependencies): Promise<Agent>;
|
|
140
|
+
private initialize;
|
|
141
|
+
chatStream(input: string, opts?: StreamOptions): AsyncIterable<AgentEventEnvelope<ProgressEvent>>;
|
|
142
|
+
chat(input: string, opts?: StreamOptions): Promise<CompleteResult>;
|
|
143
|
+
complete(input: string, opts?: StreamOptions): Promise<CompleteResult>;
|
|
144
|
+
stream(input: string, opts?: StreamOptions): AsyncIterable<AgentEventEnvelope<ProgressEvent>>;
|
|
145
|
+
send(text: string, options?: SendOptions): Promise<string>;
|
|
146
|
+
schedule(): Scheduler;
|
|
147
|
+
/**
|
|
148
|
+
* Force the agent to (re)enter the processing loop.
|
|
149
|
+
* Useful for recovering from transient stalls after restarts.
|
|
150
|
+
*/
|
|
151
|
+
kick(): void;
|
|
152
|
+
on<T extends ControlEvent['type'] | MonitorEvent['type']>(event: T, handler: (evt: any) => void): () => void;
|
|
153
|
+
subscribe(channels?: Array<'progress' | 'control' | 'monitor'>, opts?: SubscribeOptions): AsyncIterable<AgentEventEnvelope<AgentEvent>>;
|
|
154
|
+
getTodos(): TodoItem[];
|
|
155
|
+
setTodos(todos: TodoInput[]): Promise<void>;
|
|
156
|
+
updateTodo(todo: TodoInput): Promise<void>;
|
|
157
|
+
deleteTodo(id: string): Promise<void>;
|
|
158
|
+
decide(permissionId: string, decision: 'allow' | 'deny', note?: string): Promise<void>;
|
|
159
|
+
interrupt(opts?: {
|
|
160
|
+
note?: string;
|
|
161
|
+
}): Promise<void>;
|
|
162
|
+
/**
|
|
163
|
+
* Abort a single in-flight tool call (TS-aligned: per-tool AbortController).
|
|
164
|
+
* Returns true when an active controller existed and was aborted.
|
|
165
|
+
*/
|
|
166
|
+
abortToolCall(callId: string, opts?: {
|
|
167
|
+
note?: string;
|
|
168
|
+
}): boolean;
|
|
169
|
+
snapshot(label?: string): Promise<SnapshotId>;
|
|
170
|
+
fork(sel?: SnapshotId | {
|
|
171
|
+
at?: string;
|
|
172
|
+
}): Promise<Agent>;
|
|
173
|
+
status(): Promise<AgentStatus>;
|
|
174
|
+
info(): Promise<AgentInfo>;
|
|
175
|
+
private setBreakpoint;
|
|
176
|
+
remind(content: string, options?: ReminderOptions): void;
|
|
177
|
+
/**
|
|
178
|
+
* 获取 Skills Manager
|
|
179
|
+
*/
|
|
180
|
+
getSkillsManager(): SkillsManager | undefined;
|
|
181
|
+
/**
|
|
182
|
+
* 激活 Skill 并将其完整指令注入上下文
|
|
183
|
+
*/
|
|
184
|
+
activateSkill(name: string, activatedBy?: 'auto' | 'agent' | 'user'): Promise<Skill>;
|
|
185
|
+
/**
|
|
186
|
+
* 停用 Skill(并注入一个“取消生效”提醒,覆盖之前的指令)
|
|
187
|
+
*/
|
|
188
|
+
deactivateSkill(name: string): Promise<void>;
|
|
189
|
+
/**
|
|
190
|
+
* 将 Skills 元数据注入系统提示
|
|
191
|
+
*/
|
|
192
|
+
private injectSkillsIntoSystemPrompt;
|
|
193
|
+
spawnSubAgent(templateId: string, prompt: string, runtime?: SubAgentRuntime): Promise<CompleteResult>;
|
|
194
|
+
/**
|
|
195
|
+
* Create and run a sub-agent with a task, without requiring subagents config.
|
|
196
|
+
* This is useful for tools that want to delegate work to specialized agents.
|
|
197
|
+
*
|
|
198
|
+
* @param config.streamEvents - Whether to forward sub-agent events to the parent agent.
|
|
199
|
+
* Defaults to true. Set to false to disable streaming.
|
|
200
|
+
*/
|
|
201
|
+
delegateTask(config: {
|
|
202
|
+
templateId: string;
|
|
203
|
+
prompt: string;
|
|
204
|
+
model?: string;
|
|
205
|
+
tools?: string[];
|
|
206
|
+
callId?: string;
|
|
207
|
+
streamEvents?: boolean;
|
|
208
|
+
}): Promise<CompleteResult>;
|
|
209
|
+
static resume(agentId: string, config: AgentConfig, deps: AgentDependencies, opts?: {
|
|
210
|
+
autoRun?: boolean;
|
|
211
|
+
strategy?: ResumeStrategy;
|
|
212
|
+
}): Promise<Agent>;
|
|
213
|
+
static resumeFromStore(agentId: string, deps: AgentDependencies, opts?: {
|
|
214
|
+
autoRun?: boolean;
|
|
215
|
+
strategy?: ResumeStrategy;
|
|
216
|
+
overrides?: Partial<AgentConfig>;
|
|
217
|
+
}): Promise<Agent>;
|
|
218
|
+
private ensureProcessing;
|
|
219
|
+
private runStep;
|
|
220
|
+
private executeTools;
|
|
221
|
+
private processToolCall;
|
|
222
|
+
private registerToolRecord;
|
|
223
|
+
private updateToolRecord;
|
|
224
|
+
private snapshotToolRecord;
|
|
225
|
+
private normalizeToolRecord;
|
|
226
|
+
private preview;
|
|
227
|
+
private sanitizeOrphanToolResults;
|
|
228
|
+
private requestPermission;
|
|
229
|
+
private findLastSfp;
|
|
230
|
+
private appendSyntheticToolResults;
|
|
231
|
+
private autoSealIncompleteCalls;
|
|
232
|
+
private findNextAssistantIndex;
|
|
233
|
+
private ensureSealedToolRecordForDanglingUse;
|
|
234
|
+
private autoSealDanglingToolUses;
|
|
235
|
+
private recoverFromStaleAwaitingApprovalAfterCrash;
|
|
236
|
+
private validateToolArgs;
|
|
237
|
+
private makeToolResult;
|
|
238
|
+
private buildSealPayload;
|
|
239
|
+
private wrapReminder;
|
|
240
|
+
private getToolSchemas;
|
|
241
|
+
private setState;
|
|
242
|
+
private persistMessages;
|
|
243
|
+
private persistToolRecords;
|
|
244
|
+
private persistInfo;
|
|
245
|
+
private registerTodoTools;
|
|
246
|
+
/**
|
|
247
|
+
* 收集所有工具的使用说明
|
|
248
|
+
*/
|
|
249
|
+
private collectToolPrompts;
|
|
250
|
+
/**
|
|
251
|
+
* 渲染工具手册
|
|
252
|
+
*/
|
|
253
|
+
private renderManual;
|
|
254
|
+
/**
|
|
255
|
+
* 刷新工具手册(运行时工具变更时调用)
|
|
256
|
+
*/
|
|
257
|
+
private refreshToolManual;
|
|
258
|
+
/**
|
|
259
|
+
* 根据错误类型生成建议
|
|
260
|
+
*/
|
|
261
|
+
private getErrorRecommendations;
|
|
262
|
+
/**
|
|
263
|
+
* 将工具手册注入到系统提示中
|
|
264
|
+
*/
|
|
265
|
+
private injectManualIntoSystemPrompt;
|
|
266
|
+
private enqueueMessage;
|
|
267
|
+
private handleExternalFileChange;
|
|
268
|
+
private relativePath;
|
|
269
|
+
private static generateAgentId;
|
|
270
|
+
}
|
|
271
|
+
export {};
|