openfox 1.5.2 → 1.6.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.
Files changed (34) hide show
  1. package/dist/agent-defaults/builder.agent.md +1 -0
  2. package/dist/agent-defaults/planner.agent.md +1 -0
  3. package/dist/{auto-compaction-MNK2FZ6E.js → auto-compaction-BRT6SDEP.js} +7 -5
  4. package/dist/{chat-handler-Y7KR2RLL.js → chat-handler-55LA4LI2.js} +11 -9
  5. package/dist/chunk-574HZVLE.js +149 -0
  6. package/dist/{chunk-NW7PIZH3.js → chunk-CIXMZ73F.js} +82 -3
  7. package/dist/{chunk-S4QKTRGJ.js → chunk-EBOKO2PW.js} +2 -2
  8. package/dist/{chunk-GXVA5W7Q.js → chunk-GBBTJ6ND.js} +183 -15
  9. package/dist/chunk-NBU6KIOD.js +184 -0
  10. package/dist/{chunk-F7PUG5WA.js → chunk-S73ATBSR.js} +4 -4
  11. package/dist/{chunk-6PV24MJB.js → chunk-TKWJ665A.js} +2 -2
  12. package/dist/{chunk-UBWZDTZ4.js → chunk-WZJLCOV3.js} +89 -48
  13. package/dist/{chunk-TPT6HP4H.js → chunk-XQQ2BRJA.js} +1 -1
  14. package/dist/cli/dev.js +1 -1
  15. package/dist/cli/index.js +1 -1
  16. package/dist/{events-B7S4U4DB.js → events-OZKDX6XE.js} +2 -2
  17. package/dist/manager-HM2J5VMW.js +20 -0
  18. package/dist/{orchestrator-QGFC5QB6.js → orchestrator-IEYZSNVH.js} +8 -6
  19. package/dist/package.json +1 -1
  20. package/dist/{processor-BFTXIEDV.js → processor-I4BGYK3T.js} +5 -5
  21. package/dist/{protocol-WQENDK72.js → protocol-ODKD7QJO.js} +3 -3
  22. package/dist/{protocol-CLWtTnMd.d.ts → protocol-vX_YbJXE.d.ts} +40 -2
  23. package/dist/{serve-JJLKBQXS.js → serve-SDBFDRNJ.js} +10 -8
  24. package/dist/server/index.d.ts +1 -1
  25. package/dist/server/index.js +8 -6
  26. package/dist/shared/index.d.ts +2 -2
  27. package/dist/shared/index.js +1 -1
  28. package/dist/store-2IF3ZSLD.js +33 -0
  29. package/dist/{tools-MY4TPRP4.js → tools-GQ3PJL6N.js} +7 -5
  30. package/dist/web/assets/{index-BnJ4NNAw.css → index-Dc2TJUUt.css} +1 -1
  31. package/dist/web/assets/{index-xs6xUYKs.js → index-JG-uVLoP.js} +70 -62
  32. package/dist/web/index.html +2 -2
  33. package/dist/web/sw.js +1 -1
  34. package/package.json +1 -1
@@ -5,7 +5,7 @@ import {
5
5
  import {
6
6
  getEventStore,
7
7
  updateSessionMetadata
8
- } from "./chunk-NW7PIZH3.js";
8
+ } from "./chunk-CIXMZ73F.js";
9
9
  import {
10
10
  buildMessagesFromStoredEvents,
11
11
  foldPendingConfirmations
@@ -15,9 +15,9 @@ import {
15
15
  createContextStateMessage,
16
16
  createSessionRunningMessage,
17
17
  createSessionStateMessage
18
- } from "./chunk-S4QKTRGJ.js";
18
+ } from "./chunk-EBOKO2PW.js";
19
19
  import "./chunk-3EHGGBWE.js";
20
- import "./chunk-TPT6HP4H.js";
20
+ import "./chunk-XQQ2BRJA.js";
21
21
  import "./chunk-TVQOONDR.js";
22
22
  import {
23
23
  logger
@@ -188,7 +188,7 @@ var QueueProcessor = class {
188
188
  backend: provider?.backend ?? llmClient.getBackend(),
189
189
  model: llmClient.getModel()
190
190
  };
191
- const { runChatTurn } = await import("./orchestrator-QGFC5QB6.js");
191
+ const { runChatTurn } = await import("./orchestrator-IEYZSNVH.js");
192
192
  runChatTurn({
193
193
  sessionManager,
194
194
  sessionId,
@@ -233,4 +233,4 @@ var QueueProcessor = class {
233
233
  export {
234
234
  QueueProcessor
235
235
  };
236
- //# sourceMappingURL=processor-BFTXIEDV.js.map
236
+ //# sourceMappingURL=processor-I4BGYK3T.js.map
@@ -40,8 +40,8 @@ import {
40
40
  parseClientMessage,
41
41
  serializeServerMessage,
42
42
  storedEventToServerMessage
43
- } from "./chunk-S4QKTRGJ.js";
44
- import "./chunk-TPT6HP4H.js";
43
+ } from "./chunk-EBOKO2PW.js";
44
+ import "./chunk-XQQ2BRJA.js";
45
45
  export {
46
46
  createChatAskUserMessage,
47
47
  createChatDeltaMessage,
@@ -85,4 +85,4 @@ export {
85
85
  serializeServerMessage,
86
86
  storedEventToServerMessage
87
87
  };
88
- //# sourceMappingURL=protocol-WQENDK72.js.map
88
+ //# sourceMappingURL=protocol-ODKD7QJO.js.map
@@ -510,7 +510,7 @@ interface QueuedMessage {
510
510
  queuedAt: string;
511
511
  messageKind?: string;
512
512
  }
513
- type ServerMessageType = 'project.state' | 'project.list' | 'project.deleted' | 'session.state' | 'session.list' | 'session.deleted' | 'session.deletedAll' | 'session.running' | 'session.name_generated' | 'chat.delta' | 'chat.thinking' | 'chat.tool_preparing' | 'chat.tool_call' | 'chat.tool_output' | 'chat.tool_result' | 'chat.todo' | 'chat.summary' | 'chat.progress' | 'chat.format_retry' | 'chat.message' | 'chat.message_updated' | 'chat.done' | 'chat.vision_fallback' | 'chat.error' | 'chat.path_confirmation' | 'chat.ask_user' | 'mode.changed' | 'phase.changed' | 'task.completed' | 'criteria.updated' | 'context.state' | 'settings.value' | 'provider.changed' | 'queue.state' | 'devServer.output' | 'devServer.state' | 'lsp.diagnostics' | 'error' | 'ack';
513
+ type ServerMessageType = 'project.state' | 'project.list' | 'project.deleted' | 'session.state' | 'session.list' | 'session.deleted' | 'session.deletedAll' | 'session.running' | 'session.name_generated' | 'chat.delta' | 'chat.thinking' | 'chat.tool_preparing' | 'chat.tool_call' | 'chat.tool_output' | 'chat.tool_result' | 'chat.todo' | 'chat.summary' | 'chat.progress' | 'chat.format_retry' | 'chat.message' | 'chat.message_updated' | 'chat.done' | 'chat.vision_fallback' | 'chat.error' | 'chat.path_confirmation' | 'chat.ask_user' | 'mode.changed' | 'phase.changed' | 'task.completed' | 'criteria.updated' | 'context.state' | 'settings.value' | 'provider.changed' | 'queue.state' | 'devServer.output' | 'devServer.state' | 'backgroundProcess.started' | 'backgroundProcess.output' | 'backgroundProcess.exited' | 'backgroundProcess.removed' | 'lsp.diagnostics' | 'error' | 'ack';
514
514
  interface ServerMessage<T = unknown> {
515
515
  id?: string;
516
516
  type: ServerMessageType;
@@ -694,6 +694,44 @@ interface DevServerStatePayload {
694
694
  state: 'off' | 'running' | 'warning' | 'error';
695
695
  errorMessage?: string;
696
696
  }
697
+ interface BackgroundProcessStartedPayload {
698
+ processId: string;
699
+ name: string;
700
+ pid: number;
701
+ status: BackgroundProcessStatus;
702
+ }
703
+ interface BackgroundProcessOutputPayload {
704
+ processId: string;
705
+ stream: 'stdout' | 'stderr';
706
+ content: string;
707
+ }
708
+ interface BackgroundProcessExitedPayload {
709
+ processId: string;
710
+ exitCode: number | null;
711
+ }
712
+ interface BackgroundProcessRemovedPayload {
713
+ processId: string;
714
+ }
715
+ type BackgroundProcessStatus = 'pending' | 'starting' | 'running' | 'stopping' | 'exited';
716
+ interface BackgroundProcess {
717
+ id: string;
718
+ sessionId: string;
719
+ name: string;
720
+ command: string;
721
+ cwd: string;
722
+ pid: number | null;
723
+ status: BackgroundProcessStatus;
724
+ exitCode: number | null;
725
+ createdAt: number;
726
+ startedAt: number | null;
727
+ endedAt: number | null;
728
+ }
729
+ interface LogLine {
730
+ offset: number;
731
+ content: string;
732
+ timestamp: number;
733
+ stream: 'stdout' | 'stderr';
734
+ }
697
735
  interface LspDiagnosticsPayload {
698
736
  path: string;
699
737
  diagnostics: Diagnostic[];
@@ -791,4 +829,4 @@ interface QueueCancelledEvent {
791
829
  }
792
830
  type QueueEvent = QueueAddedEvent | QueueDrainedEvent | QueueCancelledEvent;
793
831
 
794
- export { type MessageSegment as $, type AgentEvent as A, type ContextStatePayload as B, type CallStatsDataPoint as C, type ContextWindow as D, type CriteriaEditPayload as E, type CriteriaUpdatedPayload as F, type Criterion as G, type CriterionAttempt as H, type CriterionStatus as I, type CriterionValidation as J, type DangerLevel as K, type DevServerOutputPayload as L, type Message as M, type DevServerStatePayload as N, type Diagnostic as O, type EditContextEdit as P, type EditContextLine as Q, type EditContextRegion as R, type SessionStats as S, type ErrorPayload as T, type ExecutionState as U, type FileReadEntry as V, type InjectedFile as W, type LLMCallStats as X, type LlmBackend as Y, type LspDiagnosticsPayload as Z, type MessageRole as _, type AskAnswerPayload as a, type MessageStats as a0, type ModeChangedPayload as a1, type ModeSwitchPayload as a2, type ModelConfig as a3, type ModelSessionStats as a4, type PathConfirmPayload as a5, type PathConfirmationReason as a6, type PendingPathConfirmationPayload as a7, type PhaseChangedPayload as a8, type PreparingToolCall as a9, type SessionLoadPayload as aA, type SessionMetadata as aB, type SessionMode as aC, type SessionNameGeneratedPayload as aD, type SessionPhase as aE, type SessionRunningPayload as aF, type SessionStatePayload as aG, type SessionSummary as aH, type StatsDataPoint as aI, type StatsIdentity as aJ, type TaskCompletedPayload as aK, type Todo as aL, type ToolCall as aM, type ToolMode as aN, type ToolName as aO, type ToolResult as aP, type ValidationResult as aQ, createClientMessage as aR, createServerMessage as aS, isClientMessage as aT, isServerMessage as aU, type Project as aa, type ProjectDeletedPayload as ab, type ProjectListPayload as ac, type ProjectStatePayload as ad, type PromptContext as ae, type PromptContextMessage as af, type PromptContextTool as ag, type PromptRequestOptions as ah, type Provider as ai, type ProviderBackend as aj, type ProviderChangedPayload as ak, type QueueAddedEvent as al, type QueueAsapPayload as am, type QueueCancelPayload as an, type QueueCancelledEvent as ao, type QueueCompletionPayload as ap, type QueueDrainedEvent as aq, type QueueEvent as ar, type QueueEventType as as, type QueueStatePayload as at, type QueuedMessage as au, type RecentUserPrompt as av, type ServerMessage as aw, type ServerMessageType as ax, type Session as ay, type SessionListPayload as az, type AskUserEvent as b, type Attachment as c, type ChatAskUserPayload as d, type ChatDeltaPayload as e, type ChatDonePayload as f, type ChatErrorPayload as g, type ChatFormatRetryPayload as h, type ChatMessagePayload as i, type ChatMessageUpdatedPayload as j, type ChatPathConfirmationPayload as k, type ChatProgressPayload as l, type ChatSendPayload as m, type ChatSummaryPayload as n, type ChatThinkingPayload as o, type ChatTodoPayload as p, type ChatToolCallPayload as q, type ChatToolOutputPayload as r, type ChatToolPreparingPayload as s, type ChatToolResultPayload as t, type ChatVisionFallbackPayload as u, type ClientMessage as v, type ClientMessageType as w, type Config as x, type ContextCompactionEvent as y, type ContextState as z };
832
+ export { type FileReadEntry as $, type AgentEvent as A, type BackgroundProcess as B, type CallStatsDataPoint as C, type ClientMessage as D, type ClientMessageType as E, type Config as F, type ContextCompactionEvent as G, type ContextState as H, type ContextStatePayload as I, type ContextWindow as J, type CriteriaEditPayload as K, type CriteriaUpdatedPayload as L, type Message as M, type Criterion as N, type CriterionAttempt as O, type CriterionStatus as P, type CriterionValidation as Q, type DangerLevel as R, type SessionStats as S, type DevServerOutputPayload as T, type DevServerStatePayload as U, type Diagnostic as V, type EditContextEdit as W, type EditContextLine as X, type EditContextRegion as Y, type ErrorPayload as Z, type ExecutionState as _, type AskAnswerPayload as a, isServerMessage as a$, type InjectedFile as a0, type LLMCallStats as a1, type LlmBackend as a2, type LogLine as a3, type LspDiagnosticsPayload as a4, type MessageRole as a5, type MessageSegment as a6, type MessageStats as a7, type ModeChangedPayload as a8, type ModeSwitchPayload as a9, type QueueStatePayload as aA, type QueuedMessage as aB, type RecentUserPrompt as aC, type ServerMessage as aD, type ServerMessageType as aE, type Session as aF, type SessionListPayload as aG, type SessionLoadPayload as aH, type SessionMetadata as aI, type SessionMode as aJ, type SessionNameGeneratedPayload as aK, type SessionPhase as aL, type SessionRunningPayload as aM, type SessionStatePayload as aN, type SessionSummary as aO, type StatsDataPoint as aP, type StatsIdentity as aQ, type TaskCompletedPayload as aR, type Todo as aS, type ToolCall as aT, type ToolMode as aU, type ToolName as aV, type ToolResult as aW, type ValidationResult as aX, createClientMessage as aY, createServerMessage as aZ, isClientMessage as a_, type ModelConfig as aa, type ModelSessionStats as ab, type PathConfirmPayload as ac, type PathConfirmationReason as ad, type PendingPathConfirmationPayload as ae, type PhaseChangedPayload as af, type PreparingToolCall as ag, type Project as ah, type ProjectDeletedPayload as ai, type ProjectListPayload as aj, type ProjectStatePayload as ak, type PromptContext as al, type PromptContextMessage as am, type PromptContextTool as an, type PromptRequestOptions as ao, type Provider as ap, type ProviderBackend as aq, type ProviderChangedPayload as ar, type QueueAddedEvent as as, type QueueAsapPayload as at, type QueueCancelPayload as au, type QueueCancelledEvent as av, type QueueCompletionPayload as aw, type QueueDrainedEvent as ax, type QueueEvent as ay, type QueueEventType as az, type AskUserEvent as b, type Attachment as c, type BackgroundProcessExitedPayload as d, type BackgroundProcessOutputPayload as e, type BackgroundProcessRemovedPayload as f, type BackgroundProcessStartedPayload as g, type BackgroundProcessStatus as h, type ChatAskUserPayload as i, type ChatDeltaPayload as j, type ChatDonePayload as k, type ChatErrorPayload as l, type ChatFormatRetryPayload as m, type ChatMessagePayload as n, type ChatMessageUpdatedPayload as o, type ChatPathConfirmationPayload as p, type ChatProgressPayload as q, type ChatSendPayload as r, type ChatSummaryPayload as s, type ChatThinkingPayload as t, type ChatTodoPayload as u, type ChatToolCallPayload as v, type ChatToolOutputPayload as w, type ChatToolPreparingPayload as x, type ChatToolResultPayload as y, type ChatVisionFallbackPayload as z };
@@ -5,22 +5,24 @@ import {
5
5
  } from "./chunk-ICPQDI4L.js";
6
6
  import {
7
7
  createServer
8
- } from "./chunk-UBWZDTZ4.js";
9
- import "./chunk-F7PUG5WA.js";
10
- import "./chunk-GXVA5W7Q.js";
8
+ } from "./chunk-WZJLCOV3.js";
11
9
  import "./chunk-QDEKU5RL.js";
10
+ import "./chunk-S73ATBSR.js";
11
+ import "./chunk-GBBTJ6ND.js";
12
+ import "./chunk-NBU6KIOD.js";
13
+ import "./chunk-574HZVLE.js";
12
14
  import "./chunk-PJRARONG.js";
13
15
  import "./chunk-UNCPQRFP.js";
14
16
  import "./chunk-XFXOSPYH.js";
15
- import "./chunk-NW7PIZH3.js";
17
+ import "./chunk-CIXMZ73F.js";
16
18
  import "./chunk-WQ4W5H6A.js";
17
- import "./chunk-S4QKTRGJ.js";
19
+ import "./chunk-EBOKO2PW.js";
18
20
  import "./chunk-22CTURMH.js";
19
21
  import "./chunk-7IOZFJBW.js";
20
22
  import "./chunk-XKFPU2FA.js";
21
23
  import "./chunk-3EHGGBWE.js";
22
24
  import "./chunk-QY7BMXWT.js";
23
- import "./chunk-TPT6HP4H.js";
25
+ import "./chunk-XQQ2BRJA.js";
24
26
  import {
25
27
  ensureDataDirExists,
26
28
  getDatabasePath,
@@ -39,7 +41,7 @@ import os from "os";
39
41
  import { statSync } from "fs";
40
42
 
41
43
  // src/constants.ts
42
- var VERSION = "1.5.2";
44
+ var VERSION = "1.6.0";
43
45
 
44
46
  // src/server/utils/network.ts
45
47
  function getNetworkInterfaces() {
@@ -190,4 +192,4 @@ async function runServe(options) {
190
192
  export {
191
193
  runServe
192
194
  };
193
- //# sourceMappingURL=serve-JJLKBQXS.js.map
195
+ //# sourceMappingURL=serve-SDBFDRNJ.js.map
@@ -1,4 +1,4 @@
1
- import { aM as ToolCall, c as Attachment, O as Diagnostic, ai as Provider, a3 as ModelConfig, ay as Session, aH as SessionSummary, aa as Project, aC as SessionMode, aE as SessionPhase, M as Message, G as Criterion, I as CriterionStatus, au as QueuedMessage, z as ContextState, K as DangerLevel$1, aw as ServerMessage, aJ as StatsIdentity, aP as ToolResult, x as Config } from '../protocol-CLWtTnMd.js';
1
+ import { aT as ToolCall, c as Attachment, V as Diagnostic, ap as Provider, aa as ModelConfig, aF as Session, aO as SessionSummary, ah as Project, aJ as SessionMode, aL as SessionPhase, M as Message, N as Criterion, P as CriterionStatus, aB as QueuedMessage, H as ContextState, R as DangerLevel$1, aD as ServerMessage, aQ as StatsIdentity, aW as ToolResult, F as Config } from '../protocol-vX_YbJXE.js';
2
2
  import { Server } from 'node:http';
3
3
 
4
4
  interface LLMMessage {
@@ -1,22 +1,24 @@
1
1
  import {
2
2
  createServer,
3
3
  createServerHandle
4
- } from "../chunk-UBWZDTZ4.js";
5
- import "../chunk-F7PUG5WA.js";
6
- import "../chunk-GXVA5W7Q.js";
4
+ } from "../chunk-WZJLCOV3.js";
7
5
  import "../chunk-QDEKU5RL.js";
6
+ import "../chunk-S73ATBSR.js";
7
+ import "../chunk-GBBTJ6ND.js";
8
+ import "../chunk-NBU6KIOD.js";
9
+ import "../chunk-574HZVLE.js";
8
10
  import "../chunk-PJRARONG.js";
9
11
  import "../chunk-UNCPQRFP.js";
10
12
  import "../chunk-XFXOSPYH.js";
11
- import "../chunk-NW7PIZH3.js";
13
+ import "../chunk-CIXMZ73F.js";
12
14
  import "../chunk-WQ4W5H6A.js";
13
- import "../chunk-S4QKTRGJ.js";
15
+ import "../chunk-EBOKO2PW.js";
14
16
  import "../chunk-22CTURMH.js";
15
17
  import "../chunk-7IOZFJBW.js";
16
18
  import "../chunk-XKFPU2FA.js";
17
19
  import "../chunk-3EHGGBWE.js";
18
20
  import "../chunk-QY7BMXWT.js";
19
- import "../chunk-TPT6HP4H.js";
21
+ import "../chunk-XQQ2BRJA.js";
20
22
  import "../chunk-R4HADRYO.js";
21
23
  import "../chunk-TVQOONDR.js";
22
24
  import "../chunk-LJRH7ICU.js";
@@ -1,5 +1,5 @@
1
- import { M as Message, S as SessionStats } from '../protocol-CLWtTnMd.js';
2
- export { A as AgentEvent, a as AskAnswerPayload, b as AskUserEvent, c as Attachment, C as CallStatsDataPoint, d as ChatAskUserPayload, e as ChatDeltaPayload, f as ChatDonePayload, g as ChatErrorPayload, h as ChatFormatRetryPayload, i as ChatMessagePayload, j as ChatMessageUpdatedPayload, k as ChatPathConfirmationPayload, l as ChatProgressPayload, m as ChatSendPayload, n as ChatSummaryPayload, o as ChatThinkingPayload, p as ChatTodoPayload, q as ChatToolCallPayload, r as ChatToolOutputPayload, s as ChatToolPreparingPayload, t as ChatToolResultPayload, u as ChatVisionFallbackPayload, v as ClientMessage, w as ClientMessageType, x as Config, y as ContextCompactionEvent, z as ContextState, B as ContextStatePayload, D as ContextWindow, E as CriteriaEditPayload, F as CriteriaUpdatedPayload, G as Criterion, H as CriterionAttempt, I as CriterionStatus, J as CriterionValidation, K as DangerLevel, L as DevServerOutputPayload, N as DevServerStatePayload, O as Diagnostic, P as EditContextEdit, Q as EditContextLine, R as EditContextRegion, T as ErrorPayload, U as ExecutionState, V as FileReadEntry, W as InjectedFile, X as LLMCallStats, Y as LlmBackend, Z as LspDiagnosticsPayload, _ as MessageRole, $ as MessageSegment, a0 as MessageStats, a1 as ModeChangedPayload, a2 as ModeSwitchPayload, a3 as ModelConfig, a4 as ModelSessionStats, a5 as PathConfirmPayload, a6 as PathConfirmationReason, a7 as PendingPathConfirmationPayload, a8 as PhaseChangedPayload, a9 as PreparingToolCall, aa as Project, ab as ProjectDeletedPayload, ac as ProjectListPayload, ad as ProjectStatePayload, ae as PromptContext, af as PromptContextMessage, ag as PromptContextTool, ah as PromptRequestOptions, ai as Provider, aj as ProviderBackend, ak as ProviderChangedPayload, al as QueueAddedEvent, am as QueueAsapPayload, an as QueueCancelPayload, ao as QueueCancelledEvent, ap as QueueCompletionPayload, aq as QueueDrainedEvent, ar as QueueEvent, as as QueueEventType, at as QueueStatePayload, au as QueuedMessage, av as RecentUserPrompt, aw as ServerMessage, ax as ServerMessageType, ay as Session, az as SessionListPayload, aA as SessionLoadPayload, aB as SessionMetadata, aC as SessionMode, aD as SessionNameGeneratedPayload, aE as SessionPhase, aF as SessionRunningPayload, aG as SessionStatePayload, aH as SessionSummary, aI as StatsDataPoint, aJ as StatsIdentity, aK as TaskCompletedPayload, aL as Todo, aM as ToolCall, aN as ToolMode, aO as ToolName, aP as ToolResult, aQ as ValidationResult, aR as createClientMessage, aS as createServerMessage, aT as isClientMessage, aU as isServerMessage } from '../protocol-CLWtTnMd.js';
1
+ import { M as Message, S as SessionStats } from '../protocol-vX_YbJXE.js';
2
+ export { A as AgentEvent, a as AskAnswerPayload, b as AskUserEvent, c as Attachment, B as BackgroundProcess, d as BackgroundProcessExitedPayload, e as BackgroundProcessOutputPayload, f as BackgroundProcessRemovedPayload, g as BackgroundProcessStartedPayload, h as BackgroundProcessStatus, C as CallStatsDataPoint, i as ChatAskUserPayload, j as ChatDeltaPayload, k as ChatDonePayload, l as ChatErrorPayload, m as ChatFormatRetryPayload, n as ChatMessagePayload, o as ChatMessageUpdatedPayload, p as ChatPathConfirmationPayload, q as ChatProgressPayload, r as ChatSendPayload, s as ChatSummaryPayload, t as ChatThinkingPayload, u as ChatTodoPayload, v as ChatToolCallPayload, w as ChatToolOutputPayload, x as ChatToolPreparingPayload, y as ChatToolResultPayload, z as ChatVisionFallbackPayload, D as ClientMessage, E as ClientMessageType, F as Config, G as ContextCompactionEvent, H as ContextState, I as ContextStatePayload, J as ContextWindow, K as CriteriaEditPayload, L as CriteriaUpdatedPayload, N as Criterion, O as CriterionAttempt, P as CriterionStatus, Q as CriterionValidation, R as DangerLevel, T as DevServerOutputPayload, U as DevServerStatePayload, V as Diagnostic, W as EditContextEdit, X as EditContextLine, Y as EditContextRegion, Z as ErrorPayload, _ as ExecutionState, $ as FileReadEntry, a0 as InjectedFile, a1 as LLMCallStats, a2 as LlmBackend, a3 as LogLine, a4 as LspDiagnosticsPayload, a5 as MessageRole, a6 as MessageSegment, a7 as MessageStats, a8 as ModeChangedPayload, a9 as ModeSwitchPayload, aa as ModelConfig, ab as ModelSessionStats, ac as PathConfirmPayload, ad as PathConfirmationReason, ae as PendingPathConfirmationPayload, af as PhaseChangedPayload, ag as PreparingToolCall, ah as Project, ai as ProjectDeletedPayload, aj as ProjectListPayload, ak as ProjectStatePayload, al as PromptContext, am as PromptContextMessage, an as PromptContextTool, ao as PromptRequestOptions, ap as Provider, aq as ProviderBackend, ar as ProviderChangedPayload, as as QueueAddedEvent, at as QueueAsapPayload, au as QueueCancelPayload, av as QueueCancelledEvent, aw as QueueCompletionPayload, ax as QueueDrainedEvent, ay as QueueEvent, az as QueueEventType, aA as QueueStatePayload, aB as QueuedMessage, aC as RecentUserPrompt, aD as ServerMessage, aE as ServerMessageType, aF as Session, aG as SessionListPayload, aH as SessionLoadPayload, aI as SessionMetadata, aJ as SessionMode, aK as SessionNameGeneratedPayload, aL as SessionPhase, aM as SessionRunningPayload, aN as SessionStatePayload, aO as SessionSummary, aP as StatsDataPoint, aQ as StatsIdentity, aR as TaskCompletedPayload, aS as Todo, aT as ToolCall, aU as ToolMode, aV as ToolName, aW as ToolResult, aX as ValidationResult, aY as createClientMessage, aZ as createServerMessage, a_ as isClientMessage, a$ as isServerMessage } from '../protocol-vX_YbJXE.js';
3
3
 
4
4
  /**
5
5
  * Session stats computation - aggregates response-level MessageStats from
@@ -6,7 +6,7 @@ import {
6
6
  createServerMessage,
7
7
  isClientMessage,
8
8
  isServerMessage
9
- } from "../chunk-TPT6HP4H.js";
9
+ } from "../chunk-XQQ2BRJA.js";
10
10
  export {
11
11
  computeSessionStats,
12
12
  createClientMessage,
@@ -0,0 +1,33 @@
1
+ import {
2
+ appendLog,
3
+ cleanupAllProcesses,
4
+ clearLogs,
5
+ createProcess,
6
+ getLogs,
7
+ getLogsPaginated,
8
+ getMaxPerSession,
9
+ getProcess,
10
+ getProcessById,
11
+ getSessionProcessCount,
12
+ getSessionProcesses,
13
+ removeProcess,
14
+ startProcess,
15
+ updateStatus
16
+ } from "./chunk-574HZVLE.js";
17
+ export {
18
+ appendLog,
19
+ cleanupAllProcesses,
20
+ clearLogs,
21
+ createProcess,
22
+ getLogs,
23
+ getLogsPaginated,
24
+ getMaxPerSession,
25
+ getProcess,
26
+ getProcessById,
27
+ getSessionProcessCount,
28
+ getSessionProcesses,
29
+ removeProcess,
30
+ startProcess,
31
+ updateStatus
32
+ };
33
+ //# sourceMappingURL=store-2IF3ZSLD.js.map
@@ -11,11 +11,13 @@ import {
11
11
  requestPathAccess,
12
12
  stepDoneTool,
13
13
  validateToolAction
14
- } from "./chunk-GXVA5W7Q.js";
14
+ } from "./chunk-GBBTJ6ND.js";
15
+ import "./chunk-NBU6KIOD.js";
16
+ import "./chunk-574HZVLE.js";
15
17
  import "./chunk-XFXOSPYH.js";
16
- import "./chunk-NW7PIZH3.js";
18
+ import "./chunk-CIXMZ73F.js";
17
19
  import "./chunk-WQ4W5H6A.js";
18
- import "./chunk-S4QKTRGJ.js";
20
+ import "./chunk-EBOKO2PW.js";
19
21
  import {
20
22
  AskUserInterrupt,
21
23
  cancelQuestionsForSession,
@@ -24,7 +26,7 @@ import {
24
26
  import "./chunk-7IOZFJBW.js";
25
27
  import "./chunk-XKFPU2FA.js";
26
28
  import "./chunk-3EHGGBWE.js";
27
- import "./chunk-TPT6HP4H.js";
29
+ import "./chunk-XQQ2BRJA.js";
28
30
  import "./chunk-R4HADRYO.js";
29
31
  import "./chunk-TVQOONDR.js";
30
32
  import "./chunk-PNBH3RAX.js";
@@ -45,4 +47,4 @@ export {
45
47
  stepDoneTool,
46
48
  validateToolAction
47
49
  };
48
- //# sourceMappingURL=tools-MY4TPRP4.js.map
50
+ //# sourceMappingURL=tools-GQ3PJL6N.js.map