openfox 2.0.11 → 2.0.12

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.
@@ -1,20 +1,15 @@
1
+ import {
2
+ appendCompactionPrompt
3
+ } from "./chunk-FWJ6YXGA.js";
1
4
  import {
2
5
  computeDynamicContextHash,
3
6
  injectWorkflowKickoffIfNeeded,
4
7
  runAgentTurn,
5
8
  runChatTurn
6
- } from "./chunk-JUHZVYUI.js";
9
+ } from "./chunk-EZJUU54W.js";
7
10
  import {
8
- COMPACTION_PROMPT,
9
- TurnMetrics,
10
11
  agentExists,
11
- buildBasePrompt,
12
- buildTopLevelSystemPrompt,
13
12
  checkAborted,
14
- consumeStreamGenerator,
15
- createChatDoneEvent,
16
- createMessageDoneEvent,
17
- createMessageStartEvent,
18
13
  createToolRegistry,
19
14
  deleteAgent,
20
15
  deleteItemFromDir,
@@ -26,7 +21,6 @@ import {
26
21
  findAgentById,
27
22
  findSkillById,
28
23
  getAllInstructions,
29
- getConversationMessages,
30
24
  getDefaultAgentIds,
31
25
  getDefaultIds,
32
26
  getDefaultSkillIds,
@@ -49,16 +43,19 @@ import {
49
43
  loadUserAgents,
50
44
  loadUserSkills,
51
45
  pathExists,
52
- processEventsForConversation,
53
46
  saveAgent,
54
47
  saveAgentToProject,
55
48
  saveItemToDir,
56
49
  saveSkill,
57
50
  saveSkillToProject,
58
51
  skillExists,
59
- spawnShellProcess,
60
- streamLLMPure
61
- } from "./chunk-M53OBFMI.js";
52
+ spawnShellProcess
53
+ } from "./chunk-2VDLXCLO.js";
54
+ import {
55
+ TurnMetrics,
56
+ buildTopLevelSystemPrompt,
57
+ createMessageStartEvent
58
+ } from "./chunk-L7TDUIQY.js";
62
59
  import {
63
60
  getPathSeparator,
64
61
  getPlatformShell,
@@ -82,7 +79,6 @@ import {
82
79
  emitSessionInitialized,
83
80
  emitUserMessage,
84
81
  getCurrentContextWindowId,
85
- getCurrentWindowMessageOptions,
86
82
  getEventStore,
87
83
  getRuntimeConfig,
88
84
  getSession,
@@ -96,10 +92,6 @@ import {
96
92
  updateSessionProvider,
97
93
  updateSessionRunning
98
94
  } from "./chunk-SYG2ENUQ.js";
99
- import {
100
- buildMessagesFromStoredEvents,
101
- foldPendingConfirmations
102
- } from "./chunk-LX66KJPL.js";
103
95
  import {
104
96
  createChatErrorMessage,
105
97
  createChatMessageMessage,
@@ -108,7 +100,6 @@ import {
108
100
  createGitStatusMessage,
109
101
  createQueueStateMessage,
110
102
  createSessionRunningMessage,
111
- createSessionStateMessage,
112
103
  isAskAnswerPayload,
113
104
  isSessionLoadPayload,
114
105
  parseClientMessage,
@@ -2065,7 +2056,7 @@ function emitWorkflowMessage(eventStore, sessionId, content, windowOptions, onMe
2065
2056
  }
2066
2057
  return msgId;
2067
2058
  }
2068
- function getCurrentWindowMessageOptions2(sessionId) {
2059
+ function getCurrentWindowMessageOptions(sessionId) {
2069
2060
  const contextWindowId = getCurrentContextWindowId(sessionId);
2070
2061
  return contextWindowId ? { contextWindowId } : void 0;
2071
2062
  }
@@ -2111,7 +2102,7 @@ async function executeWorkflow(workflow, options, subGroup) {
2111
2102
  }
2112
2103
  }
2113
2104
  const startMsgId = crypto.randomUUID();
2114
- const startWindowOpts = getCurrentWindowMessageOptions2(sessionId);
2105
+ const startWindowOpts = getCurrentWindowMessageOptions(sessionId);
2115
2106
  eventStore.append(
2116
2107
  sessionId,
2117
2108
  createMessageStartEvent(
@@ -2153,7 +2144,7 @@ async function executeWorkflow(workflow, options, subGroup) {
2153
2144
  };
2154
2145
  }
2155
2146
  const session = sessionManager.requireSession(sessionId);
2156
- const currentWindowMessageOptions = getCurrentWindowMessageOptions2(sessionId);
2147
+ const currentWindowMessageOptions = getCurrentWindowMessageOptions(sessionId);
2157
2148
  const criteriaEntries = session.metadataEntries["criteria"] ?? [];
2158
2149
  const templateCtx = {
2159
2150
  workdir: session.workdir,
@@ -2450,77 +2441,6 @@ async function runOrchestrator(options) {
2450
2441
  return executeWorkflow(workflow, options, options.subGroup);
2451
2442
  }
2452
2443
 
2453
- // src/server/context/auto-compaction.ts
2454
- async function compactContext(options) {
2455
- const { sessionManager, sessionId, llmClient, signal } = options;
2456
- const eventStore = getEventStore();
2457
- const session = sessionManager.requireSession(sessionId);
2458
- const compactPromptMsgId = crypto.randomUUID();
2459
- eventStore.append(
2460
- sessionId,
2461
- createMessageStartEvent(compactPromptMsgId, "user", COMPACTION_PROMPT, {
2462
- ...getCurrentWindowMessageOptions(sessionId) ?? {},
2463
- isSystemGenerated: true,
2464
- messageKind: "auto-prompt",
2465
- metadata: { type: "compaction", name: "Compaction", color: "#64748b" }
2466
- })
2467
- );
2468
- eventStore.append(sessionId, { type: "message.done", data: { messageId: compactPromptMsgId } });
2469
- const processedEvents = await processEventsForConversation(sessionId, llmClient, (event) => {
2470
- eventStore.append(sessionId, event);
2471
- });
2472
- const messages = getConversationMessages({ type: "toplevel", sessionId }, { events: processedEvents });
2473
- const cached = sessionManager.getCachedPrompt(sessionId);
2474
- const systemPrompt = cached?.systemPrompt ?? buildBasePrompt(session.workdir);
2475
- const assistantMsgId = crypto.randomUUID();
2476
- eventStore.append(
2477
- sessionId,
2478
- createMessageStartEvent(assistantMsgId, "assistant", void 0, {
2479
- ...getCurrentWindowMessageOptions(sessionId) ?? {}
2480
- })
2481
- );
2482
- const streamGen = streamLLMPure({
2483
- messageId: assistantMsgId,
2484
- systemPrompt,
2485
- llmClient,
2486
- messages,
2487
- tools: [],
2488
- toolChoice: "none",
2489
- signal
2490
- });
2491
- const result = await consumeStreamGenerator(streamGen, (event) => {
2492
- eventStore.append(sessionId, event);
2493
- });
2494
- const summary = result.content?.trim() || result.thinkingContent?.trim() || "";
2495
- if (!summary) {
2496
- eventStore.append(sessionId, {
2497
- type: "chat.error",
2498
- data: { error: "Compaction produced empty summary, continuing with full context", recoverable: true }
2499
- });
2500
- logger.warn("Compaction produced empty summary", { sessionId });
2501
- return;
2502
- }
2503
- const closedWindowId = getCurrentContextWindowId(sessionId) ?? "";
2504
- const newWindowId = crypto.randomUUID();
2505
- eventStore.append(sessionId, {
2506
- type: "context.compacted",
2507
- data: { closedWindowId, newWindowId, beforeTokens: result.usage.promptTokens, afterTokens: 0, summary }
2508
- });
2509
- eventStore.append(sessionId, {
2510
- type: "message.start",
2511
- data: {
2512
- messageId: assistantMsgId,
2513
- role: "assistant",
2514
- content: summary,
2515
- contextWindowId: newWindowId,
2516
- isCompactionSummary: true
2517
- }
2518
- });
2519
- eventStore.append(sessionId, createMessageDoneEvent(assistantMsgId, {}));
2520
- eventStore.append(sessionId, createChatDoneEvent(assistantMsgId, "complete"));
2521
- logger.info("Manual compaction complete", { sessionId });
2522
- }
2523
-
2524
2444
  // src/server/auth.ts
2525
2445
  import { readFile as readFile2, writeFile as writeFile2, mkdir as mkdir2 } from "fs/promises";
2526
2446
  import { join as join2, dirname as dirname2 } from "path";
@@ -3268,38 +3188,28 @@ async function handleClientMessage(ws, client, message, _getLLMClient, _getActiv
3268
3188
  return;
3269
3189
  }
3270
3190
  send({ type: "ack", payload: {}, id: message.id });
3271
- (async () => {
3272
- try {
3273
- await compactContext({
3274
- sessionManager,
3275
- sessionId,
3276
- llmClient: llmForSession(sessionId),
3277
- statsIdentity: statsForSession(sessionId)
3278
- });
3279
- const newContextState = sessionManager.getContextState(sessionId);
3280
- sendForSession(sessionId, createContextStateMessage(newContextState));
3281
- const updatedSession = sessionManager.requireSession(sessionId);
3282
- const compactEventStore = getEventStore();
3283
- const compactEvents = compactEventStore.getEvents(sessionId);
3284
- const compactMessages = buildMessagesFromStoredEvents(compactEvents);
3285
- const pendingConfirmations = foldPendingConfirmations(compactEvents);
3286
- const { getPendingQuestionsForSession } = await import("./tools-UT5WFO7R.js");
3287
- const pendingQuestions = getPendingQuestionsForSession(sessionId);
3288
- sendForSession(
3289
- sessionId,
3290
- createSessionStateMessage(updatedSession, compactMessages, pendingConfirmations, pendingQuestions)
3291
- );
3292
- } catch (error) {
3293
- logger.error("Compaction failed", { error, sessionId });
3294
- sendForSession(
3295
- sessionId,
3296
- createChatErrorMessage(
3297
- `Compaction failed: ${error instanceof Error ? error.message : "Unknown error"}`,
3298
- true
3299
- )
3300
- );
3301
- }
3302
- })();
3191
+ appendCompactionPrompt(sessionId, (event) => getEventStore().append(sessionId, event));
3192
+ runChatTurn({
3193
+ sessionManager,
3194
+ sessionId,
3195
+ llmClient: llmForSession(sessionId),
3196
+ statsIdentity: statsForSession(sessionId),
3197
+ onMessage: (msg) => _broadcastForSession(sessionId, msg),
3198
+ initialCompacting: true
3199
+ }).then(() => {
3200
+ const newContextState = sessionManager.getContextState(sessionId);
3201
+ sendForSession(sessionId, createContextStateMessage(newContextState));
3202
+ }).catch((error) => {
3203
+ if (error instanceof Error && error.message === "Aborted") return;
3204
+ logger.error("Compaction failed", { error, sessionId });
3205
+ sendForSession(
3206
+ sessionId,
3207
+ createChatErrorMessage(
3208
+ `Compaction failed: ${error instanceof Error ? error.message : "Unknown error"}`,
3209
+ true
3210
+ )
3211
+ );
3212
+ });
3303
3213
  break;
3304
3214
  }
3305
3215
  case "context.checkDynamic": {
@@ -5818,7 +5728,7 @@ import { Router as Router6 } from "express";
5818
5728
  import { spawn as spawn5 } from "child_process";
5819
5729
 
5820
5730
  // src/constants.ts
5821
- var VERSION = "2.0.11";
5731
+ var VERSION = "2.0.12";
5822
5732
 
5823
5733
  // src/server/routes/auto-update.ts
5824
5734
  var updateInProgress = false;
@@ -6169,15 +6079,15 @@ async function createServerHandle(config4) {
6169
6079
  });
6170
6080
  app.get("/api/sessions/:id", async (req, res) => {
6171
6081
  const { getEventStore: getEventStore2 } = await import("./events-4K52FKPR.js");
6172
- const { buildMessagesFromStoredEvents: buildMessagesFromStoredEvents2 } = await import("./folding-QIBNKYA6.js");
6173
- const { getPendingQuestionsForSession } = await import("./tools-UT5WFO7R.js");
6082
+ const { buildMessagesFromStoredEvents } = await import("./folding-QIBNKYA6.js");
6083
+ const { getPendingQuestionsForSession } = await import("./tools-THXBQJ7A.js");
6174
6084
  const session = sessionManager.getSession(req.params.id);
6175
6085
  if (!session) {
6176
6086
  return res.status(404).json({ error: "Session not found" });
6177
6087
  }
6178
6088
  const eventStore = getEventStore2();
6179
6089
  const events = eventStore.getEvents(req.params.id);
6180
- const messages = buildMessagesFromStoredEvents2(events);
6090
+ const messages = buildMessagesFromStoredEvents(events);
6181
6091
  const contextState = sessionManager.getContextState(req.params.id);
6182
6092
  const queueState = sessionManager.getQueueState(req.params.id);
6183
6093
  const pendingQuestions = getPendingQuestionsForSession(req.params.id);
@@ -6202,7 +6112,7 @@ async function createServerHandle(config4) {
6202
6112
  });
6203
6113
  app.post("/api/sessions/:id/provider", async (req, res) => {
6204
6114
  const { getEventStore: getEventStore2 } = await import("./events-4K52FKPR.js");
6205
- const { buildMessagesFromStoredEvents: buildMessagesFromStoredEvents2 } = await import("./folding-QIBNKYA6.js");
6115
+ const { buildMessagesFromStoredEvents } = await import("./folding-QIBNKYA6.js");
6206
6116
  const sessionId = req.params.id;
6207
6117
  const session = sessionManager.getSession(sessionId);
6208
6118
  if (!session) {
@@ -6221,7 +6131,7 @@ async function createServerHandle(config4) {
6221
6131
  const contextState = sessionManager.getContextState(sessionId);
6222
6132
  const eventStore = getEventStore2();
6223
6133
  const events = eventStore.getEvents(sessionId);
6224
- const messages = buildMessagesFromStoredEvents2(events);
6134
+ const messages = buildMessagesFromStoredEvents(events);
6225
6135
  const updatedSession = sessionManager.getSession(sessionId);
6226
6136
  res.json({ session: updatedSession, messages, contextState });
6227
6137
  });
@@ -6245,7 +6155,7 @@ async function createServerHandle(config4) {
6245
6155
  });
6246
6156
  app.put("/api/sessions/:id/mode", async (req, res) => {
6247
6157
  const { getEventStore: getEventStore2 } = await import("./events-4K52FKPR.js");
6248
- const { buildMessagesFromStoredEvents: buildMessagesFromStoredEvents2 } = await import("./folding-QIBNKYA6.js");
6158
+ const { buildMessagesFromStoredEvents } = await import("./folding-QIBNKYA6.js");
6249
6159
  const sessionId = req.params.id;
6250
6160
  const session = sessionManager.getSession(sessionId);
6251
6161
  if (!session) {
@@ -6263,7 +6173,7 @@ async function createServerHandle(config4) {
6263
6173
  sessionManager.setMode(sessionId, mode);
6264
6174
  const eventStore = getEventStore2();
6265
6175
  const events = eventStore.getEvents(sessionId);
6266
- const messages = buildMessagesFromStoredEvents2(events);
6176
+ const messages = buildMessagesFromStoredEvents(events);
6267
6177
  const updatedSession = sessionManager.getSession(sessionId);
6268
6178
  res.json({ session: updatedSession, messages });
6269
6179
  });
@@ -6301,23 +6211,23 @@ async function createServerHandle(config4) {
6301
6211
  if (!callId || approved === void 0) {
6302
6212
  return res.status(400).json({ error: "callId and approved are required" });
6303
6213
  }
6304
- const { providePathConfirmation } = await import("./tools-UT5WFO7R.js");
6214
+ const { providePathConfirmation } = await import("./tools-THXBQJ7A.js");
6305
6215
  const result = providePathConfirmation(callId, approved, alwaysAllow);
6306
6216
  if (!result.found) {
6307
6217
  return res.status(404).json({ error: "No pending path confirmation with that ID" });
6308
6218
  }
6309
6219
  const { getEventStore: getEventStore2 } = await import("./events-4K52FKPR.js");
6310
- const { buildMessagesFromStoredEvents: buildMessagesFromStoredEvents2, foldPendingConfirmations: foldPendingConfirmations2 } = await import("./folding-QIBNKYA6.js");
6311
- const { createSessionStateMessage: createSessionStateMessage2 } = await import("./protocol-YYWMFR35.js");
6312
- const { getPendingQuestionsForSession } = await import("./tools-UT5WFO7R.js");
6220
+ const { buildMessagesFromStoredEvents, foldPendingConfirmations } = await import("./folding-QIBNKYA6.js");
6221
+ const { createSessionStateMessage } = await import("./protocol-YYWMFR35.js");
6222
+ const { getPendingQuestionsForSession } = await import("./tools-THXBQJ7A.js");
6313
6223
  const eventStore = getEventStore2();
6314
6224
  const events = eventStore.getEvents(sessionId);
6315
- const messages = buildMessagesFromStoredEvents2(events);
6316
- const pendingConfirmations = foldPendingConfirmations2(events);
6225
+ const messages = buildMessagesFromStoredEvents(events);
6226
+ const pendingConfirmations = foldPendingConfirmations(events);
6317
6227
  const pendingQuestions = getPendingQuestionsForSession(sessionId);
6318
6228
  const session = sessionManager.getSession(sessionId);
6319
6229
  if (session) {
6320
- const stateMsg = createSessionStateMessage2(session, messages, pendingConfirmations, pendingQuestions);
6230
+ const stateMsg = createSessionStateMessage(session, messages, pendingConfirmations, pendingQuestions);
6321
6231
  wssExports.broadcastForSession(sessionId, { ...stateMsg, sessionId });
6322
6232
  }
6323
6233
  res.json({ success: true });
@@ -6330,7 +6240,7 @@ async function createServerHandle(config4) {
6330
6240
  if (!skip && typeof answer !== "string") {
6331
6241
  return res.status(400).json({ error: "answer is required when not skipping" });
6332
6242
  }
6333
- const { provideAnswer: provideAnswer2 } = await import("./tools-UT5WFO7R.js");
6243
+ const { provideAnswer: provideAnswer2 } = await import("./tools-THXBQJ7A.js");
6334
6244
  const found = provideAnswer2(callId, answer ?? "", skip ?? false);
6335
6245
  if (!found) {
6336
6246
  return res.status(404).json({ error: "No pending question with that ID" });
@@ -6366,8 +6276,8 @@ async function createServerHandle(config4) {
6366
6276
  if (!session) {
6367
6277
  return res.status(404).json({ error: "Session not found" });
6368
6278
  }
6369
- const { stopSessionExecution } = await import("./chat-handler-VUVDRA2I.js");
6370
- const { cancelQuestionsForSession, cancelPathConfirmationsForSession } = await import("./tools-UT5WFO7R.js");
6279
+ const { stopSessionExecution } = await import("./chat-handler-6NUNVXIU.js");
6280
+ const { cancelQuestionsForSession, cancelPathConfirmationsForSession } = await import("./tools-THXBQJ7A.js");
6371
6281
  const queuedMessages = sessionManager.getQueueState(sessionId);
6372
6282
  sessionManager.clearMessageQueue(sessionId);
6373
6283
  stopSessionExecution(sessionId, sessionManager);
@@ -6978,7 +6888,7 @@ async function createServerHandle(config4) {
6978
6888
  providerManager
6979
6889
  );
6980
6890
  const wss = wssExports.wss;
6981
- const { QueueProcessor } = await import("./processor-L3W54WNO.js");
6891
+ const { QueueProcessor } = await import("./processor-GA5NG3T7.js");
6982
6892
  const queueProcessor = new QueueProcessor({
6983
6893
  sessionManager,
6984
6894
  providerManager,
@@ -7052,4 +6962,4 @@ export {
7052
6962
  createServerHandle,
7053
6963
  createServer
7054
6964
  };
7055
- //# sourceMappingURL=chunk-GJLXA4BS.js.map
6965
+ //# sourceMappingURL=chunk-WF3MA65W.js.map
package/dist/cli/dev.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  runCli
4
- } from "../chunk-ABYYJBNO.js";
4
+ } from "../chunk-HYYFVYDV.js";
5
5
  import {
6
6
  logger
7
7
  } from "../chunk-K44MW7JJ.js";
package/dist/cli/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  runCli
4
- } from "../chunk-ABYYJBNO.js";
4
+ } from "../chunk-HYYFVYDV.js";
5
5
  import {
6
6
  logger
7
7
  } from "../chunk-K44MW7JJ.js";
@@ -0,0 +1,17 @@
1
+ import {
2
+ appendCompactionPrompt,
3
+ getCompactionTarget,
4
+ shouldCompact
5
+ } from "./chunk-FWJ6YXGA.js";
6
+ import "./chunk-L7TDUIQY.js";
7
+ import "./chunk-SYG2ENUQ.js";
8
+ import "./chunk-LX66KJPL.js";
9
+ import "./chunk-FBGWG4N6.js";
10
+ import "./chunk-Z4SWOUWC.js";
11
+ import "./chunk-K44MW7JJ.js";
12
+ export {
13
+ appendCompactionPrompt,
14
+ getCompactionTarget,
15
+ shouldCompact
16
+ };
17
+ //# sourceMappingURL=compactor-R7GRFBOU.js.map
@@ -2,7 +2,8 @@ import {
2
2
  injectWorkflowKickoffIfNeeded,
3
3
  runAgentTurn,
4
4
  runChatTurn
5
- } from "./chunk-JUHZVYUI.js";
5
+ } from "./chunk-EZJUU54W.js";
6
+ import "./chunk-2VDLXCLO.js";
6
7
  import {
7
8
  TurnMetrics,
8
9
  createChatDoneEvent,
@@ -10,7 +11,7 @@ import {
10
11
  createMessageStartEvent,
11
12
  createToolCallEvent,
12
13
  createToolResultEvent
13
- } from "./chunk-M53OBFMI.js";
14
+ } from "./chunk-L7TDUIQY.js";
14
15
  import "./chunk-DL6ZILAF.js";
15
16
  import "./chunk-PBGOZMVY.js";
16
17
  import "./chunk-VRGRAQDG.js";
@@ -36,4 +37,4 @@ export {
36
37
  runAgentTurn,
37
38
  runChatTurn
38
39
  };
39
- //# sourceMappingURL=orchestrator-CKCECRNV.js.map
40
+ //# sourceMappingURL=orchestrator-WXEZHUVQ.js.map
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openfox",
3
- "version": "2.0.11",
3
+ "version": "2.0.12",
4
4
  "description": "Local-LLM-first agentic coding assistant",
5
5
  "type": "module",
6
6
  "bin": {
@@ -6,7 +6,8 @@ import {
6
6
  getSessionMessageCount,
7
7
  needsNameGenerationCheck
8
8
  } from "./chunk-TIKQWNYK.js";
9
- import "./chunk-M53OBFMI.js";
9
+ import "./chunk-2VDLXCLO.js";
10
+ import "./chunk-L7TDUIQY.js";
10
11
  import "./chunk-DL6ZILAF.js";
11
12
  import "./chunk-PBGOZMVY.js";
12
13
  import "./chunk-VRGRAQDG.js";
@@ -190,7 +191,7 @@ var QueueProcessor = class {
190
191
  backend: provider?.backend ?? llmClient.getBackend(),
191
192
  model: llmClient.getModel()
192
193
  };
193
- const { runChatTurn } = await import("./orchestrator-CKCECRNV.js");
194
+ const { runChatTurn } = await import("./orchestrator-WXEZHUVQ.js");
194
195
  const runChatTurnParams = buildRunChatTurnParams({
195
196
  sessionManager,
196
197
  sessionId,
@@ -238,4 +239,4 @@ var QueueProcessor = class {
238
239
  export {
239
240
  QueueProcessor
240
241
  };
241
- //# sourceMappingURL=processor-L3W54WNO.js.map
242
+ //# sourceMappingURL=processor-GA5NG3T7.js.map
@@ -1,10 +1,11 @@
1
1
  import {
2
2
  VERSION,
3
3
  createServer
4
- } from "./chunk-GJLXA4BS.js";
5
- import "./chunk-NZCKCJH5.js";
6
- import "./chunk-JUHZVYUI.js";
7
- import "./chunk-M53OBFMI.js";
4
+ } from "./chunk-WF3MA65W.js";
5
+ import "./chunk-FWJ6YXGA.js";
6
+ import "./chunk-EZJUU54W.js";
7
+ import "./chunk-2VDLXCLO.js";
8
+ import "./chunk-L7TDUIQY.js";
8
9
  import "./chunk-DL6ZILAF.js";
9
10
  import "./chunk-PBGOZMVY.js";
10
11
  import "./chunk-VRGRAQDG.js";
@@ -188,4 +189,4 @@ async function runServe(options) {
188
189
  export {
189
190
  runServe
190
191
  };
191
- //# sourceMappingURL=serve-6AKAJZLV.js.map
192
+ //# sourceMappingURL=serve-5BSOEK54.js.map
@@ -1,10 +1,11 @@
1
1
  import {
2
2
  createServer,
3
3
  createServerHandle
4
- } from "../chunk-GJLXA4BS.js";
5
- import "../chunk-NZCKCJH5.js";
6
- import "../chunk-JUHZVYUI.js";
7
- import "../chunk-M53OBFMI.js";
4
+ } from "../chunk-WF3MA65W.js";
5
+ import "../chunk-FWJ6YXGA.js";
6
+ import "../chunk-EZJUU54W.js";
7
+ import "../chunk-2VDLXCLO.js";
8
+ import "../chunk-L7TDUIQY.js";
8
9
  import "../chunk-DL6ZILAF.js";
9
10
  import "../chunk-PBGOZMVY.js";
10
11
  import "../chunk-VRGRAQDG.js";
@@ -11,7 +11,8 @@ import {
11
11
  requestPathAccess,
12
12
  stepDoneTool,
13
13
  validateToolAction
14
- } from "./chunk-M53OBFMI.js";
14
+ } from "./chunk-2VDLXCLO.js";
15
+ import "./chunk-L7TDUIQY.js";
15
16
  import "./chunk-DL6ZILAF.js";
16
17
  import "./chunk-PBGOZMVY.js";
17
18
  import "./chunk-VRGRAQDG.js";
@@ -49,4 +50,4 @@ export {
49
50
  stepDoneTool,
50
51
  validateToolAction
51
52
  };
52
- //# sourceMappingURL=tools-UT5WFO7R.js.map
53
+ //# sourceMappingURL=tools-THXBQJ7A.js.map