sneakoscope 1.18.7 → 1.18.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -2
- 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 +23 -9
- package/dist/commands/image-ux-review.d.ts +207 -0
- package/dist/commands/ppt.d.ts +207 -0
- package/dist/core/agents/agent-codex-cockpit.d.ts +7 -0
- package/dist/core/agents/agent-codex-cockpit.js +33 -0
- package/dist/core/agents/agent-command-surface.js +1 -1
- package/dist/core/agents/agent-merge-coordinator.d.ts +71 -1
- package/dist/core/agents/agent-merge-coordinator.js +130 -14
- package/dist/core/agents/agent-orchestrator.d.ts +207 -0
- package/dist/core/agents/agent-orchestrator.js +256 -4
- package/dist/core/agents/agent-output-validator.d.ts +143 -0
- package/dist/core/agents/agent-output-validator.js +58 -0
- package/dist/core/agents/agent-patch-apply-worker.d.ts +49 -0
- package/dist/core/agents/agent-patch-apply-worker.js +241 -56
- package/dist/core/agents/agent-patch-proof.d.ts +21 -1
- package/dist/core/agents/agent-patch-proof.js +71 -2
- package/dist/core/agents/agent-patch-queue-store.d.ts +23 -0
- package/dist/core/agents/agent-patch-queue-store.js +66 -0
- package/dist/core/agents/agent-patch-queue.d.ts +58 -2
- package/dist/core/agents/agent-patch-queue.js +59 -15
- package/dist/core/agents/agent-patch-schema.d.ts +28 -2
- package/dist/core/agents/agent-patch-schema.js +59 -3
- package/dist/core/agents/agent-proof-evidence.d.ts +28 -0
- package/dist/core/agents/agent-proof-evidence.js +89 -1
- package/dist/core/agents/agent-runner-codex-exec.d.ts +4 -0
- package/dist/core/agents/agent-runner-fake.d.ts +1 -0
- package/dist/core/agents/agent-runner-fake.js +42 -0
- package/dist/core/agents/agent-runner-process.js +3 -0
- package/dist/core/agents/agent-runner-tmux.js +3 -0
- package/dist/core/agents/agent-schema.d.ts +22 -0
- package/dist/core/agents/agent-task-graph.d.ts +18 -0
- package/dist/core/agents/agent-task-graph.js +32 -8
- package/dist/core/agents/agent-work-partition.d.ts +34 -1
- package/dist/core/agents/agent-work-partition.js +4 -2
- package/dist/core/agents/agent-worker-pipeline.d.ts +7 -0
- package/dist/core/agents/agent-worker-pipeline.js +46 -1
- package/dist/core/agents/route-collaboration-ledger.d.ts +207 -0
- package/dist/core/agents/work-partition/lease-planner.d.ts +21 -1
- package/dist/core/agents/work-partition/lease-planner.js +26 -3
- package/dist/core/auto-review.d.ts +2 -0
- package/dist/core/auto-review.js +71 -24
- package/dist/core/codex/appshots-detector.d.ts +55 -0
- package/dist/core/codex/appshots-detector.js +79 -0
- package/dist/core/codex/appshots-operator-policy.d.ts +23 -0
- package/dist/core/codex/appshots-operator-policy.js +24 -0
- package/dist/core/commands/agent-command.js +26 -2
- package/dist/core/commands/gc-command.js +2 -1
- package/dist/core/commands/image-ux-review-command.d.ts +207 -0
- package/dist/core/commands/ppt-command.d.ts +207 -0
- package/dist/core/fsx.d.ts +1 -1
- package/dist/core/fsx.js +1 -1
- package/dist/core/mcp/mcp-0-134-policy.d.ts +32 -0
- package/dist/core/mcp/mcp-0-134-policy.js +63 -0
- package/dist/core/ppt.js +1 -1
- package/dist/core/proof/route-adapter.d.ts +13 -0
- package/dist/core/proof/route-adapter.js +25 -1
- package/dist/core/proof/route-finalizer.d.ts +13 -0
- package/dist/core/proof/runtime-truth-matrix.d.ts +1 -1
- package/dist/core/proof/runtime-truth-matrix.js +27 -1
- package/dist/core/proof/selftest-proof-fixtures.d.ts +13 -0
- package/dist/core/retention.d.ts +18 -1
- package/dist/core/retention.js +306 -15
- package/dist/core/source-intelligence/appshots-evidence.d.ts +64 -0
- package/dist/core/source-intelligence/appshots-evidence.js +125 -0
- package/dist/core/source-intelligence/source-intelligence-proof.d.ts +4 -0
- package/dist/core/source-intelligence/source-intelligence-proof.js +9 -1
- package/dist/core/source-intelligence/source-intelligence-runner.d.ts +32 -0
- package/dist/core/source-intelligence/source-intelligence-runner.js +17 -3
- package/dist/core/strategy/adhd-orchestrating-gate.d.ts +179 -0
- package/dist/core/strategy/adhd-orchestrating-gate.js +234 -0
- package/dist/core/strategy/strategy-compiler.d.ts +68 -0
- package/dist/core/strategy/strategy-compiler.js +149 -0
- package/dist/core/strategy/strategy-gate.d.ts +26 -0
- package/dist/core/strategy/strategy-gate.js +38 -0
- package/dist/core/tmux-ui.d.ts +1 -1
- package/dist/core/tmux-ui.js +36 -4
- package/dist/core/trust-kernel/trust-status.d.ts +1 -1
- package/dist/core/verification/verification-proof.js +1 -1
- package/dist/core/verification/verification-result.d.ts +6 -0
- package/dist/core/version.d.ts +1 -1
- package/dist/core/version.js +1 -1
- package/dist/scripts/release-parallel-check.js +79 -1
- package/package.json +32 -4
- package/schemas/codex/agent-result.schema.json +64 -0
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.9** closes the Patch Swarm runtime surface: Appshots evidence now records Codex thread attachment provenance without claiming CLI-created screenshots, MCP `readOnlyHint` gates require runtime overlap/serialization proof, Codex 0.134 runner truth covers profile, proxy, history, and process reports, and release gates expose these checks alongside the patch queue/apply/proof work.
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
22
|
sks mad-sks plan --target-root <path> --json
|
|
@@ -31,6 +31,7 @@ npm run agent:background-terminals
|
|
|
31
31
|
npm run agent:tmux-lane-no-flicker
|
|
32
32
|
npm run agent:cleanup-executor
|
|
33
33
|
npm run agent:cleanup-executor-v2
|
|
34
|
+
npm run retention:cleanup-safety
|
|
34
35
|
npm run agent:intelligent-work-graph
|
|
35
36
|
npm run agent:ast-aware-work-graph
|
|
36
37
|
npm run proof:fake-vs-real-policy
|
|
@@ -39,7 +40,14 @@ npm run release:runtime-truth-matrix
|
|
|
39
40
|
npm run codex:0.134-official-compat
|
|
40
41
|
npm run codex:profile-primary
|
|
41
42
|
npm run codex:managed-proxy-env
|
|
43
|
+
npm run strategy:adhd-orchestrating-gate
|
|
44
|
+
npm run strategy:parallel-modification-plan
|
|
45
|
+
npm run appshots:evidence
|
|
46
|
+
npm run appshots:source-intelligence
|
|
47
|
+
npm run appshots:thread-attachment-discovery
|
|
42
48
|
npm run mcp:0.134-modernization
|
|
49
|
+
npm run mcp:readonly-runtime-scheduler
|
|
50
|
+
npm run codex:0.134-runner-truth
|
|
43
51
|
npm run source-intelligence:codex-history-search
|
|
44
52
|
npm run agent:parallel-write-kernel
|
|
45
53
|
npm run release:gate-existence-audit
|
|
@@ -52,6 +60,21 @@ npm run release:readiness
|
|
|
52
60
|
|
|
53
61
|
Detailed release history lives in [CHANGELOG.md](CHANGELOG.md); every version-facing change should be recorded there before release. Current release gate status lives in [docs/release-readiness.md](docs/release-readiness.md).
|
|
54
62
|
|
|
63
|
+
## Retention And Cleanup
|
|
64
|
+
|
|
65
|
+
SKS keeps durable learning context separate from disposable route work files. Durable context includes `.sneakoscope/memory/**`, shared TriWiki records, `.sneakoscope/wiki/context-pack.json`, wrongness memory, image voxels, avoidance rules, route Completion Proof, trust reports, evidence indexes, reflections, and agent proof summaries. These files are treated as the long-term learning and audit chain.
|
|
66
|
+
|
|
67
|
+
Temporary route files are cleaned after a route is closed enough to preserve its proof chain and by `sks gc`: `.sneakoscope/tmp/*`, closed mission `team-inbox/`, `bus/`, `cycles/`, `arenas/`, agent lane/worktree scratch, mission `*.stdout.log` / `*.stderr.log`, and release-parallel raw logs after their inline summaries are written into the JSON/MD report. Post-route cleanup is bounded to the completed route so large mission stores do not stall normal commands; full old/excess mission sweeping remains an explicit `sks gc` operation. Active missions, blocked-route diagnostics, and terminal transcripts stay in place so live debugging and the current route are not disrupted. Old/excess missions that contain proof or learning artifacts are compacted rather than deleted wholesale.
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
sks gc --dry-run --json
|
|
71
|
+
sks gc --json
|
|
72
|
+
sks stats --json
|
|
73
|
+
npm run retention:cleanup-safety
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
The cleanup contract is policy-backed in `.sneakoscope/policy.json`, but the default posture is now immediate cleanup for short-lived temp files while preserving long-term SKS learning and proof artifacts.
|
|
77
|
+
|
|
55
78
|
## Documentation
|
|
56
79
|
|
|
57
80
|
- Completion Proof: [docs/completion-proof.md](docs/completion-proof.md)
|
|
@@ -87,7 +110,14 @@ Detailed release history lives in [CHANGELOG.md](CHANGELOG.md); every version-fa
|
|
|
87
110
|
- Fake vs real proof policy: [docs/fake-vs-real-proof-policy.md](docs/fake-vs-real-proof-policy.md)
|
|
88
111
|
- Runtime truth matrix: [docs/runtime-truth-matrix.md](docs/runtime-truth-matrix.md)
|
|
89
112
|
- Warp MAD tmux lanes: [docs/warp-mad-tmux-lanes.md](docs/warp-mad-tmux-lanes.md)
|
|
90
|
-
-
|
|
113
|
+
- ADHD orchestration gate: [docs/adhd-orchestrating-gate.md](docs/adhd-orchestrating-gate.md)
|
|
114
|
+
- Strategy-first parallel write: [docs/strategy-first-parallel-write.md](docs/strategy-first-parallel-write.md)
|
|
115
|
+
- Appshots pipeline: [docs/appshots-pipeline.md](docs/appshots-pipeline.md)
|
|
116
|
+
- Appshots thread attachments: [docs/appshots-thread-attachments.md](docs/appshots-thread-attachments.md)
|
|
117
|
+
- MCP readOnly scheduler: [docs/mcp-readonly-scheduler.md](docs/mcp-readonly-scheduler.md)
|
|
118
|
+
- Parallel write agents: [docs/parallel-write-agents.md](docs/parallel-write-agents.md)
|
|
119
|
+
- Agent patch queue: [docs/agent-patch-queue.md](docs/agent-patch-queue.md)
|
|
120
|
+
- Migration 1.18.7 to 1.18.8: [docs/migration-1.18.7-to-1.18.8.md](docs/migration-1.18.7-to-1.18.8.md)
|
|
91
121
|
- Codex official Goal mode: [docs/codex-official-goal-mode.md](docs/codex-official-goal-mode.md)
|
|
92
122
|
- Release parallel full coverage: [docs/release-parallel-full-coverage.md](docs/release-parallel-full-coverage.md)
|
|
93
123
|
- Priority closure P0-P4: [docs/priority-closure-p0-p4.md](docs/priority-closure-p0-p4.md)
|
|
@@ -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.9"),
|
|
8
8
|
Some("compact-info") => {
|
|
9
9
|
let mut input = String::new();
|
|
10
10
|
let _ = io::stdin().read_to_string(&mut input);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": "sks.dist-build-stamp.v1",
|
|
3
3
|
"package_name": "sneakoscope",
|
|
4
|
-
"package_version": "1.18.
|
|
5
|
-
"source_digest": "
|
|
6
|
-
"source_file_count":
|
|
7
|
-
"built_at_source_time":
|
|
4
|
+
"package_version": "1.18.9",
|
|
5
|
+
"source_digest": "6eee8ecc34d3c7ce9e86cabc59e92764287b996a5387f26f12ec3253fee6869e",
|
|
6
|
+
"source_file_count": 1537,
|
|
7
|
+
"built_at_source_time": 1779893098646
|
|
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.9",
|
|
4
|
+
"package_version": "1.18.9",
|
|
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": 910,
|
|
8
|
+
"compiled_js_count": 455,
|
|
9
|
+
"compiled_dts_count": 455,
|
|
10
|
+
"source_digest": "6eee8ecc34d3c7ce9e86cabc59e92764287b996a5387f26f12ec3253fee6869e",
|
|
11
|
+
"source_file_count": 1537,
|
|
12
|
+
"source_files_hash": "3475322f249a9a6a5286d536a5e69dfe6f2b06ad2d64a1b0bd9c408b19257f10",
|
|
13
|
+
"source_list_hash": "3475322f249a9a6a5286d536a5e69dfe6f2b06ad2d64a1b0bd9c408b19257f10",
|
|
14
14
|
"src_mjs_runtime_files": 0,
|
|
15
15
|
"dist_stamp_schema": "sks.dist-build-stamp.v1",
|
|
16
16
|
"files": [
|
|
@@ -226,6 +226,8 @@
|
|
|
226
226
|
"core/agents/agent-patch-apply-worker.js",
|
|
227
227
|
"core/agents/agent-patch-proof.d.ts",
|
|
228
228
|
"core/agents/agent-patch-proof.js",
|
|
229
|
+
"core/agents/agent-patch-queue-store.d.ts",
|
|
230
|
+
"core/agents/agent-patch-queue-store.js",
|
|
229
231
|
"core/agents/agent-patch-queue.d.ts",
|
|
230
232
|
"core/agents/agent-patch-queue.js",
|
|
231
233
|
"core/agents/agent-patch-schema.d.ts",
|
|
@@ -368,6 +370,10 @@
|
|
|
368
370
|
"core/codex-lb/codex-lb-setup.js",
|
|
369
371
|
"core/codex-model-guard.d.ts",
|
|
370
372
|
"core/codex-model-guard.js",
|
|
373
|
+
"core/codex/appshots-detector.d.ts",
|
|
374
|
+
"core/codex/appshots-detector.js",
|
|
375
|
+
"core/codex/appshots-operator-policy.d.ts",
|
|
376
|
+
"core/codex/appshots-operator-policy.js",
|
|
371
377
|
"core/codex/codex-0-134-compat.d.ts",
|
|
372
378
|
"core/codex/codex-0-134-compat.js",
|
|
373
379
|
"core/codex/codex-web-search-adapter.d.ts",
|
|
@@ -789,6 +795,8 @@
|
|
|
789
795
|
"core/session/project-namespace.js",
|
|
790
796
|
"core/skill-forge.d.ts",
|
|
791
797
|
"core/skill-forge.js",
|
|
798
|
+
"core/source-intelligence/appshots-evidence.d.ts",
|
|
799
|
+
"core/source-intelligence/appshots-evidence.js",
|
|
792
800
|
"core/source-intelligence/codex-history-search.d.ts",
|
|
793
801
|
"core/source-intelligence/codex-history-search.js",
|
|
794
802
|
"core/source-intelligence/source-intelligence-policy.d.ts",
|
|
@@ -797,6 +805,12 @@
|
|
|
797
805
|
"core/source-intelligence/source-intelligence-proof.js",
|
|
798
806
|
"core/source-intelligence/source-intelligence-runner.d.ts",
|
|
799
807
|
"core/source-intelligence/source-intelligence-runner.js",
|
|
808
|
+
"core/strategy/adhd-orchestrating-gate.d.ts",
|
|
809
|
+
"core/strategy/adhd-orchestrating-gate.js",
|
|
810
|
+
"core/strategy/strategy-compiler.d.ts",
|
|
811
|
+
"core/strategy/strategy-compiler.js",
|
|
812
|
+
"core/strategy/strategy-gate.d.ts",
|
|
813
|
+
"core/strategy/strategy-gate.js",
|
|
800
814
|
"core/structured-output-adapter.d.ts",
|
|
801
815
|
"core/structured-output-adapter.js",
|
|
802
816
|
"core/team-dag.d.ts",
|
|
@@ -384,6 +384,135 @@ export declare function run(command: any, args?: any): Promise<void | {
|
|
|
384
384
|
};
|
|
385
385
|
};
|
|
386
386
|
agent_run: {
|
|
387
|
+
schema: string;
|
|
388
|
+
ok: boolean;
|
|
389
|
+
status: string;
|
|
390
|
+
mission_id: any;
|
|
391
|
+
route: string;
|
|
392
|
+
route_command: string;
|
|
393
|
+
route_blackbox_kind: string;
|
|
394
|
+
backend: "tmux" | "fake" | "process" | "codex-exec";
|
|
395
|
+
ledger_root: string;
|
|
396
|
+
roster: {
|
|
397
|
+
schema: string;
|
|
398
|
+
default_agents: any;
|
|
399
|
+
max_agents: number;
|
|
400
|
+
agent_count: any;
|
|
401
|
+
concurrency: number;
|
|
402
|
+
batch_count: number;
|
|
403
|
+
personas: any;
|
|
404
|
+
persona_uniqueness: {
|
|
405
|
+
ok: boolean;
|
|
406
|
+
duplicate_ids: never[];
|
|
407
|
+
};
|
|
408
|
+
roster: any;
|
|
409
|
+
effort_policy: any;
|
|
410
|
+
} | {
|
|
411
|
+
effort_policy: {
|
|
412
|
+
schema: string;
|
|
413
|
+
policy_version: number;
|
|
414
|
+
dynamic: boolean;
|
|
415
|
+
service_tier: string;
|
|
416
|
+
allowed_efforts: string[];
|
|
417
|
+
max_agents: any;
|
|
418
|
+
agent_count: any;
|
|
419
|
+
concurrency: any;
|
|
420
|
+
decisions: any;
|
|
421
|
+
rule: string;
|
|
422
|
+
};
|
|
423
|
+
schema: string;
|
|
424
|
+
default_agents: number;
|
|
425
|
+
max_agents: number;
|
|
426
|
+
agent_count: number;
|
|
427
|
+
concurrency: number;
|
|
428
|
+
batch_count: number;
|
|
429
|
+
personas: import("../core/agents/agent-schema.js").AgentPersona[];
|
|
430
|
+
persona_uniqueness: {
|
|
431
|
+
ok: boolean;
|
|
432
|
+
duplicates: string[];
|
|
433
|
+
duplicate_stable_ids: string[];
|
|
434
|
+
recursive_personas: string[];
|
|
435
|
+
incomplete_personas: string[];
|
|
436
|
+
};
|
|
437
|
+
roster: import("../core/agents/agent-schema.js").AgentRosterEntry[];
|
|
438
|
+
};
|
|
439
|
+
partition: {
|
|
440
|
+
ok: boolean;
|
|
441
|
+
slice_count: number;
|
|
442
|
+
lease_count: number;
|
|
443
|
+
blockers: string[];
|
|
444
|
+
};
|
|
445
|
+
task_graph: null;
|
|
446
|
+
requested_work_items: number;
|
|
447
|
+
actual_total_work_items: number;
|
|
448
|
+
target_active_slots: number;
|
|
449
|
+
minimum_work_items: number;
|
|
450
|
+
source_intelligence: {
|
|
451
|
+
artifact: string;
|
|
452
|
+
ok: boolean;
|
|
453
|
+
mode: import("../core/source-intelligence/source-intelligence-policy.js").SourceIntelligenceMode;
|
|
454
|
+
cache_key: string;
|
|
455
|
+
proof_ok: boolean;
|
|
456
|
+
};
|
|
457
|
+
goal_mode: {
|
|
458
|
+
artifact: string;
|
|
459
|
+
ok: boolean;
|
|
460
|
+
mode: "official_goal_default" | "sks_goal_fallback";
|
|
461
|
+
official_goal_available: boolean;
|
|
462
|
+
default_enabled: boolean;
|
|
463
|
+
};
|
|
464
|
+
strategy_gate: import("../core/strategy/strategy-gate.js").StrategyGateResult;
|
|
465
|
+
scheduler: {
|
|
466
|
+
ok: boolean;
|
|
467
|
+
status: string;
|
|
468
|
+
scheduler_allowed: boolean;
|
|
469
|
+
blockers: string[];
|
|
470
|
+
};
|
|
471
|
+
results: never[];
|
|
472
|
+
consensus: {
|
|
473
|
+
ok: boolean;
|
|
474
|
+
blockers: string[];
|
|
475
|
+
};
|
|
476
|
+
output_validation: {
|
|
477
|
+
ok: boolean;
|
|
478
|
+
blockers: string[];
|
|
479
|
+
};
|
|
480
|
+
backend_report: {
|
|
481
|
+
ok: boolean;
|
|
482
|
+
blockers: string[];
|
|
483
|
+
};
|
|
484
|
+
recursion: {
|
|
485
|
+
ok: boolean;
|
|
486
|
+
violations: never[];
|
|
487
|
+
};
|
|
488
|
+
timeout_kill: {
|
|
489
|
+
killed_sessions: never[];
|
|
490
|
+
};
|
|
491
|
+
output_tails: {
|
|
492
|
+
ok: boolean;
|
|
493
|
+
records: never[];
|
|
494
|
+
};
|
|
495
|
+
cleanup: {
|
|
496
|
+
ok: boolean;
|
|
497
|
+
all_sessions_closed: boolean;
|
|
498
|
+
blockers: never[];
|
|
499
|
+
};
|
|
500
|
+
trust: {
|
|
501
|
+
ok: boolean;
|
|
502
|
+
blockers: string[];
|
|
503
|
+
};
|
|
504
|
+
wrongness: {
|
|
505
|
+
ok: boolean;
|
|
506
|
+
blockers: string[];
|
|
507
|
+
};
|
|
508
|
+
parallel_write_policy: null;
|
|
509
|
+
proof: {
|
|
510
|
+
ok: boolean;
|
|
511
|
+
status: string;
|
|
512
|
+
blockers: string[];
|
|
513
|
+
};
|
|
514
|
+
patch_swarm?: never;
|
|
515
|
+
} | {
|
|
387
516
|
schema: string;
|
|
388
517
|
ok: boolean;
|
|
389
518
|
mission_id: any;
|
|
@@ -468,6 +597,7 @@ export declare function run(command: any, args?: any): Promise<void | {
|
|
|
468
597
|
official_goal_available: boolean;
|
|
469
598
|
default_enabled: boolean;
|
|
470
599
|
};
|
|
600
|
+
strategy_gate: import("../core/strategy/strategy-gate.js").StrategyGateResult;
|
|
471
601
|
results: any[];
|
|
472
602
|
consensus: {
|
|
473
603
|
schema: string;
|
|
@@ -643,6 +773,56 @@ export declare function run(command: any, args?: any): Promise<void | {
|
|
|
643
773
|
patch_queue_required: boolean;
|
|
644
774
|
patch_apply_mode: string;
|
|
645
775
|
route_level_flags_wired: boolean;
|
|
776
|
+
strategy_gate: {
|
|
777
|
+
artifact: string;
|
|
778
|
+
ok: boolean;
|
|
779
|
+
scheduler_allowed: boolean;
|
|
780
|
+
strategy_first_required: boolean;
|
|
781
|
+
micro_win_count: number;
|
|
782
|
+
appshots_operator_action_required: boolean;
|
|
783
|
+
};
|
|
784
|
+
};
|
|
785
|
+
patch_swarm: {
|
|
786
|
+
schema: string;
|
|
787
|
+
generated_at: string;
|
|
788
|
+
ok: boolean;
|
|
789
|
+
mission_id: string;
|
|
790
|
+
route: string;
|
|
791
|
+
route_command: string;
|
|
792
|
+
write_capable: boolean;
|
|
793
|
+
dry_run: boolean;
|
|
794
|
+
patch_envelope_count: number;
|
|
795
|
+
apply_started_at: string;
|
|
796
|
+
apply_finished_at: string;
|
|
797
|
+
apply_latency_ms: number;
|
|
798
|
+
parallel_apply_count: number;
|
|
799
|
+
parallel_apply_groups: {
|
|
800
|
+
group_id: string;
|
|
801
|
+
entry_ids: string[];
|
|
802
|
+
agents: string[];
|
|
803
|
+
expected_speedup: number;
|
|
804
|
+
}[];
|
|
805
|
+
serial_merge_groups: {
|
|
806
|
+
group_id: string;
|
|
807
|
+
entry_ids: string[];
|
|
808
|
+
agents: string[];
|
|
809
|
+
reason: string;
|
|
810
|
+
file: string;
|
|
811
|
+
}[];
|
|
812
|
+
wall_clock_parallel_evidence: string[];
|
|
813
|
+
expected_speedup: number;
|
|
814
|
+
conflicted_agent_count: number;
|
|
815
|
+
artifacts: {
|
|
816
|
+
queue: string;
|
|
817
|
+
events: string;
|
|
818
|
+
ownership: string;
|
|
819
|
+
merge: string;
|
|
820
|
+
apply_results: string;
|
|
821
|
+
verification: string;
|
|
822
|
+
rollback: string;
|
|
823
|
+
proof: string;
|
|
824
|
+
};
|
|
825
|
+
blockers: string[];
|
|
646
826
|
};
|
|
647
827
|
proof: {
|
|
648
828
|
schema: string;
|
|
@@ -656,11 +836,35 @@ export declare function run(command: any, args?: any): Promise<void | {
|
|
|
656
836
|
route_blackbox_kind: string;
|
|
657
837
|
real_route_command_used: boolean;
|
|
658
838
|
parallel_write_policy: string;
|
|
839
|
+
strategy_gate: string;
|
|
840
|
+
strategy_gate_ok: boolean;
|
|
841
|
+
strategy_scheduler_allowed: boolean;
|
|
659
842
|
parallel_write_route_flags_wired: boolean;
|
|
660
843
|
parallel_write_mode: any;
|
|
661
844
|
parallel_write_apply_patches: boolean;
|
|
662
845
|
parallel_write_dry_run_patches: boolean;
|
|
663
846
|
parallel_write_max_write_agents: number;
|
|
847
|
+
patch_swarm_runtime: string | null;
|
|
848
|
+
patch_queue: string | null;
|
|
849
|
+
patch_queue_events: string | null;
|
|
850
|
+
patch_queue_event_count: number;
|
|
851
|
+
patch_proof: string | null;
|
|
852
|
+
patch_queue_ok: boolean;
|
|
853
|
+
patch_apply_ok: any;
|
|
854
|
+
patch_verification_ok: any;
|
|
855
|
+
patch_rollback_ok: any;
|
|
856
|
+
parallel_patch_apply_verified: boolean;
|
|
857
|
+
patch_conflict_count: number;
|
|
858
|
+
serial_bottleneck_count: number;
|
|
859
|
+
changed_files_by_agent: Record<string, string[]>;
|
|
860
|
+
lease_compliance_by_patch: {
|
|
861
|
+
patch_entry_id: any;
|
|
862
|
+
agent_id: any;
|
|
863
|
+
lease_id: any;
|
|
864
|
+
ok: boolean;
|
|
865
|
+
write_paths: any;
|
|
866
|
+
}[];
|
|
867
|
+
rollback_digest_count: any;
|
|
664
868
|
real_parallel_claim: boolean;
|
|
665
869
|
fake_backend_disclaimer: string | null;
|
|
666
870
|
agent_count: any;
|
|
@@ -701,6 +905,8 @@ export declare function run(command: any, args?: any): Promise<void | {
|
|
|
701
905
|
task_graph_goal_refs_ok: any;
|
|
702
906
|
work_queue_source_refs_ok: any;
|
|
703
907
|
work_queue_goal_refs_ok: any;
|
|
908
|
+
task_graph_strategy_refs_ok: any;
|
|
909
|
+
work_queue_strategy_refs_ok: any;
|
|
704
910
|
tmux_lane_manifest: string;
|
|
705
911
|
tmux_lane_manifest_ok: boolean;
|
|
706
912
|
tmux_lane_supervisor: string;
|
|
@@ -754,6 +960,7 @@ export declare function run(command: any, args?: any): Promise<void | {
|
|
|
754
960
|
dependency_collision_risk: any;
|
|
755
961
|
blockers: any[];
|
|
756
962
|
};
|
|
963
|
+
status?: never;
|
|
757
964
|
};
|
|
758
965
|
artifacts: {
|
|
759
966
|
plan: string;
|