opensquid 0.5.406 → 0.5.407

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 (38) hide show
  1. package/README.md +3 -5
  2. package/dist/packs/schemas/chat_agent.d.ts +1 -1
  3. package/dist/packs/schemas/chat_agent.js +1 -1
  4. package/dist/runtime/agent_bridge/agent_loop.d.ts +1 -1
  5. package/dist/runtime/agent_bridge/agent_loop.js +1 -1
  6. package/dist/runtime/agent_bridge/batch.d.ts +1 -1
  7. package/dist/runtime/agent_bridge/batch.js +1 -1
  8. package/dist/runtime/agent_bridge/cli.d.ts +1 -1
  9. package/dist/runtime/agent_bridge/cli.js +1 -1
  10. package/dist/runtime/agent_bridge/daemon.d.ts +1 -1
  11. package/dist/runtime/agent_bridge/daemon.js +1 -1
  12. package/dist/runtime/agent_bridge/dispatcher.d.ts +1 -1
  13. package/dist/runtime/agent_bridge/dispatcher.js +1 -1
  14. package/dist/runtime/agent_bridge/index.d.ts +1 -1
  15. package/dist/runtime/agent_bridge/index.js +1 -1
  16. package/dist/runtime/agent_bridge/pack_binding.d.ts +1 -1
  17. package/dist/runtime/agent_bridge/pack_binding.js +1 -1
  18. package/dist/runtime/agent_bridge/session_manager.d.ts +1 -1
  19. package/dist/runtime/agent_bridge/session_manager.js +1 -1
  20. package/dist/runtime/agent_bridge/session_persistence.d.ts +1 -1
  21. package/dist/runtime/agent_bridge/session_persistence.js +1 -1
  22. package/dist/runtime/agent_bridge/tool_dispatcher.d.ts +1 -1
  23. package/dist/runtime/agent_bridge/tool_dispatcher.js +1 -1
  24. package/dist/runtime/agent_bridge/tools/chat_send.d.ts +1 -1
  25. package/dist/runtime/agent_bridge/tools/chat_send.js +1 -1
  26. package/dist/runtime/agent_bridge/tools/index.d.ts +1 -1
  27. package/dist/runtime/agent_bridge/tools/index.js +1 -1
  28. package/dist/runtime/agent_bridge/tools/recall.d.ts +1 -1
  29. package/dist/runtime/agent_bridge/tools/recall.js +1 -1
  30. package/dist/runtime/agent_bridge/tools/store_lesson.d.ts +1 -1
  31. package/dist/runtime/agent_bridge/tools/store_lesson.js +1 -1
  32. package/dist/runtime/agent_bridge/transport_bridge.d.ts +1 -1
  33. package/dist/runtime/agent_bridge/transport_bridge.js +1 -1
  34. package/dist/runtime/agent_bridge/types.d.ts +1 -1
  35. package/dist/runtime/agent_bridge/types.js +1 -1
  36. package/dist/runtime/index.js +1 -1
  37. package/dist/runtime/index.js.map +1 -1
  38. package/package.json +1 -1
package/README.md CHANGED
@@ -13,7 +13,7 @@ It is an MCP operating layer that adds durable memory, dependency-aware task sta
13
13
 
14
14
  `opensquid` is the package, CLI, MCP server name, and `~/.opensquid/` data root. OpenSquid is the human-facing wordmark.
15
15
 
16
- > **Status, June 11, 2026.** Pre-1.0 and moving fast (`0.5.x`). The tool surface is usable but not frozen. This README is a front-door draft for the current architecture, not a stability promise.
16
+ > **Status, June 12, 2026.** Pre-1.0 and moving fast (`0.5.x`). The tool surface is usable but not frozen. This README is a front-door draft for the current architecture, not a stability promise.
17
17
 
18
18
  ## Quickstart
19
19
 
@@ -276,9 +276,7 @@ The promise is simple: start anywhere, continue anywhere, and eventually use the
276
276
 
277
277
  OpenSquid stores local state under `~/.opensquid/`.
278
278
 
279
- The implementation uses plain files where they are the right source of truth and libSQL where indexed queries are the right interface. The design goal is durable state: inspectable local data, rebuildable projections, and a cloud-sync path that adds continuity without making local development depend on a remote service.
280
-
281
- An optional legacy path can use `loop-engine` for the lower-level memory substrate; the current default is engine-free. When the engine is used, OpenSquid sets its runtime home to `~/.opensquid/` so standalone `loop-engine` data under `~/.loop/` does not collide with OpenSquid-managed state.
279
+ The implementation uses plain files where they are the right source of truth and libSQL where indexed queries are the right interface. Memory and lessons use the in-process libSQL + fastembed stack by default, with lexical and Ollama-backed options available through RAG configuration. The design goal is durable state: inspectable local data, rebuildable projections, and a cloud-sync path that adds continuity without making local development depend on a remote service.
282
280
 
283
281
  ## Other Hosts
284
282
 
@@ -303,7 +301,7 @@ Works today:
303
301
 
304
302
  Still evolving:
305
303
 
306
- - npm distribution and prebuilt binary packaging.
304
+ - npm distribution polish and release ergonomics.
307
305
  - Public tool-surface stability before 1.0.
308
306
  - More polished first-run setup for every host and chat path.
309
307
  - The final default pack set.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Zod schema for `chat_agent.yaml` — the pack's chat-agent binding side-file.
3
3
  *
4
- * Authoritative source: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] §WAB.6
4
+ * Authoritative source: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) §WAB.6
5
5
  * "Key code shapes". This file is the schema slice (WAB.6 prep); the loader
6
6
  * delta + runtime binding land in WAB.6 proper.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Zod schema for `chat_agent.yaml` — the pack's chat-agent binding side-file.
3
3
  *
4
- * Authoritative source: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] §WAB.6
4
+ * Authoritative source: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) §WAB.6
5
5
  * "Key code shapes". This file is the schema slice (WAB.6 prep); the loader
6
6
  * delta + runtime binding land in WAB.6 proper.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — agent loop core (WAB.4, 0.5.97).
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.4.
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.4.
5
5
  * Architecture: `docs/tasks/WAB.1-architecture.md` decisions (c) + (g).
6
6
  *
7
7
  * Responsibility:
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — agent loop core (WAB.4, 0.5.97).
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.4.
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.4.
5
5
  * Architecture: `docs/tasks/WAB.1-architecture.md` decisions (c) + (g).
6
6
  *
7
7
  * Responsibility:
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — adaptive batch coordinator (WAB.5, 0.5.99).
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.5.
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.5.
5
5
  * Architecture: `docs/tasks/WAB.1-architecture.md` decision (d).
6
6
  *
7
7
  * Responsibility:
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — adaptive batch coordinator (WAB.5, 0.5.99).
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.5.
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.5.
5
5
  * Architecture: `docs/tasks/WAB.1-architecture.md` decision (d).
6
6
  *
7
7
  * Responsibility:
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — `opensquid agent-bridge {start|stop|status|restart|run-foreground}` CLI (WAB.7).
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.7 §"CLI".
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.7 §"CLI".
5
5
  *
6
6
  * Shape: start spawns detached `run-foreground`; stop/status read pid file +
7
7
  * `kill -0` liveness; restart = stop + wait for pid removal + start;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — `opensquid agent-bridge {start|stop|status|restart|run-foreground}` CLI (WAB.7).
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.7 §"CLI".
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.7 §"CLI".
5
5
  *
6
6
  * Shape: start spawns detached `run-foreground`; stop/status read pid file +
7
7
  * `kill -0` liveness; restart = stop + wait for pid removal + start;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — long-running daemon (WAB.7 + WAB-SUB.2 lazy api client, 0.5.106).
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.7 +
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.7 +
5
5
  * WAB-SUB.2 §"daemon mode-aware lazy client". Architecture:
6
6
  * `docs/tasks/WAB.1-architecture.md` decisions (a)-(g).
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — long-running daemon (WAB.7 + WAB-SUB.2 lazy api client, 0.5.106).
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.7 +
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.7 +
5
5
  * WAB-SUB.2 §"daemon mode-aware lazy client". Architecture:
6
6
  * `docs/tasks/WAB.1-architecture.md` decisions (a)-(g).
7
7
  *
@@ -2,7 +2,7 @@
2
2
  * agent_bridge — event-bus → batch → session → agent-loop glue
3
3
  * (WAB.5 + WAB-SUB.2 mode dispatch, 0.5.106).
4
4
  *
5
- * Spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.5 + WAB-SUB.2
5
+ * Spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.5 + WAB-SUB.2
6
6
  * §"dispatcher integration". Architecture:
7
7
  * `docs/tasks/WAB.1-architecture.md` decision (d).
8
8
  *
@@ -2,7 +2,7 @@
2
2
  * agent_bridge — event-bus → batch → session → agent-loop glue
3
3
  * (WAB.5 + WAB-SUB.2 mode dispatch, 0.5.106).
4
4
  *
5
- * Spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.5 + WAB-SUB.2
5
+ * Spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.5 + WAB-SUB.2
6
6
  * §"dispatcher integration". Architecture:
7
7
  * `docs/tasks/WAB.1-architecture.md` decision (d).
8
8
  *
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — warm-pool chat-agent shell.
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] +
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) +
5
5
  * `docs/tasks/WAB.1-architecture.md`. Currently shipped slices:
6
6
  * - WAB.2 (0.5.94): types, typed event bus, transport bridge.
7
7
  * - WAB.3 (0.5.95): SessionManager + SessionPersistence + history types.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — warm-pool chat-agent shell.
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] +
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) +
5
5
  * `docs/tasks/WAB.1-architecture.md`. Currently shipped slices:
6
6
  * - WAB.2 (0.5.94): types, typed event bus, transport bridge.
7
7
  * - WAB.3 (0.5.95): SessionManager + SessionPersistence + history types.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — pack binding (WAB.6 + WAB-SUB.2 mode dispatcher, 0.5.106).
3
3
  *
4
- * Specs: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.6 §"pack_binding.ts"
4
+ * Specs: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.6 §"pack_binding.ts"
5
5
  * + WAB-SUB.2 §"mode dispatcher". Architecture: `WAB.1-architecture.md`
6
6
  * decisions (e) + (g).
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — pack binding (WAB.6 + WAB-SUB.2 mode dispatcher, 0.5.106).
3
3
  *
4
- * Specs: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.6 §"pack_binding.ts"
4
+ * Specs: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.6 §"pack_binding.ts"
5
5
  * + WAB-SUB.2 §"mode dispatcher". Architecture: `WAB.1-architecture.md`
6
6
  * decisions (e) + (g).
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — warm-pool session manager (WAB.3, 0.5.95).
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.3.
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.3.
5
5
  * Architecture: `docs/tasks/WAB.1-architecture.md` decisions (b) + (c) +
6
6
  * Section 2 module layout (≤350 LOC budget for this file).
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — warm-pool session manager (WAB.3, 0.5.95).
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.3.
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.3.
5
5
  * Architecture: `docs/tasks/WAB.1-architecture.md` decisions (b) + (c) +
6
6
  * Section 2 module layout (≤350 LOC budget for this file).
7
7
  *
@@ -2,7 +2,7 @@
2
2
  * agent_bridge — append-only JSONL persistence for warm-pool session
3
3
  * history (WAB.3, 0.5.95).
4
4
  *
5
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.3.
5
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.3.
6
6
  * Architecture: `docs/tasks/WAB.1-architecture.md` decision (c) + Section 2
7
7
  * module layout (≤200 LOC budget for this file).
8
8
  *
@@ -2,7 +2,7 @@
2
2
  * agent_bridge — append-only JSONL persistence for warm-pool session
3
3
  * history (WAB.3, 0.5.95).
4
4
  *
5
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.3.
5
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.3.
6
6
  * Architecture: `docs/tasks/WAB.1-architecture.md` decision (c) + Section 2
7
7
  * module layout (≤200 LOC budget for this file).
8
8
  *
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — tool dispatcher (WAB.4, 0.5.97).
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.4.
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.4.
5
5
  * Architecture: `docs/tasks/WAB.1-architecture.md` decisions (e) + (f).
6
6
  *
7
7
  * Responsibility:
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge — tool dispatcher (WAB.4, 0.5.97).
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.4.
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.4.
5
5
  * Architecture: `docs/tasks/WAB.1-architecture.md` decisions (e) + (f).
6
6
  *
7
7
  * Responsibility:
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge built-in tool — `chat_send`.
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.6 §"Tool
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.6 §"Tool
5
5
  * surface". Wraps the chat-daemon's `send` JSON-RPC method so the warm
6
6
  * agent can reply on the same channel that delivered the inbound message.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge built-in tool — `chat_send`.
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.6 §"Tool
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.6 §"Tool
5
5
  * surface". Wraps the chat-daemon's `send` JSON-RPC method so the warm
6
6
  * agent can reply on the same channel that delivered the inbound message.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge built-in tools — barrel + BUILT_INS registry.
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.6 §"Tool
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.6 §"Tool
5
5
  * surface". The three built-ins (`chat_send`, `recall`, `store_lesson`) are
6
6
  * shipped as factories — `pack_binding.ts` constructs them with the
7
7
  * runtime-wide dependencies (RagBackend, optional daemon-send seam) and
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge built-in tools — barrel + BUILT_INS registry.
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.6 §"Tool
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.6 §"Tool
5
5
  * surface". The three built-ins (`chat_send`, `recall`, `store_lesson`) are
6
6
  * shipped as factories — `pack_binding.ts` constructs them with the
7
7
  * runtime-wide dependencies (RagBackend, optional daemon-send seam) and
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge built-in tool — `recall`.
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.6 §"Tool
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.6 §"Tool
5
5
  * surface". Wraps the project-scoped RAG backend's `recall(query, k)` method.
6
6
  *
7
7
  * Responsibility:
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge built-in tool — `recall`.
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.6 §"Tool
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.6 §"Tool
5
5
  * surface". Wraps the project-scoped RAG backend's `recall(query, k)` method.
6
6
  *
7
7
  * Responsibility:
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge built-in tool — `store_lesson`.
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.6 §"Tool
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.6 §"Tool
5
5
  * surface" + memory `project_opensquid_wedge_gate_two_stages` Stage 1 +
6
6
  * `project_opensquid_automation_buffer_pattern`.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * agent_bridge built-in tool — `store_lesson`.
3
3
  *
4
- * Authoritative spec: the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.6 §"Tool
4
+ * Authoritative spec: the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.6 §"Tool
5
5
  * surface" + memory `project_opensquid_wedge_gate_two_stages` Stage 1 +
6
6
  * `project_opensquid_automation_buffer_pattern`.
7
7
  *
@@ -3,7 +3,7 @@
3
3
  * (WAB.2, 0.5.94).
4
4
  *
5
5
  * Authoritative source: `docs/tasks/WAB.1-architecture.md` decisions (a) +
6
- * (b); the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.2 Part B spec.
6
+ * (b); the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.2 Part B spec.
7
7
  *
8
8
  * Reads the CANONICAL per-project inbox path:
9
9
  * `~/.opensquid/projects/<projectUuid>/inbox/<platform>.jsonl`
@@ -3,7 +3,7 @@
3
3
  * (WAB.2, 0.5.94).
4
4
  *
5
5
  * Authoritative source: `docs/tasks/WAB.1-architecture.md` decisions (a) +
6
- * (b); the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.2 Part B spec.
6
+ * (b); the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.2 Part B spec.
7
7
  *
8
8
  * Reads the CANONICAL per-project inbox path:
9
9
  * `~/.opensquid/projects/<projectUuid>/inbox/<platform>.jsonl`
@@ -2,7 +2,7 @@
2
2
  * agent_bridge — shared types (WAB.2, 0.5.94).
3
3
  *
4
4
  * Authoritative source: `docs/tasks/WAB.1-architecture.md` decisions (b) +
5
- * (c), and the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.2 spec.
5
+ * (c), and the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.2 spec.
6
6
  *
7
7
  * Why one types module: all six WAB sub-modules (event_bus, transport_bridge,
8
8
  * session_manager, agent_loop, batch, dispatcher) share the SessionKey +
@@ -2,7 +2,7 @@
2
2
  * agent_bridge — shared types (WAB.2, 0.5.94).
3
3
  *
4
4
  * Authoritative source: `docs/tasks/WAB.1-architecture.md` decisions (b) +
5
- * (c), and the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is] WAB.2 spec.
5
+ * (c), and the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority) WAB.2 spec.
6
6
  *
7
7
  * Why one types module: all six WAB sub-modules (event_bus, transport_bridge,
8
8
  * session_manager, agent_loop, batch, dispatcher) share the SessionKey +
@@ -38,6 +38,6 @@ export { WebhookServer, } from './webhook_server.js';
38
38
  export { loadWebhookSubscriptions, WebhookSubscriptionError, redact, } from './webhook_subscriptions.js';
39
39
  // Warm-agent chat bridge (WAB.2, 0.5.94) — typed event bus + per-project
40
40
  // inbox JSONL → InboundChatEvent transport bridge. Foundation for the
41
- // WAB.3-WAB.7 warm-pool chat agent. See the warm-agent planning notes [not retained — see docs/tasks/WAB.1-architecture.md, which is].
41
+ // WAB.3-WAB.7 warm-pool chat agent. See the warm-agent planning notes (not retained — docs/tasks/WAB.1-architecture.md is the surviving authority).
42
42
  export * from './agent_bridge/index.js';
43
43
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/runtime/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,kBAAkB,EAAyB,MAAM,qBAAqB,CAAC;AAChF,OAAO,EAAE,cAAc,EAAgD,MAAM,mBAAmB,CAAC;AACjG,OAAO,EAAE,gBAAgB,EAA0C,MAAM,eAAe,CAAC;AACzF,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAChE,OAAO,EAAE,aAAa,EAAuB,MAAM,qBAAqB,CAAC;AACzE,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACjF,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAC9F,OAAO,EACL,eAAe,EACf,YAAY,EACZ,wBAAwB,GAEzB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAyB,MAAM,sBAAsB,CAAC;AAC9E,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,eAAe,EAAiB,MAAM,oBAAoB,CAAC;AACpE,OAAO,EAAE,yBAAyB,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAE3F,yEAAyE;AACzE,uEAAuE;AACvE,0EAA0E;AAC1E,gCAAgC;AAChC,OAAO,EAAE,oBAAoB,EAAmB,MAAM,oBAAoB,CAAC;AAE3E,0EAA0E;AAC1E,qEAAqE;AACrE,6EAA6E;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEtD,uEAAuE;AACvE,0EAA0E;AAC1E,6DAA6D;AAC7D,OAAO,EACL,eAAe,GAMhB,MAAM,aAAa,CAAC;AACrB,OAAO,EACL,qBAAqB,EACrB,qBAAqB,GAEtB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,aAAa,GAKd,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,wBAAwB,EACxB,wBAAwB,EACxB,MAAM,GAEP,MAAM,4BAA4B,CAAC;AAEpC,yEAAyE;AACzE,sEAAsE;AACtE,uIAAuI;AACvI,cAAc,yBAAyB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/runtime/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,kBAAkB,EAAyB,MAAM,qBAAqB,CAAC;AAChF,OAAO,EAAE,cAAc,EAAgD,MAAM,mBAAmB,CAAC;AACjG,OAAO,EAAE,gBAAgB,EAA0C,MAAM,eAAe,CAAC;AACzF,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAChE,OAAO,EAAE,aAAa,EAAuB,MAAM,qBAAqB,CAAC;AACzE,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACjF,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAC9F,OAAO,EACL,eAAe,EACf,YAAY,EACZ,wBAAwB,GAEzB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAyB,MAAM,sBAAsB,CAAC;AAC9E,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,eAAe,EAAiB,MAAM,oBAAoB,CAAC;AACpE,OAAO,EAAE,yBAAyB,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAE3F,yEAAyE;AACzE,uEAAuE;AACvE,0EAA0E;AAC1E,gCAAgC;AAChC,OAAO,EAAE,oBAAoB,EAAmB,MAAM,oBAAoB,CAAC;AAE3E,0EAA0E;AAC1E,qEAAqE;AACrE,6EAA6E;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEtD,uEAAuE;AACvE,0EAA0E;AAC1E,6DAA6D;AAC7D,OAAO,EACL,eAAe,GAMhB,MAAM,aAAa,CAAC;AACrB,OAAO,EACL,qBAAqB,EACrB,qBAAqB,GAEtB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,aAAa,GAKd,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,wBAAwB,EACxB,wBAAwB,EACxB,MAAM,GAEP,MAAM,4BAA4B,CAAC;AAEpC,yEAAyE;AACzE,sEAAsE;AACtE,oJAAoJ;AACpJ,cAAc,yBAAyB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opensquid",
3
- "version": "0.5.406",
3
+ "version": "0.5.407",
4
4
  "description": "Continuity layer for coding agents: durable memory, dependency-aware task state, workflow gates, and inspectable packs over MCP.",
5
5
  "type": "module",
6
6
  "exports": {