@theokit/sdk-tools 0.15.1 → 0.17.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/CHANGELOG.md +22 -0
- package/dist/index.cjs +63 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +38 -1
- package/dist/index.d.ts +38 -1
- package/dist/index.js +62 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -75,6 +75,27 @@ interface SessionArtifactStore {
|
|
|
75
75
|
*/
|
|
76
76
|
declare function createSessionArtifactStore(options: SessionArtifactStoreOptions): SessionArtifactStore;
|
|
77
77
|
|
|
78
|
+
/**
|
|
79
|
+
* `current_time` — built-in tool for coding agents.
|
|
80
|
+
*
|
|
81
|
+
* Returns the current date-time. Codex-faithful at the core (its `clock`/`curr_time` tool returns UTC
|
|
82
|
+
* as `YYYY-MM-DD HH:MM:SS UTC`); this built-in keeps that default and adds an optional IANA `timezone`
|
|
83
|
+
* (additive superset — omitted ⇒ UTC, exactly Codex's behavior) plus an unambiguous `iso` instant.
|
|
84
|
+
*
|
|
85
|
+
* The clock is injectable so the tool is deterministic under test (testing.md §6: never read the real
|
|
86
|
+
* wall clock in a unit test).
|
|
87
|
+
*
|
|
88
|
+
* Result shape (always a JSON string):
|
|
89
|
+
* - `{ ok: true, current_time: "YYYY-MM-DD HH:MM:SS <tz>", iso: string, timezone: string }`
|
|
90
|
+
* - `{ ok: false, error: "invalid_timezone", timezone }`
|
|
91
|
+
*/
|
|
92
|
+
|
|
93
|
+
interface CreateCurrentTimeToolOptions {
|
|
94
|
+
/** Injectable clock — defaults to `() => new Date()`. Pass a fixed clock for deterministic tests. */
|
|
95
|
+
clock?: () => Date;
|
|
96
|
+
}
|
|
97
|
+
declare function createCurrentTimeTool(opts?: CreateCurrentTimeToolOptions): CustomTool;
|
|
98
|
+
|
|
78
99
|
/**
|
|
79
100
|
* `edit_file` — built-in tool for coding agents.
|
|
80
101
|
*
|
|
@@ -889,6 +910,22 @@ interface TruncationResult {
|
|
|
889
910
|
}
|
|
890
911
|
declare function truncateOutput(output: string, opts?: TruncationOptions): TruncationResult;
|
|
891
912
|
|
|
913
|
+
/**
|
|
914
|
+
* `update_plan` — built-in tool for coding agents.
|
|
915
|
+
*
|
|
916
|
+
* Codex-faithful: the model posts a DECLARATIVE plan — an ordered list of short steps, each
|
|
917
|
+
* `pending | in_progress | completed` — and refreshes it as work proceeds. Codex's invariant is
|
|
918
|
+
* "exactly one step in_progress until everything is done"; this tool WARNS (never rejects) when that
|
|
919
|
+
* doesn't hold, so the agent self-corrects on the next update rather than failing the turn.
|
|
920
|
+
*
|
|
921
|
+
* Surface-agnostic by design (M17 DX): the result is STRUCTURED (`{ ok, steps, warning? }`) — each
|
|
922
|
+
* surface (terminal TUI, desktop, web) renders the checklist however it likes, rather than the package
|
|
923
|
+
* hard-coding glyphs. Result shape (always a JSON string):
|
|
924
|
+
* - `{ ok: true, explanation: string | null, steps: PlanStep[], warning?: string }`
|
|
925
|
+
*/
|
|
926
|
+
|
|
927
|
+
declare function createUpdatePlanTool(): CustomTool;
|
|
928
|
+
|
|
892
929
|
/**
|
|
893
930
|
* `web_fetch` — built-in tool for coding agents.
|
|
894
931
|
*
|
|
@@ -1052,4 +1089,4 @@ interface CreateWriteFileToolOptions {
|
|
|
1052
1089
|
}
|
|
1053
1090
|
declare function createWriteFileTool(opts: CreateWriteFileToolOptions): CustomTool;
|
|
1054
1091
|
|
|
1055
|
-
export { CatastrophicCommandError, type CommandPolicy, ContextMatchError, type ContextMatchReason, type CreateApplyPatchToolOptions, type CreateBraveWebSearchAdapterOptions, type CreateEditFileToolOptions, type CreateGenericHttpSearchAdapterOptions, type CreateGitDiffToolOptions, type CreateGlobToolOptions, type CreateInteractiveShellToolOptions, type CreateListDirToolOptions, type CreateReadFileToolOptions, type CreateRunVitestToolOptions, type CreateSearchTextToolOptions, type CreateShellToolOptions, type CreateWebFetchToolOptions, type CreateWebSearchToolOptions, type CreateWriteFileToolOptions, DEFAULT_TOOL_GUIDANCE, type EnvContextOptions, type PlanModeTool, type PlanModeToolOptions, type PlanModeToolWithStore, type PlanNode, type QuestionTool, type QuestionToolOptions, ReadTracker, ReasoningTools, RedirectBlockedError, type RepoMapOptions, type ResolveAndScreenOptions, type ScreenedFetchOptions, type SessionArtifactStore, type SessionArtifactStoreOptions, SsrfBlockedError, type TodoItem, type TodolistTool, type ToolGuidanceMap, type TruncationOptions, type TruncationResult, type VitestSummary, type WebSearchCallback, type WebSearchResult, buildEnvContext, buildRepoMap, catastrophicShellReason, commandDenialReason, createApplyPatchTool, createBraveWebSearchAdapter, createEditFileTool, createGenericHttpSearchAdapter, createGitDiffTool, createGlobTool, createInteractiveShellTool, createListDirTool, createPlanModeTool, createQuestionTool, createReadFileTool, createRunVitestTool, createSearchTextTool, createSessionArtifactStore, createShellTool, createTodolistTool, createWebFetchTool, createWebSearchTool, createWriteFileTool, createWriteStdinTool, denyCatastrophicCommands, formatCode, formatDiff, formatError, formatFileList, injectGuidance, isBlockedIp, isCommandAllowed, renderToolList, replaceUnique, resolveAndScreen, screenedFetch, todoItemsToPlanNodes, truncateOutput, withDefaultGuidance, withDescription, withName, withShellExitGuidance, withToolResultGuidance };
|
|
1092
|
+
export { CatastrophicCommandError, type CommandPolicy, ContextMatchError, type ContextMatchReason, type CreateApplyPatchToolOptions, type CreateBraveWebSearchAdapterOptions, type CreateCurrentTimeToolOptions, type CreateEditFileToolOptions, type CreateGenericHttpSearchAdapterOptions, type CreateGitDiffToolOptions, type CreateGlobToolOptions, type CreateInteractiveShellToolOptions, type CreateListDirToolOptions, type CreateReadFileToolOptions, type CreateRunVitestToolOptions, type CreateSearchTextToolOptions, type CreateShellToolOptions, type CreateWebFetchToolOptions, type CreateWebSearchToolOptions, type CreateWriteFileToolOptions, DEFAULT_TOOL_GUIDANCE, type EnvContextOptions, type PlanModeTool, type PlanModeToolOptions, type PlanModeToolWithStore, type PlanNode, type QuestionTool, type QuestionToolOptions, ReadTracker, ReasoningTools, RedirectBlockedError, type RepoMapOptions, type ResolveAndScreenOptions, type ScreenedFetchOptions, type SessionArtifactStore, type SessionArtifactStoreOptions, SsrfBlockedError, type TodoItem, type TodolistTool, type ToolGuidanceMap, type TruncationOptions, type TruncationResult, type VitestSummary, type WebSearchCallback, type WebSearchResult, buildEnvContext, buildRepoMap, catastrophicShellReason, commandDenialReason, createApplyPatchTool, createBraveWebSearchAdapter, createCurrentTimeTool, createEditFileTool, createGenericHttpSearchAdapter, createGitDiffTool, createGlobTool, createInteractiveShellTool, createListDirTool, createPlanModeTool, createQuestionTool, createReadFileTool, createRunVitestTool, createSearchTextTool, createSessionArtifactStore, createShellTool, createTodolistTool, createUpdatePlanTool, createWebFetchTool, createWebSearchTool, createWriteFileTool, createWriteStdinTool, denyCatastrophicCommands, formatCode, formatDiff, formatError, formatFileList, injectGuidance, isBlockedIp, isCommandAllowed, renderToolList, replaceUnique, resolveAndScreen, screenedFetch, todoItemsToPlanNodes, truncateOutput, withDefaultGuidance, withDescription, withName, withShellExitGuidance, withToolResultGuidance };
|
package/dist/index.d.ts
CHANGED
|
@@ -75,6 +75,27 @@ interface SessionArtifactStore {
|
|
|
75
75
|
*/
|
|
76
76
|
declare function createSessionArtifactStore(options: SessionArtifactStoreOptions): SessionArtifactStore;
|
|
77
77
|
|
|
78
|
+
/**
|
|
79
|
+
* `current_time` — built-in tool for coding agents.
|
|
80
|
+
*
|
|
81
|
+
* Returns the current date-time. Codex-faithful at the core (its `clock`/`curr_time` tool returns UTC
|
|
82
|
+
* as `YYYY-MM-DD HH:MM:SS UTC`); this built-in keeps that default and adds an optional IANA `timezone`
|
|
83
|
+
* (additive superset — omitted ⇒ UTC, exactly Codex's behavior) plus an unambiguous `iso` instant.
|
|
84
|
+
*
|
|
85
|
+
* The clock is injectable so the tool is deterministic under test (testing.md §6: never read the real
|
|
86
|
+
* wall clock in a unit test).
|
|
87
|
+
*
|
|
88
|
+
* Result shape (always a JSON string):
|
|
89
|
+
* - `{ ok: true, current_time: "YYYY-MM-DD HH:MM:SS <tz>", iso: string, timezone: string }`
|
|
90
|
+
* - `{ ok: false, error: "invalid_timezone", timezone }`
|
|
91
|
+
*/
|
|
92
|
+
|
|
93
|
+
interface CreateCurrentTimeToolOptions {
|
|
94
|
+
/** Injectable clock — defaults to `() => new Date()`. Pass a fixed clock for deterministic tests. */
|
|
95
|
+
clock?: () => Date;
|
|
96
|
+
}
|
|
97
|
+
declare function createCurrentTimeTool(opts?: CreateCurrentTimeToolOptions): CustomTool;
|
|
98
|
+
|
|
78
99
|
/**
|
|
79
100
|
* `edit_file` — built-in tool for coding agents.
|
|
80
101
|
*
|
|
@@ -889,6 +910,22 @@ interface TruncationResult {
|
|
|
889
910
|
}
|
|
890
911
|
declare function truncateOutput(output: string, opts?: TruncationOptions): TruncationResult;
|
|
891
912
|
|
|
913
|
+
/**
|
|
914
|
+
* `update_plan` — built-in tool for coding agents.
|
|
915
|
+
*
|
|
916
|
+
* Codex-faithful: the model posts a DECLARATIVE plan — an ordered list of short steps, each
|
|
917
|
+
* `pending | in_progress | completed` — and refreshes it as work proceeds. Codex's invariant is
|
|
918
|
+
* "exactly one step in_progress until everything is done"; this tool WARNS (never rejects) when that
|
|
919
|
+
* doesn't hold, so the agent self-corrects on the next update rather than failing the turn.
|
|
920
|
+
*
|
|
921
|
+
* Surface-agnostic by design (M17 DX): the result is STRUCTURED (`{ ok, steps, warning? }`) — each
|
|
922
|
+
* surface (terminal TUI, desktop, web) renders the checklist however it likes, rather than the package
|
|
923
|
+
* hard-coding glyphs. Result shape (always a JSON string):
|
|
924
|
+
* - `{ ok: true, explanation: string | null, steps: PlanStep[], warning?: string }`
|
|
925
|
+
*/
|
|
926
|
+
|
|
927
|
+
declare function createUpdatePlanTool(): CustomTool;
|
|
928
|
+
|
|
892
929
|
/**
|
|
893
930
|
* `web_fetch` — built-in tool for coding agents.
|
|
894
931
|
*
|
|
@@ -1052,4 +1089,4 @@ interface CreateWriteFileToolOptions {
|
|
|
1052
1089
|
}
|
|
1053
1090
|
declare function createWriteFileTool(opts: CreateWriteFileToolOptions): CustomTool;
|
|
1054
1091
|
|
|
1055
|
-
export { CatastrophicCommandError, type CommandPolicy, ContextMatchError, type ContextMatchReason, type CreateApplyPatchToolOptions, type CreateBraveWebSearchAdapterOptions, type CreateEditFileToolOptions, type CreateGenericHttpSearchAdapterOptions, type CreateGitDiffToolOptions, type CreateGlobToolOptions, type CreateInteractiveShellToolOptions, type CreateListDirToolOptions, type CreateReadFileToolOptions, type CreateRunVitestToolOptions, type CreateSearchTextToolOptions, type CreateShellToolOptions, type CreateWebFetchToolOptions, type CreateWebSearchToolOptions, type CreateWriteFileToolOptions, DEFAULT_TOOL_GUIDANCE, type EnvContextOptions, type PlanModeTool, type PlanModeToolOptions, type PlanModeToolWithStore, type PlanNode, type QuestionTool, type QuestionToolOptions, ReadTracker, ReasoningTools, RedirectBlockedError, type RepoMapOptions, type ResolveAndScreenOptions, type ScreenedFetchOptions, type SessionArtifactStore, type SessionArtifactStoreOptions, SsrfBlockedError, type TodoItem, type TodolistTool, type ToolGuidanceMap, type TruncationOptions, type TruncationResult, type VitestSummary, type WebSearchCallback, type WebSearchResult, buildEnvContext, buildRepoMap, catastrophicShellReason, commandDenialReason, createApplyPatchTool, createBraveWebSearchAdapter, createEditFileTool, createGenericHttpSearchAdapter, createGitDiffTool, createGlobTool, createInteractiveShellTool, createListDirTool, createPlanModeTool, createQuestionTool, createReadFileTool, createRunVitestTool, createSearchTextTool, createSessionArtifactStore, createShellTool, createTodolistTool, createWebFetchTool, createWebSearchTool, createWriteFileTool, createWriteStdinTool, denyCatastrophicCommands, formatCode, formatDiff, formatError, formatFileList, injectGuidance, isBlockedIp, isCommandAllowed, renderToolList, replaceUnique, resolveAndScreen, screenedFetch, todoItemsToPlanNodes, truncateOutput, withDefaultGuidance, withDescription, withName, withShellExitGuidance, withToolResultGuidance };
|
|
1092
|
+
export { CatastrophicCommandError, type CommandPolicy, ContextMatchError, type ContextMatchReason, type CreateApplyPatchToolOptions, type CreateBraveWebSearchAdapterOptions, type CreateCurrentTimeToolOptions, type CreateEditFileToolOptions, type CreateGenericHttpSearchAdapterOptions, type CreateGitDiffToolOptions, type CreateGlobToolOptions, type CreateInteractiveShellToolOptions, type CreateListDirToolOptions, type CreateReadFileToolOptions, type CreateRunVitestToolOptions, type CreateSearchTextToolOptions, type CreateShellToolOptions, type CreateWebFetchToolOptions, type CreateWebSearchToolOptions, type CreateWriteFileToolOptions, DEFAULT_TOOL_GUIDANCE, type EnvContextOptions, type PlanModeTool, type PlanModeToolOptions, type PlanModeToolWithStore, type PlanNode, type QuestionTool, type QuestionToolOptions, ReadTracker, ReasoningTools, RedirectBlockedError, type RepoMapOptions, type ResolveAndScreenOptions, type ScreenedFetchOptions, type SessionArtifactStore, type SessionArtifactStoreOptions, SsrfBlockedError, type TodoItem, type TodolistTool, type ToolGuidanceMap, type TruncationOptions, type TruncationResult, type VitestSummary, type WebSearchCallback, type WebSearchResult, buildEnvContext, buildRepoMap, catastrophicShellReason, commandDenialReason, createApplyPatchTool, createBraveWebSearchAdapter, createCurrentTimeTool, createEditFileTool, createGenericHttpSearchAdapter, createGitDiffTool, createGlobTool, createInteractiveShellTool, createListDirTool, createPlanModeTool, createQuestionTool, createReadFileTool, createRunVitestTool, createSearchTextTool, createSessionArtifactStore, createShellTool, createTodolistTool, createUpdatePlanTool, createWebFetchTool, createWebSearchTool, createWriteFileTool, createWriteStdinTool, denyCatastrophicCommands, formatCode, formatDiff, formatError, formatFileList, injectGuidance, isBlockedIp, isCommandAllowed, renderToolList, replaceUnique, resolveAndScreen, screenedFetch, todoItemsToPlanNodes, truncateOutput, withDefaultGuidance, withDescription, withName, withShellExitGuidance, withToolResultGuidance };
|
package/dist/index.js
CHANGED
|
@@ -265,6 +265,46 @@ function createSessionArtifactStore(options) {
|
|
|
265
265
|
}
|
|
266
266
|
return { write, read, has, list, path };
|
|
267
267
|
}
|
|
268
|
+
function formatInTimezone(now, tz) {
|
|
269
|
+
const parts = new Intl.DateTimeFormat("en-US", {
|
|
270
|
+
timeZone: tz,
|
|
271
|
+
year: "numeric",
|
|
272
|
+
month: "2-digit",
|
|
273
|
+
day: "2-digit",
|
|
274
|
+
hour: "2-digit",
|
|
275
|
+
minute: "2-digit",
|
|
276
|
+
second: "2-digit",
|
|
277
|
+
hour12: false
|
|
278
|
+
}).formatToParts(now);
|
|
279
|
+
const p = {};
|
|
280
|
+
for (const { type, value } of parts) p[type] = value;
|
|
281
|
+
const hour = p.hour === "24" ? "00" : p.hour;
|
|
282
|
+
return `${p.year}-${p.month}-${p.day} ${hour}:${p.minute}:${p.second} ${tz}`;
|
|
283
|
+
}
|
|
284
|
+
function createCurrentTimeTool(opts = {}) {
|
|
285
|
+
const clock = opts.clock ?? (() => /* @__PURE__ */ new Date());
|
|
286
|
+
return Tool.create({
|
|
287
|
+
name: "current_time",
|
|
288
|
+
description: "Get the current date and time. Returns { current_time, iso, timezone } as a JSON string, where current_time is 'YYYY-MM-DD HH:MM:SS <timezone>' and iso is the ISO-8601 instant. Pass an optional IANA timezone (e.g. 'America/Sao_Paulo', 'Europe/Lisbon'); defaults to UTC. Never state the date or time from memory \u2014 always call this. Returns { ok: false, error: 'invalid_timezone' } for an unknown timezone.",
|
|
289
|
+
inputSchema: z.object({
|
|
290
|
+
timezone: z.string().optional().describe("IANA timezone, e.g. 'America/Sao_Paulo' or 'Europe/Lisbon'. Defaults to UTC.")
|
|
291
|
+
}),
|
|
292
|
+
handler: ({ timezone }) => {
|
|
293
|
+
const tz = timezone ?? "UTC";
|
|
294
|
+
const now = clock();
|
|
295
|
+
try {
|
|
296
|
+
return JSON.stringify({
|
|
297
|
+
ok: true,
|
|
298
|
+
current_time: formatInTimezone(now, tz),
|
|
299
|
+
iso: now.toISOString(),
|
|
300
|
+
timezone: tz
|
|
301
|
+
});
|
|
302
|
+
} catch {
|
|
303
|
+
return JSON.stringify({ ok: false, error: "invalid_timezone", timezone: tz });
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
});
|
|
307
|
+
}
|
|
268
308
|
|
|
269
309
|
// src/internal/context-match.ts
|
|
270
310
|
var ContextMatchError = class extends Error {
|
|
@@ -2255,6 +2295,27 @@ function truncateOutput(output, opts) {
|
|
|
2255
2295
|
overflowPath
|
|
2256
2296
|
};
|
|
2257
2297
|
}
|
|
2298
|
+
var STATUS = ["pending", "in_progress", "completed"];
|
|
2299
|
+
var planStepSchema = z.object({
|
|
2300
|
+
step: z.string().min(1).max(100).describe("A short step, \u2264 ~7 words."),
|
|
2301
|
+
status: z.enum(STATUS)
|
|
2302
|
+
});
|
|
2303
|
+
function createUpdatePlanTool() {
|
|
2304
|
+
return Tool.create({
|
|
2305
|
+
name: "update_plan",
|
|
2306
|
+
description: "Post or refresh a short plan so the user sees your progress on a multi-step task. Pass an ordered `plan` of steps, each with a status (pending | in_progress | completed); keep exactly one step in_progress at a time and mark steps completed as you finish. Returns { ok, steps, warning? } as a JSON string \u2014 the surface renders the checklist. A `warning` is returned (not an error) if the one-in_progress invariant is violated, so you can self-correct on the next update.",
|
|
2307
|
+
inputSchema: z.object({
|
|
2308
|
+
explanation: z.string().max(200).optional().describe("One line on what changed / why (optional)."),
|
|
2309
|
+
plan: z.array(planStepSchema).min(1).describe("The ordered steps.")
|
|
2310
|
+
}),
|
|
2311
|
+
handler: ({ explanation, plan }) => {
|
|
2312
|
+
const inProgress = plan.filter((s) => s.status === "in_progress").length;
|
|
2313
|
+
const allDone = plan.every((s) => s.status === "completed");
|
|
2314
|
+
const warning = !allDone && inProgress !== 1 ? `keep exactly one step in_progress until all are completed \u2014 found ${inProgress}` : void 0;
|
|
2315
|
+
return JSON.stringify({ ok: true, explanation: explanation ?? null, steps: plan, warning });
|
|
2316
|
+
}
|
|
2317
|
+
});
|
|
2318
|
+
}
|
|
2258
2319
|
var DEFAULT_TIMEOUT_MS4 = 3e4;
|
|
2259
2320
|
var MAX_BODY_BYTES = 1 * 1024 * 1024;
|
|
2260
2321
|
function createWebFetchTool(opts) {
|
|
@@ -2557,6 +2618,6 @@ async function isBinaryFile(absolutePath) {
|
|
|
2557
2618
|
}
|
|
2558
2619
|
}
|
|
2559
2620
|
|
|
2560
|
-
export { CatastrophicCommandError, ContextMatchError, DEFAULT_TOOL_GUIDANCE, ReadTracker, ReasoningTools, RedirectBlockedError, SsrfBlockedError, buildEnvContext, buildRepoMap, catastrophicShellReason, commandDenialReason, createApplyPatchTool, createBraveWebSearchAdapter, createEditFileTool, createGenericHttpSearchAdapter, createGitDiffTool, createGlobTool, createInteractiveShellTool, createListDirTool, createPlanModeTool, createQuestionTool, createReadFileTool, createRunVitestTool, createSearchTextTool, createSessionArtifactStore, createShellTool, createTodolistTool, createWebFetchTool, createWebSearchTool, createWriteFileTool, createWriteStdinTool, denyCatastrophicCommands, formatCode, formatDiff, formatError, formatFileList, injectGuidance, isBlockedIp, isCommandAllowed, renderToolList, replaceUnique, resolveAndScreen, screenedFetch, todoItemsToPlanNodes, truncateOutput, withDefaultGuidance, withDescription, withName, withShellExitGuidance, withToolResultGuidance };
|
|
2621
|
+
export { CatastrophicCommandError, ContextMatchError, DEFAULT_TOOL_GUIDANCE, ReadTracker, ReasoningTools, RedirectBlockedError, SsrfBlockedError, buildEnvContext, buildRepoMap, catastrophicShellReason, commandDenialReason, createApplyPatchTool, createBraveWebSearchAdapter, createCurrentTimeTool, createEditFileTool, createGenericHttpSearchAdapter, createGitDiffTool, createGlobTool, createInteractiveShellTool, createListDirTool, createPlanModeTool, createQuestionTool, createReadFileTool, createRunVitestTool, createSearchTextTool, createSessionArtifactStore, createShellTool, createTodolistTool, createUpdatePlanTool, createWebFetchTool, createWebSearchTool, createWriteFileTool, createWriteStdinTool, denyCatastrophicCommands, formatCode, formatDiff, formatError, formatFileList, injectGuidance, isBlockedIp, isCommandAllowed, renderToolList, replaceUnique, resolveAndScreen, screenedFetch, todoItemsToPlanNodes, truncateOutput, withDefaultGuidance, withDescription, withName, withShellExitGuidance, withToolResultGuidance };
|
|
2561
2622
|
//# sourceMappingURL=index.js.map
|
|
2562
2623
|
//# sourceMappingURL=index.js.map
|