sneakoscope 1.21.6 → 1.21.9

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 (94) hide show
  1. package/README.md +23 -32
  2. package/crates/sks-core/Cargo.lock +1 -1
  3. package/crates/sks-core/Cargo.toml +1 -1
  4. package/crates/sks-core/src/main.rs +1 -1
  5. package/dist/.sks-build-stamp.json +4 -4
  6. package/dist/bin/sks.js +1 -1
  7. package/dist/build-manifest.json +41 -9
  8. package/dist/commands/image-ux-review.d.ts +5 -690
  9. package/dist/commands/ppt.d.ts +5 -690
  10. package/dist/core/agents/agent-command-surface.js +1 -1
  11. package/dist/core/agents/agent-orchestrator.d.ts +1 -686
  12. package/dist/core/agents/agent-orchestrator.js +158 -14
  13. package/dist/core/agents/agent-output-validator.d.ts +8 -1
  14. package/dist/core/agents/agent-output-validator.js +3 -1
  15. package/dist/core/agents/agent-patch-schema.d.ts +1 -0
  16. package/dist/core/agents/agent-patch-schema.js +3 -2
  17. package/dist/core/agents/agent-proof-evidence.d.ts +1 -0
  18. package/dist/core/agents/agent-proof-evidence.js +11 -3
  19. package/dist/core/agents/agent-roster.js +3 -3
  20. package/dist/core/agents/agent-runner-codex-exec.d.ts +1 -0
  21. package/dist/core/agents/agent-runner-zellij.js +18 -0
  22. package/dist/core/agents/agent-scheduler.js +7 -0
  23. package/dist/core/agents/agent-schema.d.ts +2 -1
  24. package/dist/core/agents/agent-schema.js +3 -3
  25. package/dist/core/agents/agent-slot-pane-binding-proof.d.ts +52 -0
  26. package/dist/core/agents/agent-slot-pane-binding-proof.js +97 -0
  27. package/dist/core/agents/agent-worker-pipeline.js +1 -0
  28. package/dist/core/agents/codex-exec-worker-adapter.d.ts +1 -0
  29. package/dist/core/agents/fast-mode-policy.d.ts +1 -1
  30. package/dist/core/agents/fast-mode-policy.js +2 -4
  31. package/dist/core/agents/native-cli-session-proof.js +2 -1
  32. package/dist/core/agents/native-cli-session-swarm.d.ts +10 -0
  33. package/dist/core/agents/native-cli-session-swarm.js +231 -2
  34. package/dist/core/agents/native-cli-worker.js +16 -2
  35. package/dist/core/agents/native-worker-backend-router.d.ts +5 -2
  36. package/dist/core/agents/native-worker-backend-router.js +105 -20
  37. package/dist/core/agents/no-subagent-scaling-policy.d.ts +1 -1
  38. package/dist/core/agents/no-subagent-scaling-policy.js +3 -2
  39. package/dist/core/agents/real-codex-parallel-proof.d.ts +10 -0
  40. package/dist/core/agents/real-codex-parallel-proof.js +22 -6
  41. package/dist/core/agents/route-collaboration-ledger.d.ts +5 -690
  42. package/dist/core/agents/route-collaboration-ledger.js +3 -3
  43. package/dist/core/agents/worker-pane-communication-contract.d.ts +25 -0
  44. package/dist/core/agents/worker-pane-communication-contract.js +80 -0
  45. package/dist/core/agents/zellij-lane-supervisor.d.ts +4 -0
  46. package/dist/core/agents/zellij-lane-supervisor.js +32 -6
  47. package/dist/core/codex-control/codex-control-plane.d.ts +42 -0
  48. package/dist/core/codex-control/codex-control-plane.js +5 -0
  49. package/dist/core/codex-control/codex-control-proof.d.ts +40 -0
  50. package/dist/core/codex-control/codex-control-proof.js +36 -0
  51. package/dist/core/codex-control/codex-event-translator.d.ts +13 -0
  52. package/dist/core/codex-control/codex-event-translator.js +21 -0
  53. package/dist/core/codex-control/codex-fake-sdk-adapter.d.ts +57 -0
  54. package/dist/core/codex-control/codex-fake-sdk-adapter.js +39 -0
  55. package/dist/core/codex-control/codex-output-schemas.d.ts +3 -0
  56. package/dist/core/codex-control/codex-output-schemas.js +27 -0
  57. package/dist/core/codex-control/codex-sdk-adapter.d.ts +35 -0
  58. package/dist/core/codex-control/codex-sdk-adapter.js +84 -0
  59. package/dist/core/codex-control/codex-sdk-capability.d.ts +16 -0
  60. package/dist/core/codex-control/codex-sdk-capability.js +93 -0
  61. package/dist/core/codex-control/codex-sdk-config-policy.d.ts +13 -0
  62. package/dist/core/codex-control/codex-sdk-config-policy.js +20 -0
  63. package/dist/core/codex-control/codex-sdk-env-policy.d.ts +9 -0
  64. package/dist/core/codex-control/codex-sdk-env-policy.js +32 -0
  65. package/dist/core/codex-control/codex-sdk-sandbox-policy.d.ts +8 -0
  66. package/dist/core/codex-control/codex-sdk-sandbox-policy.js +22 -0
  67. package/dist/core/codex-control/codex-task-runner.d.ts +3 -0
  68. package/dist/core/codex-control/codex-task-runner.js +143 -0
  69. package/dist/core/codex-control/codex-thread-registry.d.ts +12 -0
  70. package/dist/core/codex-control/codex-thread-registry.js +33 -0
  71. package/dist/core/codex-control/schemas/agent-worker-result.schema.d.ts +33 -0
  72. package/dist/core/codex-control/schemas/agent-worker-result.schema.js +26 -0
  73. package/dist/core/commands/image-ux-review-command.d.ts +5 -690
  74. package/dist/core/commands/mad-sks-command.js +1 -1
  75. package/dist/core/commands/naruto-command.js +3 -3
  76. package/dist/core/commands/ppt-command.d.ts +5 -690
  77. package/dist/core/commands/qa-loop-command.js +1 -1
  78. package/dist/core/commands/research-command.js +1 -1
  79. package/dist/core/commands/team-command.js +1 -1
  80. package/dist/core/fsx.d.ts +1 -1
  81. package/dist/core/fsx.js +1 -1
  82. package/dist/core/imagegen/imagegen-auth-readiness.js +14 -16
  83. package/dist/core/proof/fake-real-proof-policy.js +1 -1
  84. package/dist/core/skills/core-skill-types.d.ts +1 -1
  85. package/dist/core/version.d.ts +1 -1
  86. package/dist/core/version.js +1 -1
  87. package/dist/core/zellij/zellij-clipboard-config.d.ts +1 -0
  88. package/dist/core/zellij/zellij-clipboard-config.js +15 -10
  89. package/dist/core/zellij/zellij-layout-builder.d.ts +3 -0
  90. package/dist/core/zellij/zellij-layout-builder.js +21 -25
  91. package/dist/core/zellij/zellij-worker-pane-manager.d.ts +95 -0
  92. package/dist/core/zellij/zellij-worker-pane-manager.js +258 -0
  93. package/package.json +31 -4
  94. package/schemas/zellij/zellij-worker-pane.schema.json +53 -0
package/README.md CHANGED
@@ -16,40 +16,31 @@ Set up this agent project with Sneakoscope Codex. Use [[mandarange/Sneakoscope-C
16
16
 
17
17
  ## Current Release
18
18
 
19
- SKS **1.21.6** promotes OpenAI Codex CLI `rust-v0.136.0` as the current compatibility baseline. The release matrix tracks 0.136 session archive/unarchive, app-server `--stdio`, resumed-turn/status behavior, `CODEX_API_KEY` remote registration, short-lived remote-control tokens, elevated Windows sandbox setup, feature-gated image-generation extension support, ChatGPT auth refresh handling, command-safety hardening, sandbox cleanup, Bedrock region fallback, and rmcp 1.7.0 compatibility.
19
+ SKS **1.21.9** is a Codex SDK Control Plane runtime patch. Native workers now use `@openai/codex-sdk` for thread/run/stream/schema execution while Zellij remains pane-level visual proof.
20
20
 
21
- This release also tightens the day-to-day operator path:
21
+ What changed:
22
22
 
23
- - Zellij lane panes now surface the native worker session they are following, including per-slot worker status and stdout/stderr/heartbeat tails.
24
- - Native terminal drag-copy is the default in SKS-launched Zellij sessions; hover-pane mouse routing is opt-in with `SKS_ZELLIJ_MOUSE_MODE=1`.
25
- - Update prompts compare npm latest against an effective installed version that includes source, PATH, and global npm package metadata, so completed global updates stop being re-offered.
26
- - `sks doctor --fix` can remove duplicate global `sks`/`sneakoscope` npm installs while exempting the Sneakoscope source checkout.
23
+ - `codex-sdk` is the default native agent backend for Team, QA, Research, Naruto, MAD-SKS, and direct agent runs.
24
+ - Raw `codex exec` execution is removed from runtime fallback paths; explicit legacy requests are blocked with `legacy_codex_exec_runtime_removed`.
25
+ - SDK runs write `codex-control-proof.json`, `codex-thread-registry.json`, `codex-sdk-events.jsonl`, and schema-validated worker results.
26
+ - Zellij proof now links `pane_id`, `slot_id`, `generation_index`, `session_id`, and `sdk_thread_id`.
27
+ - Release gates include `codex-sdk:*` capability, routing, structured output, event ledger, sandbox, thread registry, Zellij binding, pipeline, and smoke checks.
27
28
 
28
- It carries forward the 0.135-era routing/readiness fixes: mixed frustration plus explicit implementation prompts still route to `$Team`, bare `context7 mcp` no longer implies `$DB`, Git Actions readiness uses the `codex remote-control` command/version capability, and repeated substantive prompts prepare fresh Team/Research-style native sessions. Zellij lane, Naruto, terminal scrollback, MAD cockpit, Goal bridge, and Fast profile fixes remain in place.
29
-
30
- SKS **1.20.4** is a targeted `sks --mad` / codex-lb Zellij usability patch: when a background MAD Zellij session launches successfully, SKS now prints the exact `Attach with: ZELLIJ_SOCKET_DIR=... zellij attach ...` command so operators can enter the fresh session without manually reconstructing the socket namespace.
31
-
32
- SKS **1.20.3** added the macOS Zellij launch fallback and project-local Fast mode control. SKS supplies a short per-user `ZELLIJ_SOCKET_DIR` by default, caps generated session names safely, records `*_command_with_env` attach commands, and classifies `IPC socket path is too long` as `zellij_socket_path_too_long` instead of a generic launch failure. It also adds `sks fast-mode on|off|status|clear`, `$Fast-On`, `$Fast-Off`, and `$Fast-Mode`; saved project preferences are used only when no explicit `--fast`, `--no-fast`, or `--service-tier` flag is present. In 1.21.3 and newer, the explicit `on` action also restores Codex App/CLI Fast mode defaults in `~/.codex/config.toml` when they were disabled.
33
-
34
- It carries forward the **1.20.2** stabilization layer: **Mutation Guard** routes genuinely-risky global/config/permission/package mutations through the Requested-Scope Contract + Mutation Ledger (`safety:mutation-callsite-coverage` fails any unguarded, unallowlisted risky call site); `release:check:dynamic:execute` is the real **caching gate runner** (schema v2, real/heavy gates deferred to `release:real-check`, dynamic-only cannot authorize publish); the **Core Skill** deployed snapshot is read by the route runtime and recorded in `agent-proof-evidence.json` (`selected_core_skill`), with promotions written to the mutation ledger; and `sks doctor` exposes an explicit **`zellij_readiness`** block (`zellij:doctor-readiness`). See `docs/dynamic-release-pipeline.md`.
35
-
36
- SKS **1.20.1** introduces the **SKS Core Skill Engine** — a SkillOpt-style self-evolving skill layer — while locking the harness into a deploy-ready stable build. Skills are the agent's *external, versioned state* (Core Skill Cards): an optimizer proposes **bounded** add/delete/replace edits to a single skill document under a **textual edit budget**, edits are accepted **only on strict held-out improvement**, rejected edits are buffered so they are never retried, and the **deployed snapshot is immutable**. Critically, the optimizer runs only in training/evaluation — the **deployment/inference path reads the deployed snapshot and never makes an extra model call**, and a skill patch can never mutate code/config/package/global files.
37
-
38
- 1.20.1 also adds a **Requested-Scope Contract + Mutation Ledger** so SKS performs **no side effect the user did not request** (deny-by-default; global/destructive mutations require explicit `--yes`/env opt-in and a backup or no-op reason), and a **dynamic, risk-based release pipeline** (`release:gate-planner` builds `release-gates.json`; `release:check:dynamic` runs only P0 always-on gates plus gates whose files changed; `release:gate-budget` reports the slowest gates) so unrelated heavy gates are skipped during incremental checks while publish never skips a required gate.
39
-
40
- It carries forward the 1.19.x hardening unchanged: legacy 1.18.x/1.19.x→1.20.1 **zero-break upgrade** (user `model`/`service_tier`/`model_reasoning_effort` and user-disabled Codex App flags never overwritten; existing skill cards preserved), the **migration transaction journal** (`.sneakoscope/reports/migration-1.20.1-journal.jsonl`), **Zellij launch-command truth** + real-session **heartbeat-timeout blocker** + the redesigned **Zellij lane UI**, **packlist/publish-performance** gates, a **postinstall safe-side-effects** gate, and the **TS source-of-truth / Rust optional-accelerator** boundary (publish never compiles Rust). `sks zellij status`/`repair` inspects the Zellij runtime without auto-installing anything.
41
-
42
- Core release checks:
29
+ Quick checks:
43
30
 
44
31
  ```bash
45
- npm run codex:0.136-compat
46
- npm run zellij:lane-renderer
47
- npm run mad-sks:zellij-launch
48
- npm run release:readiness
49
- npm run release:check
32
+ npm run typecheck
33
+ npm run build
34
+ npm run codex-sdk:capability
35
+ npm run codex-sdk:backend-router
36
+ npm run codex-sdk:structured-output
37
+ npm run codex-sdk:event-stream-ledger
38
+ npm run codex-sdk:thread-registry
39
+ npm run codex-sdk:zellij-pane-binding
40
+ npm run codex-sdk:all-pipelines
50
41
  ```
51
42
 
52
- Detailed release history lives in [CHANGELOG.md](CHANGELOG.md); every version-facing change should be recorded there before release. Current release gate status lives in [docs/release-readiness.md](docs/release-readiness.md).
43
+ Broader release checks still live behind `npm run release:check`. Detailed release history is in [CHANGELOG.md](CHANGELOG.md), and release readiness is tracked in [docs/release-readiness.md](docs/release-readiness.md).
53
44
 
54
45
  ## Parallelism, UX, And Integrations
55
46
 
@@ -60,9 +51,9 @@ Detailed release history lives in [CHANGELOG.md](CHANGELOG.md); every version-fa
60
51
  SKS_NARUTO_MAX_CONCURRENCY=48 sks naruto run "sweep the test suite" --clones 48
61
52
  ```
62
53
 
63
- - **Zellij scrollback and copy.** SKS launches Codex panes with `--no-alt-screen`, so the terminal keeps the conversation transcript in scrollback. Zellij `mouse_mode` is off by default so normal mouse-drag text selection works for copy. Set `SKS_ZELLIJ_MOUSE_MODE=1` only when you prefer Zellij hover-pane wheel routing; in that mode some terminals require Shift-drag for native selection.
54
+ - **Zellij scrollback and copy.** SKS launches Codex panes with `--no-alt-screen`, so the terminal keeps the conversation transcript in scrollback. Zellij `mouse_mode` is on by default so trackpad/wheel gestures scroll the conversation pane instead of recalling prompt history in the focused Codex input. Copy still uses `copy_command=pbcopy` and `copy_on_select=true`; hold Shift for terminal-native selection, or set `SKS_ZELLIJ_MOUSE_MODE=0` if you intentionally prefer native drag selection over hover-pane scrolling.
64
55
 
65
- - **Live MAD / Naruto cockpit lanes.** `sks --mad` starts a same-mission native agent swarm and opens the right-pane cockpit against that ledger. Lane panes follow per-slot worker artifacts such as `worker.stdout.log`, `worker.stderr.log`, and `worker-heartbeat.jsonl`, so fan-out work shows as live worker status instead of a static "Workers idle" panel. Tune MAD fan-out with `--mad-agents`, `--mad-swarm-work-items`, and `--mad-swarm-backend`; use `--no-mad-swarm` only when you intentionally want the old UI-only launch. Each Zellij lane has per-slot SKS state, a nonblocking JSONL command bus, dynamic pane-id reconciliation from `zellij action list-panes --json --all`, and `nice`/dispatch-throttle metadata. If a lane's own mission ledger is idle, the renderer can mirror the most-recent active agent mission; disable that follow behavior with `SKS_LANE_FOLLOW_ACTIVE_MISSION=0`.
56
+ - **MAD / Naruto Zellij worker panes.** `sks --mad` and Naruto-style fan-out keep the main Zellij session lean at launch, then open named worker panes on demand as scheduler slots are reserved. Each worker pane is bound to a slot generation, writes `worker.stdout.log`, `worker.stderr.log`, `worker-heartbeat.jsonl`, `worker-result.json`, and `zellij-worker-pane.json`, then drains when the generation completes. Tune MAD fan-out with `--mad-agents`, `--mad-swarm-work-items`, and `--mad-swarm-backend`; use `--no-mad-swarm` only when you intentionally want the UI-only launch.
66
57
 
67
58
  - **Image generation under codex-lb.** `gpt-image-2` routes through the same Codex `/responses` backend the load balancer already proxies, so `$imagegen` works when you are authenticated only through codex-lb (no direct `OPENAI_API_KEY`). The official Codex App `$imagegen` surface stays primary; the codex-lb/OpenAI API path is the fallback. Opt out with `SKS_IMAGEGEN_ALLOW_CODEX_LB_API_FALLBACK=0`.
68
59
 
@@ -379,7 +370,7 @@ Team missions keep at least five QA/reviewer lanes active, record live events, c
379
370
  ```sh
380
371
  sks agent run "map the risky files" --mock --json
381
372
  sks agent run "wide release audit" --route '$Release-Review' --agents 10 --concurrency 5 --mock --json
382
- sks agent run "real one-agent smoke" --backend codex-exec --real --agents 1 --concurrency 1 --json
373
+ sks agent run "real one-agent smoke" --backend codex-sdk --real --agents 1 --concurrency 1 --json
383
374
  ```
384
375
 
385
376
  Defaults are intentionally bounded but not subagent-limited: 5 agents by default, maximum 20 native CLI worker sessions, and a separate `--concurrency` cap. When enough work exists, `--agents 10 --concurrency 10` and `--agents 20 --concurrency 20` must create 10 or 20 independent child processes using `node dist/bin/sks.js --agent worker --intake <worker-intake.json> --json`. The parent orchestrator writes `agents/agent-roster.json`, `agents/agent-effort-policy.json`, `agents/agent-task-board.json`, `agents/agent-leases.json`, `agents/agent-no-overlap-proof.json`, `agents/agent-native-cli-session-swarm.json`, `agents/native-cli-session-proof.json`, `agents/no-subagent-scaling-policy.json`, `agents/fast-mode-propagation-proof.json`, `agents/agent-cleanup.json`, and `agents/agent-proof-evidence.json` under the mission.
@@ -407,7 +398,7 @@ sks naruto status
407
398
 
408
399
  Aliases: `$ShadowClone`, `$Kagebunshin`, and the CLI flag `sks --naruto`.
409
400
 
410
- - **System-aware concurrency:** `--clones N` is the total work fan-out, but `$Naruto` never spawns the whole count at once. Live concurrency is throttled to a host-safe number derived from CPU cores and free memory (heavier cap for real `codex-exec` workers, tighter packing for in-process `fake`). So `--clones 100` on a small host still processes all 100 work units while only running a safe handful at a time; the run reports when it throttles. Override with `SKS_NARUTO_MAX_CONCURRENCY=<n>`.
401
+ - **System-aware concurrency:** `--clones N` is the total work fan-out, but `$Naruto` never spawns the whole count at once. Live concurrency is throttled to a host-safe number derived from CPU cores and free memory (heavier cap for real `codex-sdk` workers, tighter packing for in-process `fake`). So `--clones 100` on a small host still processes all 100 work units while only running a safe handful at a time; the run reports when it throttles. Override with `SKS_NARUTO_MAX_CONCURRENCY=<n>`.
411
402
  - **Dynamic per-clone effort (like Team):** truly simple / no-tool work runs at `low`, any tool use lifts a clone to `medium` (never high/xhigh), and every clone runs in fast service tier.
412
403
  - **Safe parallel writes:** clones coordinate through the same lease-based patch-swarm (merge coordinator + conflict rebase + transaction journal) as Team.
413
404
 
@@ -649,7 +640,7 @@ sks team open-zellij latest
649
640
  sks zellij status
650
641
  ```
651
642
 
652
- Normal mouse-drag copy is the default because SKS launches Zellij with `mouse_mode=false`. Conversation scrollback is still preserved by Codex `--no-alt-screen`. If you prefer Zellij hover-pane wheel routing, launch with `SKS_ZELLIJ_MOUSE_MODE=1`; use Shift-drag if your terminal then captures selection differently. Right lanes are renderer panes that follow SKS worker artifacts, so live native-agent output is shown from per-slot `worker.stdout.log`, `worker.stderr.log`, and `worker-heartbeat.jsonl`.
643
+ Conversation scrollback is preserved by Codex `--no-alt-screen`, and SKS launches Zellij with `mouse_mode=true` by default so trackpad/wheel gestures route to pane scrollback instead of the focused prompt input history. Copy still uses Zellij clipboard integration (`copy_command=pbcopy`, `copy_on_select=true`); hold Shift for terminal-native selection, or launch with `SKS_ZELLIJ_MOUSE_MODE=0` if native drag selection matters more than hover-pane scrolling. Right lanes are renderer panes that follow SKS worker artifacts, so live native-agent output is shown from per-slot `worker.stdout.log`, `worker.stderr.log`, and `worker-heartbeat.jsonl`.
653
644
 
654
645
  ### Codex App tools are missing
655
646
 
@@ -76,7 +76,7 @@ dependencies = [
76
76
 
77
77
  [[package]]
78
78
  name = "sks-core"
79
- version = "1.21.6"
79
+ version = "1.21.9"
80
80
  dependencies = [
81
81
  "serde_json",
82
82
  ]
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "sks-core"
3
- version = "1.21.6"
3
+ version = "1.21.9"
4
4
  edition = "2021"
5
5
 
6
6
  [dependencies]
@@ -4,7 +4,7 @@ use std::io::{self, Read, Seek, SeekFrom};
4
4
  fn main() {
5
5
  let mut args = std::env::args().skip(1);
6
6
  match args.next().as_deref() {
7
- Some("--version") => println!("sks-rs 1.21.6"),
7
+ Some("--version") => println!("sks-rs 1.21.9"),
8
8
  Some("compact-info") => {
9
9
  let mut input = String::new();
10
10
  let _ = io::stdin().read_to_string(&mut input);
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schema": "sks.dist-build-stamp.v1",
3
3
  "package_name": "sneakoscope",
4
- "package_version": "1.21.6",
5
- "source_digest": "3577af7555600bd9748b9c3252bf18a727db23c92740e7a06dc778b467aa1495",
6
- "source_file_count": 1771,
7
- "built_at_source_time": 1780391165608
4
+ "package_version": "1.21.9",
5
+ "source_digest": "0a7c45e094cebad43f33cd668d95ecb34e6f7bb1a9be44273bef378fe95f185b",
6
+ "source_file_count": 1814,
7
+ "built_at_source_time": 1780472815535
8
8
  }
package/dist/bin/sks.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- const FAST_PACKAGE_VERSION = '1.21.6';
2
+ const FAST_PACKAGE_VERSION = '1.21.9';
3
3
  const args = process.argv.slice(2);
4
4
  try {
5
5
  if (args[0] === '--agent' && args[1] === 'worker') {
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "schema": "sks.dist-build.v2",
3
- "version": "1.21.6",
4
- "package_version": "1.21.6",
3
+ "version": "1.21.9",
4
+ "package_version": "1.21.9",
5
5
  "typescript": true,
6
6
  "mjs_runtime_files": 0,
7
- "compiled_file_count": 1032,
8
- "compiled_js_count": 516,
9
- "compiled_dts_count": 516,
10
- "source_digest": "3577af7555600bd9748b9c3252bf18a727db23c92740e7a06dc778b467aa1495",
11
- "source_file_count": 1771,
12
- "source_files_hash": "1f79c92a7165654f5ae190c1719e7e8ec89337ed8f265c7a68242ef613848f19",
13
- "source_list_hash": "1f79c92a7165654f5ae190c1719e7e8ec89337ed8f265c7a68242ef613848f19",
7
+ "compiled_file_count": 1064,
8
+ "compiled_js_count": 532,
9
+ "compiled_dts_count": 532,
10
+ "source_digest": "0a7c45e094cebad43f33cd668d95ecb34e6f7bb1a9be44273bef378fe95f185b",
11
+ "source_file_count": 1814,
12
+ "source_files_hash": "09146fd82f71e159dc8e5d331df3d0e893c1d9aa001024aaf877946eff6f657e",
13
+ "source_list_hash": "09146fd82f71e159dc8e5d331df3d0e893c1d9aa001024aaf877946eff6f657e",
14
14
  "src_mjs_runtime_files": 0,
15
15
  "dist_stamp_schema": "sks.dist-build-stamp.v1",
16
16
  "files": [
@@ -268,6 +268,8 @@
268
268
  "core/agents/agent-session-generation.js",
269
269
  "core/agents/agent-session-rows.d.ts",
270
270
  "core/agents/agent-session-rows.js",
271
+ "core/agents/agent-slot-pane-binding-proof.d.ts",
272
+ "core/agents/agent-slot-pane-binding-proof.js",
271
273
  "core/agents/agent-task-graph.d.ts",
272
274
  "core/agents/agent-task-graph.js",
273
275
  "core/agents/agent-task-slicer.d.ts",
@@ -322,6 +324,8 @@
322
324
  "core/agents/work-partition/semantic-domain-graph.js",
323
325
  "core/agents/work-partition/task-slicer.d.ts",
324
326
  "core/agents/work-partition/task-slicer.js",
327
+ "core/agents/worker-pane-communication-contract.d.ts",
328
+ "core/agents/worker-pane-communication-contract.js",
325
329
  "core/agents/zellij-lane-supervisor.d.ts",
326
330
  "core/agents/zellij-lane-supervisor.js",
327
331
  "core/agents/zellij-right-lane-cockpit.d.ts",
@@ -366,6 +370,32 @@
366
370
  "core/codex-compat/codex-version-policy.js",
367
371
  "core/codex-compat/codex-version.d.ts",
368
372
  "core/codex-compat/codex-version.js",
373
+ "core/codex-control/codex-control-plane.d.ts",
374
+ "core/codex-control/codex-control-plane.js",
375
+ "core/codex-control/codex-control-proof.d.ts",
376
+ "core/codex-control/codex-control-proof.js",
377
+ "core/codex-control/codex-event-translator.d.ts",
378
+ "core/codex-control/codex-event-translator.js",
379
+ "core/codex-control/codex-fake-sdk-adapter.d.ts",
380
+ "core/codex-control/codex-fake-sdk-adapter.js",
381
+ "core/codex-control/codex-output-schemas.d.ts",
382
+ "core/codex-control/codex-output-schemas.js",
383
+ "core/codex-control/codex-sdk-adapter.d.ts",
384
+ "core/codex-control/codex-sdk-adapter.js",
385
+ "core/codex-control/codex-sdk-capability.d.ts",
386
+ "core/codex-control/codex-sdk-capability.js",
387
+ "core/codex-control/codex-sdk-config-policy.d.ts",
388
+ "core/codex-control/codex-sdk-config-policy.js",
389
+ "core/codex-control/codex-sdk-env-policy.d.ts",
390
+ "core/codex-control/codex-sdk-env-policy.js",
391
+ "core/codex-control/codex-sdk-sandbox-policy.d.ts",
392
+ "core/codex-control/codex-sdk-sandbox-policy.js",
393
+ "core/codex-control/codex-task-runner.d.ts",
394
+ "core/codex-control/codex-task-runner.js",
395
+ "core/codex-control/codex-thread-registry.d.ts",
396
+ "core/codex-control/codex-thread-registry.js",
397
+ "core/codex-control/schemas/agent-worker-result.schema.d.ts",
398
+ "core/codex-control/schemas/agent-worker-result.schema.js",
369
399
  "core/codex-exec-output-schema.d.ts",
370
400
  "core/codex-exec-output-schema.js",
371
401
  "core/codex-hooks/codex-hook-actual-discovery.d.ts",
@@ -1045,6 +1075,8 @@
1045
1075
  "core/zellij/zellij-pane-proof.js",
1046
1076
  "core/zellij/zellij-screen-proof.d.ts",
1047
1077
  "core/zellij/zellij-screen-proof.js",
1078
+ "core/zellij/zellij-worker-pane-manager.d.ts",
1079
+ "core/zellij/zellij-worker-pane-manager.js",
1048
1080
  "scripts/release-parallel-check.d.ts",
1049
1081
  "scripts/release-parallel-check.js",
1050
1082
  "vendor/openai-codex/latest/hooks/permission-request.command.input.schema.json",