openfox 1.6.97 → 1.6.99

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.
@@ -2,14 +2,14 @@ import {
2
2
  maybeAutoCompactContext,
3
3
  performManualContextCompaction,
4
4
  resolveCompactionStatsIdentity
5
- } from "./chunk-47FAM55V.js";
5
+ } from "./chunk-KR7N2ONG.js";
6
6
  import "./chunk-ROWFVGB6.js";
7
7
  import "./chunk-ZHBL5G5X.js";
8
8
  import "./chunk-DL6ZILAF.js";
9
9
  import "./chunk-PBGOZMVY.js";
10
10
  import "./chunk-VRGRAQDG.js";
11
11
  import "./chunk-HGAMIPFO.js";
12
- import "./chunk-RREZKLOD.js";
12
+ import "./chunk-7Y3HFCTD.js";
13
13
  import "./chunk-5GVCNVKV.js";
14
14
  import "./chunk-XVWVAWSG.js";
15
15
  import "./chunk-T67WWSM7.js";
@@ -24,4 +24,4 @@ export {
24
24
  performManualContextCompaction,
25
25
  resolveCompactionStatsIdentity
26
26
  };
27
- //# sourceMappingURL=auto-compaction-2I3XUF5P.js.map
27
+ //# sourceMappingURL=auto-compaction-ZYKJQPGM.js.map
@@ -5,11 +5,11 @@ import {
5
5
  generateSessionName,
6
6
  getSessionMessageCount,
7
7
  needsNameGenerationCheck
8
- } from "./chunk-QAN42RJQ.js";
8
+ } from "./chunk-NVVKBL4S.js";
9
9
  import {
10
10
  runChatTurn
11
- } from "./chunk-K7IJKGYL.js";
12
- import "./chunk-47FAM55V.js";
11
+ } from "./chunk-K7F73QLL.js";
12
+ import "./chunk-KR7N2ONG.js";
13
13
  import "./chunk-ROWFVGB6.js";
14
14
  import "./chunk-ZHBL5G5X.js";
15
15
  import "./chunk-DL6ZILAF.js";
@@ -18,7 +18,7 @@ import "./chunk-VRGRAQDG.js";
18
18
  import "./chunk-HGAMIPFO.js";
19
19
  import {
20
20
  getEventStore
21
- } from "./chunk-RREZKLOD.js";
21
+ } from "./chunk-7Y3HFCTD.js";
22
22
  import "./chunk-5GVCNVKV.js";
23
23
  import "./chunk-XVWVAWSG.js";
24
24
  import {
@@ -61,7 +61,7 @@ async function startChatSession(sessionId, content, deps, options) {
61
61
  sessionManager.setRunning(sessionId, true);
62
62
  broadcastForSession(sessionId, createSessionRunningMessage(true));
63
63
  try {
64
- const { maybeAutoCompactContext } = await import("./auto-compaction-2I3XUF5P.js");
64
+ const { maybeAutoCompactContext } = await import("./auto-compaction-ZYKJQPGM.js");
65
65
  await maybeAutoCompactContext({
66
66
  sessionManager,
67
67
  sessionId,
@@ -175,4 +175,4 @@ export {
175
175
  startChatSession,
176
176
  stopSessionExecution
177
177
  };
178
- //# sourceMappingURL=chat-handler-42XM6GZI.js.map
178
+ //# sourceMappingURL=chat-handler-N3FYFHYQ.js.map
@@ -156,7 +156,7 @@ async function runCli(options) {
156
156
  break;
157
157
  }
158
158
  case "service": {
159
- const { runServiceCommand } = await import("./service-3CLVG2HV.js");
159
+ const { runServiceCommand } = await import("./service-EUOBAATS.js");
160
160
  const [, subcommand] = positionals;
161
161
  if (subcommand === "--help" || subcommand === "-h" || values.help) {
162
162
  runServiceCommand(mode, void 0);
@@ -178,7 +178,7 @@ async function runCli(options) {
178
178
  case "update": {
179
179
  const __filename = fileURLToPath(import.meta.url);
180
180
  const __dirname = dirname(__filename);
181
- const updateScriptPath = join(__dirname, "cli", "update.sh");
181
+ const updateScriptPath = join(__dirname, "update.sh");
182
182
  const result = spawnSync(updateScriptPath, [], { shell: true, stdio: "inherit" });
183
183
  if (result.status !== 0) {
184
184
  process.exit(result.status ?? 1);
@@ -191,7 +191,7 @@ async function runCli(options) {
191
191
  if (!configExists) {
192
192
  await runNetworkSetup(mode);
193
193
  }
194
- const { runServe } = await import("./serve-QRK2E7HR.js");
194
+ const { runServe } = await import("./serve-65V7N6ZV.js");
195
195
  const serveOptions = { mode };
196
196
  if (values.port) serveOptions.port = parseInt(values.port);
197
197
  if (values["no-browser"] === true) serveOptions.openBrowser = false;
@@ -203,4 +203,4 @@ async function runCli(options) {
203
203
  export {
204
204
  runCli
205
205
  };
206
- //# sourceMappingURL=chunk-FBKS6IPU.js.map
206
+ //# sourceMappingURL=chunk-6UBQ4BNN.js.map
@@ -1140,14 +1140,14 @@ function truncateSessionMessages(sessionId, messageIndex) {
1140
1140
  const snapshot = snapshotEvent.data;
1141
1141
  const messages = snapshot.messages;
1142
1142
  const lastKept = messageIndex + 1;
1143
- if (lastKept < 1 || lastKept >= messages.length) return;
1143
+ if (lastKept < 0 || lastKept >= messages.length) return;
1144
1144
  snapshot.messages = messages.slice(0, lastKept);
1145
1145
  eventStore.deleteEventsAfterSeq(sessionId, snapshotEvent.seq);
1146
1146
  eventStore.append(sessionId, {
1147
1147
  type: "turn.snapshot",
1148
1148
  data: snapshot
1149
1149
  });
1150
- const removed = messages.length - messageIndex;
1150
+ const removed = messages.length - lastKept;
1151
1151
  updateSessionMessageCount(sessionId, -removed);
1152
1152
  }
1153
1153
  function compactContext(sessionId, summary, beforeTokens) {
@@ -1283,4 +1283,4 @@ export {
1283
1283
  compactContext,
1284
1284
  getRecentUserPromptsForSession
1285
1285
  };
1286
- //# sourceMappingURL=chunk-RREZKLOD.js.map
1286
+ //# sourceMappingURL=chunk-7Y3HFCTD.js.map
@@ -13,11 +13,11 @@ import {
13
13
  getToolRegistryForAgent,
14
14
  loadAllAgentsDefault,
15
15
  runTopLevelAgentLoop
16
- } from "./chunk-47FAM55V.js";
16
+ } from "./chunk-KR7N2ONG.js";
17
17
  import {
18
18
  getCurrentContextWindowId,
19
19
  getEventStore
20
- } from "./chunk-RREZKLOD.js";
20
+ } from "./chunk-7Y3HFCTD.js";
21
21
  import {
22
22
  buildSnapshotFromSessionState
23
23
  } from "./chunk-XVWVAWSG.js";
@@ -327,4 +327,4 @@ export {
327
327
  runBuilderTurn,
328
328
  runVerifierTurn
329
329
  };
330
- //# sourceMappingURL=chunk-K7IJKGYL.js.map
330
+ //# sourceMappingURL=chunk-K7F73QLL.js.map
@@ -31,7 +31,7 @@ import {
31
31
  import {
32
32
  getCurrentContextWindowId,
33
33
  getEventStore
34
- } from "./chunk-RREZKLOD.js";
34
+ } from "./chunk-7Y3HFCTD.js";
35
35
  import {
36
36
  buildContextMessagesFromEventHistory,
37
37
  foldContextState,
@@ -3880,7 +3880,7 @@ var callSubAgentTool = {
3880
3880
  };
3881
3881
  }
3882
3882
  try {
3883
- const { getToolRegistryForAgent: getToolRegistryForAgent2 } = await import("./tools-SIVCXYHR.js");
3883
+ const { getToolRegistryForAgent: getToolRegistryForAgent2 } = await import("./tools-ASM4FNUG.js");
3884
3884
  const toolRegistry = getToolRegistryForAgent2(agentDef);
3885
3885
  const turnMetrics = new TurnMetrics();
3886
3886
  const result = await executeSubAgent({
@@ -5078,4 +5078,4 @@ export {
5078
5078
  getToolRegistryForAgent,
5079
5079
  createToolRegistry
5080
5080
  };
5081
- //# sourceMappingURL=chunk-47FAM55V.js.map
5081
+ //# sourceMappingURL=chunk-KR7N2ONG.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  getEventStore,
3
3
  updateSessionMetadata
4
- } from "./chunk-RREZKLOD.js";
4
+ } from "./chunk-7Y3HFCTD.js";
5
5
  import {
6
6
  buildMessagesFromStoredEvents,
7
7
  foldPendingConfirmations
@@ -143,4 +143,4 @@ export {
143
143
  needsNameGenerationCheck,
144
144
  applyGeneratedSessionName
145
145
  };
146
- //# sourceMappingURL=chunk-QAN42RJQ.js.map
146
+ //# sourceMappingURL=chunk-NVVKBL4S.js.map
@@ -2,7 +2,7 @@ import {
2
2
  createVerifierNudgeConfig,
3
3
  runBuilderTurn,
4
4
  runChatTurn
5
- } from "./chunk-K7IJKGYL.js";
5
+ } from "./chunk-K7F73QLL.js";
6
6
  import {
7
7
  TurnMetrics,
8
8
  agentExists,
@@ -46,7 +46,7 @@ import {
46
46
  saveSkillToProject,
47
47
  skillExists,
48
48
  spawnShellProcess
49
- } from "./chunk-47FAM55V.js";
49
+ } from "./chunk-KR7N2ONG.js";
50
50
  import {
51
51
  getProject
52
52
  } from "./chunk-ZHBL5G5X.js";
@@ -96,7 +96,7 @@ import {
96
96
  updateSessionProvider,
97
97
  updateSessionRunning,
98
98
  updateSessionSummary
99
- } from "./chunk-RREZKLOD.js";
99
+ } from "./chunk-7Y3HFCTD.js";
100
100
  import {
101
101
  initDatabase
102
102
  } from "./chunk-5GVCNVKV.js";
@@ -5384,7 +5384,7 @@ import { Router as Router6 } from "express";
5384
5384
  import { spawn as spawn4 } from "child_process";
5385
5385
 
5386
5386
  // src/constants.ts
5387
- var VERSION = "1.6.97";
5387
+ var VERSION = "1.6.99";
5388
5388
 
5389
5389
  // src/server/routes/auto-update.ts
5390
5390
  var updateInProgress = false;
@@ -5681,7 +5681,7 @@ async function createServerHandle(config4) {
5681
5681
  res.json({ project });
5682
5682
  });
5683
5683
  app.get("/api/sessions", async (req, res) => {
5684
- const { getRecentUserPromptsForSession } = await import("./events-2UP7O6LW.js");
5684
+ const { getRecentUserPromptsForSession } = await import("./events-Z2SXIOUX.js");
5685
5685
  const projectId = req.query["projectId"];
5686
5686
  const limit = Math.min(parseInt(req.query["limit"]) || 20, 100);
5687
5687
  const offset = parseInt(req.query["offset"]) || 0;
@@ -5714,7 +5714,7 @@ async function createServerHandle(config4) {
5714
5714
  res.status(201).json({ session });
5715
5715
  });
5716
5716
  app.get("/api/sessions/:id", async (req, res) => {
5717
- const { getEventStore: getEventStore2 } = await import("./events-2UP7O6LW.js");
5717
+ const { getEventStore: getEventStore2 } = await import("./events-Z2SXIOUX.js");
5718
5718
  const { buildMessagesFromStoredEvents: buildMessagesFromStoredEvents2 } = await import("./folding-4VHGQE6Y.js");
5719
5719
  const session = sessionManager.getSession(req.params.id);
5720
5720
  if (!session) {
@@ -5745,7 +5745,7 @@ async function createServerHandle(config4) {
5745
5745
  res.json({ success: true });
5746
5746
  });
5747
5747
  app.post("/api/sessions/:id/provider", async (req, res) => {
5748
- const { getEventStore: getEventStore2 } = await import("./events-2UP7O6LW.js");
5748
+ const { getEventStore: getEventStore2 } = await import("./events-Z2SXIOUX.js");
5749
5749
  const { buildMessagesFromStoredEvents: buildMessagesFromStoredEvents2 } = await import("./folding-4VHGQE6Y.js");
5750
5750
  const sessionId = req.params.id;
5751
5751
  const session = sessionManager.getSession(sessionId);
@@ -5783,7 +5783,7 @@ async function createServerHandle(config4) {
5783
5783
  res.json({ success: true });
5784
5784
  });
5785
5785
  app.put("/api/sessions/:id/mode", async (req, res) => {
5786
- const { getEventStore: getEventStore2 } = await import("./events-2UP7O6LW.js");
5786
+ const { getEventStore: getEventStore2 } = await import("./events-Z2SXIOUX.js");
5787
5787
  const { buildMessagesFromStoredEvents: buildMessagesFromStoredEvents2 } = await import("./folding-4VHGQE6Y.js");
5788
5788
  const sessionId = req.params.id;
5789
5789
  const session = sessionManager.getSession(sessionId);
@@ -5840,12 +5840,12 @@ async function createServerHandle(config4) {
5840
5840
  if (!callId || approved === void 0) {
5841
5841
  return res.status(400).json({ error: "callId and approved are required" });
5842
5842
  }
5843
- const { providePathConfirmation } = await import("./tools-SIVCXYHR.js");
5843
+ const { providePathConfirmation } = await import("./tools-ASM4FNUG.js");
5844
5844
  const result = providePathConfirmation(callId, approved, alwaysAllow);
5845
5845
  if (!result.found) {
5846
5846
  return res.status(404).json({ error: "No pending path confirmation with that ID" });
5847
5847
  }
5848
- const { getEventStore: getEventStore2 } = await import("./events-2UP7O6LW.js");
5848
+ const { getEventStore: getEventStore2 } = await import("./events-Z2SXIOUX.js");
5849
5849
  const { buildMessagesFromStoredEvents: buildMessagesFromStoredEvents2, foldPendingConfirmations: foldPendingConfirmations2 } = await import("./folding-4VHGQE6Y.js");
5850
5850
  const { createSessionStateMessage: createSessionStateMessage2 } = await import("./protocol-FZUIA4BS.js");
5851
5851
  const eventStore = getEventStore2();
@@ -5864,7 +5864,7 @@ async function createServerHandle(config4) {
5864
5864
  if (!callId || !answer) {
5865
5865
  return res.status(400).json({ error: "callId and answer are required" });
5866
5866
  }
5867
- const { provideAnswer: provideAnswer2 } = await import("./tools-SIVCXYHR.js");
5867
+ const { provideAnswer: provideAnswer2 } = await import("./tools-ASM4FNUG.js");
5868
5868
  const found = provideAnswer2(callId, answer);
5869
5869
  if (!found) {
5870
5870
  return res.status(404).json({ error: "No pending question with that ID" });
@@ -5900,14 +5900,14 @@ async function createServerHandle(config4) {
5900
5900
  if (!session) {
5901
5901
  return res.status(404).json({ error: "Session not found" });
5902
5902
  }
5903
- const { stopSessionExecution } = await import("./chat-handler-42XM6GZI.js");
5904
- const { cancelQuestionsForSession, cancelPathConfirmationsForSession } = await import("./tools-SIVCXYHR.js");
5903
+ const { stopSessionExecution } = await import("./chat-handler-N3FYFHYQ.js");
5904
+ const { cancelQuestionsForSession, cancelPathConfirmationsForSession } = await import("./tools-ASM4FNUG.js");
5905
5905
  stopSessionExecution(sessionId, sessionManager);
5906
5906
  abortSession(sessionId);
5907
5907
  cancelQuestionsForSession(sessionId, "Session stopped by user");
5908
5908
  cancelPathConfirmationsForSession(sessionId, "Session stopped by user");
5909
5909
  sessionManager.clearMessageQueue(sessionId);
5910
- const eventStore = (await import("./events-2UP7O6LW.js")).getEventStore();
5910
+ const eventStore = (await import("./events-Z2SXIOUX.js")).getEventStore();
5911
5911
  eventStore.append(sessionId, { type: "running.changed", data: { isRunning: false } });
5912
5912
  res.json({ success: true });
5913
5913
  });
@@ -5921,10 +5921,29 @@ async function createServerHandle(config4) {
5921
5921
  if (typeof messageIndex !== "number" || messageIndex < 0) {
5922
5922
  return res.status(400).json({ error: "messageIndex must be a non-negative number" });
5923
5923
  }
5924
- const { truncateSessionMessages } = await import("./events-2UP7O6LW.js");
5924
+ const { truncateSessionMessages } = await import("./events-Z2SXIOUX.js");
5925
5925
  truncateSessionMessages(sessionId, messageIndex);
5926
5926
  res.json({ success: true });
5927
5927
  });
5928
+ app.post("/api/sessions/:id/replay", async (req, res) => {
5929
+ const sessionId = req.params.id;
5930
+ const session = sessionManager.getSession(sessionId);
5931
+ if (!session) {
5932
+ return res.status(404).json({ error: "Session not found" });
5933
+ }
5934
+ const { messageIndex } = req.body;
5935
+ if (typeof messageIndex !== "number" || messageIndex < 0) {
5936
+ return res.status(400).json({ error: "messageIndex must be a non-negative number" });
5937
+ }
5938
+ const msg = session.messages[messageIndex];
5939
+ if (!msg) {
5940
+ return res.status(400).json({ error: "Message not found at this index" });
5941
+ }
5942
+ const { truncateSessionMessages } = await import("./events-Z2SXIOUX.js");
5943
+ truncateSessionMessages(sessionId, messageIndex - 1);
5944
+ sessionManager.queueMessage(sessionId, "asap", msg.content, msg.attachments, msg.messageKind);
5945
+ res.json({ success: true });
5946
+ });
5928
5947
  app.post("/api/sessions/:id/chat", async (req, res) => {
5929
5948
  const sessionId = req.params.id;
5930
5949
  const session = sessionManager.getSession(sessionId);
@@ -6397,7 +6416,7 @@ async function createServerHandle(config4) {
6397
6416
  providerManager
6398
6417
  );
6399
6418
  const wss = wssExports.wss;
6400
- const { QueueProcessor } = await import("./processor-F3GKMYJT.js");
6419
+ const { QueueProcessor } = await import("./processor-V34TTHI2.js");
6401
6420
  const queueProcessor = new QueueProcessor({
6402
6421
  sessionManager,
6403
6422
  providerManager,
@@ -6469,4 +6488,4 @@ export {
6469
6488
  createServerHandle,
6470
6489
  createServer
6471
6490
  };
6472
- //# sourceMappingURL=chunk-B7UUSHT7.js.map
6491
+ //# sourceMappingURL=chunk-QAMG73V3.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-FBKS6IPU.js";
4
+ } from "../chunk-6UBQ4BNN.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-FBKS6IPU.js";
4
+ } from "../chunk-6UBQ4BNN.js";
5
5
  import {
6
6
  logger
7
7
  } from "../chunk-K44MW7JJ.js";
@@ -37,7 +37,7 @@ import {
37
37
  isStoredEvent,
38
38
  isTurnEvent,
39
39
  truncateSessionMessages
40
- } from "./chunk-RREZKLOD.js";
40
+ } from "./chunk-7Y3HFCTD.js";
41
41
  import "./chunk-5GVCNVKV.js";
42
42
  import {
43
43
  buildContextMessagesFromEventHistory,
@@ -113,4 +113,4 @@ export {
113
113
  isTurnEvent,
114
114
  truncateSessionMessages
115
115
  };
116
- //# sourceMappingURL=events-2UP7O6LW.js.map
116
+ //# sourceMappingURL=events-Z2SXIOUX.js.map
@@ -3,7 +3,7 @@ import {
3
3
  runBuilderTurn,
4
4
  runChatTurn,
5
5
  runVerifierTurn
6
- } from "./chunk-K7IJKGYL.js";
6
+ } from "./chunk-K7F73QLL.js";
7
7
  import {
8
8
  TurnMetrics,
9
9
  createChatDoneEvent,
@@ -11,14 +11,14 @@ import {
11
11
  createMessageStartEvent,
12
12
  createToolCallEvent,
13
13
  createToolResultEvent
14
- } from "./chunk-47FAM55V.js";
14
+ } from "./chunk-KR7N2ONG.js";
15
15
  import "./chunk-ROWFVGB6.js";
16
16
  import "./chunk-ZHBL5G5X.js";
17
17
  import "./chunk-DL6ZILAF.js";
18
18
  import "./chunk-PBGOZMVY.js";
19
19
  import "./chunk-VRGRAQDG.js";
20
20
  import "./chunk-HGAMIPFO.js";
21
- import "./chunk-RREZKLOD.js";
21
+ import "./chunk-7Y3HFCTD.js";
22
22
  import "./chunk-5GVCNVKV.js";
23
23
  import "./chunk-XVWVAWSG.js";
24
24
  import "./chunk-T67WWSM7.js";
@@ -40,4 +40,4 @@ export {
40
40
  runChatTurn,
41
41
  runVerifierTurn
42
42
  };
43
- //# sourceMappingURL=orchestrator-I3YQFBTP.js.map
43
+ //# sourceMappingURL=orchestrator-2A6RG6ZR.js.map
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openfox",
3
- "version": "1.6.97",
3
+ "version": "1.6.99",
4
4
  "description": "Local-LLM-first agentic coding assistant",
5
5
  "type": "module",
6
6
  "bin": {
@@ -5,10 +5,10 @@ import {
5
5
  generateSessionName,
6
6
  getSessionMessageCount,
7
7
  needsNameGenerationCheck
8
- } from "./chunk-QAN42RJQ.js";
8
+ } from "./chunk-NVVKBL4S.js";
9
9
  import {
10
10
  getEventStore
11
- } from "./chunk-RREZKLOD.js";
11
+ } from "./chunk-7Y3HFCTD.js";
12
12
  import "./chunk-5GVCNVKV.js";
13
13
  import "./chunk-XVWVAWSG.js";
14
14
  import {
@@ -177,7 +177,7 @@ var QueueProcessor = class {
177
177
  backend: provider?.backend ?? llmClient.getBackend(),
178
178
  model: llmClient.getModel()
179
179
  };
180
- const { runChatTurn } = await import("./orchestrator-I3YQFBTP.js");
180
+ const { runChatTurn } = await import("./orchestrator-2A6RG6ZR.js");
181
181
  const runChatTurnParams = buildRunChatTurnParams({
182
182
  sessionManager,
183
183
  sessionId,
@@ -221,4 +221,4 @@ var QueueProcessor = class {
221
221
  export {
222
222
  QueueProcessor
223
223
  };
224
- //# sourceMappingURL=processor-F3GKMYJT.js.map
224
+ //# sourceMappingURL=processor-V34TTHI2.js.map
@@ -6,9 +6,9 @@ import {
6
6
  import {
7
7
  VERSION,
8
8
  createServer
9
- } from "./chunk-B7UUSHT7.js";
10
- import "./chunk-K7IJKGYL.js";
11
- import "./chunk-47FAM55V.js";
9
+ } from "./chunk-QAMG73V3.js";
10
+ import "./chunk-K7F73QLL.js";
11
+ import "./chunk-KR7N2ONG.js";
12
12
  import "./chunk-ROWFVGB6.js";
13
13
  import "./chunk-ZHBL5G5X.js";
14
14
  import "./chunk-DL6ZILAF.js";
@@ -17,7 +17,7 @@ import "./chunk-VRGRAQDG.js";
17
17
  import "./chunk-RF2JGDSS.js";
18
18
  import "./chunk-HHAJ3QF6.js";
19
19
  import "./chunk-HGAMIPFO.js";
20
- import "./chunk-RREZKLOD.js";
20
+ import "./chunk-7Y3HFCTD.js";
21
21
  import "./chunk-5GVCNVKV.js";
22
22
  import "./chunk-XVWVAWSG.js";
23
23
  import "./chunk-T67WWSM7.js";
@@ -190,4 +190,4 @@ async function runServe(options) {
190
190
  export {
191
191
  runServe
192
192
  };
193
- //# sourceMappingURL=serve-QRK2E7HR.js.map
193
+ //# sourceMappingURL=serve-65V7N6ZV.js.map
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  createServer,
3
3
  createServerHandle
4
- } from "../chunk-B7UUSHT7.js";
5
- import "../chunk-K7IJKGYL.js";
6
- import "../chunk-47FAM55V.js";
4
+ } from "../chunk-QAMG73V3.js";
5
+ import "../chunk-K7F73QLL.js";
6
+ import "../chunk-KR7N2ONG.js";
7
7
  import "../chunk-ROWFVGB6.js";
8
8
  import "../chunk-ZHBL5G5X.js";
9
9
  import "../chunk-DL6ZILAF.js";
@@ -12,7 +12,7 @@ import "../chunk-VRGRAQDG.js";
12
12
  import "../chunk-RF2JGDSS.js";
13
13
  import "../chunk-HHAJ3QF6.js";
14
14
  import "../chunk-HGAMIPFO.js";
15
- import "../chunk-RREZKLOD.js";
15
+ import "../chunk-7Y3HFCTD.js";
16
16
  import "../chunk-5GVCNVKV.js";
17
17
  import "../chunk-XVWVAWSG.js";
18
18
  import "../chunk-T67WWSM7.js";
@@ -113,6 +113,7 @@ Type=simple
113
113
  ExecStart=${expandPath(RUN_SCRIPT_PATH)}
114
114
  Restart=always
115
115
  RestartSec=5
116
+ KillMode=process
116
117
 
117
118
  [Install]
118
119
  WantedBy=graphical-session.target
@@ -275,4 +276,4 @@ async function serviceUninstall() {
275
276
  export {
276
277
  runServiceCommand
277
278
  };
278
- //# sourceMappingURL=service-3CLVG2HV.js.map
279
+ //# sourceMappingURL=service-EUOBAATS.js.map
@@ -11,14 +11,14 @@ import {
11
11
  requestPathAccess,
12
12
  stepDoneTool,
13
13
  validateToolAction
14
- } from "./chunk-47FAM55V.js";
14
+ } from "./chunk-KR7N2ONG.js";
15
15
  import "./chunk-ROWFVGB6.js";
16
16
  import "./chunk-ZHBL5G5X.js";
17
17
  import "./chunk-DL6ZILAF.js";
18
18
  import "./chunk-PBGOZMVY.js";
19
19
  import "./chunk-VRGRAQDG.js";
20
20
  import "./chunk-HGAMIPFO.js";
21
- import "./chunk-RREZKLOD.js";
21
+ import "./chunk-7Y3HFCTD.js";
22
22
  import "./chunk-5GVCNVKV.js";
23
23
  import "./chunk-XVWVAWSG.js";
24
24
  import "./chunk-T67WWSM7.js";
@@ -49,4 +49,4 @@ export {
49
49
  stepDoneTool,
50
50
  validateToolAction
51
51
  };
52
- //# sourceMappingURL=tools-SIVCXYHR.js.map
52
+ //# sourceMappingURL=tools-ASM4FNUG.js.map