sneakoscope 1.15.1 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -9
- 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 +82 -58
- package/dist/cli/command-registry.d.ts +3 -4
- package/dist/cli/command-registry.js +3 -3
- package/dist/commands/bench.d.ts +12 -12
- package/dist/commands/image-ux-review.d.ts +613 -0
- package/dist/commands/ppt.d.ts +280 -0
- package/dist/commands/wiki.d.ts +4 -4
- package/dist/core/agents/agent-central-ledger.d.ts +47 -0
- package/dist/core/agents/agent-central-ledger.js +159 -0
- package/dist/core/agents/agent-cleanup.d.ts +13 -0
- package/dist/core/agents/agent-cleanup.js +24 -0
- package/dist/core/agents/agent-command-surface.d.ts +14 -0
- package/dist/core/agents/agent-command-surface.js +40 -0
- package/dist/core/agents/agent-conflict-graph.d.ts +20 -0
- package/dist/core/agents/agent-conflict-graph.js +22 -0
- package/dist/core/agents/agent-consensus.d.ts +13 -0
- package/dist/core/agents/agent-consensus.js +16 -0
- package/dist/core/agents/agent-effort-policy.d.ts +36 -0
- package/dist/core/agents/agent-effort-policy.js +99 -0
- package/dist/core/agents/agent-gate.d.ts +11 -0
- package/dist/core/agents/agent-gate.js +44 -0
- package/dist/core/agents/agent-heartbeat.d.ts +2 -0
- package/dist/core/agents/agent-heartbeat.js +2 -0
- package/dist/core/agents/agent-lease.d.ts +11 -0
- package/dist/core/agents/agent-lease.js +42 -0
- package/dist/core/agents/agent-ledger-schemas.d.ts +660 -0
- package/dist/core/agents/agent-ledger-schemas.js +147 -0
- package/dist/core/agents/agent-lifecycle.d.ts +46 -0
- package/dist/core/agents/agent-lifecycle.js +145 -0
- package/dist/core/agents/agent-message-bus.d.ts +15 -0
- package/dist/core/agents/agent-message-bus.js +17 -0
- package/dist/core/agents/agent-orchestrator.d.ts +210 -0
- package/dist/core/agents/agent-orchestrator.js +194 -0
- package/dist/core/agents/agent-output-validator.d.ts +138 -0
- package/dist/core/agents/agent-output-validator.js +84 -0
- package/dist/core/agents/agent-persona.d.ts +10 -0
- package/dist/core/agents/agent-persona.js +104 -0
- package/dist/core/agents/agent-plan.d.ts +20 -0
- package/dist/core/agents/agent-plan.js +43 -0
- package/dist/core/agents/agent-proof-evidence.d.ts +41 -0
- package/dist/core/agents/agent-proof-evidence.js +48 -0
- package/dist/core/agents/agent-recursion-guard.d.ts +120 -0
- package/dist/core/agents/agent-recursion-guard.js +416 -0
- package/dist/core/agents/agent-roster.d.ts +38 -0
- package/dist/core/agents/agent-roster.js +65 -0
- package/dist/core/agents/agent-runner-codex-exec.d.ts +6 -0
- package/dist/core/agents/agent-runner-codex-exec.js +67 -0
- package/dist/core/agents/agent-runner-fake.d.ts +2 -0
- package/dist/core/agents/agent-runner-fake.js +26 -0
- package/dist/core/agents/agent-runner-process.d.ts +2 -0
- package/dist/core/agents/agent-runner-process.js +75 -0
- package/dist/core/agents/agent-runner-tmux.d.ts +46 -0
- package/dist/core/agents/agent-runner-tmux.js +57 -0
- package/dist/core/agents/agent-schema.d.ts +128 -0
- package/dist/core/agents/agent-schema.js +20 -0
- package/dist/core/agents/agent-task-slicer.d.ts +2 -0
- package/dist/core/agents/agent-task-slicer.js +2 -0
- package/dist/core/agents/agent-trust-report.d.ts +21 -0
- package/dist/core/agents/agent-trust-report.js +42 -0
- package/dist/core/agents/agent-work-partition.d.ts +76 -0
- package/dist/core/agents/agent-work-partition.js +30 -0
- package/dist/core/agents/agent-worker-pipeline.d.ts +20 -0
- package/dist/core/agents/agent-worker-pipeline.js +70 -0
- package/dist/core/agents/agent-wrongness.d.ts +12 -0
- package/dist/core/agents/agent-wrongness.js +29 -0
- package/dist/core/agents/route-collaboration-ledger.d.ts +291 -0
- package/dist/core/agents/route-collaboration-ledger.js +145 -0
- package/dist/core/agents/work-partition/conflict-detector.d.ts +25 -0
- package/dist/core/agents/work-partition/conflict-detector.js +13 -0
- package/dist/core/agents/work-partition/dependency-graph.d.ts +14 -0
- package/dist/core/agents/work-partition/dependency-graph.js +19 -0
- package/dist/core/agents/work-partition/lease-planner.d.ts +3 -0
- package/dist/core/agents/work-partition/lease-planner.js +18 -0
- package/dist/core/agents/work-partition/no-overlap-proof.d.ts +10 -0
- package/dist/core/agents/work-partition/no-overlap-proof.js +13 -0
- package/dist/core/agents/work-partition/repo-inventory.d.ts +16 -0
- package/dist/core/agents/work-partition/repo-inventory.js +39 -0
- package/dist/core/agents/work-partition/semantic-domain-graph.d.ts +12 -0
- package/dist/core/agents/work-partition/semantic-domain-graph.js +24 -0
- package/dist/core/agents/work-partition/task-slicer.d.ts +7 -0
- package/dist/core/agents/work-partition/task-slicer.js +38 -0
- package/dist/core/auto-review.d.ts +60 -0
- package/dist/core/auto-review.js +33 -1
- package/dist/core/bench.d.ts +13 -13
- package/dist/core/bench.js +7 -7
- package/dist/core/codex-compat/codex-0-132.js +2 -2
- package/dist/core/codex-compat/codex-0-133.js +2 -2
- package/dist/core/commands/agent-command.d.ts +2 -0
- package/dist/core/commands/agent-command.js +38 -0
- package/dist/core/commands/autoresearch-command.js +1 -1
- package/dist/core/commands/basic-cli.js +25 -5
- package/dist/core/commands/bench-command.d.ts +12 -12
- package/dist/core/commands/command-utils.js +1 -1
- package/dist/core/commands/db-command.js +11 -2
- package/dist/core/commands/image-ux-review-command.d.ts +613 -0
- package/dist/core/commands/image-ux-review-command.js +9 -2
- package/dist/core/commands/pipeline-command.js +9 -9
- package/dist/core/commands/ppt-command.d.ts +280 -0
- package/dist/core/commands/ppt-command.js +13 -8
- package/dist/core/commands/qa-loop-command.js +9 -3
- package/dist/core/commands/research-command.js +24 -13
- package/dist/core/commands/status-command.js +2 -2
- package/dist/core/commands/team-command.js +14 -10
- package/dist/core/commands/wiki-command.d.ts +6 -6
- package/dist/core/commands/wiki-command.js +1 -1
- package/dist/core/dfix/codex-handoff.js +1 -1
- package/dist/core/dfix.d.ts +65 -0
- package/dist/core/dfix.js +103 -2
- package/dist/core/evidence/evidence-router.js +8 -8
- package/dist/core/evidence/evidence-schema.d.ts +1 -1
- package/dist/core/evidence/evidence-schema.js +1 -1
- package/dist/core/evidence/flagship-proof-graph-validator.d.ts +1 -1
- package/dist/core/evidence/flagship-proof-graph-validator.js +5 -5
- package/dist/core/feature-fixtures.js +5 -5
- package/dist/core/feature-registry.js +34 -34
- package/dist/core/fsx.d.ts +2 -1
- package/dist/core/fsx.js +3 -1
- package/dist/core/hooks-runtime.js +83 -10
- package/dist/core/image-ux-review/fix-task-planner.js +2 -2
- package/dist/core/image-ux-review/patch-handoff.js +1 -1
- package/dist/core/image-ux-review.js +1 -1
- package/dist/core/init.js +9 -8
- package/dist/core/perf-bench.d.ts +20 -10
- package/dist/core/performance-budgets.json +10 -10
- package/dist/core/pipeline/{scout-stage-policy.d.ts → agent-stage-policy.d.ts} +1 -1
- package/dist/core/pipeline/{scout-stage-policy.js → agent-stage-policy.js} +1 -1
- package/dist/core/pipeline-internals/runtime-core.d.ts +40 -20
- package/dist/core/pipeline-internals/runtime-core.js +41 -41
- package/dist/core/pipeline-internals/runtime-gates.js +13 -13
- package/dist/core/proof/auto-finalize.d.ts +1 -1
- package/dist/core/proof/auto-finalize.js +60 -29
- package/dist/core/proof/evidence-collector.d.ts +2 -2
- package/dist/core/proof/proof-reader.d.ts +1 -1
- package/dist/core/proof/proof-schema.d.ts +2 -2
- package/dist/core/proof/proof-schema.js +1 -1
- package/dist/core/proof/proof-writer.js +1 -1
- package/dist/core/proof/route-adapter.d.ts +1 -26
- package/dist/core/proof/route-finalizer.d.ts +2 -27
- package/dist/core/proof/route-finalizer.js +4 -4
- package/dist/core/proof/route-proof-gate.js +11 -11
- package/dist/core/proof/selftest-proof-fixtures.d.ts +1 -26
- package/dist/core/proof-field.js +1 -1
- package/dist/core/qa-loop.d.ts +36 -0
- package/dist/core/qa-loop.js +96 -0
- package/dist/core/recallpulse.d.ts +2 -2
- package/dist/core/recallpulse.js +26 -26
- package/dist/core/research.d.ts +185 -27
- package/dist/core/research.js +369 -140
- package/dist/core/routes.d.ts +1 -1
- package/dist/core/routes.js +24 -11
- package/dist/core/team-dag.js +8 -8
- package/dist/core/team-live.js +18 -18
- package/dist/core/tmux-ui.d.ts +5 -5
- package/dist/core/tmux-ui.js +7 -7
- package/dist/core/triwiki-wrongness/wrongness-cli.d.ts +8 -8
- package/dist/core/triwiki-wrongness/wrongness-ledger.d.ts +1 -1
- package/dist/core/triwiki-wrongness/wrongness-ledger.js +10 -10
- package/dist/core/triwiki-wrongness/wrongness-proof-linker.d.ts +2 -2
- package/dist/core/triwiki-wrongness/wrongness-retrieval.d.ts +3 -3
- package/dist/core/triwiki-wrongness/wrongness-retrieval.js +1 -1
- package/dist/core/triwiki-wrongness/wrongness-schema.d.ts +2 -2
- package/dist/core/triwiki-wrongness/wrongness-schema.js +2 -2
- package/dist/core/trust-kernel/completion-contract.js +3 -3
- package/dist/core/trust-kernel/route-contract.d.ts +3 -3
- package/dist/core/trust-kernel/route-contract.js +4 -4
- package/dist/core/trust-kernel/trust-report.d.ts +1 -51
- package/dist/core/trust-kernel/trust-report.js +0 -27
- package/dist/core/version.d.ts +1 -1
- package/dist/core/version.js +1 -1
- package/package.json +23 -18
- package/schemas/codex/agent-result.schema.json +77 -0
- package/schemas/codex/non-recursive-pipeline-report.schema.json +201 -0
- package/dist/commands/scouts.d.ts +0 -2
- package/dist/commands/scouts.js +0 -5
- package/dist/core/commands/scouts-command.d.ts +0 -2
- package/dist/core/commands/scouts-command.js +0 -456
- package/dist/core/scouts/engines/codex-app-subagent-engine.d.ts +0 -43
- package/dist/core/scouts/engines/codex-app-subagent-engine.js +0 -87
- package/dist/core/scouts/engines/codex-exec-parallel-engine.d.ts +0 -50
- package/dist/core/scouts/engines/codex-exec-parallel-engine.js +0 -106
- package/dist/core/scouts/engines/local-static-engine.d.ts +0 -2
- package/dist/core/scouts/engines/local-static-engine.js +0 -10
- package/dist/core/scouts/engines/scout-engine-base.d.ts +0 -41
- package/dist/core/scouts/engines/scout-engine-base.js +0 -143
- package/dist/core/scouts/engines/scout-engine-detect.d.ts +0 -9
- package/dist/core/scouts/engines/scout-engine-detect.js +0 -87
- package/dist/core/scouts/engines/scout-engine-policy.d.ts +0 -16
- package/dist/core/scouts/engines/scout-engine-policy.js +0 -72
- package/dist/core/scouts/engines/sequential-fallback-engine.d.ts +0 -2
- package/dist/core/scouts/engines/sequential-fallback-engine.js +0 -10
- package/dist/core/scouts/engines/tmux-lane-cleanup.d.ts +0 -10
- package/dist/core/scouts/engines/tmux-lane-cleanup.js +0 -17
- package/dist/core/scouts/engines/tmux-lane-engine.d.ts +0 -19
- package/dist/core/scouts/engines/tmux-lane-engine.js +0 -88
- package/dist/core/scouts/engines/tmux-lane-watcher.d.ts +0 -4
- package/dist/core/scouts/engines/tmux-lane-watcher.js +0 -27
- package/dist/core/scouts/scout-artifacts.d.ts +0 -15
- package/dist/core/scouts/scout-artifacts.js +0 -93
- package/dist/core/scouts/scout-consensus.d.ts +0 -43
- package/dist/core/scouts/scout-consensus.js +0 -180
- package/dist/core/scouts/scout-gate.d.ts +0 -25
- package/dist/core/scouts/scout-gate.js +0 -98
- package/dist/core/scouts/scout-output-fixtures.d.ts +0 -3
- package/dist/core/scouts/scout-output-fixtures.js +0 -27
- package/dist/core/scouts/scout-output-normalizer.d.ts +0 -2
- package/dist/core/scouts/scout-output-normalizer.js +0 -2
- package/dist/core/scouts/scout-output-parser.d.ts +0 -18
- package/dist/core/scouts/scout-output-parser.js +0 -344
- package/dist/core/scouts/scout-output-validator.d.ts +0 -3
- package/dist/core/scouts/scout-output-validator.js +0 -3
- package/dist/core/scouts/scout-plan.d.ts +0 -40
- package/dist/core/scouts/scout-plan.js +0 -140
- package/dist/core/scouts/scout-proof-evidence.d.ts +0 -41
- package/dist/core/scouts/scout-proof-evidence.js +0 -75
- package/dist/core/scouts/scout-readonly-guard.d.ts +0 -57
- package/dist/core/scouts/scout-readonly-guard.js +0 -198
- package/dist/core/scouts/scout-runner.d.ts +0 -358
- package/dist/core/scouts/scout-runner.js +0 -651
- package/dist/core/scouts/scout-schema.d.ts +0 -39
- package/dist/core/scouts/scout-schema.js +0 -94
- package/dist/core/scouts/scout-triwiki.d.ts +0 -14
- package/dist/core/scouts/scout-triwiki.js +0 -20
- package/dist/core/validators/scout-result-validator.d.ts +0 -3
- package/dist/core/validators/scout-result-validator.js +0 -8
- package/schemas/codex/scout-result.schema.json +0 -171
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ SKS does not try to clone every other harness. It focuses on one thing: making C
|
|
|
10
10
|
|
|
11
11
|
## Current Release
|
|
12
12
|
|
|
13
|
-
SKS **1.
|
|
13
|
+
SKS **1.16.0** closes the native multi-session agent kernel: `sks agent` and `sks --agent` create bounded agent rosters, non-overlapping leases, append-only ledgers, session lifecycle proof, recursion guards, dynamic per-agent effort routing, and native agent proof evidence. The old multi-agent command surface has been removed; native agents are the only release-supported route collaboration backend.
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
16
|
sks mad-sks plan --target-root <path> --json
|
|
@@ -18,7 +18,8 @@ sks mad-sks permissions --json
|
|
|
18
18
|
sks mad-sks proof --json
|
|
19
19
|
sks mad-sks rollback-apply --rollback-plan <path> --yes --json
|
|
20
20
|
sks features complete --json
|
|
21
|
-
sks
|
|
21
|
+
sks agent status latest --json
|
|
22
|
+
sks agent run "release review" --agents 8 --concurrency 4 --mock --json
|
|
22
23
|
npm run release:readiness
|
|
23
24
|
```
|
|
24
25
|
|
|
@@ -46,7 +47,7 @@ Detailed release history lives in [CHANGELOG.md](CHANGELOG.md). Current release
|
|
|
46
47
|
- Codex App: [docs/codex-app.md](docs/codex-app.md)
|
|
47
48
|
- Core dominance: [docs/core-dominance.md](docs/core-dominance.md)
|
|
48
49
|
- Performance budgets: [docs/performance-budgets.md](docs/performance-budgets.md)
|
|
49
|
-
-
|
|
50
|
+
- Native Agent Kernel: [docs/native-agent-kernel.md](docs/native-agent-kernel.md)
|
|
50
51
|
- Image Voxel TriWiki: [docs/image-voxel-ledger.md](docs/image-voxel-ledger.md)
|
|
51
52
|
- Image Wrongness: [docs/image-wrongness.md](docs/image-wrongness.md)
|
|
52
53
|
- Route finalization: [docs/route-finalization.md](docs/route-finalization.md)
|
|
@@ -54,7 +55,7 @@ Detailed release history lives in [CHANGELOG.md](CHANGELOG.md). Current release
|
|
|
54
55
|
- Managed paths: [docs/managed-paths.md](docs/managed-paths.md)
|
|
55
56
|
- Rollback: [docs/rollback.md](docs/rollback.md)
|
|
56
57
|
- Known gaps: [docs/known-gaps.md](docs/known-gaps.md)
|
|
57
|
-
-
|
|
58
|
+
- Native agent engines: [docs/native-agent-engines.md](docs/native-agent-engines.md)
|
|
58
59
|
- Hermetic E2E: [docs/testing-hermetic-e2e.md](docs/testing-hermetic-e2e.md)
|
|
59
60
|
- Pipeline architecture: [docs/pipeline-architecture.md](docs/pipeline-architecture.md)
|
|
60
61
|
- Rust accelerator: [docs/rust-accelerator.md](docs/rust-accelerator.md)
|
|
@@ -298,16 +299,35 @@ Before launching, SKS checks npm for a newer `sneakoscope`; answer `y` to update
|
|
|
298
299
|
```sh
|
|
299
300
|
sks team "implement this feature"
|
|
300
301
|
sks team "wide refactor" executor:5 reviewer:6
|
|
302
|
+
sks team "max native fan-out" --agents 12
|
|
301
303
|
sks team watch latest
|
|
302
|
-
sks team lane latest --agent
|
|
303
|
-
sks team message latest --from
|
|
304
|
+
sks team lane latest --agent native_agent_1 --follow
|
|
305
|
+
sks team message latest --from native_agent_1 --to executor_1 --message "handoff note"
|
|
304
306
|
sks team cleanup-tmux latest
|
|
305
307
|
sks team status latest
|
|
306
308
|
sks team dashboard latest
|
|
307
309
|
sks team log latest
|
|
308
310
|
```
|
|
309
311
|
|
|
310
|
-
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. Use `sks team watch`, `sks team lane`, `sks team message`, and `sks team cleanup-tmux` to inspect or close the live view.
|
|
312
|
+
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.
|
|
313
|
+
|
|
314
|
+
### Native Multi-Session Agents
|
|
315
|
+
|
|
316
|
+
```sh
|
|
317
|
+
sks agent run "map the risky files" --mock --json
|
|
318
|
+
sks agent run "wide release audit" --route '$Release-Review' --agents 10 --concurrency 5 --mock --json
|
|
319
|
+
sks agent run "real one-agent smoke" --backend codex-exec --real --agents 1 --concurrency 1 --json
|
|
320
|
+
```
|
|
321
|
+
|
|
322
|
+
Defaults are intentionally bounded: 5 agents, maximum 20, and a separate `--concurrency` cap so a 20-agent run batches without overlapping file ownership. 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-cleanup.json`, and `agents/agent-proof-evidence.json` under the mission.
|
|
323
|
+
|
|
324
|
+
Manual fan-out syntax:
|
|
325
|
+
|
|
326
|
+
- Direct agent route: `sks agent run "<task>" --agents 8 --concurrency 4 --mock --json`
|
|
327
|
+
- Team prompt role counts: `$Team <task> executor:8 reviewer:5`
|
|
328
|
+
- Team CLI flag: `sks team "<task>" --agents 8`
|
|
329
|
+
|
|
330
|
+
Effort is assigned per agent. Simple read-only/docs slices can run low, ordinary tooling and lease mapping use medium, safety/DB/schema/release lanes use high, and frontier/forensic research can escalate to xhigh. If a lease conflict, schema failure, proof blocker, DB risk, or release risk appears, the parent can escalate that lane while keeping unrelated lanes cheaper and faster.
|
|
311
331
|
|
|
312
332
|
### QA, Computer Use, Goal, Research, DB, Wiki, GX
|
|
313
333
|
|
|
@@ -339,7 +359,7 @@ sks skill-dream run --json
|
|
|
339
359
|
sks code-structure scan --json
|
|
340
360
|
```
|
|
341
361
|
|
|
342
|
-
`sks research` prepares a named genius-lens
|
|
362
|
+
`sks research` prepares a named genius-lens agent council, requires every agent to run at `xhigh`, records one literal `Eureka!` idea per agent, runs an evidence-bound debate, and creates `research-source-skill.md` as a route-local source collection skill before synthesis. Research is not a code-change route: real runs may write only their own mission artifacts under `.sneakoscope/missions/<id>/`, and source/package/docs/config mutations block the run with `research-code-mutation-blocker.json`. The required Research persona lenses are Einstein Agent, Feynman Agent, Turing Agent, von Neumann Agent, and Skeptic Agent; they are cognitive roles, not impersonations, and `agent-ledger.json` must include `display_name`, `persona`, `persona_boundary`, `reasoning_effort`, falsifiers, cheap probes, and `challenge_or_response`. Normal Research is not a fixed three-cycle flow: it repeats source gathering, Eureka ideas, debate, falsification, and synthesis pressure until every agent records final agreement, or pauses at the explicit max-cycle safety cap with an unpassed gate. `debate-ledger.json` must include `consensus_iterations`, `unanimous_consensus`, and per-agent agreements; `research-gate.json` cannot pass until unanimous consensus is true for all agents. Normal Research is intentionally allowed to take one or two hours when the problem needs it; `--mock` is only for selftests or dry harness checks, and a real run blocks with `research-blocker.json` instead of silently substituting mock output when the Codex execution path is unavailable. The source layer contract separates latest papers, official/government or leading-institution sources, standards/primary docs, current news such as BBC/CNN/GDELT-style sources, public discourse such as X/Reddit, developer/practitioner knowledge such as Stack Overflow/GitHub, traditional background sources, and counterevidence/fact-checking; `source-ledger.json` must record layer coverage, source quality, blockers, citations, and cross-layer triangulation. Context7 is optional for `$Research` and only becomes relevant when the research topic specifically depends on package, API, framework, or SDK documentation. Research runs require `research-report.md`, `research-paper.md`, `genius-opinion-summary.md`, `research-source-skill.md`, `source-ledger.json`, `agent-ledger.json`, `debate-ledger.json`, `novelty-ledger.json`, `falsification-ledger.json`, and `research-gate.json` so they stay source-backed, adversarially checked, falsifiable, paper-ready, and clear about every agent lens opinion. `research status` reports source entries, source-layer coverage, triangulation checks, counterevidence, xhigh agent count, Eureka moments, debate exchanges, consensus iterations, unanimous consensus, paper presence/sections, genius-opinion summary coverage, agent findings, and falsification cases alongside the gate.
|
|
343
363
|
|
|
344
364
|
`sks recallpulse` is the 0.8.0 report-only RecallPulse utility. It writes `recallpulse-decision.json`, `mission-status-ledger.json`, `route-proof-capsule.json`, `evidence-envelope.json`, `recallpulse-governance-report.json`, `recallpulse-task-goal-ledger.json`, and `recallpulse-eval-report.json` for the current mission. RecallPulse does not replace route gates, Honest Mode, DB safety, imagegen evidence, or TriWiki validation; it records cache hits, hydration needs, duplicate suppression, route-governance risks, and final-summary-ready durable status so later releases can promote only measured improvements. Checklist updates are sequential: every `Txxx` row is treated as a child `$Goal` checkpoint, and `sks recallpulse checklist ... --task T001 --apply` refuses out-of-order checks unless explicitly overridden.
|
|
345
365
|
|
|
@@ -392,7 +412,7 @@ $QA-LOOP dogfood localhost:3000 and fix safe issues
|
|
|
392
412
|
$PPT create an investor deck as HTML/PDF
|
|
393
413
|
$UX-Review this screenshot with gpt-image-2 callouts, then fix the issues
|
|
394
414
|
$Goal persist this migration workflow with native /goal continuation
|
|
395
|
-
$Research investigate this mechanism with source-backed
|
|
415
|
+
$Research investigate this mechanism with source-backed agent lenses
|
|
396
416
|
$Wiki refresh and validate the context pack
|
|
397
417
|
$DB inspect this migration for destructive risk
|
|
398
418
|
```
|
|
@@ -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.
|
|
7
|
+
Some("--version") => println!("sks-rs 1.16.0"),
|
|
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.
|
|
5
|
-
"source_digest": "
|
|
6
|
-
"source_file_count":
|
|
7
|
-
"built_at_source_time":
|
|
4
|
+
"package_version": "1.16.0",
|
|
5
|
+
"source_digest": "735d472d3801a0d3bfe4613c3be57bc7a3ff530b398d42871a98c63d77a424b4",
|
|
6
|
+
"source_file_count": 1542,
|
|
7
|
+
"built_at_source_time": 1779633764911
|
|
8
8
|
}
|
package/dist/bin/sks.js
CHANGED
package/dist/build-manifest.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": "sks.dist-build.v2",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"package_version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
|
+
"package_version": "1.16.0",
|
|
5
5
|
"typescript": true,
|
|
6
6
|
"mjs_runtime_files": 0,
|
|
7
|
-
"source_digest": "
|
|
8
|
-
"source_file_count":
|
|
7
|
+
"source_digest": "735d472d3801a0d3bfe4613c3be57bc7a3ff530b398d42871a98c63d77a424b4",
|
|
8
|
+
"source_file_count": 1542,
|
|
9
9
|
"dist_stamp_schema": "sks.dist-build-stamp.v1",
|
|
10
10
|
"files": [
|
|
11
11
|
"bin/sks.d.ts",
|
|
@@ -150,8 +150,6 @@
|
|
|
150
150
|
"commands/run.js",
|
|
151
151
|
"commands/rust.d.ts",
|
|
152
152
|
"commands/rust.js",
|
|
153
|
-
"commands/scouts.d.ts",
|
|
154
|
-
"commands/scouts.js",
|
|
155
153
|
"commands/selftest.d.ts",
|
|
156
154
|
"commands/selftest.js",
|
|
157
155
|
"commands/setup.d.ts",
|
|
@@ -180,6 +178,80 @@
|
|
|
180
178
|
"commands/versioning.js",
|
|
181
179
|
"commands/wiki.d.ts",
|
|
182
180
|
"commands/wiki.js",
|
|
181
|
+
"core/agents/agent-central-ledger.d.ts",
|
|
182
|
+
"core/agents/agent-central-ledger.js",
|
|
183
|
+
"core/agents/agent-cleanup.d.ts",
|
|
184
|
+
"core/agents/agent-cleanup.js",
|
|
185
|
+
"core/agents/agent-command-surface.d.ts",
|
|
186
|
+
"core/agents/agent-command-surface.js",
|
|
187
|
+
"core/agents/agent-conflict-graph.d.ts",
|
|
188
|
+
"core/agents/agent-conflict-graph.js",
|
|
189
|
+
"core/agents/agent-consensus.d.ts",
|
|
190
|
+
"core/agents/agent-consensus.js",
|
|
191
|
+
"core/agents/agent-effort-policy.d.ts",
|
|
192
|
+
"core/agents/agent-effort-policy.js",
|
|
193
|
+
"core/agents/agent-gate.d.ts",
|
|
194
|
+
"core/agents/agent-gate.js",
|
|
195
|
+
"core/agents/agent-heartbeat.d.ts",
|
|
196
|
+
"core/agents/agent-heartbeat.js",
|
|
197
|
+
"core/agents/agent-lease.d.ts",
|
|
198
|
+
"core/agents/agent-lease.js",
|
|
199
|
+
"core/agents/agent-ledger-schemas.d.ts",
|
|
200
|
+
"core/agents/agent-ledger-schemas.js",
|
|
201
|
+
"core/agents/agent-lifecycle.d.ts",
|
|
202
|
+
"core/agents/agent-lifecycle.js",
|
|
203
|
+
"core/agents/agent-message-bus.d.ts",
|
|
204
|
+
"core/agents/agent-message-bus.js",
|
|
205
|
+
"core/agents/agent-orchestrator.d.ts",
|
|
206
|
+
"core/agents/agent-orchestrator.js",
|
|
207
|
+
"core/agents/agent-output-validator.d.ts",
|
|
208
|
+
"core/agents/agent-output-validator.js",
|
|
209
|
+
"core/agents/agent-persona.d.ts",
|
|
210
|
+
"core/agents/agent-persona.js",
|
|
211
|
+
"core/agents/agent-plan.d.ts",
|
|
212
|
+
"core/agents/agent-plan.js",
|
|
213
|
+
"core/agents/agent-proof-evidence.d.ts",
|
|
214
|
+
"core/agents/agent-proof-evidence.js",
|
|
215
|
+
"core/agents/agent-recursion-guard.d.ts",
|
|
216
|
+
"core/agents/agent-recursion-guard.js",
|
|
217
|
+
"core/agents/agent-roster.d.ts",
|
|
218
|
+
"core/agents/agent-roster.js",
|
|
219
|
+
"core/agents/agent-runner-codex-exec.d.ts",
|
|
220
|
+
"core/agents/agent-runner-codex-exec.js",
|
|
221
|
+
"core/agents/agent-runner-fake.d.ts",
|
|
222
|
+
"core/agents/agent-runner-fake.js",
|
|
223
|
+
"core/agents/agent-runner-process.d.ts",
|
|
224
|
+
"core/agents/agent-runner-process.js",
|
|
225
|
+
"core/agents/agent-runner-tmux.d.ts",
|
|
226
|
+
"core/agents/agent-runner-tmux.js",
|
|
227
|
+
"core/agents/agent-schema.d.ts",
|
|
228
|
+
"core/agents/agent-schema.js",
|
|
229
|
+
"core/agents/agent-task-slicer.d.ts",
|
|
230
|
+
"core/agents/agent-task-slicer.js",
|
|
231
|
+
"core/agents/agent-trust-report.d.ts",
|
|
232
|
+
"core/agents/agent-trust-report.js",
|
|
233
|
+
"core/agents/agent-work-partition.d.ts",
|
|
234
|
+
"core/agents/agent-work-partition.js",
|
|
235
|
+
"core/agents/agent-worker-pipeline.d.ts",
|
|
236
|
+
"core/agents/agent-worker-pipeline.js",
|
|
237
|
+
"core/agents/agent-wrongness.d.ts",
|
|
238
|
+
"core/agents/agent-wrongness.js",
|
|
239
|
+
"core/agents/route-collaboration-ledger.d.ts",
|
|
240
|
+
"core/agents/route-collaboration-ledger.js",
|
|
241
|
+
"core/agents/work-partition/conflict-detector.d.ts",
|
|
242
|
+
"core/agents/work-partition/conflict-detector.js",
|
|
243
|
+
"core/agents/work-partition/dependency-graph.d.ts",
|
|
244
|
+
"core/agents/work-partition/dependency-graph.js",
|
|
245
|
+
"core/agents/work-partition/lease-planner.d.ts",
|
|
246
|
+
"core/agents/work-partition/lease-planner.js",
|
|
247
|
+
"core/agents/work-partition/no-overlap-proof.d.ts",
|
|
248
|
+
"core/agents/work-partition/no-overlap-proof.js",
|
|
249
|
+
"core/agents/work-partition/repo-inventory.d.ts",
|
|
250
|
+
"core/agents/work-partition/repo-inventory.js",
|
|
251
|
+
"core/agents/work-partition/semantic-domain-graph.d.ts",
|
|
252
|
+
"core/agents/work-partition/semantic-domain-graph.js",
|
|
253
|
+
"core/agents/work-partition/task-slicer.d.ts",
|
|
254
|
+
"core/agents/work-partition/task-slicer.js",
|
|
183
255
|
"core/artifact-schemas.d.ts",
|
|
184
256
|
"core/artifact-schemas.js",
|
|
185
257
|
"core/auto-review.d.ts",
|
|
@@ -248,6 +320,8 @@
|
|
|
248
320
|
"core/codex-lb/codex-lb-setup.js",
|
|
249
321
|
"core/codex-model-guard.d.ts",
|
|
250
322
|
"core/codex-model-guard.js",
|
|
323
|
+
"core/commands/agent-command.d.ts",
|
|
324
|
+
"core/commands/agent-command.js",
|
|
251
325
|
"core/commands/autoresearch-command.d.ts",
|
|
252
326
|
"core/commands/autoresearch-command.js",
|
|
253
327
|
"core/commands/basic-cli.d.ts",
|
|
@@ -306,8 +380,6 @@
|
|
|
306
380
|
"core/commands/run-command.js",
|
|
307
381
|
"core/commands/rust-command.d.ts",
|
|
308
382
|
"core/commands/rust-command.js",
|
|
309
|
-
"core/commands/scouts-command.d.ts",
|
|
310
|
-
"core/commands/scouts-command.js",
|
|
311
383
|
"core/commands/skill-dream-command.d.ts",
|
|
312
384
|
"core/commands/skill-dream-command.js",
|
|
313
385
|
"core/commands/status-command.d.ts",
|
|
@@ -527,6 +599,8 @@
|
|
|
527
599
|
"core/pipeline.js",
|
|
528
600
|
"core/pipeline/active-context.d.ts",
|
|
529
601
|
"core/pipeline/active-context.js",
|
|
602
|
+
"core/pipeline/agent-stage-policy.d.ts",
|
|
603
|
+
"core/pipeline/agent-stage-policy.js",
|
|
530
604
|
"core/pipeline/pipeline-plan-writer.d.ts",
|
|
531
605
|
"core/pipeline/pipeline-plan-writer.js",
|
|
532
606
|
"core/pipeline/plan-schema.d.ts",
|
|
@@ -555,8 +629,6 @@
|
|
|
555
629
|
"core/pipeline/route-prep-team.js",
|
|
556
630
|
"core/pipeline/route-prep.d.ts",
|
|
557
631
|
"core/pipeline/route-prep.js",
|
|
558
|
-
"core/pipeline/scout-stage-policy.d.ts",
|
|
559
|
-
"core/pipeline/scout-stage-policy.js",
|
|
560
632
|
"core/pipeline/stage-policy.d.ts",
|
|
561
633
|
"core/pipeline/stage-policy.js",
|
|
562
634
|
"core/pipeline/stop-gate-context7.d.ts",
|
|
@@ -641,52 +713,6 @@
|
|
|
641
713
|
"core/routes.js",
|
|
642
714
|
"core/rust-accelerator.d.ts",
|
|
643
715
|
"core/rust-accelerator.js",
|
|
644
|
-
"core/scouts/engines/codex-app-subagent-engine.d.ts",
|
|
645
|
-
"core/scouts/engines/codex-app-subagent-engine.js",
|
|
646
|
-
"core/scouts/engines/codex-exec-parallel-engine.d.ts",
|
|
647
|
-
"core/scouts/engines/codex-exec-parallel-engine.js",
|
|
648
|
-
"core/scouts/engines/local-static-engine.d.ts",
|
|
649
|
-
"core/scouts/engines/local-static-engine.js",
|
|
650
|
-
"core/scouts/engines/scout-engine-base.d.ts",
|
|
651
|
-
"core/scouts/engines/scout-engine-base.js",
|
|
652
|
-
"core/scouts/engines/scout-engine-detect.d.ts",
|
|
653
|
-
"core/scouts/engines/scout-engine-detect.js",
|
|
654
|
-
"core/scouts/engines/scout-engine-policy.d.ts",
|
|
655
|
-
"core/scouts/engines/scout-engine-policy.js",
|
|
656
|
-
"core/scouts/engines/sequential-fallback-engine.d.ts",
|
|
657
|
-
"core/scouts/engines/sequential-fallback-engine.js",
|
|
658
|
-
"core/scouts/engines/tmux-lane-cleanup.d.ts",
|
|
659
|
-
"core/scouts/engines/tmux-lane-cleanup.js",
|
|
660
|
-
"core/scouts/engines/tmux-lane-engine.d.ts",
|
|
661
|
-
"core/scouts/engines/tmux-lane-engine.js",
|
|
662
|
-
"core/scouts/engines/tmux-lane-watcher.d.ts",
|
|
663
|
-
"core/scouts/engines/tmux-lane-watcher.js",
|
|
664
|
-
"core/scouts/scout-artifacts.d.ts",
|
|
665
|
-
"core/scouts/scout-artifacts.js",
|
|
666
|
-
"core/scouts/scout-consensus.d.ts",
|
|
667
|
-
"core/scouts/scout-consensus.js",
|
|
668
|
-
"core/scouts/scout-gate.d.ts",
|
|
669
|
-
"core/scouts/scout-gate.js",
|
|
670
|
-
"core/scouts/scout-output-fixtures.d.ts",
|
|
671
|
-
"core/scouts/scout-output-fixtures.js",
|
|
672
|
-
"core/scouts/scout-output-normalizer.d.ts",
|
|
673
|
-
"core/scouts/scout-output-normalizer.js",
|
|
674
|
-
"core/scouts/scout-output-parser.d.ts",
|
|
675
|
-
"core/scouts/scout-output-parser.js",
|
|
676
|
-
"core/scouts/scout-output-validator.d.ts",
|
|
677
|
-
"core/scouts/scout-output-validator.js",
|
|
678
|
-
"core/scouts/scout-plan.d.ts",
|
|
679
|
-
"core/scouts/scout-plan.js",
|
|
680
|
-
"core/scouts/scout-proof-evidence.d.ts",
|
|
681
|
-
"core/scouts/scout-proof-evidence.js",
|
|
682
|
-
"core/scouts/scout-readonly-guard.d.ts",
|
|
683
|
-
"core/scouts/scout-readonly-guard.js",
|
|
684
|
-
"core/scouts/scout-runner.d.ts",
|
|
685
|
-
"core/scouts/scout-runner.js",
|
|
686
|
-
"core/scouts/scout-schema.d.ts",
|
|
687
|
-
"core/scouts/scout-schema.js",
|
|
688
|
-
"core/scouts/scout-triwiki.d.ts",
|
|
689
|
-
"core/scouts/scout-triwiki.js",
|
|
690
716
|
"core/secret-redaction.d.ts",
|
|
691
717
|
"core/secret-redaction.js",
|
|
692
718
|
"core/skill-forge.d.ts",
|
|
@@ -749,8 +775,6 @@
|
|
|
749
775
|
"core/validators/image-voxel-validator.js",
|
|
750
776
|
"core/validators/route-contract-validator.d.ts",
|
|
751
777
|
"core/validators/route-contract-validator.js",
|
|
752
|
-
"core/validators/scout-result-validator.d.ts",
|
|
753
|
-
"core/validators/scout-result-validator.js",
|
|
754
778
|
"core/validators/trust-report-validator.d.ts",
|
|
755
779
|
"core/validators/trust-report-validator.js",
|
|
756
780
|
"core/validators/validation-error.d.ts",
|
|
@@ -60,6 +60,7 @@ export declare const COMMANDS: {
|
|
|
60
60
|
'commit-and-push': CommandEntry;
|
|
61
61
|
dfix: CommandEntry;
|
|
62
62
|
team: CommandEntry;
|
|
63
|
+
agent: CommandEntry;
|
|
63
64
|
'qa-loop': CommandEntry;
|
|
64
65
|
research: CommandEntry;
|
|
65
66
|
autoresearch: CommandEntry;
|
|
@@ -73,8 +74,6 @@ export declare const COMMANDS: {
|
|
|
73
74
|
context7: CommandEntry;
|
|
74
75
|
recallpulse: CommandEntry;
|
|
75
76
|
pipeline: CommandEntry;
|
|
76
|
-
scouts: CommandEntry;
|
|
77
|
-
scout: CommandEntry;
|
|
78
77
|
guard: CommandEntry;
|
|
79
78
|
conflicts: CommandEntry;
|
|
80
79
|
versioning: CommandEntry;
|
|
@@ -146,6 +145,7 @@ export declare const TYPED_COMMANDS: {
|
|
|
146
145
|
'commit-and-push': CommandEntry;
|
|
147
146
|
dfix: CommandEntry;
|
|
148
147
|
team: CommandEntry;
|
|
148
|
+
agent: CommandEntry;
|
|
149
149
|
'qa-loop': CommandEntry;
|
|
150
150
|
research: CommandEntry;
|
|
151
151
|
autoresearch: CommandEntry;
|
|
@@ -159,8 +159,6 @@ export declare const TYPED_COMMANDS: {
|
|
|
159
159
|
context7: CommandEntry;
|
|
160
160
|
recallpulse: CommandEntry;
|
|
161
161
|
pipeline: CommandEntry;
|
|
162
|
-
scouts: CommandEntry;
|
|
163
|
-
scout: CommandEntry;
|
|
164
162
|
guard: CommandEntry;
|
|
165
163
|
conflicts: CommandEntry;
|
|
166
164
|
versioning: CommandEntry;
|
|
@@ -200,6 +198,7 @@ export declare const COMMAND_ALIASES: {
|
|
|
200
198
|
readonly '--mad': "mad";
|
|
201
199
|
readonly '--MAD': "mad";
|
|
202
200
|
readonly '--mad-sks': "mad-sks";
|
|
201
|
+
readonly '--agent': "agent";
|
|
203
202
|
};
|
|
204
203
|
export type CommandName = Extract<keyof typeof COMMANDS, string>;
|
|
205
204
|
export declare function commandNames(): CommandName[];
|
|
@@ -113,6 +113,7 @@ export const COMMANDS = {
|
|
|
113
113
|
'commit-and-push': entry('stable', 'Create a simple git commit and push', 'dist/commands/commit-and-push.js', directCommand(() => import('../commands/commit-and-push.js'), 'dist/commands/commit-and-push.js')),
|
|
114
114
|
dfix: entry('stable', 'Run DFix diagnose/plan/patch/verify loop', 'dist/core/commands/dfix-command.js', commandArgsCommand(() => import('../core/commands/dfix-command.js'), 'dfixCommand', 'dist/core/commands/dfix-command.js')),
|
|
115
115
|
team: entry('beta', 'Create and observe Team missions', 'dist/core/commands/team-command.js', argsCommand(() => import('../core/commands/team-command.js'), 'team', 'dist/core/commands/team-command.js')),
|
|
116
|
+
agent: entry('beta', 'Run native multi-session agent missions', 'dist/core/commands/agent-command.js', argsCommand(() => import('../core/commands/agent-command.js'), 'agentCommand', 'dist/core/commands/agent-command.js')),
|
|
116
117
|
'qa-loop': entry('beta', 'Run QA loop missions', 'dist/core/commands/qa-loop-command.js', subcommand(() => import('../core/commands/qa-loop-command.js'), 'qaLoopCommand', 'dist/core/commands/qa-loop-command.js')),
|
|
117
118
|
research: entry('labs', 'Run research missions', 'dist/core/commands/research-command.js', subcommand(() => import('../core/commands/research-command.js'), 'researchCommand', 'dist/core/commands/research-command.js')),
|
|
118
119
|
autoresearch: entry('labs', 'Alias for research/autoresearch route', 'dist/core/commands/autoresearch-command.js', subcommand(() => import('../core/commands/autoresearch-command.js'), 'autoresearchCommand', 'dist/core/commands/autoresearch-command.js', 'status')),
|
|
@@ -126,8 +127,6 @@ export const COMMANDS = {
|
|
|
126
127
|
context7: entry('beta', 'Context7 checks and docs', 'dist/cli/context7-command.js', subcommand(() => import('./context7-command.js'), 'context7Command', 'dist/cli/context7-command.js', 'check')),
|
|
127
128
|
recallpulse: entry('labs', 'RecallPulse evidence route', 'dist/commands/recallpulse.js', directCommand(() => import('../commands/recallpulse.js'), 'dist/commands/recallpulse.js')),
|
|
128
129
|
pipeline: entry('beta', 'Inspect pipeline missions', 'dist/commands/pipeline.js', directCommand(() => import('../commands/pipeline.js'), 'dist/commands/pipeline.js')),
|
|
129
|
-
scouts: entry('beta', 'Run the default read-only 5-scout intake phase', 'dist/commands/scouts.js', directCommand(() => import('../commands/scouts.js'), 'dist/commands/scouts.js')),
|
|
130
|
-
scout: entry('beta', 'Alias for scouts', 'dist/commands/scouts.js', directCommand(() => import('../commands/scouts.js'), 'dist/commands/scouts.js')),
|
|
131
130
|
guard: entry('beta', 'Check harness guard', 'dist/commands/guard.js', directCommand(() => import('../commands/guard.js'), 'dist/commands/guard.js')),
|
|
132
131
|
conflicts: entry('beta', 'Check harness conflicts', 'dist/commands/conflicts.js', directCommand(() => import('../commands/conflicts.js'), 'dist/commands/conflicts.js')),
|
|
133
132
|
versioning: entry('stable', 'Manage release version metadata', 'dist/commands/versioning.js', directCommand(() => import('../commands/versioning.js'), 'dist/commands/versioning.js')),
|
|
@@ -167,7 +166,8 @@ export const COMMAND_ALIASES = {
|
|
|
167
166
|
'-v': 'version',
|
|
168
167
|
'--mad': 'mad',
|
|
169
168
|
'--MAD': 'mad',
|
|
170
|
-
'--mad-sks': 'mad-sks'
|
|
169
|
+
'--mad-sks': 'mad-sks',
|
|
170
|
+
'--agent': 'agent'
|
|
171
171
|
};
|
|
172
172
|
export function commandNames() {
|
|
173
173
|
return Object.keys(COMMANDS).sort();
|
package/dist/commands/bench.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare function run(_command: any, args?: any): Promise<void | {
|
|
|
14
14
|
'sks trust validate bench-fixture --json': number;
|
|
15
15
|
'sks wiki image-validate --json': number;
|
|
16
16
|
'sks features check --json': number;
|
|
17
|
-
'sks
|
|
17
|
+
'sks agent status --json': number;
|
|
18
18
|
};
|
|
19
19
|
'source-ci': {
|
|
20
20
|
'sks --version': number;
|
|
@@ -25,7 +25,7 @@ export declare function run(_command: any, args?: any): Promise<void | {
|
|
|
25
25
|
'sks trust validate bench-fixture --json': number;
|
|
26
26
|
'sks wiki image-validate --json': number;
|
|
27
27
|
'sks features check --json': number;
|
|
28
|
-
'sks
|
|
28
|
+
'sks agent status --json': number;
|
|
29
29
|
};
|
|
30
30
|
'packed-local': {
|
|
31
31
|
'sks --version': number;
|
|
@@ -36,7 +36,7 @@ export declare function run(_command: any, args?: any): Promise<void | {
|
|
|
36
36
|
'sks trust validate bench-fixture --json': number;
|
|
37
37
|
'sks wiki image-validate --json': number;
|
|
38
38
|
'sks features check --json': number;
|
|
39
|
-
'sks
|
|
39
|
+
'sks agent status --json': number;
|
|
40
40
|
};
|
|
41
41
|
'global-shim': {
|
|
42
42
|
'sks --version': number;
|
|
@@ -47,7 +47,7 @@ export declare function run(_command: any, args?: any): Promise<void | {
|
|
|
47
47
|
'sks trust validate bench-fixture --json': number;
|
|
48
48
|
'sks wiki image-validate --json': number;
|
|
49
49
|
'sks features check --json': number;
|
|
50
|
-
'sks
|
|
50
|
+
'sks agent status --json': number;
|
|
51
51
|
};
|
|
52
52
|
'npx-one-shot': {
|
|
53
53
|
'sks --version': number;
|
|
@@ -58,7 +58,7 @@ export declare function run(_command: any, args?: any): Promise<void | {
|
|
|
58
58
|
'sks trust validate bench-fixture --json': number;
|
|
59
59
|
'sks wiki image-validate --json': number;
|
|
60
60
|
'sks features check --json': number;
|
|
61
|
-
'sks
|
|
61
|
+
'sks agent status --json': number;
|
|
62
62
|
};
|
|
63
63
|
}>;
|
|
64
64
|
ux_review_staged_latency_budgets: Readonly<{
|
|
@@ -71,7 +71,7 @@ export declare function run(_command: any, args?: any): Promise<void | {
|
|
|
71
71
|
codex_compat_probe_batch: 5000;
|
|
72
72
|
computer_use_status_probe_batch: 5000;
|
|
73
73
|
codex_lb_status_probe_batch: 5000;
|
|
74
|
-
|
|
74
|
+
agent_status_probe_batch: 5000;
|
|
75
75
|
}>;
|
|
76
76
|
ok: boolean;
|
|
77
77
|
commands: any[];
|
|
@@ -94,7 +94,7 @@ export declare function run(_command: any, args?: any): Promise<void | {
|
|
|
94
94
|
'sks trust validate bench-fixture --json': number;
|
|
95
95
|
'sks wiki image-validate --json': number;
|
|
96
96
|
'sks features check --json': number;
|
|
97
|
-
'sks
|
|
97
|
+
'sks agent status --json': number;
|
|
98
98
|
};
|
|
99
99
|
'source-ci': {
|
|
100
100
|
'sks --version': number;
|
|
@@ -105,7 +105,7 @@ export declare function run(_command: any, args?: any): Promise<void | {
|
|
|
105
105
|
'sks trust validate bench-fixture --json': number;
|
|
106
106
|
'sks wiki image-validate --json': number;
|
|
107
107
|
'sks features check --json': number;
|
|
108
|
-
'sks
|
|
108
|
+
'sks agent status --json': number;
|
|
109
109
|
};
|
|
110
110
|
'packed-local': {
|
|
111
111
|
'sks --version': number;
|
|
@@ -116,7 +116,7 @@ export declare function run(_command: any, args?: any): Promise<void | {
|
|
|
116
116
|
'sks trust validate bench-fixture --json': number;
|
|
117
117
|
'sks wiki image-validate --json': number;
|
|
118
118
|
'sks features check --json': number;
|
|
119
|
-
'sks
|
|
119
|
+
'sks agent status --json': number;
|
|
120
120
|
};
|
|
121
121
|
'global-shim': {
|
|
122
122
|
'sks --version': number;
|
|
@@ -127,7 +127,7 @@ export declare function run(_command: any, args?: any): Promise<void | {
|
|
|
127
127
|
'sks trust validate bench-fixture --json': number;
|
|
128
128
|
'sks wiki image-validate --json': number;
|
|
129
129
|
'sks features check --json': number;
|
|
130
|
-
'sks
|
|
130
|
+
'sks agent status --json': number;
|
|
131
131
|
};
|
|
132
132
|
'npx-one-shot': {
|
|
133
133
|
'sks --version': number;
|
|
@@ -138,7 +138,7 @@ export declare function run(_command: any, args?: any): Promise<void | {
|
|
|
138
138
|
'sks trust validate bench-fixture --json': number;
|
|
139
139
|
'sks wiki image-validate --json': number;
|
|
140
140
|
'sks features check --json': number;
|
|
141
|
-
'sks
|
|
141
|
+
'sks agent status --json': number;
|
|
142
142
|
};
|
|
143
143
|
}>;
|
|
144
144
|
ux_review_staged_latency_budgets: Readonly<{
|
|
@@ -151,7 +151,7 @@ export declare function run(_command: any, args?: any): Promise<void | {
|
|
|
151
151
|
codex_compat_probe_batch: 5000;
|
|
152
152
|
computer_use_status_probe_batch: 5000;
|
|
153
153
|
codex_lb_status_probe_batch: 5000;
|
|
154
|
-
|
|
154
|
+
agent_status_probe_batch: 5000;
|
|
155
155
|
}>;
|
|
156
156
|
ok: boolean;
|
|
157
157
|
commands: any[];
|