sneakoscope 1.18.11 → 1.18.13

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 (154) hide show
  1. package/README.md +27 -28
  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 +63 -23
  8. package/dist/cli/command-registry.d.ts +2 -0
  9. package/dist/cli/command-registry.js +3 -2
  10. package/dist/cli/install-helpers.d.ts +7 -61
  11. package/dist/cli/install-helpers.js +39 -95
  12. package/dist/cli/router.js +2 -2
  13. package/dist/commands/doctor.js +80 -8
  14. package/dist/commands/image-ux-review.d.ts +25 -38
  15. package/dist/commands/mad-sks.d.ts +124 -44
  16. package/dist/commands/ppt.d.ts +25 -38
  17. package/dist/commands/tmux.d.ts +7 -65
  18. package/dist/commands/tmux.js +18 -3
  19. package/dist/commands/zellij-lane.d.ts +2 -0
  20. package/dist/commands/zellij-lane.js +23 -0
  21. package/dist/core/agents/agent-cleanup-executor.d.ts +5 -5
  22. package/dist/core/agents/agent-cleanup-executor.js +16 -32
  23. package/dist/core/agents/agent-codex-cockpit.d.ts +1 -1
  24. package/dist/core/agents/agent-codex-cockpit.js +4 -4
  25. package/dist/core/agents/agent-janitor.d.ts +1 -1
  26. package/dist/core/agents/agent-janitor.js +7 -7
  27. package/dist/core/agents/agent-orchestrator.d.ts +25 -38
  28. package/dist/core/agents/agent-orchestrator.js +25 -25
  29. package/dist/core/agents/agent-output-validator.d.ts +3 -3
  30. package/dist/core/agents/agent-output-validator.js +3 -3
  31. package/dist/core/agents/agent-patch-schema.d.ts +1 -1
  32. package/dist/core/agents/agent-patch-schema.js +2 -2
  33. package/dist/core/agents/agent-proof-evidence.d.ts +14 -23
  34. package/dist/core/agents/agent-proof-evidence.js +29 -46
  35. package/dist/core/agents/agent-runner-codex-exec.d.ts +2 -2
  36. package/dist/core/agents/agent-runner-codex-exec.js +21 -18
  37. package/dist/core/agents/agent-runner-zellij.d.ts +15 -0
  38. package/dist/core/agents/agent-runner-zellij.js +127 -0
  39. package/dist/core/agents/agent-schema.d.ts +2 -2
  40. package/dist/core/agents/agent-schema.js +1 -1
  41. package/dist/core/agents/agent-trust-report.d.ts +8 -12
  42. package/dist/core/agents/agent-trust-report.js +19 -26
  43. package/dist/core/agents/agent-worker-pipeline.js +1 -1
  44. package/dist/core/agents/codex-exec-worker-adapter.d.ts +5 -1
  45. package/dist/core/agents/codex-exec-worker-adapter.js +2 -0
  46. package/dist/core/agents/fast-mode-policy.d.ts +1 -1
  47. package/dist/core/agents/fast-mode-policy.js +9 -5
  48. package/dist/core/agents/native-cli-session-proof.js +15 -13
  49. package/dist/core/agents/native-cli-worker.js +3 -2
  50. package/dist/core/agents/native-worker-backend-router.d.ts +2 -1
  51. package/dist/core/agents/native-worker-backend-router.js +13 -12
  52. package/dist/core/agents/route-collaboration-ledger.d.ts +25 -38
  53. package/dist/core/agents/{tmux-lane-supervisor.d.ts → zellij-lane-supervisor.d.ts} +14 -14
  54. package/dist/core/agents/{tmux-lane-supervisor.js → zellij-lane-supervisor.js} +55 -68
  55. package/dist/core/agents/{tmux-right-lane-cockpit.d.ts → zellij-right-lane-cockpit.d.ts} +5 -5
  56. package/dist/core/agents/{tmux-right-lane-cockpit.js → zellij-right-lane-cockpit.js} +13 -13
  57. package/dist/core/auto-review.js +1 -1
  58. package/dist/core/codex/app-mentions.d.ts +15 -0
  59. package/dist/core/codex/app-mentions.js +14 -0
  60. package/dist/core/codex/codex-0-135-compat.d.ts +66 -0
  61. package/dist/core/codex/codex-0-135-compat.js +168 -0
  62. package/dist/core/codex/codex-cli-syntax-builder.d.ts +21 -0
  63. package/dist/core/codex/codex-cli-syntax-builder.js +42 -0
  64. package/dist/core/codex/codex-config-eperm-repair.d.ts +59 -0
  65. package/dist/core/codex/codex-config-eperm-repair.js +88 -0
  66. package/dist/core/codex/codex-config-readability.d.ts +22 -0
  67. package/dist/core/codex/codex-config-readability.js +247 -0
  68. package/dist/core/codex/codex-permission-profiles.d.ts +36 -0
  69. package/dist/core/codex/codex-permission-profiles.js +91 -0
  70. package/dist/core/codex/codex-project-config-policy.d.ts +44 -0
  71. package/dist/core/codex/codex-project-config-policy.js +290 -0
  72. package/dist/core/codex/codex-resume-inventory.d.ts +36 -0
  73. package/dist/core/codex/codex-resume-inventory.js +29 -0
  74. package/dist/core/codex-app.js +1 -1
  75. package/dist/core/commands/basic-cli.d.ts +1 -66
  76. package/dist/core/commands/basic-cli.js +14 -9
  77. package/dist/core/commands/command-suggestions.d.ts +8 -0
  78. package/dist/core/commands/command-suggestions.js +13 -0
  79. package/dist/core/commands/image-ux-review-command.d.ts +25 -38
  80. package/dist/core/commands/mad-sks-command.d.ts +124 -44
  81. package/dist/core/commands/mad-sks-command.js +70 -25
  82. package/dist/core/commands/ppt-command.d.ts +25 -38
  83. package/dist/core/commands/run-command.js +1 -1
  84. package/dist/core/commands/team-command.js +29 -23
  85. package/dist/core/doctor/codex-doctor-bridge.d.ts +31 -0
  86. package/dist/core/doctor/codex-doctor-bridge.js +99 -0
  87. package/dist/core/doctor/doctor-readiness-matrix.d.ts +53 -0
  88. package/dist/core/doctor/doctor-readiness-matrix.js +96 -0
  89. package/dist/core/doctor/macos-tcc-diagnostic.d.ts +9 -0
  90. package/dist/core/doctor/macos-tcc-diagnostic.js +19 -0
  91. package/dist/core/feature-fixtures.js +3 -1
  92. package/dist/core/fsx.d.ts +1 -1
  93. package/dist/core/fsx.js +1 -1
  94. package/dist/core/hooks-runtime.js +5 -2
  95. package/dist/core/init.js +4 -4
  96. package/dist/core/mad-sks/guard-middleware.d.ts +4 -0
  97. package/dist/core/mad-sks/immutable-harness-guard.d.ts +12 -0
  98. package/dist/core/mad-sks/immutable-harness-guard.js +46 -3
  99. package/dist/core/mad-sks/permission-model.d.ts +2 -0
  100. package/dist/core/mad-sks/permission-model.js +9 -0
  101. package/dist/core/mad-sks/rollback-apply.d.ts +2 -0
  102. package/dist/core/mad-sks/shell-argv-classifier.js +2 -2
  103. package/dist/core/mad-sks/write-guard.d.ts +4 -1
  104. package/dist/core/mad-sks/write-guard.js +2 -2
  105. package/dist/core/mcp/mcp-tool-name-normalizer.d.ts +17 -0
  106. package/dist/core/mcp/mcp-tool-name-normalizer.js +29 -0
  107. package/dist/core/openclaw.js +3 -3
  108. package/dist/core/pipeline-internals/runtime-core.js +4 -4
  109. package/dist/core/preflight/parallel-preflight-engine.d.ts +107 -0
  110. package/dist/core/preflight/parallel-preflight-engine.js +78 -0
  111. package/dist/core/proof/fake-real-proof-policy.js +9 -9
  112. package/dist/core/proof/runtime-truth-matrix.d.ts +1 -1
  113. package/dist/core/proof/runtime-truth-matrix.js +12 -23
  114. package/dist/core/release-parallel-full-coverage.js +2 -2
  115. package/dist/core/reporting/markdown-table.d.ts +2 -0
  116. package/dist/core/reporting/markdown-table.js +13 -0
  117. package/dist/core/responses-retry-policy.d.ts +18 -0
  118. package/dist/core/responses-retry-policy.js +24 -0
  119. package/dist/core/routes.d.ts +1 -1
  120. package/dist/core/routes.js +10 -9
  121. package/dist/core/session/project-namespace.d.ts +2 -2
  122. package/dist/core/session/project-namespace.js +3 -3
  123. package/dist/core/strategy/adhd-orchestrating-gate.d.ts +2 -2
  124. package/dist/core/strategy/adhd-orchestrating-gate.js +1 -1
  125. package/dist/core/team-live.d.ts +1 -1
  126. package/dist/core/team-live.js +14 -34
  127. package/dist/core/version.d.ts +1 -1
  128. package/dist/core/version.js +1 -1
  129. package/dist/core/zellij/zellij-capability.d.ts +24 -0
  130. package/dist/core/zellij/zellij-capability.js +57 -0
  131. package/dist/core/zellij/zellij-command.d.ts +23 -0
  132. package/dist/core/zellij/zellij-command.js +56 -0
  133. package/dist/core/zellij/zellij-lane-renderer.d.ts +49 -0
  134. package/dist/core/zellij/zellij-lane-renderer.js +199 -0
  135. package/dist/core/zellij/zellij-launcher.d.ts +153 -0
  136. package/dist/core/zellij/zellij-launcher.js +124 -0
  137. package/dist/core/zellij/zellij-layout-builder.d.ts +32 -0
  138. package/dist/core/zellij/zellij-layout-builder.js +94 -0
  139. package/dist/core/zellij/zellij-pane-proof.d.ts +44 -0
  140. package/dist/core/zellij/zellij-pane-proof.js +158 -0
  141. package/dist/core/zellij/zellij-screen-proof.d.ts +31 -0
  142. package/dist/core/zellij/zellij-screen-proof.js +93 -0
  143. package/dist/scripts/release-parallel-check.js +18 -15
  144. package/package.json +33 -20
  145. package/dist/core/agents/agent-runner-tmux.d.ts +0 -15
  146. package/dist/core/agents/agent-runner-tmux.js +0 -173
  147. package/dist/core/agents/tmux-physical-proof.d.ts +0 -276
  148. package/dist/core/agents/tmux-physical-proof.js +0 -345
  149. package/dist/core/mad-sks/mad-tmux-lane-proof.d.ts +0 -26
  150. package/dist/core/mad-sks/mad-tmux-lane-proof.js +0 -50
  151. package/dist/core/tmux/warp-tmux-right-lane-layout.d.ts +0 -155
  152. package/dist/core/tmux/warp-tmux-right-lane-layout.js +0 -186
  153. package/dist/core/tmux-ui.d.ts +0 -306
  154. package/dist/core/tmux-ui.js +0 -1519
package/README.md CHANGED
@@ -16,7 +16,7 @@ Set up this agent project with Sneakoscope Codex. Use [[mandarange/Sneakoscope-C
16
16
 
17
17
  ## Current Release
18
18
 
19
- SKS **1.18.11** adds the Real Worker Backend Router and Warp/tmux right-lane physical proof closure: native CLI workers now route fake, process, codex-exec, and tmux backends through explicit child-execution reports, real Codex proof separates native worker processes from Codex child process overlap and model-authored patch envelopes, and tmux lane proof checks right-side pane coordinates plus lane content instead of accepting manifest-only evidence.
19
+ SKS **1.18.13** is the Zellij-only interactive runtime release: actual Codex CLI config-load truth, fake Codex EPERM fixtures, doctor readiness matrix proof, `sks mad repair-config`, safer project-local config splitting, Codex 0.135 compatibility gates, and official Fast mode CLI override proof are wired into release checks. Doctor now refuses Ready yes without Codex config-load evidence, MAD blocks launch before unreadable config can crash Codex, and interactive MAD/lane UI requires Zellij with no removed-runtime fallback.
20
20
 
21
21
  ```bash
22
22
  sks mad-sks plan --target-root <path> --json
@@ -28,7 +28,9 @@ sks agent status latest --json
28
28
  sks agent run "release review" --agents 8 --work-items 16 --concurrency 4 --mock --json
29
29
  npm run source-intelligence:all-modes
30
30
  npm run agent:background-terminals
31
- npm run agent:tmux-lane-no-flicker
31
+ npm run zellij:lane-renderer
32
+ npm run zellij:pane-proof
33
+ npm run zellij:screen-proof
32
34
  npm run agent:cleanup-executor
33
35
  npm run agent:cleanup-executor-v2
34
36
  npm run retention:cleanup-safety
@@ -117,14 +119,12 @@ The cleanup contract is policy-backed in `.sneakoscope/policy.json`, but the def
117
119
  - X AI / Context7 / Codex Web policy: [docs/xai-context7-codex-web-policy.md](docs/xai-context7-codex-web-policy.md)
118
120
  - Main no-Scout / worker Scout policy: [docs/main-no-scout-worker-scout-policy.md](docs/main-no-scout-worker-scout-policy.md)
119
121
  - Agent terminal lanes: [docs/agent-terminal-lanes.md](docs/agent-terminal-lanes.md)
120
- - tmux right-lane cockpit: [docs/tmux-right-lane-cockpit.md](docs/tmux-right-lane-cockpit.md)
121
- - Real tmux pane proof: [docs/real-tmux-pane-proof.md](docs/real-tmux-pane-proof.md)
122
+ - Zellij migration: [docs/migration/tmux-to-zellij.md](docs/migration/tmux-to-zellij.md)
122
123
  - Real Codex dynamic smoke: [docs/real-codex-dynamic-smoke.md](docs/real-codex-dynamic-smoke.md)
123
124
  - Agent cleanup executor: [docs/agent-cleanup-executor.md](docs/agent-cleanup-executor.md)
124
125
  - Intelligent work graph: [docs/intelligent-work-graph.md](docs/intelligent-work-graph.md)
125
126
  - Fake vs real proof policy: [docs/fake-vs-real-proof-policy.md](docs/fake-vs-real-proof-policy.md)
126
127
  - Runtime truth matrix: [docs/runtime-truth-matrix.md](docs/runtime-truth-matrix.md)
127
- - Warp MAD tmux lanes: [docs/warp-mad-tmux-lanes.md](docs/warp-mad-tmux-lanes.md)
128
128
  - ADHD orchestration gate: [docs/adhd-orchestrating-gate.md](docs/adhd-orchestrating-gate.md)
129
129
  - Strategy-first parallel write: [docs/strategy-first-parallel-write.md](docs/strategy-first-parallel-write.md)
130
130
  - Appshots pipeline: [docs/appshots-pipeline.md](docs/appshots-pipeline.md)
@@ -215,7 +215,7 @@ sks selftest --mock
215
215
 
216
216
  ## What Sneakoscope Adds
217
217
 
218
- `sks` adds a tmux Codex CLI runtime, Codex App `$` commands, Team/QA/PPT/Research/DB/GX/Wiki routes, OpenClaw and Hermes skill generation, Context7-gated current docs, TriWiki context packs, DB safety, design SSOT policy, skill dreaming, release checks, and Honest Mode.
218
+ `sks` adds a Zellij-backed Codex CLI runtime, Codex App `$` commands, Team/QA/PPT/Research/DB/GX/Wiki routes, OpenClaw and Hermes skill generation, Context7-gated current docs, TriWiki context packs, DB safety, design SSOT policy, skill dreaming, release checks, and Honest Mode.
219
219
 
220
220
  ## Report-Only Planning Surfaces
221
221
 
@@ -234,16 +234,16 @@ sks pipeline plan latest --proof-field --json
234
234
  - npm
235
235
  - Codex CLI for terminal workflows
236
236
  - Codex App for app-facing workflows, including Codex Computer Use and `$imagegen`/`gpt-image-2` evidence when required
237
- - tmux for the CLI-first runtime
237
+ - Zellij for `sks --mad` and interactive lane UI
238
238
  - Context7 MCP for current-docs-gated routes
239
239
 
240
- Install tmux from [tmux.dev/download](https://www.tmux.dev/download). On macOS, Homebrew users can also install it with:
240
+ Install Zellij from [zellij.dev](https://zellij.dev/documentation/installation.html). On macOS, Homebrew users can also install it with:
241
241
 
242
242
  ```sh
243
- brew install tmux
243
+ brew install zellij
244
244
  ```
245
245
 
246
- The default `sks` runtime checks npm for newer `sneakoscope` and `@openai/codex` versions before opening tmux. `sks --mad` also checks dependencies, requires tmux 3.x, and prints only the session, gate, attach, and blocker details needed to act.
246
+ The default `sks` runtime checks npm for newer `sneakoscope` and `@openai/codex` versions before opening the interactive runtime. `sks --mad` also checks dependencies, requires Zellij for interactive MAD/lane UI, and prints only the session, gate, attach, and blocker details needed to act.
247
247
 
248
248
  ## Installation
249
249
 
@@ -315,24 +315,23 @@ sks --version
315
315
  ```sh
316
316
  sks bootstrap
317
317
  sks deps check
318
- sks deps install tmux
319
318
  sks codex-app check
320
319
  sks doctor --fix
321
320
  sks fix-path
322
321
  ```
323
322
 
324
- ### Open Codex CLI With tmux
323
+ ### Open Codex CLI With Zellij
325
324
 
326
325
  ```sh
327
326
  sks
328
- sks tmux open
329
- sks tmux check
330
- sks tmux status --once
327
+ sks --mad
328
+ sks team open-zellij latest
329
+ sks team attach-zellij latest
331
330
  ```
332
331
 
333
- Bare `sks` creates or reuses the default named tmux session for Codex CLI and attaches to it in an interactive terminal. By default it launches Codex in Fast service tier with `--model gpt-5.5`, `-c service_tier="fast"`, and the selected `model_reasoning_effort` with a static SKS 3D ASCII intro inside tmux; the animated intro is reserved for non-tmux unauthenticated Codex launches and can be disabled with `SKS_TMUX_LOGO_ANIMATION=0`. SKS always forces the model to `gpt-5.5`; `SKS_CODEX_MODEL` and `SKS_CODEX_FAST_HIGH=0` cannot downgrade or remove that model pin. You can still set `SKS_CODEX_REASONING` to change reasoning effort. Use `sks tmux open` when you need explicit `--workspace` / `--session` flags, `sks tmux check` for readiness without launching, and `sks help` for CLI help. Use `--no-attach` or `SKS_TMUX_NO_AUTO_ATTACH=1` when you only want SKS to create/reuse the session and print the manual attach command.
332
+ Interactive SKS sessions use Zellij layouts. By default SKS launches Codex in Fast service tier with `--model gpt-5.5`, `-c service_tier="fast"`, and the selected `model_reasoning_effort`. SKS always forces the model to `gpt-5.5`; `SKS_CODEX_MODEL` and `SKS_CODEX_FAST_HIGH=0` cannot downgrade or remove that model pin. You can still set `SKS_CODEX_REASONING` to change reasoning effort. Use `sks --mad --workspace <name>` for an explicit MAD session and `sks help` for CLI help.
334
333
 
335
- Before opening tmux, SKS checks the installed Codex CLI against npm `@openai/codex@latest`. If a newer version exists, it asks `Y/n`; answering `y` updates automatically with `npm i -g @openai/codex@latest` and then opens tmux with the updated Codex CLI.
334
+ Before opening the interactive runtime, SKS checks the installed Codex CLI against npm `@openai/codex@latest`. If a newer version exists, it asks `Y/n`; answering `y` updates automatically with `npm i -g @openai/codex@latest` and then opens the runtime with the updated Codex CLI.
336
335
 
337
336
  For [codex-lb](https://github.com/Soju06/codex-lb), start the server, create a dashboard API key, then run:
338
337
 
@@ -343,7 +342,7 @@ sks codex-lb repair
343
342
  sks
344
343
  ```
345
344
 
346
- Bare `sks` can also prompt for codex-lb auth; SKS stores the base URL/key in `~/.codex/sks-codex-lb.env`, writes the codex-lb Codex CLI / IDE Extension provider block into `~/.codex/config.toml` for Codex App routing, loads the provider env key for tmux launches, and syncs the macOS user launch environment so the Codex App can see `CODEX_LB_API_KEY` after restart. If the provider block disappears but the stored env file is still recoverable, bare `sks`, npm postinstall upgrades, `sks doctor --fix`, and `sks codex-lb repair` restore it with `env_key = "CODEX_LB_API_KEY"`, `supports_websockets = true`, and `requires_openai_auth = false`; imagegen checks may record this provider as configured codex-lb routing, but it is not accepted as official Codex App `$imagegen` evidence. If an older SKS release left the codex-lb dashboard key only in the shared Codex `auth.json` login cache, SKS migrates that key back into `~/.codex/sks-codex-lb.env` when a codex-lb provider or env base URL is already recoverable. It does not rewrite the shared Codex `auth.json` login cache by default; set `SKS_CODEX_LB_SYNC_CODEX_LOGIN=1` only if you intentionally want the old API-key login-cache behavior. When codex-lb is active, SKS opens a fresh `sks-codex-lb-*` tmux session and sweeps older detached codex-lb sessions for the same repo before launch so stale Responses API chains are not reused. Configured launch paths run a response-chain health check. `previous_response_not_found` is treated as a stateless-LB warning and keeps codex-lb active. Hard failures are surfaced to the user; SKS only bypasses codex-lb when the user chooses OAuth fallback or `SKS_CODEX_LB_AUTOBYPASS=1` is set.
345
+ Bare `sks` can also prompt for codex-lb auth; SKS stores the base URL/key in `~/.codex/sks-codex-lb.env`, writes the codex-lb Codex CLI / IDE Extension provider block into `~/.codex/config.toml` for Codex App routing, loads the provider env key for interactive launches, and syncs the macOS user launch environment so the Codex App can see `CODEX_LB_API_KEY` after restart. If the provider block disappears but the stored env file is still recoverable, bare `sks`, npm postinstall upgrades, `sks doctor --fix`, and `sks codex-lb repair` restore it with `env_key = "CODEX_LB_API_KEY"`, `supports_websockets = true`, and `requires_openai_auth = false`; imagegen checks may record this provider as configured codex-lb routing, but it is not accepted as official Codex App `$imagegen` evidence. If an older SKS release left the codex-lb dashboard key only in the shared Codex `auth.json` login cache, SKS migrates that key back into `~/.codex/sks-codex-lb.env` when a codex-lb provider or env base URL is already recoverable. It does not rewrite the shared Codex `auth.json` login cache by default; set `SKS_CODEX_LB_SYNC_CODEX_LOGIN=1` only if you intentionally want the old API-key login-cache behavior. When codex-lb is active, SKS opens a fresh `sks-codex-lb-*` Zellij session and sweeps older detached codex-lb sessions for the same repo before launch so stale Responses API chains are not reused. Configured launch paths run a response-chain health check. `previous_response_not_found` is treated as a stateless-LB warning and keeps codex-lb active. Hard failures are surfaced to the user; SKS only bypasses codex-lb when the user chooses OAuth fallback or `SKS_CODEX_LB_AUTOBYPASS=1` is set.
347
346
 
348
347
  If codex-lb provider auth drifts after launch/reinstall, run `sks doctor --fix` or `sks codex-lb repair`; to replace it, run `sks codex-lb reconfigure --host <domain> --api-key <key>`.
349
348
 
@@ -376,14 +375,14 @@ sks codex-lb unselect
376
375
 
377
376
  This flips `model_provider` away from `codex-lb` in the top-level Codex App config while leaving your `sks-codex-lb.env` and `auth.json` untouched, so you can re-engage codex-lb later with `sks codex-lb repair` without re-running setup.
378
377
 
379
- ### MAD tmux Launch
378
+ ### MAD Zellij Launch
380
379
 
381
380
  ```sh
382
381
  sks --mad
383
382
  sks --mad --allow-package-install --allow-service-control --allow-network --yes
384
383
  ```
385
384
 
386
- This syncs existing codex-lb provider auth, creates/uses the `sks-mad-high` high-power maintenance profile, opens the MAD-SKS permission gate for that tmux run, and launches a single Codex CLI pane. Bare `sks --mad` grants target-project file and shell scope only; add explicit `--allow-*` flags for packages, services, network, Computer Use, browser use, generated assets, file permissions, DB writes, or other high-risk scopes. MAD-SKS is not a DB-only unlock: it is explicit user authorization to widen approved target-project scopes. The session recreates the named session so stale split-pane MAD sessions collapse back to one pane. Catastrophic database wipe/all-row/project-management safeguards remain active, and the pipeline contract still forbids unrequested fallback implementation code.
385
+ This syncs existing codex-lb provider auth, creates/uses the `sks-mad-high` high-power maintenance profile, opens the MAD-SKS permission gate for that Zellij run, and launches a Codex CLI layout. Bare `sks --mad` grants target-project file and shell scope only; add explicit `--allow-*` flags for packages, services, network, Computer Use, browser use, generated assets, file permissions, DB writes, or other high-risk scopes. MAD-SKS is not a DB-only unlock: it is explicit user authorization to widen approved target-project scopes. Catastrophic database wipe/all-row/project-management safeguards remain active, and the pipeline contract still forbids unrequested fallback implementation code.
387
386
 
388
387
  Before launching, SKS checks npm for a newer `sneakoscope`; answer `y` to update or `n` to continue. Use `--yes` to approve missing dependency installs automatically.
389
388
 
@@ -396,13 +395,13 @@ sks team "max native fan-out" --agents 12
396
395
  sks team watch latest
397
396
  sks team lane latest --agent native_agent_1 --follow
398
397
  sks team message latest --from native_agent_1 --to executor_1 --message "handoff note"
399
- sks team cleanup-tmux latest
398
+ sks team cleanup-zellij latest
400
399
  sks team status latest
401
400
  sks team dashboard latest
402
401
  sks team log latest
403
402
  ```
404
403
 
405
- Team missions keep at least five QA/reviewer lanes active, record live events, compile runtime tasks and worker inboxes, write schema-backed effort/work-order/dashboard artifacts, and reconcile split live lanes in tmux when available. Native analysis lanes use the agent kernel exclusively. Use `sks team watch`, `sks team lane`, `sks team message`, and `sks team cleanup-tmux` to inspect or close the live view.
404
+ Team missions keep at least five QA/reviewer lanes active, record live events, compile runtime tasks and worker inboxes, write schema-backed effort/work-order/dashboard artifacts, and reconcile split live lanes in Zellij when available. Native analysis lanes use the agent kernel exclusively. Use `sks team watch`, `sks team lane`, `sks team message`, and `sks team cleanup-zellij` to inspect or close the live view.
406
405
 
407
406
  ### Native Multi-Session Agents
408
407
 
@@ -593,7 +592,7 @@ sks selftest --mock
593
592
  Start a CLI workspace:
594
593
 
595
594
  ```sh
596
- sks tmux check
595
+ sks --mad
597
596
  sks
598
597
  # or: sks --mad
599
598
  ```
@@ -632,14 +631,14 @@ npm install -g .
632
631
 
633
632
  If stale, reinstall globally from the repo or npm.
634
633
 
635
- ### tmux is missing
634
+ ### Zellij is missing
636
635
 
637
636
  ```sh
638
- sks deps install tmux
639
- sks tmux check
637
+ brew install zellij
638
+ npm run zellij:capability
640
639
  ```
641
640
 
642
- Install tmux from [tmux.dev/download](https://www.tmux.dev/download) or `brew install tmux` on macOS, then re-run the check.
641
+ Install Zellij from [zellij.dev](https://zellij.dev/documentation/installation.html), then run `npm run zellij:capability` or `sks doctor --json`. Without Zellij, non-interactive checks can continue, but `sks --mad` and interactive lane UI report `mad_ready: false`.
643
642
 
644
643
  ### Codex App tools are missing
645
644
 
@@ -700,7 +699,7 @@ npm run release:check
700
699
  npm run publish:dry
701
700
  ```
702
701
 
703
- `release:check` runs the 1.18.11 route-truth closure DAG, writes a source digest stamp under `.sneakoscope/reports/`, then refreshes release readiness so publish commands can verify the same stamp. The DAG preserves the 1.18 baseline gates and adds patch swarm runtime truth, transaction journaling, serial conflict rebase, strict strategy-to-patch proof, rollback command proof, Native CLI Session Swarm 5/10/20-process proof, Real Worker Backend Router proof, Codex child overlap proof, model-authored patch-envelope separation, Warp/tmux right-lane physical UI proof, no-subagent-scaling proof, Fast mode default/worker/Codex/MAD propagation proof, Appshots attachment provenance, MCP runtime overlap evidence, Codex 0.134 runner truth, task graph expansion, schema-bound follow-up work, actual Agent/Team/Research/QA route blackboxes, scheduler proof hardening, tmux lane proof, Source Intelligence propagation, and Goal mode propagation checks. Broader live gates remain explicit scripts such as `release:real-check`; real Codex patch smoke and real Codex parallel worker proof are optional unless their `SKS_REQUIRE_REAL_*` environment variables are set. Generate the human-readable registry with `sks features inventory --write-docs`. Plain `npm publish` uses the `latest` dist-tag. npm's `prepublishOnly` verifies the fresh release stamp instead of rerunning the full gate, and `prepack` only rebuilds `dist`; publish no longer repeats the expensive release suite during packaging. `npm run publish:dry` remains the explicit dry-run helper.
702
+ `release:check` runs the 1.18.13 Zellij-only closure DAG, writes a source digest stamp under `.sneakoscope/reports/`, then refreshes release readiness so publish commands can verify the same stamp. The DAG preserves the 1.18 baseline gates and adds patch swarm runtime truth, transaction journaling, serial conflict rebase, strict strategy-to-patch proof, rollback command proof, Native CLI Session Swarm 5/10/20-process proof, Real Worker Backend Router proof, Codex child overlap proof, model-authored patch-envelope separation, Zellij layout/pane/screen proof, no-subagent-scaling proof, Fast mode default/worker/Codex/MAD propagation proof, Appshots attachment provenance, MCP runtime overlap evidence, Codex 0.134/0.135 runner truth, task graph expansion, schema-bound follow-up work, actual Agent/Team/Research/QA route blackboxes, scheduler proof hardening, Source Intelligence propagation, and Goal mode propagation checks. Broader live gates remain explicit scripts such as `release:real-check`; real Codex patch smoke, real Codex parallel worker proof, and real Zellij proof are optional unless their `SKS_REQUIRE_REAL_*` or `SKS_REQUIRE_ZELLIJ=1` environment variables are set. Generate the human-readable registry with `sks features inventory --write-docs`. Plain `npm publish` uses the `latest` dist-tag. npm's `prepublishOnly` verifies the fresh release stamp instead of rerunning the full gate, and `prepack` only rebuilds `dist`; publish no longer repeats the expensive release suite during packaging. `npm run publish:dry` remains the explicit dry-run helper.
704
703
 
705
704
  Version bumps are manual. Run `sks versioning bump` only when preparing release metadata; SKS will not create `.git/hooks/pre-commit` or auto-bump during ordinary commits.
706
705
 
@@ -76,7 +76,7 @@ dependencies = [
76
76
 
77
77
  [[package]]
78
78
  name = "sks-core"
79
- version = "1.18.11"
79
+ version = "1.18.13"
80
80
  dependencies = [
81
81
  "serde_json",
82
82
  ]
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "sks-core"
3
- version = "1.18.11"
3
+ version = "1.18.13"
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.18.11"),
7
+ Some("--version") => println!("sks-rs 1.18.13"),
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.18.11",
5
- "source_digest": "d004681e2602ecbdc874d004fbaea06decb2fceda7cae54121f35eeb176d9f37",
6
- "source_file_count": 1616,
7
- "built_at_source_time": 1779978966188
4
+ "package_version": "1.18.13",
5
+ "source_digest": "6474b08fceec48bfd4915e09945f17e3ac1ccb4c9e01918d6a533f1a3d6bb30e",
6
+ "source_file_count": 1677,
7
+ "built_at_source_time": 1780041475580
8
8
  }
package/dist/bin/sks.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- const FAST_PACKAGE_VERSION = '1.18.11';
2
+ const FAST_PACKAGE_VERSION = '1.18.13';
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.18.11",
4
- "package_version": "1.18.11",
3
+ "version": "1.18.13",
4
+ "package_version": "1.18.13",
5
5
  "typescript": true,
6
6
  "mjs_runtime_files": 0,
7
- "compiled_file_count": 932,
8
- "compiled_js_count": 466,
9
- "compiled_dts_count": 466,
10
- "source_digest": "d004681e2602ecbdc874d004fbaea06decb2fceda7cae54121f35eeb176d9f37",
11
- "source_file_count": 1616,
12
- "source_files_hash": "8a3b749a48f8693f57f3dfaf93354e4224feb1e0e88730df901d0b6f8f30c10a",
13
- "source_list_hash": "8a3b749a48f8693f57f3dfaf93354e4224feb1e0e88730df901d0b6f8f30c10a",
7
+ "compiled_file_count": 972,
8
+ "compiled_js_count": 486,
9
+ "compiled_dts_count": 486,
10
+ "source_digest": "6474b08fceec48bfd4915e09945f17e3ac1ccb4c9e01918d6a533f1a3d6bb30e",
11
+ "source_file_count": 1677,
12
+ "source_files_hash": "fb8f5ab51d8a8c9809fa26ee6688932a083f83741916a19c2b331dad0d4b69e7",
13
+ "source_list_hash": "fb8f5ab51d8a8c9809fa26ee6688932a083f83741916a19c2b331dad0d4b69e7",
14
14
  "src_mjs_runtime_files": 0,
15
15
  "dist_stamp_schema": "sks.dist-build-stamp.v1",
16
16
  "files": [
@@ -184,6 +184,8 @@
184
184
  "commands/versioning.js",
185
185
  "commands/wiki.d.ts",
186
186
  "commands/wiki.js",
187
+ "commands/zellij-lane.d.ts",
188
+ "commands/zellij-lane.js",
187
189
  "core/agents/agent-central-ledger.d.ts",
188
190
  "core/agents/agent-central-ledger.js",
189
191
  "core/agents/agent-cleanup-executor.d.ts",
@@ -252,8 +254,8 @@
252
254
  "core/agents/agent-runner-fake.js",
253
255
  "core/agents/agent-runner-process.d.ts",
254
256
  "core/agents/agent-runner-process.js",
255
- "core/agents/agent-runner-tmux.d.ts",
256
- "core/agents/agent-runner-tmux.js",
257
+ "core/agents/agent-runner-zellij.d.ts",
258
+ "core/agents/agent-runner-zellij.js",
257
259
  "core/agents/agent-scheduler.d.ts",
258
260
  "core/agents/agent-scheduler.js",
259
261
  "core/agents/agent-schema.d.ts",
@@ -302,12 +304,6 @@
302
304
  "core/agents/route-collaboration-ledger.js",
303
305
  "core/agents/scout-policy.d.ts",
304
306
  "core/agents/scout-policy.js",
305
- "core/agents/tmux-lane-supervisor.d.ts",
306
- "core/agents/tmux-lane-supervisor.js",
307
- "core/agents/tmux-physical-proof.d.ts",
308
- "core/agents/tmux-physical-proof.js",
309
- "core/agents/tmux-right-lane-cockpit.d.ts",
310
- "core/agents/tmux-right-lane-cockpit.js",
311
307
  "core/agents/work-partition/conflict-detector.d.ts",
312
308
  "core/agents/work-partition/conflict-detector.js",
313
309
  "core/agents/work-partition/dependency-graph.d.ts",
@@ -322,6 +318,10 @@
322
318
  "core/agents/work-partition/semantic-domain-graph.js",
323
319
  "core/agents/work-partition/task-slicer.d.ts",
324
320
  "core/agents/work-partition/task-slicer.js",
321
+ "core/agents/zellij-lane-supervisor.d.ts",
322
+ "core/agents/zellij-lane-supervisor.js",
323
+ "core/agents/zellij-right-lane-cockpit.d.ts",
324
+ "core/agents/zellij-right-lane-cockpit.js",
325
325
  "core/artifact-schemas.d.ts",
326
326
  "core/artifact-schemas.js",
327
327
  "core/auto-review.d.ts",
@@ -390,12 +390,28 @@
390
390
  "core/codex-lb/codex-lb-setup.js",
391
391
  "core/codex-model-guard.d.ts",
392
392
  "core/codex-model-guard.js",
393
+ "core/codex/app-mentions.d.ts",
394
+ "core/codex/app-mentions.js",
393
395
  "core/codex/appshots-detector.d.ts",
394
396
  "core/codex/appshots-detector.js",
395
397
  "core/codex/appshots-operator-policy.d.ts",
396
398
  "core/codex/appshots-operator-policy.js",
397
399
  "core/codex/codex-0-134-compat.d.ts",
398
400
  "core/codex/codex-0-134-compat.js",
401
+ "core/codex/codex-0-135-compat.d.ts",
402
+ "core/codex/codex-0-135-compat.js",
403
+ "core/codex/codex-cli-syntax-builder.d.ts",
404
+ "core/codex/codex-cli-syntax-builder.js",
405
+ "core/codex/codex-config-eperm-repair.d.ts",
406
+ "core/codex/codex-config-eperm-repair.js",
407
+ "core/codex/codex-config-readability.d.ts",
408
+ "core/codex/codex-config-readability.js",
409
+ "core/codex/codex-permission-profiles.d.ts",
410
+ "core/codex/codex-permission-profiles.js",
411
+ "core/codex/codex-project-config-policy.d.ts",
412
+ "core/codex/codex-project-config-policy.js",
413
+ "core/codex/codex-resume-inventory.d.ts",
414
+ "core/codex/codex-resume-inventory.js",
399
415
  "core/codex/codex-web-search-adapter.d.ts",
400
416
  "core/codex/codex-web-search-adapter.js",
401
417
  "core/codex/managed-proxy-env.d.ts",
@@ -412,6 +428,8 @@
412
428
  "core/commands/bench-command.js",
413
429
  "core/commands/code-structure-command.d.ts",
414
430
  "core/commands/code-structure-command.js",
431
+ "core/commands/command-suggestions.d.ts",
432
+ "core/commands/command-suggestions.js",
415
433
  "core/commands/command-utils.d.ts",
416
434
  "core/commands/command-utils.js",
417
435
  "core/commands/computer-use-command.d.ts",
@@ -510,6 +528,12 @@
510
528
  "core/dfix/verification-runner.js",
511
529
  "core/dfix/verification-selector.d.ts",
512
530
  "core/dfix/verification-selector.js",
531
+ "core/doctor/codex-doctor-bridge.d.ts",
532
+ "core/doctor/codex-doctor-bridge.js",
533
+ "core/doctor/doctor-readiness-matrix.d.ts",
534
+ "core/doctor/doctor-readiness-matrix.js",
535
+ "core/doctor/macos-tcc-diagnostic.d.ts",
536
+ "core/doctor/macos-tcc-diagnostic.js",
513
537
  "core/dogfood-loop.d.ts",
514
538
  "core/dogfood-loop.js",
515
539
  "core/effort-orchestrator.d.ts",
@@ -638,8 +662,6 @@
638
662
  "core/mad-sks/guard-middleware.js",
639
663
  "core/mad-sks/immutable-harness-guard.d.ts",
640
664
  "core/mad-sks/immutable-harness-guard.js",
641
- "core/mad-sks/mad-tmux-lane-proof.d.ts",
642
- "core/mad-sks/mad-tmux-lane-proof.js",
643
665
  "core/mad-sks/permission-model.d.ts",
644
666
  "core/mad-sks/permission-model.js",
645
667
  "core/mad-sks/proof-evidence.d.ts",
@@ -656,6 +678,8 @@
656
678
  "core/managed-paths.js",
657
679
  "core/mcp/mcp-0-134-policy.d.ts",
658
680
  "core/mcp/mcp-0-134-policy.js",
681
+ "core/mcp/mcp-tool-name-normalizer.d.ts",
682
+ "core/mcp/mcp-tool-name-normalizer.js",
659
683
  "core/mcp/xai-mcp-detector.d.ts",
660
684
  "core/mcp/xai-mcp-detector.js",
661
685
  "core/mcp/xai-search-adapter.d.ts",
@@ -751,6 +775,8 @@
751
775
  "core/ppt-review/slide-issue-extraction.js",
752
776
  "core/ppt.d.ts",
753
777
  "core/ppt.js",
778
+ "core/preflight/parallel-preflight-engine.d.ts",
779
+ "core/preflight/parallel-preflight-engine.js",
754
780
  "core/prompt-context-builder.d.ts",
755
781
  "core/prompt-context-builder.js",
756
782
  "core/proof-field.d.ts",
@@ -801,8 +827,12 @@
801
827
  "core/recallpulse.js",
802
828
  "core/release-parallel-full-coverage.d.ts",
803
829
  "core/release-parallel-full-coverage.js",
830
+ "core/reporting/markdown-table.d.ts",
831
+ "core/reporting/markdown-table.js",
804
832
  "core/research.d.ts",
805
833
  "core/research.js",
834
+ "core/responses-retry-policy.d.ts",
835
+ "core/responses-retry-policy.js",
806
836
  "core/retention.d.ts",
807
837
  "core/retention.js",
808
838
  "core/routes.d.ts",
@@ -841,10 +871,6 @@
841
871
  "core/team-live.js",
842
872
  "core/team-review-policy.d.ts",
843
873
  "core/team-review-policy.js",
844
- "core/tmux-ui.d.ts",
845
- "core/tmux-ui.js",
846
- "core/tmux/warp-tmux-right-lane-layout.d.ts",
847
- "core/tmux/warp-tmux-right-lane-layout.js",
848
874
  "core/triwiki-attention.d.ts",
849
875
  "core/triwiki-attention.js",
850
876
  "core/triwiki-wrongness/avoidance-rules.d.ts",
@@ -945,6 +971,20 @@
945
971
  "core/wiki-image/visual-anchor.js",
946
972
  "core/work-order-ledger.d.ts",
947
973
  "core/work-order-ledger.js",
974
+ "core/zellij/zellij-capability.d.ts",
975
+ "core/zellij/zellij-capability.js",
976
+ "core/zellij/zellij-command.d.ts",
977
+ "core/zellij/zellij-command.js",
978
+ "core/zellij/zellij-lane-renderer.d.ts",
979
+ "core/zellij/zellij-lane-renderer.js",
980
+ "core/zellij/zellij-launcher.d.ts",
981
+ "core/zellij/zellij-launcher.js",
982
+ "core/zellij/zellij-layout-builder.d.ts",
983
+ "core/zellij/zellij-layout-builder.js",
984
+ "core/zellij/zellij-pane-proof.d.ts",
985
+ "core/zellij/zellij-pane-proof.js",
986
+ "core/zellij/zellij-screen-proof.d.ts",
987
+ "core/zellij/zellij-screen-proof.js",
948
988
  "scripts/release-parallel-check.d.ts",
949
989
  "scripts/release-parallel-check.js",
950
990
  "vendor/openai-codex/latest/hooks/permission-request.command.input.schema.json",
@@ -49,6 +49,7 @@ export declare const COMMANDS: {
49
49
  openclaw: CommandEntry;
50
50
  hermes: CommandEntry;
51
51
  tmux: CommandEntry;
52
+ 'zellij-lane': CommandEntry;
52
53
  mad: CommandEntry;
53
54
  'mad-sks': CommandEntry;
54
55
  'auto-review': CommandEntry;
@@ -134,6 +135,7 @@ export declare const TYPED_COMMANDS: {
134
135
  openclaw: CommandEntry;
135
136
  hermes: CommandEntry;
136
137
  tmux: CommandEntry;
138
+ 'zellij-lane': CommandEntry;
137
139
  mad: CommandEntry;
138
140
  'mad-sks': CommandEntry;
139
141
  'auto-review': CommandEntry;
@@ -101,8 +101,9 @@ export const COMMANDS = {
101
101
  hooks: entry('beta', 'Explain and inspect Codex hooks', 'dist/commands/hooks.js', directCommand(() => import('../commands/hooks.js'), 'dist/commands/hooks.js')),
102
102
  openclaw: entry('labs', 'Create OpenClaw skill package', 'dist/commands/openclaw.js', directCommand(() => import('../commands/openclaw.js'), 'dist/commands/openclaw.js')),
103
103
  hermes: entry('labs', 'Create Hermes Agent skill package', 'dist/commands/hermes.js', directCommand(() => import('../commands/hermes.js'), 'dist/commands/hermes.js')),
104
- tmux: entry('beta', 'Open/check SKS tmux UI', 'dist/commands/tmux.js', directCommand(() => import('../commands/tmux.js'), 'dist/commands/tmux.js')),
105
- mad: entry('beta', 'MAD-SKS tmux permission launcher', 'dist/commands/mad-sks.js', directCommand(() => import('../commands/mad-sks.js'), 'dist/commands/mad-sks.js')),
104
+ tmux: entry('beta', 'Show removed-runtime migration notice', 'dist/commands/tmux.js', directCommand(() => import('../commands/tmux.js'), 'dist/commands/tmux.js')),
105
+ 'zellij-lane': entry('beta', 'Render a Zellij lane frame for SKS sessions', 'dist/commands/zellij-lane.js', directCommand(() => import('../commands/zellij-lane.js'), 'dist/commands/zellij-lane.js')),
106
+ mad: entry('beta', 'MAD-SKS Zellij permission launcher', 'dist/commands/mad-sks.js', directCommand(() => import('../commands/mad-sks.js'), 'dist/commands/mad-sks.js')),
106
107
  'mad-sks': entry('beta', 'MAD-SKS scoped permission modifier', 'dist/commands/mad-sks.js', directCommand(() => import('../commands/mad-sks.js'), 'dist/commands/mad-sks.js')),
107
108
  'auto-review': entry('beta', 'Manage auto-review profile', 'dist/commands/auto-review.js', directCommand(() => import('../commands/auto-review.js'), 'dist/commands/auto-review.js')),
108
109
  autoreview: entry('beta', 'Alias for auto-review', 'dist/commands/auto-review.js', directCommand(() => import('../commands/auto-review.js'), 'dist/commands/auto-review.js')),
@@ -369,24 +369,22 @@ export declare function ensureRelatedCliTools(args?: any): Promise<{
369
369
  reason?: never;
370
370
  error?: never;
371
371
  };
372
- tmux: {
372
+ zellij: {
373
373
  ok: boolean;
374
- bin: string | null;
374
+ bin: "zellij";
375
375
  version: string | null;
376
376
  min_version: string;
377
377
  current_session: boolean;
378
378
  repair: {
379
379
  target: string;
380
380
  status: string;
381
- bin: string | null;
381
+ bin: "zellij";
382
382
  version: string | null;
383
- manager?: never;
384
383
  command?: never;
385
384
  error?: never;
386
385
  } | {
387
386
  target: string;
388
387
  status: string;
389
- manager: string;
390
388
  command: string;
391
389
  error: string | null;
392
390
  bin?: never;
@@ -394,35 +392,10 @@ export declare function ensureRelatedCliTools(args?: any): Promise<{
394
392
  } | {
395
393
  target: string;
396
394
  status: string;
397
- manager: string;
398
395
  command: string;
399
- bin: string | null;
396
+ bin: "zellij";
400
397
  version: string | null;
401
398
  error?: never;
402
- } | {
403
- target: string;
404
- status: string;
405
- bin: string;
406
- version: string | null;
407
- manager: string;
408
- command: string;
409
- error: string;
410
- } | {
411
- target: string;
412
- status: string;
413
- command: string;
414
- error: string | null;
415
- bin?: never;
416
- version?: never;
417
- manager?: never;
418
- } | {
419
- target: string;
420
- status: string;
421
- command: string;
422
- bin: string | null;
423
- version: string | null;
424
- manager?: never;
425
- error?: never;
426
399
  } | {
427
400
  status: string;
428
401
  reason: string;
@@ -460,38 +433,13 @@ export declare function ensureCodexCliTool({ skip }?: any): Promise<{
460
433
  reason?: never;
461
434
  error?: never;
462
435
  }>;
463
- export declare function ensureTmuxCliTool(args?: any, opts?: any): Promise<{
436
+ export declare function ensureZellijCliTool(args?: any, opts?: any): Promise<{
464
437
  target: string;
465
438
  status: string;
466
- bin: string | null;
439
+ bin: "zellij";
467
440
  version: string | null;
468
- manager?: never;
469
441
  command?: never;
470
442
  error?: never;
471
- } | {
472
- target: string;
473
- status: string;
474
- manager: string;
475
- command: string;
476
- error: string | null;
477
- bin?: never;
478
- version?: never;
479
- } | {
480
- target: string;
481
- status: string;
482
- manager: string;
483
- command: string;
484
- bin: string | null;
485
- version: string | null;
486
- error?: never;
487
- } | {
488
- target: string;
489
- status: string;
490
- bin: string;
491
- version: string | null;
492
- manager: string;
493
- command: string;
494
- error: string;
495
443
  } | {
496
444
  target: string;
497
445
  status: string;
@@ -499,14 +447,12 @@ export declare function ensureTmuxCliTool(args?: any, opts?: any): Promise<{
499
447
  error: string | null;
500
448
  bin?: never;
501
449
  version?: never;
502
- manager?: never;
503
450
  } | {
504
451
  target: string;
505
452
  status: string;
506
453
  command: string;
507
- bin: string | null;
454
+ bin: "zellij";
508
455
  version: string | null;
509
- manager?: never;
510
456
  error?: never;
511
457
  }>;
512
458
  export declare function maybePromptCodexUpdateForLaunch(args?: any, opts?: any): Promise<{