sneakoscope 1.18.12 → 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.
- package/README.md +27 -28
- package/crates/sks-core/Cargo.lock +1 -1
- package/crates/sks-core/Cargo.toml +1 -1
- package/crates/sks-core/src/main.rs +1 -1
- package/dist/.sks-build-stamp.json +4 -4
- package/dist/bin/sks.js +1 -1
- package/dist/build-manifest.json +53 -23
- package/dist/cli/command-registry.d.ts +2 -0
- package/dist/cli/command-registry.js +3 -2
- package/dist/cli/install-helpers.d.ts +7 -61
- package/dist/cli/install-helpers.js +39 -95
- package/dist/cli/router.js +2 -2
- package/dist/commands/doctor.js +73 -19
- package/dist/commands/image-ux-review.d.ts +25 -38
- package/dist/commands/mad-sks.d.ts +56 -49
- package/dist/commands/ppt.d.ts +25 -38
- package/dist/commands/tmux.d.ts +7 -65
- package/dist/commands/tmux.js +18 -3
- package/dist/commands/zellij-lane.d.ts +2 -0
- package/dist/commands/zellij-lane.js +23 -0
- package/dist/core/agents/agent-cleanup-executor.d.ts +5 -5
- package/dist/core/agents/agent-cleanup-executor.js +16 -32
- package/dist/core/agents/agent-codex-cockpit.d.ts +1 -1
- package/dist/core/agents/agent-codex-cockpit.js +4 -4
- package/dist/core/agents/agent-janitor.d.ts +1 -1
- package/dist/core/agents/agent-janitor.js +7 -7
- package/dist/core/agents/agent-orchestrator.d.ts +25 -38
- package/dist/core/agents/agent-orchestrator.js +25 -25
- package/dist/core/agents/agent-output-validator.d.ts +3 -3
- package/dist/core/agents/agent-output-validator.js +3 -3
- package/dist/core/agents/agent-patch-schema.d.ts +1 -1
- package/dist/core/agents/agent-patch-schema.js +2 -2
- package/dist/core/agents/agent-proof-evidence.d.ts +14 -23
- package/dist/core/agents/agent-proof-evidence.js +29 -46
- package/dist/core/agents/agent-runner-codex-exec.d.ts +1 -1
- package/dist/core/agents/agent-runner-codex-exec.js +2 -0
- package/dist/core/agents/agent-runner-zellij.d.ts +15 -0
- package/dist/core/agents/agent-runner-zellij.js +127 -0
- package/dist/core/agents/agent-schema.d.ts +2 -2
- package/dist/core/agents/agent-schema.js +1 -1
- package/dist/core/agents/agent-trust-report.d.ts +8 -12
- package/dist/core/agents/agent-trust-report.js +19 -26
- package/dist/core/agents/agent-worker-pipeline.js +1 -1
- package/dist/core/agents/codex-exec-worker-adapter.d.ts +3 -1
- package/dist/core/agents/codex-exec-worker-adapter.js +1 -0
- package/dist/core/agents/fast-mode-policy.d.ts +1 -1
- package/dist/core/agents/fast-mode-policy.js +9 -5
- package/dist/core/agents/native-cli-session-proof.js +15 -13
- package/dist/core/agents/native-cli-worker.js +3 -2
- package/dist/core/agents/native-worker-backend-router.d.ts +2 -1
- package/dist/core/agents/native-worker-backend-router.js +13 -12
- package/dist/core/agents/route-collaboration-ledger.d.ts +25 -38
- package/dist/core/agents/{tmux-lane-supervisor.d.ts → zellij-lane-supervisor.d.ts} +14 -14
- package/dist/core/agents/{tmux-lane-supervisor.js → zellij-lane-supervisor.js} +55 -68
- package/dist/core/agents/{tmux-right-lane-cockpit.d.ts → zellij-right-lane-cockpit.d.ts} +5 -5
- package/dist/core/agents/{tmux-right-lane-cockpit.js → zellij-right-lane-cockpit.js} +13 -13
- package/dist/core/codex/app-mentions.d.ts +15 -0
- package/dist/core/codex/app-mentions.js +14 -0
- package/dist/core/codex/codex-0-135-compat.d.ts +66 -0
- package/dist/core/codex/codex-0-135-compat.js +168 -0
- package/dist/core/codex/codex-cli-syntax-builder.d.ts +1 -0
- package/dist/core/codex/codex-cli-syntax-builder.js +3 -0
- package/dist/core/codex/codex-config-eperm-repair.d.ts +14 -2
- package/dist/core/codex/codex-config-eperm-repair.js +30 -2
- package/dist/core/codex/codex-config-readability.js +67 -2
- package/dist/core/codex/codex-permission-profiles.d.ts +36 -0
- package/dist/core/codex/codex-permission-profiles.js +91 -0
- package/dist/core/codex/codex-project-config-policy.d.ts +12 -2
- package/dist/core/codex/codex-project-config-policy.js +104 -17
- package/dist/core/codex/codex-resume-inventory.d.ts +36 -0
- package/dist/core/codex/codex-resume-inventory.js +29 -0
- package/dist/core/codex-app.js +1 -1
- package/dist/core/commands/basic-cli.d.ts +1 -66
- package/dist/core/commands/basic-cli.js +14 -9
- package/dist/core/commands/command-suggestions.d.ts +8 -0
- package/dist/core/commands/command-suggestions.js +13 -0
- package/dist/core/commands/image-ux-review-command.d.ts +25 -38
- package/dist/core/commands/mad-sks-command.d.ts +56 -49
- package/dist/core/commands/mad-sks-command.js +56 -25
- package/dist/core/commands/ppt-command.d.ts +25 -38
- package/dist/core/commands/run-command.js +1 -1
- package/dist/core/commands/team-command.js +29 -23
- package/dist/core/doctor/codex-doctor-bridge.d.ts +31 -0
- package/dist/core/doctor/codex-doctor-bridge.js +99 -0
- package/dist/core/doctor/doctor-readiness-matrix.d.ts +53 -0
- package/dist/core/doctor/doctor-readiness-matrix.js +96 -0
- package/dist/core/doctor/macos-tcc-diagnostic.d.ts +9 -0
- package/dist/core/doctor/macos-tcc-diagnostic.js +19 -0
- package/dist/core/feature-fixtures.js +3 -1
- package/dist/core/fsx.d.ts +1 -1
- package/dist/core/fsx.js +1 -1
- package/dist/core/hooks-runtime.js +5 -2
- package/dist/core/init.js +4 -4
- package/dist/core/mad-sks/guard-middleware.d.ts +4 -0
- package/dist/core/mad-sks/immutable-harness-guard.d.ts +12 -0
- package/dist/core/mad-sks/immutable-harness-guard.js +46 -3
- package/dist/core/mad-sks/permission-model.d.ts +2 -0
- package/dist/core/mad-sks/permission-model.js +9 -0
- package/dist/core/mad-sks/rollback-apply.d.ts +2 -0
- package/dist/core/mad-sks/shell-argv-classifier.js +2 -2
- package/dist/core/mad-sks/write-guard.d.ts +4 -1
- package/dist/core/mad-sks/write-guard.js +2 -2
- package/dist/core/mcp/mcp-tool-name-normalizer.d.ts +17 -0
- package/dist/core/mcp/mcp-tool-name-normalizer.js +29 -0
- package/dist/core/openclaw.js +3 -3
- package/dist/core/pipeline-internals/runtime-core.js +4 -4
- package/dist/core/preflight/parallel-preflight-engine.d.ts +15 -2
- package/dist/core/preflight/parallel-preflight-engine.js +9 -4
- package/dist/core/proof/fake-real-proof-policy.js +9 -9
- package/dist/core/proof/runtime-truth-matrix.d.ts +1 -1
- package/dist/core/proof/runtime-truth-matrix.js +12 -23
- package/dist/core/release-parallel-full-coverage.js +2 -2
- package/dist/core/reporting/markdown-table.d.ts +2 -0
- package/dist/core/reporting/markdown-table.js +13 -0
- package/dist/core/responses-retry-policy.d.ts +18 -0
- package/dist/core/responses-retry-policy.js +24 -0
- package/dist/core/routes.d.ts +1 -1
- package/dist/core/routes.js +10 -9
- package/dist/core/session/project-namespace.d.ts +2 -2
- package/dist/core/session/project-namespace.js +3 -3
- package/dist/core/strategy/adhd-orchestrating-gate.d.ts +2 -2
- package/dist/core/strategy/adhd-orchestrating-gate.js +1 -1
- package/dist/core/team-live.d.ts +1 -1
- package/dist/core/team-live.js +14 -34
- package/dist/core/version.d.ts +1 -1
- package/dist/core/version.js +1 -1
- package/dist/core/zellij/zellij-capability.d.ts +24 -0
- package/dist/core/zellij/zellij-capability.js +57 -0
- package/dist/core/zellij/zellij-command.d.ts +23 -0
- package/dist/core/zellij/zellij-command.js +56 -0
- package/dist/core/zellij/zellij-lane-renderer.d.ts +49 -0
- package/dist/core/zellij/zellij-lane-renderer.js +199 -0
- package/dist/core/zellij/zellij-launcher.d.ts +153 -0
- package/dist/core/zellij/zellij-launcher.js +124 -0
- package/dist/core/zellij/zellij-layout-builder.d.ts +32 -0
- package/dist/core/zellij/zellij-layout-builder.js +94 -0
- package/dist/core/zellij/zellij-pane-proof.d.ts +44 -0
- package/dist/core/zellij/zellij-pane-proof.js +158 -0
- package/dist/core/zellij/zellij-screen-proof.d.ts +31 -0
- package/dist/core/zellij/zellij-screen-proof.js +93 -0
- package/dist/scripts/release-parallel-check.js +18 -15
- package/package.json +32 -20
- package/dist/core/agents/agent-runner-tmux.d.ts +0 -15
- package/dist/core/agents/agent-runner-tmux.js +0 -173
- package/dist/core/agents/tmux-physical-proof.d.ts +0 -276
- package/dist/core/agents/tmux-physical-proof.js +0 -345
- package/dist/core/mad-sks/mad-tmux-lane-proof.d.ts +0 -26
- package/dist/core/mad-sks/mad-tmux-lane-proof.js +0 -50
- package/dist/core/tmux/warp-tmux-right-lane-layout.d.ts +0 -155
- package/dist/core/tmux/warp-tmux-right-lane-layout.js +0 -186
- package/dist/core/tmux-ui.d.ts +0 -306
- 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.
|
|
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
|
|
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
|
-
-
|
|
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
|
|
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
|
-
-
|
|
237
|
+
- Zellij for `sks --mad` and interactive lane UI
|
|
238
238
|
- Context7 MCP for current-docs-gated routes
|
|
239
239
|
|
|
240
|
-
Install
|
|
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
|
|
243
|
+
brew install zellij
|
|
244
244
|
```
|
|
245
245
|
|
|
246
|
-
The default `sks` runtime checks npm for newer `sneakoscope` and `@openai/codex` versions before opening
|
|
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
|
|
323
|
+
### Open Codex CLI With Zellij
|
|
325
324
|
|
|
326
325
|
```sh
|
|
327
326
|
sks
|
|
328
|
-
sks
|
|
329
|
-
sks
|
|
330
|
-
sks
|
|
327
|
+
sks --mad
|
|
328
|
+
sks team open-zellij latest
|
|
329
|
+
sks team attach-zellij latest
|
|
331
330
|
```
|
|
332
331
|
|
|
333
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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-
|
|
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
|
|
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
|
|
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
|
-
###
|
|
634
|
+
### Zellij is missing
|
|
636
635
|
|
|
637
636
|
```sh
|
|
638
|
-
|
|
639
|
-
|
|
637
|
+
brew install zellij
|
|
638
|
+
npm run zellij:capability
|
|
640
639
|
```
|
|
641
640
|
|
|
642
|
-
Install
|
|
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.
|
|
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
|
|
|
@@ -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.
|
|
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.
|
|
5
|
-
"source_digest": "
|
|
6
|
-
"source_file_count":
|
|
7
|
-
"built_at_source_time":
|
|
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
package/dist/build-manifest.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": "sks.dist-build.v2",
|
|
3
|
-
"version": "1.18.
|
|
4
|
-
"package_version": "1.18.
|
|
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":
|
|
8
|
-
"compiled_js_count":
|
|
9
|
-
"compiled_dts_count":
|
|
10
|
-
"source_digest": "
|
|
11
|
-
"source_file_count":
|
|
12
|
-
"source_files_hash": "
|
|
13
|
-
"source_list_hash": "
|
|
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-
|
|
256
|
-
"core/agents/agent-runner-
|
|
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,20 +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",
|
|
399
403
|
"core/codex/codex-cli-syntax-builder.d.ts",
|
|
400
404
|
"core/codex/codex-cli-syntax-builder.js",
|
|
401
405
|
"core/codex/codex-config-eperm-repair.d.ts",
|
|
402
406
|
"core/codex/codex-config-eperm-repair.js",
|
|
403
407
|
"core/codex/codex-config-readability.d.ts",
|
|
404
408
|
"core/codex/codex-config-readability.js",
|
|
409
|
+
"core/codex/codex-permission-profiles.d.ts",
|
|
410
|
+
"core/codex/codex-permission-profiles.js",
|
|
405
411
|
"core/codex/codex-project-config-policy.d.ts",
|
|
406
412
|
"core/codex/codex-project-config-policy.js",
|
|
413
|
+
"core/codex/codex-resume-inventory.d.ts",
|
|
414
|
+
"core/codex/codex-resume-inventory.js",
|
|
407
415
|
"core/codex/codex-web-search-adapter.d.ts",
|
|
408
416
|
"core/codex/codex-web-search-adapter.js",
|
|
409
417
|
"core/codex/managed-proxy-env.d.ts",
|
|
@@ -420,6 +428,8 @@
|
|
|
420
428
|
"core/commands/bench-command.js",
|
|
421
429
|
"core/commands/code-structure-command.d.ts",
|
|
422
430
|
"core/commands/code-structure-command.js",
|
|
431
|
+
"core/commands/command-suggestions.d.ts",
|
|
432
|
+
"core/commands/command-suggestions.js",
|
|
423
433
|
"core/commands/command-utils.d.ts",
|
|
424
434
|
"core/commands/command-utils.js",
|
|
425
435
|
"core/commands/computer-use-command.d.ts",
|
|
@@ -518,6 +528,12 @@
|
|
|
518
528
|
"core/dfix/verification-runner.js",
|
|
519
529
|
"core/dfix/verification-selector.d.ts",
|
|
520
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",
|
|
521
537
|
"core/dogfood-loop.d.ts",
|
|
522
538
|
"core/dogfood-loop.js",
|
|
523
539
|
"core/effort-orchestrator.d.ts",
|
|
@@ -646,8 +662,6 @@
|
|
|
646
662
|
"core/mad-sks/guard-middleware.js",
|
|
647
663
|
"core/mad-sks/immutable-harness-guard.d.ts",
|
|
648
664
|
"core/mad-sks/immutable-harness-guard.js",
|
|
649
|
-
"core/mad-sks/mad-tmux-lane-proof.d.ts",
|
|
650
|
-
"core/mad-sks/mad-tmux-lane-proof.js",
|
|
651
665
|
"core/mad-sks/permission-model.d.ts",
|
|
652
666
|
"core/mad-sks/permission-model.js",
|
|
653
667
|
"core/mad-sks/proof-evidence.d.ts",
|
|
@@ -664,6 +678,8 @@
|
|
|
664
678
|
"core/managed-paths.js",
|
|
665
679
|
"core/mcp/mcp-0-134-policy.d.ts",
|
|
666
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",
|
|
667
683
|
"core/mcp/xai-mcp-detector.d.ts",
|
|
668
684
|
"core/mcp/xai-mcp-detector.js",
|
|
669
685
|
"core/mcp/xai-search-adapter.d.ts",
|
|
@@ -811,8 +827,12 @@
|
|
|
811
827
|
"core/recallpulse.js",
|
|
812
828
|
"core/release-parallel-full-coverage.d.ts",
|
|
813
829
|
"core/release-parallel-full-coverage.js",
|
|
830
|
+
"core/reporting/markdown-table.d.ts",
|
|
831
|
+
"core/reporting/markdown-table.js",
|
|
814
832
|
"core/research.d.ts",
|
|
815
833
|
"core/research.js",
|
|
834
|
+
"core/responses-retry-policy.d.ts",
|
|
835
|
+
"core/responses-retry-policy.js",
|
|
816
836
|
"core/retention.d.ts",
|
|
817
837
|
"core/retention.js",
|
|
818
838
|
"core/routes.d.ts",
|
|
@@ -851,10 +871,6 @@
|
|
|
851
871
|
"core/team-live.js",
|
|
852
872
|
"core/team-review-policy.d.ts",
|
|
853
873
|
"core/team-review-policy.js",
|
|
854
|
-
"core/tmux-ui.d.ts",
|
|
855
|
-
"core/tmux-ui.js",
|
|
856
|
-
"core/tmux/warp-tmux-right-lane-layout.d.ts",
|
|
857
|
-
"core/tmux/warp-tmux-right-lane-layout.js",
|
|
858
874
|
"core/triwiki-attention.d.ts",
|
|
859
875
|
"core/triwiki-attention.js",
|
|
860
876
|
"core/triwiki-wrongness/avoidance-rules.d.ts",
|
|
@@ -955,6 +971,20 @@
|
|
|
955
971
|
"core/wiki-image/visual-anchor.js",
|
|
956
972
|
"core/work-order-ledger.d.ts",
|
|
957
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",
|
|
958
988
|
"scripts/release-parallel-check.d.ts",
|
|
959
989
|
"scripts/release-parallel-check.js",
|
|
960
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', '
|
|
105
|
-
|
|
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
|
-
|
|
372
|
+
zellij: {
|
|
373
373
|
ok: boolean;
|
|
374
|
-
bin:
|
|
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:
|
|
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:
|
|
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
|
|
436
|
+
export declare function ensureZellijCliTool(args?: any, opts?: any): Promise<{
|
|
464
437
|
target: string;
|
|
465
438
|
status: string;
|
|
466
|
-
bin:
|
|
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:
|
|
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<{
|