sneakoscope 4.0.13 → 4.0.15
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 +19 -2
- package/config/codex-releases/rust-v0.142.0.json +39 -0
- 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/bin/sks.js +1 -1
- package/dist/cli/global-mode-router.js +2 -1
- package/dist/commands/codex.js +15 -1
- package/dist/core/codex-adapter.js +7 -12
- package/dist/core/codex-compat/codex-compat-report.js +11 -1
- package/dist/core/codex-compat/codex-release-manifest.js +66 -0
- package/dist/core/codex-compat/codex-version-policy.js +5 -4
- package/dist/core/codex-compat/codex-version.js +5 -2
- package/dist/core/codex-control/codex-0142-capability.js +243 -0
- package/dist/core/codex-control/codex-app-server-v2-client.js +211 -0
- package/dist/core/codex-control/codex-sdk-adapter.js +37 -7
- package/dist/core/codex-control/codex-sdk-capability.js +2 -1
- package/dist/core/codex-control/codex-sdk-config-policy.js +16 -0
- package/dist/core/codex-control/codex-sdk-env-policy.js +29 -5
- package/dist/core/codex-control/codex-thread-registry.js +110 -19
- package/dist/core/codex-runtime/resolve-codex-runtime.js +102 -0
- package/dist/core/commands/mad-sks-command.js +3 -0
- package/dist/core/fsx.js +1 -1
- package/dist/core/providers/glm/bench/glm-bench-model-lock-proof.js +32 -3
- package/dist/core/providers/glm/bench/glm-benchmark-runner.js +29 -5
- package/dist/core/providers/glm/bench/glm-benchmark-types.js +1 -1
- package/dist/core/providers/glm/naruto/glm-naruto-critical-path.js +51 -0
- package/dist/core/providers/glm/naruto/glm-naruto-final-seal.js +9 -2
- package/dist/core/providers/glm/naruto/glm-naruto-orchestrator.js +101 -15
- package/dist/core/providers/glm/naruto/glm-naruto-parallelism-summary.js +55 -0
- package/dist/core/providers/glm/naruto/glm-naruto-requirement-coverage.js +92 -0
- package/dist/core/providers/glm/naruto/glm-naruto-requirement-ledger.js +42 -0
- package/dist/core/providers/glm/naruto/glm-naruto-stage-scheduler.js +85 -0
- package/dist/core/providers/glm/naruto/glm-naruto-task-size-classifier.js +12 -0
- package/dist/core/providers/glm/naruto/glm-naruto-trace.js +4 -0
- package/dist/core/providers/glm/naruto/glm-naruto-verifier-output.js +5 -0
- package/dist/core/providers/glm/naruto/glm-naruto-worker-pool.js +130 -44
- package/dist/core/providers/glm/naruto/glm-naruto-worker-runtime.js +6 -2
- package/dist/core/release/gate-manifest.js +24 -1
- package/dist/core/release/gate-pack-manifest.js +6 -6
- package/dist/core/release/release-gate-affected-selector.js +24 -0
- package/dist/core/routes/model-mode-router.js +44 -0
- package/dist/core/routes.js +1 -1
- package/dist/core/version.js +1 -1
- package/dist/scripts/agent-ast-aware-work-graph-check.js +25 -0
- package/dist/scripts/agent-backfill-replenishment-check.js +13 -0
- package/dist/scripts/agent-backfill-route-blackbox.js +5 -0
- package/dist/scripts/agent-background-terminals-check.js +16 -0
- package/dist/scripts/agent-cleanup-command-ux-check.js +12 -0
- package/dist/scripts/agent-cleanup-executor-check.js +53 -0
- package/dist/scripts/agent-cleanup-executor-v2-check.js +39 -0
- package/dist/scripts/agent-cli-options-to-task-graph-check.js +5 -0
- package/dist/scripts/agent-codex-app-cockpit-check.js +91 -0
- package/dist/scripts/agent-codex-child-overlap-check.js +21 -0
- package/dist/scripts/agent-dynamic-cockpit-check.js +10 -0
- package/dist/scripts/agent-dynamic-pool-check.js +13 -0
- package/dist/scripts/agent-dynamic-pool-route-blackbox.js +5 -0
- package/dist/scripts/agent-fast-mode-default-check.js +79 -0
- package/dist/scripts/agent-fast-mode-worker-propagation-check.js +7 -0
- package/dist/scripts/agent-follow-up-work-schema-check.js +80 -0
- package/dist/scripts/agent-goal-mode-propagation-check.js +9 -0
- package/dist/scripts/agent-intelligent-work-graph-check.js +29 -0
- package/dist/scripts/agent-janitor-check.js +79 -0
- package/dist/scripts/agent-main-no-scout-check.js +11 -0
- package/dist/scripts/agent-message-bus-reader-check.js +19 -0
- package/dist/scripts/agent-model-authored-patch-envelope-check.js +15 -0
- package/dist/scripts/agent-multi-project-isolation-check.js +86 -0
- package/dist/scripts/agent-native-cli-session-proof-check.js +7 -0
- package/dist/scripts/agent-native-cli-session-swarm-10-check.js +7 -0
- package/dist/scripts/agent-native-cli-session-swarm-20-check.js +7 -0
- package/dist/scripts/agent-native-cli-session-swarm-check.js +7 -0
- package/dist/scripts/agent-no-subagent-scaling-check.js +7 -0
- package/dist/scripts/agent-official-subagent-helper-policy-check.js +71 -0
- package/dist/scripts/agent-parallel-write-blackbox.js +56 -0
- package/dist/scripts/agent-parallel-write-kernel-check.js +103 -0
- package/dist/scripts/agent-patch-conflict-rebase-check.js +198 -0
- package/dist/scripts/agent-patch-envelope-extraction-check.js +17 -0
- package/dist/scripts/agent-patch-proof-check.js +41 -0
- package/dist/scripts/agent-patch-proof-runtime-check.js +63 -0
- package/dist/scripts/agent-patch-queue-runtime-check.js +36 -0
- package/dist/scripts/agent-patch-rollback-check.js +38 -0
- package/dist/scripts/agent-patch-rollback-dag-check.js +14 -0
- package/dist/scripts/agent-patch-swarm-route-blackbox.js +10 -0
- package/dist/scripts/agent-patch-swarm-runtime-check.js +10 -0
- package/dist/scripts/agent-patch-swarm-runtime-truth-check.js +76 -0
- package/dist/scripts/agent-patch-transaction-journal-check.js +57 -0
- package/dist/scripts/agent-patch-verification-dag-check.js +14 -0
- package/dist/scripts/agent-proof-contract-reconciled-check.js +5 -0
- package/dist/scripts/agent-real-codex-dynamic-smoke-check.js +166 -0
- package/dist/scripts/agent-real-codex-dynamic-smoke-v2-check.js +14 -0
- package/dist/scripts/agent-real-codex-in-zellij-worker-pane-check.js +227 -0
- package/dist/scripts/agent-real-codex-parallel-workers-10-check.js +5 -0
- package/dist/scripts/agent-real-codex-parallel-workers-20-check.js +5 -0
- package/dist/scripts/agent-real-codex-parallel-workers-5-check.js +5 -0
- package/dist/scripts/agent-real-codex-parallel-workers-check.js +5 -0
- package/dist/scripts/agent-role-config-repair-check.js +33 -0
- package/dist/scripts/agent-rollback-command-check.js +86 -0
- package/dist/scripts/agent-route-truth-backfill-check.js +5 -0
- package/dist/scripts/agent-scheduler-proof-check.js +13 -0
- package/dist/scripts/agent-scheduler-proof-hardening-check.js +22 -0
- package/dist/scripts/agent-session-generation-check.js +21 -0
- package/dist/scripts/agent-slot-pane-binding-proof-check.js +64 -0
- package/dist/scripts/agent-slot-telemetry-wiring-check.js +11 -0
- package/dist/scripts/agent-source-intelligence-propagation-check.js +9 -0
- package/dist/scripts/agent-strategy-to-lease-wiring-check.js +32 -0
- package/dist/scripts/agent-strategy-to-patch-strict-check.js +54 -0
- package/dist/scripts/agent-task-graph-expansion-check.js +14 -0
- package/dist/scripts/agent-terminal-generations-check.js +23 -0
- package/dist/scripts/agent-visual-consistency-check.js +9 -0
- package/dist/scripts/agent-wiki-context-proof-check.js +62 -0
- package/dist/scripts/agent-worker-backend-router-check.js +63 -0
- package/dist/scripts/agent-worker-scout-limited-check.js +17 -0
- package/dist/scripts/agent-zellij-dynamic-backfill-panes-check.js +34 -0
- package/dist/scripts/agent-zellij-runtime-check.js +85 -0
- package/dist/scripts/all-feature-deep-completion-check.js +31 -0
- package/dist/scripts/appshots-capability-check.js +18 -0
- package/dist/scripts/appshots-evidence-check.js +48 -0
- package/dist/scripts/appshots-operator-policy-check.js +25 -0
- package/dist/scripts/appshots-privacy-safety-check.js +48 -0
- package/dist/scripts/appshots-source-intelligence-check.js +53 -0
- package/dist/scripts/appshots-thread-attachment-discovery-check.js +87 -0
- package/dist/scripts/appshots-triwiki-voxel-check.js +46 -0
- package/dist/scripts/architecture-guard-check.js +55 -0
- package/dist/scripts/brand-neutrality-generated-artifacts-check.js +161 -0
- package/dist/scripts/brand-neutrality-rename-map-check.js +4 -0
- package/dist/scripts/brand-neutrality-zero-leakage-blackbox.js +4 -0
- package/dist/scripts/brand-neutrality-zero-leakage-check.js +4 -0
- package/dist/scripts/build-once-runner-blackbox.js +34 -0
- package/dist/scripts/build-once-runner-check.js +8 -0
- package/dist/scripts/certificate-sla-check.js +9 -0
- package/dist/scripts/changelog-check.js +47 -0
- package/dist/scripts/changelog-loop-productionization-check.js +3 -0
- package/dist/scripts/cli-check-tiers-check.js +10 -0
- package/dist/scripts/cli-five-minute-task-check.js +6 -0
- package/dist/scripts/codex-0-133-official-compat-report.js +53 -0
- package/dist/scripts/codex-0-134-official-compat-report.js +110 -0
- package/dist/scripts/codex-0-134-runner-truth-check.js +66 -0
- package/dist/scripts/codex-0-135-compat-check.js +57 -0
- package/dist/scripts/codex-0-136-compat-check.js +30 -0
- package/dist/scripts/codex-0-137-compat-check.js +27 -0
- package/dist/scripts/codex-0138-capability-artifact-check.js +15 -0
- package/dist/scripts/codex-0138-capability-check.js +11 -0
- package/dist/scripts/codex-0138-doctor-check.js +15 -0
- package/dist/scripts/codex-0138-feature-probes-check.js +12 -0
- package/dist/scripts/codex-0139-capability-check.js +26 -0
- package/dist/scripts/codex-0139-code-mode-web-search-check.js +25 -0
- package/dist/scripts/codex-0139-code-mode-web-search-real-check.js +10 -0
- package/dist/scripts/codex-0139-doctor-env-real-check.js +10 -0
- package/dist/scripts/codex-0139-doctor-env-redaction-check.js +18 -0
- package/dist/scripts/codex-0139-feature-probes-check.js +30 -0
- package/dist/scripts/codex-0139-image-path-real-check.js +10 -0
- package/dist/scripts/codex-0139-interrupt-agent-check.js +14 -0
- package/dist/scripts/codex-0139-interrupt-agent-real-check.js +8 -0
- package/dist/scripts/codex-0139-marketplace-source-check.js +13 -0
- package/dist/scripts/codex-0139-plugin-cache-real-check.js +10 -0
- package/dist/scripts/codex-0139-plugin-marketplace-real-check.js +10 -0
- package/dist/scripts/codex-0139-real-probe-summary-check.js +14 -0
- package/dist/scripts/codex-0139-real-probes-check.js +37 -0
- package/dist/scripts/codex-0139-rich-tool-schema-check.js +12 -0
- package/dist/scripts/codex-0139-rich-tool-schema-real-check.js +10 -0
- package/dist/scripts/codex-0139-sandbox-profile-alias-check.js +13 -0
- package/dist/scripts/codex-0139-sandbox-profile-alias-real-check.js +10 -0
- package/dist/scripts/codex-0139-sandbox-proxy-real-check.js +10 -0
- package/dist/scripts/codex-0140-bedrock-managed-auth-check.js +4 -0
- package/dist/scripts/codex-0140-capability-check.js +15 -0
- package/dist/scripts/codex-0140-deep-probes-check.js +40 -0
- package/dist/scripts/codex-0140-feature-probes-check.js +24 -0
- package/dist/scripts/codex-0140-goal-attachment-preservation-check.js +8 -0
- package/dist/scripts/codex-0140-goal-attachment-roundtrip-check.js +9 -0
- package/dist/scripts/codex-0140-import-check.js +4 -0
- package/dist/scripts/codex-0140-integration-blackbox.js +13 -0
- package/dist/scripts/codex-0140-large-repo-performance-check.js +4 -0
- package/dist/scripts/codex-0140-mcp-reliability-check.js +4 -0
- package/dist/scripts/codex-0140-non-tty-interrupt-check.js +4 -0
- package/dist/scripts/codex-0140-real-probes-check.js +9 -0
- package/dist/scripts/codex-0140-session-delete-check.js +4 -0
- package/dist/scripts/codex-0140-sqlite-recovery-check.js +4 -0
- package/dist/scripts/codex-0140-unified-mentions-check.js +4 -0
- package/dist/scripts/codex-0140-usage-check.js +4 -0
- package/dist/scripts/codex-0140-usage-real-parser-check.js +17 -0
- package/dist/scripts/codex-0141-capability-check.js +17 -0
- package/dist/scripts/codex-0142-app-server-v2-check.js +46 -0
- package/dist/scripts/codex-0142-binary-identity-check.js +17 -0
- package/dist/scripts/codex-0142-capability-check.js +21 -0
- package/dist/scripts/codex-0142-manifest-check.js +21 -0
- package/dist/scripts/codex-0142-policy-check.js +32 -0
- package/dist/scripts/codex-0142-thread-store-check.js +54 -0
- package/dist/scripts/codex-account-usage-autodiscovery-check.js +22 -0
- package/dist/scripts/codex-account-usage-check.js +9 -0
- package/dist/scripts/codex-agent-role-rich-content-check.js +4 -0
- package/dist/scripts/codex-agent-role-sync-check.js +4 -0
- package/dist/scripts/codex-agent-type-blackbox.js +4 -0
- package/dist/scripts/codex-agent-type-probe-check.js +4 -0
- package/dist/scripts/codex-agent-type-routing-check.js +4 -0
- package/dist/scripts/codex-app-execution-profile-check.js +4 -0
- package/dist/scripts/codex-app-fast-ui-preservation-check.js +32 -0
- package/dist/scripts/codex-app-handoff-check.js +25 -0
- package/dist/scripts/codex-app-handoff-launch-check.js +25 -0
- package/dist/scripts/codex-app-harness-blackbox.js +4 -0
- package/dist/scripts/codex-app-harness-matrix-check.js +4 -0
- package/dist/scripts/codex-app-launcher-check.js +17 -0
- package/dist/scripts/codex-app-provider-badge-check.js +37 -0
- package/dist/scripts/codex-app-skill-agent-blackbox.js +4 -0
- package/dist/scripts/codex-app-type-safety-check.js +4 -0
- package/dist/scripts/codex-app-ui-clobber-guard-check.js +22 -0
- package/dist/scripts/codex-app-ui-preservation-check.js +96 -0
- package/dist/scripts/codex-control-all-pipelines-check.js +37 -0
- package/dist/scripts/codex-control-capability-check.js +10 -0
- package/dist/scripts/codex-control-empty-result-retry-check.js +43 -0
- package/dist/scripts/codex-control-event-stream-ledger-check.js +10 -0
- package/dist/scripts/codex-control-keepalive-no-cot-leak-check.js +14 -0
- package/dist/scripts/codex-control-no-legacy-fallback-check.js +31 -0
- package/dist/scripts/codex-control-side-effect-scope-check.js +26 -0
- package/dist/scripts/codex-control-stream-idle-watchdog-check.js +18 -0
- package/dist/scripts/codex-control-structured-output-check.js +11 -0
- package/dist/scripts/codex-control-thread-registry-check.js +11 -0
- package/dist/scripts/codex-control-tool-call-sequence-repair-check.js +14 -0
- package/dist/scripts/codex-effort-auto-discovery-check.js +17 -0
- package/dist/scripts/codex-effort-order-check.js +9 -0
- package/dist/scripts/codex-environment-scoped-approvals-check.js +10 -0
- package/dist/scripts/codex-exec-output-schema-actual-syntax-check.js +33 -0
- package/dist/scripts/codex-fast-mode-profile-propagation-check.js +14 -0
- package/dist/scripts/codex-history-search-check.js +19 -0
- package/dist/scripts/codex-hook-approval-blackbox.js +4 -0
- package/dist/scripts/codex-hook-approval-matrix-check.js +4 -0
- package/dist/scripts/codex-hook-approval-probe-check.js +4 -0
- package/dist/scripts/codex-hook-lifecycle-check.js +4 -0
- package/dist/scripts/codex-hook-semantic-check.js +15 -0
- package/dist/scripts/codex-hook-strict-subset-check.js +61 -0
- package/dist/scripts/codex-init-deep-check.js +4 -0
- package/dist/scripts/codex-init-deep-directory-local-blackbox.js +4 -0
- package/dist/scripts/codex-init-deep-managed-agents-check.js +4 -0
- package/dist/scripts/codex-lb-config-toml-safety-check.js +85 -0
- package/dist/scripts/codex-lb-persistence-truth-check.js +96 -0
- package/dist/scripts/codex-lb-setup-fixture-check.js +91 -0
- package/dist/scripts/codex-lb-setup-truthfulness-check.js +84 -0
- package/dist/scripts/codex-legacy-profile-consumers-removed-check.js +24 -0
- package/dist/scripts/codex-managed-proxy-env-check.js +17 -0
- package/dist/scripts/codex-model-metadata-check.js +10 -0
- package/dist/scripts/codex-native-agent-role-content-check.js +27 -0
- package/dist/scripts/codex-native-broker-read-only-check.js +44 -0
- package/dist/scripts/codex-native-feature-broker-blackbox.js +4 -0
- package/dist/scripts/codex-native-feature-broker-check.js +4 -0
- package/dist/scripts/codex-native-harness-compat-check.js +4 -0
- package/dist/scripts/codex-native-hook-lifecycle-proof-check.js +4 -0
- package/dist/scripts/codex-native-interop-policy-check.js +4 -0
- package/dist/scripts/codex-native-invocation-defaults-check.js +4 -0
- package/dist/scripts/codex-native-invocation-router-check.js +4 -0
- package/dist/scripts/codex-native-pattern-analysis-blackbox.js +4 -0
- package/dist/scripts/codex-native-pattern-analysis-check.js +4 -0
- package/dist/scripts/codex-native-read-repair-split-blackbox.js +55 -0
- package/dist/scripts/codex-native-reference-cache-blackbox.js +41 -0
- package/dist/scripts/codex-native-reference-cache-check.js +23 -0
- package/dist/scripts/codex-native-reference-evidence-check.js +4 -0
- package/dist/scripts/codex-native-repair-transaction-check.js +45 -0
- package/dist/scripts/codex-native-route-map-check.js +4 -0
- package/dist/scripts/codex-native-skill-content-check.js +24 -0
- package/dist/scripts/codex-output-schema-fixture-check.js +25 -0
- package/dist/scripts/codex-permission-profiles-check.js +36 -0
- package/dist/scripts/codex-plugin-app-template-policy-check.js +11 -0
- package/dist/scripts/codex-plugin-cache-check.js +15 -0
- package/dist/scripts/codex-plugin-diff-check.js +16 -0
- package/dist/scripts/codex-plugin-inventory-check.js +15 -0
- package/dist/scripts/codex-plugin-json-check.js +10 -0
- package/dist/scripts/codex-plugin-list-json-check.js +8 -0
- package/dist/scripts/codex-plugin-parallel-detail-fetch-check.js +12 -0
- package/dist/scripts/codex-profile-primary-check.js +13 -0
- package/dist/scripts/codex-project-config-policy-splitter-check.js +51 -0
- package/dist/scripts/codex-resume-cwd-truth-check.js +17 -0
- package/dist/scripts/codex-sdk-all-pipelines-check.js +33 -0
- package/dist/scripts/codex-sdk-backend-router-check.js +65 -0
- package/dist/scripts/codex-sdk-capability-check.js +11 -0
- package/dist/scripts/codex-sdk-core-skill-pipeline-check.js +9 -0
- package/dist/scripts/codex-sdk-dfix-pipeline-check.js +9 -0
- package/dist/scripts/codex-sdk-event-stream-ledger-check.js +9 -0
- package/dist/scripts/codex-sdk-no-legacy-fallback-check.js +33 -0
- package/dist/scripts/codex-sdk-qa-pipeline-check.js +8 -0
- package/dist/scripts/codex-sdk-real-smoke-check.js +39 -0
- package/dist/scripts/codex-sdk-release-review-pipeline-check.js +13 -0
- package/dist/scripts/codex-sdk-research-pipeline-check.js +47 -0
- package/dist/scripts/codex-sdk-sandbox-policy-check.js +21 -0
- package/dist/scripts/codex-sdk-structured-output-check.js +10 -0
- package/dist/scripts/codex-sdk-team-naruto-agent-pipeline-check.js +12 -0
- package/dist/scripts/codex-sdk-thread-registry-check.js +11 -0
- package/dist/scripts/codex-sdk-ux-ppt-review-pipeline-check.js +9 -0
- package/dist/scripts/codex-sdk-version-compat-check.js +10 -0
- package/dist/scripts/codex-sdk-zellij-pane-binding-check.js +13 -0
- package/dist/scripts/codex-skill-rich-content-check.js +4 -0
- package/dist/scripts/codex-skill-sync-check.js +4 -0
- package/dist/scripts/codex-thread-runtime-choice-check.js +10 -0
- package/dist/scripts/codex-web-adapter-check.js +12 -0
- package/dist/scripts/computer-use-live-evidence-check.js +55 -0
- package/dist/scripts/computer-use-live-optional-check.js +32 -0
- package/dist/scripts/computer-use-policy-check.js +69 -0
- package/dist/scripts/computer-use-visual-route-fixture-check.js +37 -0
- package/dist/scripts/config-managed-merge-callsite-coverage-check.js +200 -0
- package/dist/scripts/context7-evidence-dedupe-check.js +54 -0
- package/dist/scripts/core-skill-card-schema-check.js +61 -0
- package/dist/scripts/core-skill-deployment-snapshot-check.js +54 -0
- package/dist/scripts/core-skill-heldout-validation-check.js +49 -0
- package/dist/scripts/core-skill-immutable-sync-check.js +18 -0
- package/dist/scripts/core-skill-integrity-blackbox.js +32 -0
- package/dist/scripts/core-skill-manifest-check.js +15 -0
- package/dist/scripts/core-skill-no-drift-check.js +24 -0
- package/dist/scripts/core-skill-no-inference-optimizer-check.js +75 -0
- package/dist/scripts/core-skill-patch-check.js +79 -0
- package/dist/scripts/core-skill-promotion-side-effect-ledger-check.js +64 -0
- package/dist/scripts/core-skill-rollout-scoring-check.js +72 -0
- package/dist/scripts/core-skill-route-runtime-integration-check.js +49 -0
- package/dist/scripts/core-skill-trainer-check.js +116 -0
- package/dist/scripts/dfix-fast-blackbox-check.js +37 -0
- package/dist/scripts/dfix-fast-kernel-check.js +26 -0
- package/dist/scripts/dfix-fixture-check.js +6 -0
- package/dist/scripts/dfix-parallel-write-blackbox.js +48 -0
- package/dist/scripts/dfix-patch-handoff-check.js +13 -0
- package/dist/scripts/dfix-patch-swarm-route-blackbox.js +10 -0
- package/dist/scripts/dfix-performance-check.js +15 -0
- package/dist/scripts/dfix-verification-check.js +9 -0
- package/dist/scripts/dfix-verification-recommendation-check.js +15 -0
- package/dist/scripts/docs-brand-neutrality-check.js +4 -0
- package/dist/scripts/docs-codex-0139-wording-check.js +21 -0
- package/dist/scripts/docs-loop-productionization-check.js +3 -0
- package/dist/scripts/docs-loop-runtime-check.js +3 -0
- package/dist/scripts/docs-truthfulness-check.js +61 -0
- package/dist/scripts/doctor-codex-0138-fix-check.js +10 -0
- package/dist/scripts/doctor-codex-0139-real-probes-check.js +25 -0
- package/dist/scripts/doctor-codex-app-harness-check.js +4 -0
- package/dist/scripts/doctor-codex-doctor-parity-check.js +17 -0
- package/dist/scripts/doctor-codex-native-readiness-ux-check.js +29 -0
- package/dist/scripts/doctor-codex-native-repair-actions-check.js +24 -0
- package/dist/scripts/doctor-codex-startup-repair-check.js +103 -0
- package/dist/scripts/doctor-context7-mcp-repair-blackbox.js +16 -0
- package/dist/scripts/doctor-context7-mcp-repair-check.js +11 -0
- package/dist/scripts/doctor-context7-repair-check.js +47 -0
- package/dist/scripts/doctor-dirty-plan-check.js +9 -0
- package/dist/scripts/doctor-dirty-repair-blackbox.js +22 -0
- package/dist/scripts/doctor-dirty-repair-check.js +8 -0
- package/dist/scripts/doctor-dirty-semantic-blackbox.js +8 -0
- package/dist/scripts/doctor-dirty-semantic-check.js +7 -0
- package/dist/scripts/doctor-fix-production-blackbox.js +26 -0
- package/dist/scripts/doctor-fix-proves-codex-read-check.js +102 -0
- package/dist/scripts/doctor-fix-recovers-corrupted-config-check.js +122 -0
- package/dist/scripts/doctor-fixes-codex-app-fast-ui-check.js +44 -0
- package/dist/scripts/doctor-native-capability-repair-blackbox.js +39 -0
- package/dist/scripts/doctor-native-capability-repair-check.js +10 -0
- package/dist/scripts/doctor-native-repair-output-check.js +18 -0
- package/dist/scripts/doctor-startup-config-repair-blackbox.js +13 -0
- package/dist/scripts/doctor-startup-config-repair-check.js +10 -0
- package/dist/scripts/doctor-supabase-mcp-repair-blackbox.js +14 -0
- package/dist/scripts/doctor-supabase-mcp-repair-check.js +12 -0
- package/dist/scripts/doctor-transaction-engine-blackbox.js +28 -0
- package/dist/scripts/doctor-transaction-engine-check.js +31 -0
- package/dist/scripts/doctor-zellij-fix-blackbox.js +4 -0
- package/dist/scripts/doctor-zellij-fix-output-check.js +4 -0
- package/dist/scripts/doctor-zellij-no-homebrew-blackbox.js +4 -0
- package/dist/scripts/doctor-zellij-repair-check.js +4 -0
- package/dist/scripts/doctor-zellij-upgrade-blackbox.js +4 -0
- package/dist/scripts/evidence-fixture-check.js +26 -0
- package/dist/scripts/evidence-flagship-coverage-check.js +55 -0
- package/dist/scripts/fake-real-proof-policy-v2-check.js +27 -0
- package/dist/scripts/fake-vs-real-proof-policy-check.js +14 -0
- package/dist/scripts/fast-codex-service-tier-proof-check.js +42 -0
- package/dist/scripts/flagship-proof-graph-v2-check.js +48 -0
- package/dist/scripts/flagship-proof-graph-v3-check.js +67 -0
- package/dist/scripts/flagship-proof-graph-v4-check.js +61 -0
- package/dist/scripts/gate-pack-fixture-cache-check.js +9 -0
- package/dist/scripts/gate-pack-manifest-check.js +9 -0
- package/dist/scripts/gate-pack-runner-blackbox.js +27 -0
- package/dist/scripts/gate-pack-runner-check.js +6 -0
- package/dist/scripts/gate-pack-v2-blackbox.js +18 -0
- package/dist/scripts/git-precommit-fixture-check.js +41 -0
- package/dist/scripts/git-worktree-batch-allocation-check.js +10 -0
- package/dist/scripts/git-worktree-cache-performance-check.js +25 -0
- package/dist/scripts/git-worktree-capability-check.js +27 -0
- package/dist/scripts/git-worktree-checkpoint-check.js +20 -0
- package/dist/scripts/git-worktree-cleanup-check.js +27 -0
- package/dist/scripts/git-worktree-cross-rebase-check.js +41 -0
- package/dist/scripts/git-worktree-diff-envelope-check.js +17 -0
- package/dist/scripts/git-worktree-diff-export-check.js +43 -0
- package/dist/scripts/git-worktree-dirty-lock-check.js +17 -0
- package/dist/scripts/git-worktree-dirty-main-detection-check.js +14 -0
- package/dist/scripts/git-worktree-integration-primary-check.js +24 -0
- package/dist/scripts/git-worktree-integration-primary-runtime-check.js +20 -0
- package/dist/scripts/git-worktree-manager-check.js +37 -0
- package/dist/scripts/git-worktree-manifest-append-check.js +18 -0
- package/dist/scripts/git-worktree-merge-queue-check.js +31 -0
- package/dist/scripts/git-worktree-pool-performance-check.js +20 -0
- package/dist/scripts/git-worktree-prewarm-runtime-check.js +7 -0
- package/dist/scripts/git-worktree-untracked-diff-check.js +18 -0
- package/dist/scripts/goal-artifact-compat-check.js +3 -0
- package/dist/scripts/goal-legacy-runtime-escape-check.js +3 -0
- package/dist/scripts/goal-loop-compat-check.js +3 -0
- package/dist/scripts/goal-loop-runtime-default-check.js +3 -0
- package/dist/scripts/goal-mode-official-default-check.js +12 -0
- package/dist/scripts/gpt-final-arbiter-check.js +63 -0
- package/dist/scripts/gpt-final-arbiter-performance-check.js +36 -0
- package/dist/scripts/gpt-image-2-request-validator-check.js +35 -0
- package/dist/scripts/hooks-0.134-context-parity-check.js +20 -0
- package/dist/scripts/hooks-actual-parity-check.js +17 -0
- package/dist/scripts/hooks-actual-parity-v2-check.js +21 -0
- package/dist/scripts/hooks-latest-schema-check.js +20 -0
- package/dist/scripts/hooks-managed-install-fixture-check.js +21 -0
- package/dist/scripts/hooks-official-hash-oracle-check.js +35 -0
- package/dist/scripts/hooks-official-hash-parity-check.js +17 -0
- package/dist/scripts/hooks-subagent-events-check.js +17 -0
- package/dist/scripts/hooks-trust-state-check.js +14 -0
- package/dist/scripts/image-artifact-path-contract-check.js +14 -0
- package/dist/scripts/image-artifact-registry-check.js +14 -0
- package/dist/scripts/image-fidelity-fixture-check.js +24 -0
- package/dist/scripts/image-followup-edit-path-check.js +14 -0
- package/dist/scripts/image-generation-path-handoff-check.js +8 -0
- package/dist/scripts/image-global-path-contract-check.js +38 -0
- package/dist/scripts/imagegen-capability-check.js +30 -0
- package/dist/scripts/imagegen-real-smoke-check.js +155 -0
- package/dist/scripts/init-deep-backup-retention-check.js +37 -0
- package/dist/scripts/init-deep-memory-scope-safety-check.js +23 -0
- package/dist/scripts/install-update-preserves-config-check.js +172 -0
- package/dist/scripts/json-schema-recursive-check.js +78 -0
- package/dist/scripts/legacy-gate-inventory-check.js +49 -0
- package/dist/scripts/legacy-gate-purge-check.js +7 -0
- package/dist/scripts/legacy-multiagent-removal-check.js +85 -0
- package/dist/scripts/legacy-purge-final-check.js +5 -0
- package/dist/scripts/legacy-strong-inventory-check.js +43 -0
- package/dist/scripts/legacy-upgrade-matrix-check.js +300 -0
- package/dist/scripts/local-collab-all-pipelines-final-gpt-check.js +21 -0
- package/dist/scripts/local-collab-gpt-final-availability-check.js +58 -0
- package/dist/scripts/local-collab-no-local-only-final-check.js +27 -0
- package/dist/scripts/local-collab-policy-check.js +17 -0
- package/dist/scripts/local-collab-worktree-gpt-final-apply-policy-check.js +63 -0
- package/dist/scripts/local-llm-all-pipelines-check.js +11 -0
- package/dist/scripts/local-llm-cache-performance-check.js +10 -0
- package/dist/scripts/local-llm-capability-check.js +14 -0
- package/dist/scripts/local-llm-smoke-check.js +32 -0
- package/dist/scripts/local-llm-structured-output-check.js +11 -0
- package/dist/scripts/local-llm-throughput-check.js +10 -0
- package/dist/scripts/local-llm-tool-call-repair-check.js +10 -0
- package/dist/scripts/local-llm-warmup-check.js +11 -0
- package/dist/scripts/loop-artifact-paths-check.js +3 -0
- package/dist/scripts/loop-blocker-check.js +15 -0
- package/dist/scripts/loop-cli-check.js +3 -0
- package/dist/scripts/loop-cli-registry-check.js +3 -0
- package/dist/scripts/loop-collision-blackbox.js +3 -0
- package/dist/scripts/loop-concurrency-budget-check.js +3 -0
- package/dist/scripts/loop-concurrency-budget-runtime-check.js +3 -0
- package/dist/scripts/loop-concurrency-oversubscription-blackbox.js +3 -0
- package/dist/scripts/loop-continuation-enforcer-check.js +4 -0
- package/dist/scripts/loop-decomposer-check.js +3 -0
- package/dist/scripts/loop-directive-check-lib.js +388 -0
- package/dist/scripts/loop-execution-profile-routing-check.js +4 -0
- package/dist/scripts/loop-final-arbiter-contract-check.js +3 -0
- package/dist/scripts/loop-fixture-policy-check.js +3 -0
- package/dist/scripts/loop-fixture-production-misuse-blackbox.js +3 -0
- package/dist/scripts/loop-fixture-safety-check.js +3 -0
- package/dist/scripts/loop-gate-fixture-guard-check.js +3 -0
- package/dist/scripts/loop-gate-ladder-check.js +3 -0
- package/dist/scripts/loop-gate-runner-check.js +3 -0
- package/dist/scripts/loop-gate-selector-check.js +3 -0
- package/dist/scripts/loop-gpt-final-contract-crossref-check.js +3 -0
- package/dist/scripts/loop-gpt-final-fixture-guard-check.js +3 -0
- package/dist/scripts/loop-gpt-final-gate-contract-check.js +3 -0
- package/dist/scripts/loop-hardening-check-lib.js +289 -0
- package/dist/scripts/loop-integration-finalizer-check.js +3 -0
- package/dist/scripts/loop-integration-merge-strategy-check.js +3 -0
- package/dist/scripts/loop-interrupt-registry-check.js +3 -0
- package/dist/scripts/loop-kill-interrupt-real-blackbox.js +3 -0
- package/dist/scripts/loop-lease-check.js +3 -0
- package/dist/scripts/loop-merge-strategy-blackbox.js +3 -0
- package/dist/scripts/loop-merge-strategy-check.js +3 -0
- package/dist/scripts/loop-mesh-production-e2e-blackbox.js +3 -0
- package/dist/scripts/loop-mutation-ledger-check.js +3 -0
- package/dist/scripts/loop-observability-check.js +3 -0
- package/dist/scripts/loop-owner-inference-check.js +3 -0
- package/dist/scripts/loop-planner-check.js +3 -0
- package/dist/scripts/loop-planner-project-memory-check.js +4 -0
- package/dist/scripts/loop-planner-project-memory-deep-check.js +4 -0
- package/dist/scripts/loop-proof-check.js +3 -0
- package/dist/scripts/loop-proof-summary-cli-check.js +3 -0
- package/dist/scripts/loop-risk-classifier-check.js +3 -0
- package/dist/scripts/loop-runtime-check.js +3 -0
- package/dist/scripts/loop-scheduler-check.js +3 -0
- package/dist/scripts/loop-schema-check.js +3 -0
- package/dist/scripts/loop-side-effect-blackbox.js +3 -0
- package/dist/scripts/loop-side-effect-final-arbiter-check.js +3 -0
- package/dist/scripts/loop-side-effect-scanner-check.js +3 -0
- package/dist/scripts/loop-state-check.js +3 -0
- package/dist/scripts/loop-status-proof-ux-check.js +3 -0
- package/dist/scripts/loop-worker-fixture-guard-check.js +3 -0
- package/dist/scripts/loop-worker-handle-registration-check.js +3 -0
- package/dist/scripts/loop-worker-interrupt-check.js +3 -0
- package/dist/scripts/loop-worktree-policy-check.js +3 -0
- package/dist/scripts/loop-zellij-ui-check.js +3 -0
- package/dist/scripts/mad-db-capability-check.js +15 -0
- package/dist/scripts/mad-db-command-check.js +13 -0
- package/dist/scripts/mad-db-ledger-check.js +7 -0
- package/dist/scripts/mad-db-lifecycle-hook-decision-check.js +17 -0
- package/dist/scripts/mad-db-mad-command-check.js +100 -0
- package/dist/scripts/mad-db-mcp-result-lifecycle-check.js +30 -0
- package/dist/scripts/mad-db-one-cycle-bounded-check.js +27 -0
- package/dist/scripts/mad-db-one-cycle-consumption-check.js +16 -0
- package/dist/scripts/mad-db-operation-lifecycle-blackbox.js +29 -0
- package/dist/scripts/mad-db-operation-lifecycle-ledger-check.js +17 -0
- package/dist/scripts/mad-db-priority-resolver-check.js +20 -0
- package/dist/scripts/mad-db-safety-conflict-matrix-check.js +22 -0
- package/dist/scripts/mad-preflight-blocks-unreadable-config-check.js +66 -0
- package/dist/scripts/mad-sks-actual-executor-blackbox.js +5 -0
- package/dist/scripts/mad-sks-app-ui-no-mutation-check.js +92 -0
- package/dist/scripts/mad-sks-audit-proof-check.js +34 -0
- package/dist/scripts/mad-sks-db-executor-check.js +5 -0
- package/dist/scripts/mad-sks-executor-proof-graph-check.js +5 -0
- package/dist/scripts/mad-sks-fast-mode-propagation-check.js +24 -0
- package/dist/scripts/mad-sks-file-write-executor-check.js +5 -0
- package/dist/scripts/mad-sks-immutable-harness-check.js +36 -0
- package/dist/scripts/mad-sks-no-harness-modification-check.js +25 -0
- package/dist/scripts/mad-sks-package-executor-check.js +5 -0
- package/dist/scripts/mad-sks-permission-model-check.js +22 -0
- package/dist/scripts/mad-sks-rollback-apply-check.js +5 -0
- package/dist/scripts/mad-sks-service-executor-check.js +5 -0
- package/dist/scripts/mad-sks-shell-executor-check.js +5 -0
- package/dist/scripts/mad-sks-write-guard-check.js +28 -0
- package/dist/scripts/mad-sks-zellij-default-pane-worker-check.js +37 -0
- package/dist/scripts/mad-sks-zellij-launch-check.js +102 -0
- package/dist/scripts/mad-zellij-headless-fallback-blackbox.js +4 -0
- package/dist/scripts/mad-zellij-no-contradictory-output-check.js +4 -0
- package/dist/scripts/mad-zellij-self-heal-blackbox.js +4 -0
- package/dist/scripts/mad-zellij-self-heal-check.js +4 -0
- package/dist/scripts/managed-config-merge-check.js +24 -0
- package/dist/scripts/mcp-0-134-modernization-check.js +55 -0
- package/dist/scripts/mcp-plugin-inventory-check.js +12 -0
- package/dist/scripts/mcp-readonly-concurrency-check.js +17 -0
- package/dist/scripts/mcp-readonly-runtime-scheduler-check.js +20 -0
- package/dist/scripts/mcp-tool-naming-parity-check.js +16 -0
- package/dist/scripts/memory-summary-rebuild-check.js +22 -0
- package/dist/scripts/model-call-concurrency-check.js +15 -0
- package/dist/scripts/mutation-callsite-coverage-check.js +180 -0
- package/dist/scripts/naruto-active-pool-check.js +39 -0
- package/dist/scripts/naruto-actual-worker-control-plane-check.js +56 -0
- package/dist/scripts/naruto-allocation-policy-check.js +33 -0
- package/dist/scripts/naruto-allocation-runtime-wiring-check.js +92 -0
- package/dist/scripts/naruto-concurrency-governor-check.js +53 -0
- package/dist/scripts/naruto-extreme-parallelism-check.js +22 -0
- package/dist/scripts/naruto-extreme-parallelism-real-check.js +43 -0
- package/dist/scripts/naruto-gpt-final-pack-check.js +34 -0
- package/dist/scripts/naruto-loop-maker-checker-check.js +3 -0
- package/dist/scripts/naruto-loop-mesh-blackbox.js +3 -0
- package/dist/scripts/naruto-loop-mesh-check.js +3 -0
- package/dist/scripts/naruto-loop-worker-router-check.js +3 -0
- package/dist/scripts/naruto-orchestrator-runtime-source-check.js +70 -0
- package/dist/scripts/naruto-parallel-gate-consistency-check.js +8 -0
- package/dist/scripts/naruto-parallel-patch-apply-check.js +41 -0
- package/dist/scripts/naruto-parallel-runtime-proof-check.js +9 -0
- package/dist/scripts/naruto-parallelism-mode-check.js +12 -0
- package/dist/scripts/naruto-parallelism-ux-check.js +8 -0
- package/dist/scripts/naruto-proof-message-summary-check.js +9 -0
- package/dist/scripts/naruto-proof-zellij-stacked-summary-check.js +47 -0
- package/dist/scripts/naruto-readonly-routing-check.js +119 -0
- package/dist/scripts/naruto-real-active-pool-check.js +39 -0
- package/dist/scripts/naruto-real-active-pool-runtime-check.js +55 -0
- package/dist/scripts/naruto-real-parallelism-blackbox.js +294 -0
- package/dist/scripts/naruto-rebalance-policy-check.js +41 -0
- package/dist/scripts/naruto-role-distribution-check.js +23 -0
- package/dist/scripts/naruto-shadow-clone-swarm-check.js +164 -0
- package/dist/scripts/naruto-ssot-default-check.js +9 -0
- package/dist/scripts/naruto-ssot-gate-aliases-check.js +10 -0
- package/dist/scripts/naruto-ssot-pipeline-default-check.js +11 -0
- package/dist/scripts/naruto-ssot-route-normalization-check.js +9 -0
- package/dist/scripts/naruto-ssot-routing-check.js +13 -0
- package/dist/scripts/naruto-verification-pool-check.js +36 -0
- package/dist/scripts/naruto-visible-vs-active-workers-check.js +10 -0
- package/dist/scripts/naruto-work-graph-check.js +24 -0
- package/dist/scripts/naruto-worktree-coding-blackbox.js +29 -0
- package/dist/scripts/naruto-worktree-coding-check.js +44 -0
- package/dist/scripts/naruto-worktree-gpt-final-check.js +45 -0
- package/dist/scripts/naruto-worktree-zellij-ui-check.js +28 -0
- package/dist/scripts/naruto-zellij-dynamic-right-column-check.js +48 -0
- package/dist/scripts/naruto-zellij-massive-ui-check.js +23 -0
- package/dist/scripts/native-app-screenshot-repair-check.js +11 -0
- package/dist/scripts/native-capability-postcheck-check.js +16 -0
- package/dist/scripts/native-capability-repair-check.js +15 -0
- package/dist/scripts/native-capability-repair-matrix-check.js +10 -0
- package/dist/scripts/native-chrome-web-review-repair-check.js +10 -0
- package/dist/scripts/native-computer-use-repair-check.js +10 -0
- package/dist/scripts/native-image-generation-repair-check.js +9 -0
- package/dist/scripts/native-swarm-heartbeat-does-not-serialize-launch-check.js +8 -0
- package/dist/scripts/native-swarm-process-spawn-proof-check.js +7 -0
- package/dist/scripts/native-swarm-zellij-does-not-block-workers-check.js +11 -0
- package/dist/scripts/no-ts-nocheck-core-check.js +4 -0
- package/dist/scripts/no-ts-nocheck-release-scripts-check.js +4 -0
- package/dist/scripts/non-recursive-pipeline-check.js +68 -0
- package/dist/scripts/npm-publish-performance-check.js +65 -0
- package/dist/scripts/official-docs-compat-report.js +304 -0
- package/dist/scripts/orphan-gate-detection-check.js +53 -0
- package/dist/scripts/orphan-purge-final-check.js +5 -0
- package/dist/scripts/orphan-strong-detection-check.js +12 -0
- package/dist/scripts/package-published-contract-check.js +46 -0
- package/dist/scripts/packlist-performance-check.js +83 -0
- package/dist/scripts/parallel-claim-enforcement-check.js +21 -0
- package/dist/scripts/parallel-missing-pid-rejection-check.js +55 -0
- package/dist/scripts/parallel-runtime-proof-check.js +23 -0
- package/dist/scripts/parallel-runtime-proof-events-check.js +13 -0
- package/dist/scripts/parallel-runtime-real-blackbox.js +44 -0
- package/dist/scripts/parallel-strict-pid-proof-check.js +54 -0
- package/dist/scripts/parallel-verification-engine-check.js +85 -0
- package/dist/scripts/pipeline-codex-0140-integration-check.js +30 -0
- package/dist/scripts/pipeline-codex-native-doctor-mad-routing-check.js +4 -0
- package/dist/scripts/pipeline-codex-native-doctor-mad-routing-real-blackbox.js +77 -0
- package/dist/scripts/pipeline-codex-native-e2e-blackbox.js +13 -0
- package/dist/scripts/pipeline-codex-native-image-routing-check.js +4 -0
- package/dist/scripts/pipeline-codex-native-image-routing-real-blackbox.js +50 -0
- package/dist/scripts/pipeline-codex-native-loop-routing-check.js +4 -0
- package/dist/scripts/pipeline-codex-native-loop-routing-real-blackbox.js +74 -0
- package/dist/scripts/pipeline-codex-native-qa-routing-check.js +4 -0
- package/dist/scripts/pipeline-codex-native-qa-routing-real-blackbox.js +51 -0
- package/dist/scripts/pipeline-codex-native-research-routing-check.js +4 -0
- package/dist/scripts/pipeline-codex-native-research-routing-real-blackbox.js +45 -0
- package/dist/scripts/pipeline-execution-profile-routing-blackbox.js +4 -0
- package/dist/scripts/pipeline-five-minute-sla-check.js +7 -0
- package/dist/scripts/postinstall-safe-side-effects-check.js +65 -0
- package/dist/scripts/ppt-full-e2e-artifact-graph-check.js +40 -0
- package/dist/scripts/ppt-full-e2e-blackbox-check.js +109 -0
- package/dist/scripts/ppt-image-voxel-relations-check.js +9 -0
- package/dist/scripts/ppt-imagegen-blackbox-check.js +46 -0
- package/dist/scripts/ppt-imagegen-review-fixture-check.js +6 -0
- package/dist/scripts/ppt-issue-extraction-fixture-check.js +7 -0
- package/dist/scripts/ppt-no-mock-as-real-check.js +8 -0
- package/dist/scripts/ppt-no-text-fallback-check.js +7 -0
- package/dist/scripts/ppt-proof-trust-fixture-check.js +10 -0
- package/dist/scripts/ppt-real-export-adapter-check.js +13 -0
- package/dist/scripts/ppt-real-imagegen-smoke-check.js +42 -0
- package/dist/scripts/ppt-real-imagegen-wiring-check.js +16 -0
- package/dist/scripts/ppt-reexport-rereview-check.js +19 -0
- package/dist/scripts/ppt-slide-export-fixture-check.js +7 -0
- package/dist/scripts/prepublish-fast-check.js +128 -0
- package/dist/scripts/priority-full-closure-check.js +12 -0
- package/dist/scripts/probe-memoization-check.js +11 -0
- package/dist/scripts/product-design-auto-install-check.js +119 -0
- package/dist/scripts/product-design-plugin-routing-check.js +101 -0
- package/dist/scripts/project-skill-dedupe-blackbox.js +36 -0
- package/dist/scripts/project-skill-dedupe-check.js +16 -0
- package/dist/scripts/prompt-placeholder-guard-check.js +33 -0
- package/dist/scripts/proof-root-cause-policy-check.js +70 -0
- package/dist/scripts/provider-badge-context-check.js +26 -0
- package/dist/scripts/provider-context-config-toml-check.js +63 -0
- package/dist/scripts/python-codex-sdk-all-pipelines-check.js +47 -0
- package/dist/scripts/python-codex-sdk-capability-check.js +75 -0
- package/dist/scripts/python-codex-sdk-sandbox-policy-check.js +10 -0
- package/dist/scripts/python-codex-sdk-stream-bridge-check.js +12 -0
- package/dist/scripts/python-tools-smoke-check.js +71 -0
- package/dist/scripts/qa-actual-route-backfill-check.js +5 -0
- package/dist/scripts/qa-backfill-route-blackbox.js +5 -0
- package/dist/scripts/qa-loop-app-handoff-capability-check.js +9 -0
- package/dist/scripts/qa-loop-app-handoff-check.js +9 -0
- package/dist/scripts/qa-loop-app-handoff-cli-check.js +8 -0
- package/dist/scripts/qa-loop-app-handoff-confirmation-check.js +24 -0
- package/dist/scripts/qa-loop-app-handoff-gate-lifecycle-check.js +44 -0
- package/dist/scripts/qa-loop-app-handoff-launch-check.js +7 -0
- package/dist/scripts/qa-loop-app-handoff-status-lifecycle-check.js +7 -0
- package/dist/scripts/qa-loop-budget-policy-check.js +8 -0
- package/dist/scripts/qa-loop-effort-escalation-check.js +9 -0
- package/dist/scripts/qa-loop-execution-profile-routing-check.js +4 -0
- package/dist/scripts/qa-loop-image-path-exposure-check.js +9 -0
- package/dist/scripts/qa-loop-image-path-prompt-injection-check.js +8 -0
- package/dist/scripts/qa-patch-swarm-route-blackbox.js +10 -0
- package/dist/scripts/readme-architecture-imagegen-official-check.js +448 -0
- package/dist/scripts/release-affected-selector-check.js +41 -0
- package/dist/scripts/release-aggressive-resource-governor-check.js +25 -0
- package/dist/scripts/release-batch-runner-check.js +6 -0
- package/dist/scripts/release-cache-bridge-check.js +23 -0
- package/dist/scripts/release-cache-glob-hashing-check.js +42 -0
- package/dist/scripts/release-cache-input-classifier-check.js +13 -0
- package/dist/scripts/release-cache-neutralization-report-check.js +13 -0
- package/dist/scripts/release-cache-version-neutral-fixture-check.js +65 -0
- package/dist/scripts/release-check-stamp.js +2 -1
- package/dist/scripts/release-dag-full-coverage-check.js +428 -0
- package/dist/scripts/release-dist-freshness-check.js +8 -0
- package/dist/scripts/release-dynamic-performance-check.js +110 -0
- package/dist/scripts/release-dynamic-presets-check.js +20 -0
- package/dist/scripts/release-full-parallelism-blackbox.js +41 -0
- package/dist/scripts/release-gate-batch-runner-check.js +43 -0
- package/dist/scripts/release-gate-budget-check.js +36 -0
- package/dist/scripts/release-gate-dag-runner-check.js +107 -0
- package/dist/scripts/release-gate-script-parity-check.js +117 -0
- package/dist/scripts/release-metadata-1-11-check.js +37 -0
- package/dist/scripts/release-metadata-1-12-check.js +48 -0
- package/dist/scripts/release-metadata-1-13-check.js +53 -0
- package/dist/scripts/release-metadata-1-14-check.js +63 -0
- package/dist/scripts/release-metadata-1-16-check.js +81 -0
- package/dist/scripts/release-metadata-1-17-check.js +51 -0
- package/dist/scripts/release-metadata-1-19-check.js +376 -0
- package/dist/scripts/release-metadata-check.js +7 -0
- package/dist/scripts/release-native-agent-fixture-check.js +41 -0
- package/dist/scripts/release-parallel-check.js +375 -0
- package/dist/scripts/release-parallel-full-coverage-check.js +13 -0
- package/dist/scripts/release-parallel-speed-budget-check.js +91 -0
- package/dist/scripts/release-proof-truth-check.js +14 -0
- package/dist/scripts/release-provenance-check.js +143 -0
- package/dist/scripts/release-readiness-report.js +1231 -0
- package/dist/scripts/release-real-check.js +338 -0
- package/dist/scripts/release-registry-check.js +353 -0
- package/dist/scripts/release-runtime-truth-matrix-check.js +47 -0
- package/dist/scripts/release-script-type-safety-check.js +4 -0
- package/dist/scripts/release-speed-summary-check.js +20 -0
- package/dist/scripts/release-stability-report-check.js +99 -0
- package/dist/scripts/release-triwiki-first-runner-blackbox.js +44 -0
- package/dist/scripts/release-triwiki-first-runner-check.js +9 -0
- package/dist/scripts/release-version-truth-check.js +134 -0
- package/dist/scripts/release-wiring-3110-blackbox.js +27 -0
- package/dist/scripts/release-wiring-3112-blackbox.js +17 -0
- package/dist/scripts/release-wiring-3113-blackbox.js +17 -0
- package/dist/scripts/research-actual-route-backfill-check.js +5 -0
- package/dist/scripts/research-backfill-route-blackbox.js +5 -0
- package/dist/scripts/research-blueprint-densifier-check.js +21 -0
- package/dist/scripts/research-claim-builder-check.js +19 -0
- package/dist/scripts/research-complete-package-fixture-check.js +29 -0
- package/dist/scripts/research-execution-profile-routing-check.js +4 -0
- package/dist/scripts/research-final-reviewer-blackbox.js +70 -0
- package/dist/scripts/research-handoff-consumability-check.js +23 -0
- package/dist/scripts/research-parallel-source-shards-check.js +22 -0
- package/dist/scripts/research-quality-gate-check.js +112 -0
- package/dist/scripts/research-real-cycle-no-legacy-final-md-check.js +14 -0
- package/dist/scripts/research-real-synthesis-no-deterministic-renderer-check.js +14 -0
- package/dist/scripts/research-repetition-detector-check.js +19 -0
- package/dist/scripts/research-short-report-rejection-check.js +46 -0
- package/dist/scripts/research-source-ledger-merge-check.js +26 -0
- package/dist/scripts/research-stage-cycle-runtime-blackbox.js +40 -0
- package/dist/scripts/research-synthesis-prompt-contract-check.js +36 -0
- package/dist/scripts/research-synthesis-writer-blackbox.js +24 -0
- package/dist/scripts/research-synthesis-writer-check.js +26 -0
- package/dist/scripts/research-template-report-rejection-check.js +56 -0
- package/dist/scripts/research-ultra-stability-report.js +45 -0
- package/dist/scripts/responses-retry-policy-centralized-check.js +19 -0
- package/dist/scripts/retention-cleanup-safety-check.js +155 -0
- package/dist/scripts/route-blackbox-realism-check.js +21 -0
- package/dist/scripts/route-proof-artifact-structure-check.js +145 -0
- package/dist/scripts/runtime-dist-parity-check.js +78 -0
- package/dist/scripts/runtime-no-mjs-scripts-check.js +45 -0
- package/dist/scripts/runtime-no-src-mjs-check.js +32 -0
- package/dist/scripts/runtime-no-tmux-check.js +114 -0
- package/dist/scripts/runtime-proof-summary-check.js +58 -0
- package/dist/scripts/runtime-proof-summary-cli-check.js +51 -0
- package/dist/scripts/runtime-proof-summary-messages-check.js +37 -0
- package/dist/scripts/runtime-proof-zellij-stacked-summary-check.js +58 -0
- package/dist/scripts/runtime-ts-python-boundary-check.js +59 -0
- package/dist/scripts/runtime-ts-rust-boundary-check.js +74 -0
- package/dist/scripts/runtime-ts-source-of-truth-check.js +55 -0
- package/dist/scripts/safety-check.js +23 -0
- package/dist/scripts/scheduler-batch-dispatch-check.js +17 -0
- package/dist/scripts/scheduler-critical-path-check.js +9 -0
- package/dist/scripts/scheduler-extreme-parallel-check.js +7 -0
- package/dist/scripts/scheduler-no-false-pending-block-check.js +7 -0
- package/dist/scripts/scheduler-parallel-proof-consistency-check.js +65 -0
- package/dist/scripts/scheduler-resource-budget-check.js +7 -0
- package/dist/scripts/scheduler-resource-claim-blackbox.js +24 -0
- package/dist/scripts/scheduler-utilization-integral-check.js +105 -0
- package/dist/scripts/scheduler-utilization-proof-check.js +8 -0
- package/dist/scripts/secret-line-rollback-check.js +35 -0
- package/dist/scripts/secret-preservation-check.js +11 -0
- package/dist/scripts/secret-preservation-guard-check.js +37 -0
- package/dist/scripts/shared-memory-fixture-check.js +27 -0
- package/dist/scripts/side-effect-runtime-report-check.js +19 -0
- package/dist/scripts/side-effect-zero-gate-check.js +226 -0
- package/dist/scripts/skill-name-canonicalizer-check.js +9 -0
- package/dist/scripts/skill-registry-ledger-check.js +14 -0
- package/dist/scripts/skill-sync-atomic-check.js +35 -0
- package/dist/scripts/sks-1-11-fixture-check.js +130 -0
- package/dist/scripts/sks-1-12-real-execution-check-lib.js +27 -0
- package/dist/scripts/sks-3-1-4-directive-check-lib.js +212 -0
- package/dist/scripts/sks-3-1-5-directive-check-lib.js +318 -0
- package/dist/scripts/sks-3-1-6-directive-check-lib.js +522 -0
- package/dist/scripts/sks-3-1-7-directive-check-lib.js +58 -0
- package/dist/scripts/sks-3-1-8-check-lib.js +30 -0
- package/dist/scripts/sks-3110-all-feature-regression-blackbox.js +116 -0
- package/dist/scripts/sks-3112-all-feature-regression-blackbox.js +29 -0
- package/dist/scripts/sks-3113-all-feature-regression-blackbox.js +17 -0
- package/dist/scripts/sks-400-all-feature-regression-blackbox.js +21 -0
- package/dist/scripts/sks-400-extreme-parallel-blackbox.js +8 -0
- package/dist/scripts/sks-400-five-minute-blackbox.js +9 -0
- package/dist/scripts/sks-400-legacy-purge-blackbox.js +8 -0
- package/dist/scripts/sks-401-all-feature-regression-blackbox.js +46 -0
- package/dist/scripts/sks-401-five-minute-actual-blackbox.js +23 -0
- package/dist/scripts/sks-402-all-feature-regression-blackbox.js +9 -0
- package/dist/scripts/sks-402-five-minute-real-blackbox.js +22 -0
- package/dist/scripts/sksd-daemon-check.js +9 -0
- package/dist/scripts/sksd-warm-cache-blackbox.js +12 -0
- package/dist/scripts/source-intelligence-all-modes-check.js +32 -0
- package/dist/scripts/source-intelligence-policy-check.js +13 -0
- package/dist/scripts/strategy-adhd-orchestrating-gate-check.js +22 -0
- package/dist/scripts/strategy-file-ownership-plan-check.js +18 -0
- package/dist/scripts/strategy-parallel-modification-plan-check.js +19 -0
- package/dist/scripts/strategy-verification-rollback-dag-check.js +19 -0
- package/dist/scripts/supabase-secret-preservation-blackbox.js +29 -0
- package/dist/scripts/team-actual-route-backfill-check.js +5 -0
- package/dist/scripts/team-alias-to-naruto-check.js +7 -0
- package/dist/scripts/team-backfill-route-blackbox.js +5 -0
- package/dist/scripts/team-legacy-create-removed-check.js +12 -0
- package/dist/scripts/team-parallel-write-blackbox.js +55 -0
- package/dist/scripts/team-patch-swarm-route-blackbox.js +10 -0
- package/dist/scripts/terminal-keyboard-enhancement-safety-check.js +12 -0
- package/dist/scripts/terminal-tui-output-stability-check.js +35 -0
- package/dist/scripts/test-no-orphan-dist-imports-check.js +73 -0
- package/dist/scripts/triwiki-affected-graph-blackbox.js +28 -0
- package/dist/scripts/triwiki-affected-graph-check.js +10 -0
- package/dist/scripts/triwiki-cache-key-check.js +9 -0
- package/dist/scripts/triwiki-gate-impact-map-check.js +8 -0
- package/dist/scripts/triwiki-module-card-check.js +7 -0
- package/dist/scripts/triwiki-proof-bank-blackbox.js +30 -0
- package/dist/scripts/triwiki-proof-bank-check.js +7 -0
- package/dist/scripts/triwiki-proof-bank-lock-blackbox.js +7 -0
- package/dist/scripts/triwiki-proof-card-check.js +23 -0
- package/dist/scripts/triwiki-stale-proof-rejection-check.js +25 -0
- package/dist/scripts/trust-fixture-check.js +33 -0
- package/dist/scripts/type-surface-codex-app-check.js +4 -0
- package/dist/scripts/typescript-migration-report.js +78 -0
- package/dist/scripts/ultra-router-auto-router-check.js +33 -0
- package/dist/scripts/ultra-router-classification-check.js +28 -0
- package/dist/scripts/update-gate-removed-check.js +9 -0
- package/dist/scripts/update-mad-zellij-notice-check.js +9 -0
- package/dist/scripts/update-notice-check.js +10 -0
- package/dist/scripts/update-preserves-supabase-keys-blackbox.js +27 -0
- package/dist/scripts/update-secret-migration-journal-check.js +8 -0
- package/dist/scripts/update-secret-preservation-guard-check.js +10 -0
- package/dist/scripts/ux-patch-swarm-route-blackbox.js +10 -0
- package/dist/scripts/ux-ppt-structured-extraction-check.js +21 -0
- package/dist/scripts/ux-review-extract-real-callouts-fixture-check.js +8 -0
- package/dist/scripts/ux-review-extract-wires-real-extractor-check.js +15 -0
- package/dist/scripts/ux-review-generate-callouts-fixture-check.js +9 -0
- package/dist/scripts/ux-review-image-voxel-relations-check.js +31 -0
- package/dist/scripts/ux-review-imagegen-blackbox-check.js +67 -0
- package/dist/scripts/ux-review-no-fake-callouts-check.js +8 -0
- package/dist/scripts/ux-review-no-text-fallback-check.js +25 -0
- package/dist/scripts/ux-review-patch-diff-recheck-check.js +20 -0
- package/dist/scripts/ux-review-patch-handoff-fixture-check.js +8 -0
- package/dist/scripts/ux-review-real-imagegen-smoke-check.js +31 -0
- package/dist/scripts/ux-review-real-loop-fixture-check.js +24 -0
- package/dist/scripts/ux-review-recapture-recheck-fixture-check.js +8 -0
- package/dist/scripts/ux-review-run-wires-imagegen-check.js +11 -0
- package/dist/scripts/worker-pane-communication-contract-check.js +54 -0
- package/dist/scripts/wrongness-fixture-check.js +65 -0
- package/dist/scripts/xai-mcp-capability-check.js +14 -0
- package/dist/scripts/zellij-capability-check.js +15 -0
- package/dist/scripts/zellij-dashboard-pane-check.js +70 -0
- package/dist/scripts/zellij-developer-controls-check.js +20 -0
- package/dist/scripts/zellij-doctor-readiness-check.js +63 -0
- package/dist/scripts/zellij-dynamic-pane-lifecycle-check.js +21 -0
- package/dist/scripts/zellij-fake-adapter-check.js +33 -0
- package/dist/scripts/zellij-first-slot-down-stack-check.js +21 -0
- package/dist/scripts/zellij-first-slot-down-stack-real-check.js +349 -0
- package/dist/scripts/zellij-homebrew-policy-check.js +4 -0
- package/dist/scripts/zellij-initial-main-only-blackbox.js +28 -0
- package/dist/scripts/zellij-lane-renderer-check.js +80 -0
- package/dist/scripts/zellij-launch-command-truth-check.js +75 -0
- package/dist/scripts/zellij-layout-valid-check.js +90 -0
- package/dist/scripts/zellij-pane-creation-lock-metrics-check.js +12 -0
- package/dist/scripts/zellij-pane-lock-concurrency-blackbox.js +80 -0
- package/dist/scripts/zellij-pane-lock-does-not-block-worker-check.js +14 -0
- package/dist/scripts/zellij-pane-lock-open-worker-integration-blackbox.js +137 -0
- package/dist/scripts/zellij-pane-proof-check.js +59 -0
- package/dist/scripts/zellij-qa-app-handoff-status-check.js +9 -0
- package/dist/scripts/zellij-real-session-cleanup-check.js +21 -0
- package/dist/scripts/zellij-real-session-heartbeat-check.js +49 -0
- package/dist/scripts/zellij-real-session-launch-check.js +57 -0
- package/dist/scripts/zellij-right-column-headless-overflow-check.js +22 -0
- package/dist/scripts/zellij-right-column-manager-check.js +27 -0
- package/dist/scripts/zellij-screen-proof-check.js +45 -0
- package/dist/scripts/zellij-self-heal-check.js +4 -0
- package/dist/scripts/zellij-self-heal-dry-run-check.js +4 -0
- package/dist/scripts/zellij-self-heal-status-contract-check.js +4 -0
- package/dist/scripts/zellij-self-heal-typed-blackbox.js +4 -0
- package/dist/scripts/zellij-slot-column-anchor-check.js +66 -0
- package/dist/scripts/zellij-slot-column-anchor-telemetry-check.js +9 -0
- package/dist/scripts/zellij-slot-only-ui-check.js +31 -0
- package/dist/scripts/zellij-slot-pane-renderer-check.js +150 -0
- package/dist/scripts/zellij-slot-pane-stale-detection-check.js +74 -0
- package/dist/scripts/zellij-slot-pane-telemetry-renderer-check.js +11 -0
- package/dist/scripts/zellij-slot-renderer-proof-semantics-check.js +59 -0
- package/dist/scripts/zellij-slot-telemetry-check.js +39 -0
- package/dist/scripts/zellij-slot-telemetry-incremental-check.js +48 -0
- package/dist/scripts/zellij-slot-telemetry-live-flush-check.js +57 -0
- package/dist/scripts/zellij-slot-telemetry-performance-check.js +34 -0
- package/dist/scripts/zellij-slot-telemetry-real-blackbox.js +20 -0
- package/dist/scripts/zellij-slot-telemetry-renderer-check.js +10 -0
- package/dist/scripts/zellij-slot-telemetry-runtime-check.js +23 -0
- package/dist/scripts/zellij-spawn-on-demand-layout-check.js +40 -0
- package/dist/scripts/zellij-stacked-capability-routing-check.js +11 -0
- package/dist/scripts/zellij-stacked-fallback-integration-blackbox.js +81 -0
- package/dist/scripts/zellij-stacked-version-matrix-check.js +31 -0
- package/dist/scripts/zellij-stacked-version-parser-check.js +21 -0
- package/dist/scripts/zellij-ui-design-check.js +105 -0
- package/dist/scripts/zellij-update-missing-self-heal-check.js +4 -0
- package/dist/scripts/zellij-update-prompt-matrix-check.js +18 -0
- package/dist/scripts/zellij-update-prompt-mode-check.js +20 -0
- package/dist/scripts/zellij-update-prompt-safety-check.js +10 -0
- package/dist/scripts/zellij-worker-pane-manager-check.js +109 -0
- package/dist/scripts/zellij-worker-pane-manager-single-owner-check.js +47 -0
- package/dist/scripts/zellij-worker-pane-real-ui-blackbox.js +202 -0
- package/dist/scripts/zellij-worker-pane-spawn-order-check.js +35 -0
- package/package.json +17 -7
- package/schemas/codex/app-server-0.142/codex_app_server_protocol.v2.schemas.json +18447 -0
- package/schemas/codex-release-manifest.schema.json +44 -0
|
@@ -0,0 +1,1231 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
import fs from 'node:fs';
|
|
4
|
+
import path from 'node:path';
|
|
5
|
+
import { spawnSync } from 'node:child_process';
|
|
6
|
+
import { fileURLToPath } from 'node:url';
|
|
7
|
+
const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..', '..');
|
|
8
|
+
const pkg = readJson('package.json');
|
|
9
|
+
const reportDir = path.join(root, '.sneakoscope', 'reports');
|
|
10
|
+
const RELEASE_VERSION = pkg.version;
|
|
11
|
+
const jsonPath = path.join(reportDir, `release-readiness-${RELEASE_VERSION}.json`);
|
|
12
|
+
const mdPath = path.join(reportDir, `release-readiness-${RELEASE_VERSION}.md`);
|
|
13
|
+
const releaseGateManifest = readJson('release-gates.v2.json', { gates: [] });
|
|
14
|
+
const releaseGateIds = new Set((Array.isArray(releaseGateManifest.gates) ? releaseGateManifest.gates : [])
|
|
15
|
+
.filter((gate) => Array.isArray(gate.preset) && gate.preset.includes('release'))
|
|
16
|
+
.map((gate) => gate.id));
|
|
17
|
+
const latestReleaseDagSummary = readLatestReleaseDagSummary();
|
|
18
|
+
const releaseParallelCheckSource = readText('src/scripts/release-parallel-check.ts', '');
|
|
19
|
+
const releaseRealCheckSource = readText('src/scripts/release-real-check.ts', '');
|
|
20
|
+
const hooksRuntimeSource = readText('src/core/hooks-runtime.ts', '');
|
|
21
|
+
const checks = {
|
|
22
|
+
runtime_no_src_mjs: scriptContains('release:check:parallel', 'runtime:no-src-mjs'),
|
|
23
|
+
runtime_ts_source_of_truth: scriptContains('release:check:parallel', 'runtime:ts-source-of-truth'),
|
|
24
|
+
architecture_guard: scriptContains('release:check:parallel', 'architecture:guard'),
|
|
25
|
+
runtime_dist_parity: scriptContains('release:check:parallel', 'runtime:dist-parity'),
|
|
26
|
+
route_proof_artifact_structure: scriptContains('release:check:parallel', 'routes:proof-artifact-structure'),
|
|
27
|
+
agent_codex_app_cockpit: scriptContains('release:check:parallel', 'agent:codex-app-cockpit'),
|
|
28
|
+
agent_janitor: scriptContains('release:check:parallel', 'agent:janitor'),
|
|
29
|
+
agent_multi_project_isolation: scriptContains('release:check:parallel', 'agent:multi-project-isolation'),
|
|
30
|
+
verification_parallel_engine: scriptContains('release:check:parallel', 'verification:parallel-engine'),
|
|
31
|
+
hook_strict_subset: scriptContains('release:check', 'hooks:strict-subset-check'),
|
|
32
|
+
hooks_official_hash_oracle: scriptContains('release:check', 'hooks:official-hash-oracle'),
|
|
33
|
+
hooks_actual_parity_v2: scriptContains('release:check', 'hooks:actual-parity-v2'),
|
|
34
|
+
hooks_runtime_replay_warning_zero_v2: scriptContains('release:check', 'hooks:runtime-replay-warning-zero-v2'),
|
|
35
|
+
ppt_full_e2e_blackbox: scriptContains('release:check', 'ppt:full-e2e-blackbox'),
|
|
36
|
+
ppt_full_e2e_artifact_graph: scriptContains('release:check', 'ppt:full-e2e-artifact-graph'),
|
|
37
|
+
codex_0133_official_compat: scriptContains('release:check', 'codex:0.133-official-compat'),
|
|
38
|
+
codex_0136_compat: scriptContains('release:check', 'codex:0.137-compat'),
|
|
39
|
+
codex_0134_compat: scriptContains('release:check', 'codex:0.134-compat'),
|
|
40
|
+
codex_0134_official_compat: scriptContains('release:check', 'codex:0.134-official-compat'),
|
|
41
|
+
codex_profile_primary: scriptContains('release:check', 'codex:profile-primary'),
|
|
42
|
+
codex_managed_proxy_env: scriptContains('release:check', 'codex:managed-proxy-env'),
|
|
43
|
+
codex_0134_runner_truth: scriptContains('release:check', 'codex:0.134-runner-truth'),
|
|
44
|
+
codex_0139_real_probes: releaseGateIds.has('codex:0139-real-probes'),
|
|
45
|
+
codex_0139_real_probe_summary: releaseGateIds.has('codex:0139-real-probe-summary'),
|
|
46
|
+
doctor_codex_0139_real_probes: releaseGateIds.has('doctor:codex-0139-real-probes'),
|
|
47
|
+
mcp_0134_modernization: scriptContains('release:check', 'mcp:0.134-modernization'),
|
|
48
|
+
mcp_readonly_runtime_scheduler: scriptContains('release:check', 'mcp:readonly-runtime-scheduler'),
|
|
49
|
+
appshots_thread_attachment_discovery: scriptContains('release:check', 'appshots:thread-attachment-discovery'),
|
|
50
|
+
source_intelligence_codex_history_search: scriptContains('release:check', 'source-intelligence:codex-history-search'),
|
|
51
|
+
agent_parallel_write_kernel: scriptContains('release:check', 'agent:parallel-write-kernel'),
|
|
52
|
+
agent_parallel_write_blackbox: scriptContains('release:check', 'agent:parallel-write-blackbox'),
|
|
53
|
+
team_parallel_write_blackbox: scriptContains('release:check', 'team:parallel-write-blackbox'),
|
|
54
|
+
dfix_parallel_write_blackbox: scriptContains('release:check', 'dfix:parallel-write-blackbox'),
|
|
55
|
+
agent_patch_envelope_extraction: scriptContains('release:check', 'agent:patch-envelope-extraction'),
|
|
56
|
+
agent_patch_queue_runtime: scriptContains('release:check', 'agent:patch-queue-runtime'),
|
|
57
|
+
agent_strategy_to_lease_wiring: scriptContains('release:check', 'agent:strategy-to-lease-wiring'),
|
|
58
|
+
agent_patch_swarm_runtime: scriptContains('release:check', 'agent:patch-swarm-runtime'),
|
|
59
|
+
agent_patch_swarm_runtime_truth: scriptContains('release:check', 'agent:patch-swarm-runtime-truth'),
|
|
60
|
+
agent_patch_transaction_journal: scriptContains('release:check', 'agent:patch-transaction-journal'),
|
|
61
|
+
agent_patch_conflict_rebase: scriptContains('release:check', 'agent:patch-conflict-rebase'),
|
|
62
|
+
agent_strategy_to_patch_strict: scriptContains('release:check', 'agent:strategy-to-patch-strict'),
|
|
63
|
+
agent_rollback_command: scriptContains('release:check', 'agent:rollback-command'),
|
|
64
|
+
agent_native_cli_session_swarm: scriptContains('release:check', 'agent:native-cli-session-swarm'),
|
|
65
|
+
agent_native_cli_session_swarm_10: scriptContains('release:check', 'agent:native-cli-session-swarm-10'),
|
|
66
|
+
agent_native_cli_session_swarm_20: scriptContains('release:check', 'agent:native-cli-session-swarm-20'),
|
|
67
|
+
agent_no_subagent_scaling: scriptContains('release:check', 'agent:no-subagent-scaling'),
|
|
68
|
+
agent_official_subagent_helper_policy: scriptContains('release:check', 'agent:official-subagent-helper-policy'),
|
|
69
|
+
agent_native_cli_session_proof: scriptContains('release:check', 'agent:native-cli-session-proof'),
|
|
70
|
+
agent_worker_backend_router: scriptContains('release:check', 'agent:worker-backend-router'),
|
|
71
|
+
agent_codex_child_overlap: scriptContains('release:check', 'agent:codex-child-overlap'),
|
|
72
|
+
agent_model_authored_patch_envelope: scriptContains('release:check', 'agent:model-authored-patch-envelope'),
|
|
73
|
+
zellij_pane_proof: scriptContains('release:check', 'zellij:pane-proof'),
|
|
74
|
+
zellij_screen_proof: scriptContains('release:check', 'zellij:screen-proof'),
|
|
75
|
+
zellij_lane_renderer: scriptContains('release:check', 'zellij:lane-renderer'),
|
|
76
|
+
mad_sks_zellij_launch: scriptContains('release:check', 'mad-sks:zellij-launch'),
|
|
77
|
+
agent_fast_mode_default: scriptContains('release:check', 'agent:fast-mode-default'),
|
|
78
|
+
agent_fast_mode_worker_propagation: scriptContains('release:check', 'agent:fast-mode-worker-propagation'),
|
|
79
|
+
codex_fast_mode_profile_propagation: scriptContains('release:check', 'codex:fast-mode-profile-propagation'),
|
|
80
|
+
mad_sks_fast_mode_propagation: scriptContains('release:check', 'mad-sks:fast-mode-propagation'),
|
|
81
|
+
agent_patch_verification_dag: scriptContains('release:check', 'agent:patch-verification-dag'),
|
|
82
|
+
agent_patch_rollback_dag: scriptContains('release:check', 'agent:patch-rollback-dag'),
|
|
83
|
+
agent_patch_proof_runtime: scriptContains('release:check', 'agent:patch-proof-runtime'),
|
|
84
|
+
agent_patch_swarm_route_blackbox: scriptContains('release:check', 'agent:patch-swarm-route-blackbox'),
|
|
85
|
+
team_patch_swarm_route_blackbox: scriptContains('release:check', 'team:patch-swarm-route-blackbox'),
|
|
86
|
+
dfix_patch_swarm_route_blackbox: scriptContains('release:check', 'dfix:patch-swarm-route-blackbox'),
|
|
87
|
+
agent_patch_proof: scriptContains('release:check', 'agent:patch-proof'),
|
|
88
|
+
agent_patch_rollback: scriptContains('release:check', 'agent:patch-rollback'),
|
|
89
|
+
release_gate_existence_audit: scriptContains('release:check', 'release:gate-existence-audit'),
|
|
90
|
+
flagship_proof_graph_v3: scriptContains('release:check', 'flagship:proof-graph-v3'),
|
|
91
|
+
flagship_proof_graph_v4: scriptContains('release:check', 'flagship:proof-graph-v4'),
|
|
92
|
+
mad_sks_actual_executor: scriptContains('release:check', 'mad-sks:actual-executor'),
|
|
93
|
+
mad_sks_file_write_executor: scriptContains('release:check', 'mad-sks:file-write-executor'),
|
|
94
|
+
mad_sks_shell_executor: scriptContains('release:check', 'mad-sks:shell-executor'),
|
|
95
|
+
mad_sks_package_executor: scriptContains('release:check', 'mad-sks:package-executor'),
|
|
96
|
+
mad_sks_service_executor: scriptContains('release:check', 'mad-sks:service-executor'),
|
|
97
|
+
mad_sks_db_executor: scriptContains('release:check', 'mad-sks:db-executor'),
|
|
98
|
+
mad_sks_rollback_apply: scriptContains('release:check', 'mad-sks:rollback-apply'),
|
|
99
|
+
mad_sks_live_guard_smoke: scriptContains('release:check', 'mad-sks:live-guard-smoke'),
|
|
100
|
+
mad_sks_executor_proof_graph: scriptContains('release:check', 'mad-sks:executor-proof-graph'),
|
|
101
|
+
legacy_multiagent_removed: scriptContains('release:check', 'agent:legacy-multiagent-removed'),
|
|
102
|
+
codex_lb_persistence_truth: scriptContains('release:check', 'codex-lb:persistence-truth'),
|
|
103
|
+
computer_use_live_evidence: scriptContains('release:check', 'computer-use:live-evidence'),
|
|
104
|
+
docs_truthfulness: scriptContains('release:check', 'docs:truthfulness'),
|
|
105
|
+
release_readiness: scriptContains('release:check:parallel', 'release:readiness'),
|
|
106
|
+
xai_mcp_capability: scriptContains('release:check:parallel', 'xai-mcp:capability'),
|
|
107
|
+
source_intelligence_policy: scriptContains('release:check:parallel', 'source-intelligence:policy'),
|
|
108
|
+
source_intelligence_all_modes: scriptContains('release:check:parallel', 'source-intelligence:all-modes'),
|
|
109
|
+
codex_web_adapter: scriptContains('release:check:parallel', 'codex-web:adapter'),
|
|
110
|
+
goal_mode_official_default: scriptContains('release:check:parallel', 'goal-mode:official-default'),
|
|
111
|
+
agent_main_no_scout: scriptContains('release:check:parallel', 'agent:main-no-scout'),
|
|
112
|
+
agent_worker_scout_limited: scriptContains('release:check:parallel', 'agent:worker-scout-limited'),
|
|
113
|
+
agent_background_terminals: scriptContains('release:check:parallel', 'agent:background-terminals'),
|
|
114
|
+
agent_zellij_runtime: scriptContains('release:check:parallel', 'agent:zellij-runtime'),
|
|
115
|
+
agent_task_graph_expansion: scriptContains('release:check:parallel', 'agent:task-graph-expansion'),
|
|
116
|
+
agent_follow_up_work_schema: scriptContains('release:check:parallel', 'agent:follow-up-work-schema'),
|
|
117
|
+
agent_dynamic_pool_route_blackbox: scriptContains('release:check:parallel', 'agent:dynamic-pool-route-blackbox'),
|
|
118
|
+
agent_backfill_route_blackbox: scriptContains('release:check:parallel', 'agent:backfill-route-blackbox'),
|
|
119
|
+
agent_cli_options_to_task_graph: scriptContains('release:check:parallel', 'agent:cli-options-to-task-graph'),
|
|
120
|
+
agent_route_truth_backfill: scriptContains('release:check:parallel', 'agent:route-truth-backfill'),
|
|
121
|
+
team_backfill_route_blackbox: scriptContains('release:check:parallel', 'team:backfill-route-blackbox'),
|
|
122
|
+
team_actual_route_backfill: scriptContains('release:check:parallel', 'team:actual-route-backfill'),
|
|
123
|
+
research_backfill_route_blackbox: scriptContains('release:check:parallel', 'research:backfill-route-blackbox'),
|
|
124
|
+
research_actual_route_backfill: scriptContains('release:check:parallel', 'research:actual-route-backfill'),
|
|
125
|
+
qa_backfill_route_blackbox: scriptContains('release:check:parallel', 'qa:backfill-route-blackbox'),
|
|
126
|
+
qa_actual_route_backfill: scriptContains('release:check:parallel', 'qa:actual-route-backfill'),
|
|
127
|
+
zellij_layout_valid: scriptContains('release:check:parallel', 'zellij:layout-valid'),
|
|
128
|
+
zellij_lane_renderer_parallel: scriptContains('release:check:parallel', 'zellij:lane-renderer'),
|
|
129
|
+
zellij_pane_proof_parallel: scriptContains('release:check:parallel', 'zellij:pane-proof'),
|
|
130
|
+
zellij_screen_proof_parallel: scriptContains('release:check:parallel', 'zellij:screen-proof'),
|
|
131
|
+
agent_proof_contract_reconciled: scriptContains('release:check:parallel', 'agent:proof-contract-reconciled'),
|
|
132
|
+
agent_scheduler_proof_hardening: scriptContains('release:check:parallel', 'agent:scheduler-proof-hardening'),
|
|
133
|
+
agent_dynamic_pool: scriptContains('release:check:parallel', 'agent:dynamic-pool'),
|
|
134
|
+
agent_backfill_replenishment: scriptContains('release:check:parallel', 'agent:backfill-replenishment'),
|
|
135
|
+
agent_scheduler_proof: scriptContains('release:check:parallel', 'agent:scheduler-proof'),
|
|
136
|
+
agent_session_generation: scriptContains('release:check:parallel', 'agent:session-generation'),
|
|
137
|
+
agent_terminal_generations: scriptContains('release:check:parallel', 'agent:terminal-generations'),
|
|
138
|
+
agent_zellij_runtime_parallel: scriptContains('release:check:parallel', 'agent:zellij-runtime'),
|
|
139
|
+
zellij_pane_lifecycle: scriptContains('release:check:parallel', 'zellij:pane-proof'),
|
|
140
|
+
zellij_physical_proof: scriptContains('release:check:parallel', 'zellij:screen-proof'),
|
|
141
|
+
agent_cleanup_executor: scriptContains('release:check:parallel', 'agent:cleanup-executor'),
|
|
142
|
+
agent_cleanup_executor_v2: scriptContains('release:check:parallel', 'agent:cleanup-executor-v2'),
|
|
143
|
+
agent_cleanup_command_ux: scriptContains('release:check:parallel', 'agent:cleanup-command-ux'),
|
|
144
|
+
retention_cleanup_safety: scriptContains('release:check:parallel', 'retention:cleanup-safety'),
|
|
145
|
+
agent_intelligent_work_graph: scriptContains('release:check:parallel', 'agent:intelligent-work-graph'),
|
|
146
|
+
agent_ast_aware_work_graph: scriptContains('release:check:parallel', 'agent:ast-aware-work-graph'),
|
|
147
|
+
proof_fake_vs_real_policy: scriptContains('release:check:parallel', 'proof:fake-vs-real-policy'),
|
|
148
|
+
proof_fake_real_policy_v2: scriptContains('release:check:parallel', 'proof:fake-real-policy-v2'),
|
|
149
|
+
release_runtime_truth_matrix: releaseGateIds.has('release:runtime-truth-matrix') || scriptContains('release:check:parallel', 'release:runtime-truth-matrix'),
|
|
150
|
+
route_blackbox_realism: scriptContains('release:check:parallel', 'route:blackbox-realism'),
|
|
151
|
+
real_zellij_pane_proof: scriptContains('release:real-check', 'zellij:pane-proof'),
|
|
152
|
+
real_codex_patch_envelope_smoke: scriptContains('release:real-check', 'agent:real-codex-patch-envelope-smoke'),
|
|
153
|
+
real_codex_parallel_workers: scriptContains('release:real-check', 'agent:real-codex-parallel-workers'),
|
|
154
|
+
real_codex_parallel_workers_5: scriptContains('release:real-check', 'agent:real-codex-parallel-workers-5'),
|
|
155
|
+
real_codex_parallel_workers_10: scriptContains('release:real-check', 'agent:real-codex-parallel-workers-10'),
|
|
156
|
+
real_codex_parallel_workers_20: scriptContains('release:real-check', 'agent:real-codex-parallel-workers-20'),
|
|
157
|
+
real_codex_dynamic_smoke_v2: scriptContains('release:real-check', 'agent:real-codex-dynamic-smoke-v2'),
|
|
158
|
+
real_codex_dynamic_smoke: scriptContains('release:real-check', 'agent:real-codex-dynamic-smoke'),
|
|
159
|
+
agent_dynamic_cockpit: scriptContains('release:check:parallel', 'agent:dynamic-cockpit'),
|
|
160
|
+
agent_source_intelligence_propagation: scriptContains('release:check:parallel', 'agent:source-intelligence-propagation'),
|
|
161
|
+
agent_goal_mode_propagation: scriptContains('release:check:parallel', 'agent:goal-mode-propagation'),
|
|
162
|
+
agent_visual_consistency: scriptContains('release:check:parallel', 'agent:visual-consistency'),
|
|
163
|
+
release_parallel_full_coverage: scriptContains('release:check:parallel', 'release:parallel-full-coverage'),
|
|
164
|
+
priority_full_closure: scriptContains('release:check:parallel', 'priority:full-closure'),
|
|
165
|
+
release_native_agent_backend: scriptContains('release:check', 'release:native-agent-backend'),
|
|
166
|
+
codex_0133_compat: scriptContains('release:check', 'codex:0.133-compat'),
|
|
167
|
+
codex_output_schema_fixture: scriptContains('release:check', 'codex:output-schema-fixture'),
|
|
168
|
+
image_fidelity_check: scriptContains('release:check', 'image-fidelity:check'),
|
|
169
|
+
imagegen_capability: scriptContains('release:check', 'imagegen:capability'),
|
|
170
|
+
gpt_image_2_request_validator: scriptContains('release:check', 'imagegen:gpt-image-2-request-validator'),
|
|
171
|
+
ux_review_run_wires_imagegen: scriptContains('release:check', 'ux-review:run-wires-imagegen'),
|
|
172
|
+
ux_review_extract_wires_real_extractor: scriptContains('release:check', 'ux-review:extract-wires-real-extractor'),
|
|
173
|
+
ux_review_patch_diff_recheck: scriptContains('release:check', 'ux-review:patch-diff-recheck'),
|
|
174
|
+
ux_review_imagegen_blackbox: scriptContains('release:check', 'ux-review:imagegen-blackbox'),
|
|
175
|
+
ux_review_real_loop_fixture: scriptContains('release:check', 'ux-review:real-loop-fixture'),
|
|
176
|
+
ux_review_generate_callouts_fixture: scriptContains('release:check', 'ux-review:generate-callouts-fixture'),
|
|
177
|
+
ux_review_extract_real_callouts_fixture: scriptContains('release:check', 'ux-review:extract-real-callouts-fixture'),
|
|
178
|
+
ux_review_patch_handoff_fixture: scriptContains('release:check', 'ux-review:patch-handoff-fixture'),
|
|
179
|
+
ux_review_recapture_recheck_fixture: scriptContains('release:check', 'ux-review:recapture-recheck-fixture'),
|
|
180
|
+
ux_review_no_text_fallback: scriptContains('release:check', 'ux-review:no-text-fallback'),
|
|
181
|
+
ux_review_no_fake_callouts: scriptContains('release:check', 'ux-review:no-fake-callouts'),
|
|
182
|
+
ux_review_image_voxel_relations: scriptContains('release:check', 'ux-review:image-voxel-relations'),
|
|
183
|
+
ppt_imagegen_review_fixture: scriptContains('release:check', 'ppt:imagegen-review-fixture'),
|
|
184
|
+
ppt_real_export_adapter: scriptContains('release:check', 'ppt:real-export-adapter'),
|
|
185
|
+
ppt_real_imagegen_wiring: scriptContains('release:check', 'ppt:real-imagegen-wiring'),
|
|
186
|
+
ppt_reexport_rereview: scriptContains('release:check', 'ppt:reexport-rereview'),
|
|
187
|
+
ppt_imagegen_blackbox: scriptContains('release:check', 'ppt:imagegen-blackbox'),
|
|
188
|
+
ux_ppt_structured_extraction: scriptContains('release:check', 'ux-ppt:structured-extraction'),
|
|
189
|
+
ppt_slide_export_fixture: scriptContains('release:check', 'ppt:slide-export-fixture'),
|
|
190
|
+
ppt_no_text_fallback: scriptContains('release:check', 'ppt:no-text-fallback'),
|
|
191
|
+
ppt_no_mock_as_real: scriptContains('release:check', 'ppt:no-mock-as-real'),
|
|
192
|
+
ppt_issue_extraction_fixture: scriptContains('release:check', 'ppt:issue-extraction-fixture'),
|
|
193
|
+
ppt_image_voxel_relations: scriptContains('release:check', 'ppt:image-voxel-relations'),
|
|
194
|
+
ppt_proof_trust_fixture: scriptContains('release:check', 'ppt:proof-trust-fixture'),
|
|
195
|
+
dfix_fixture: scriptContains('release:check', 'dfix:fixture'),
|
|
196
|
+
dfix_fast_kernel: scriptContains('release:check', 'dfix:fast-kernel'),
|
|
197
|
+
dfix_blackbox_fast: scriptContains('release:check', 'dfix:blackbox-fast'),
|
|
198
|
+
dfix_performance: scriptContains('release:check', 'dfix:performance'),
|
|
199
|
+
dfix_patch_handoff: scriptContains('release:check', 'dfix:patch-handoff'),
|
|
200
|
+
dfix_verification_recommendation: scriptContains('release:check', 'dfix:verification-recommendation'),
|
|
201
|
+
dfix_verification: scriptContains('release:check', 'dfix:verification'),
|
|
202
|
+
hooks_latest_schema_check: scriptContains('release:check', 'hooks:latest-schema-check'),
|
|
203
|
+
hooks_trust_state_check: scriptContains('release:check', 'hooks:trust-state-check'),
|
|
204
|
+
hooks_trust_warning_zero: scriptContains('release:check', 'hooks:trust-warning-zero'),
|
|
205
|
+
hooks_subagent_events_check: scriptContains('release:check', 'hooks:subagent-events-check'),
|
|
206
|
+
hooks_no_unsupported_handlers: scriptContains('release:check', 'hooks:no-unsupported-handlers'),
|
|
207
|
+
hooks_actual_parity_check: scriptContains('release:check', 'hooks:actual-parity-check'),
|
|
208
|
+
hooks_official_hash_parity: scriptContains('release:check', 'hooks:official-hash-parity'),
|
|
209
|
+
hooks_managed_install_fixture: scriptContains('release:check', 'hooks:managed-install-fixture'),
|
|
210
|
+
hooks_runtime_replay_warning_zero: scriptContains('release:check', 'hooks:runtime-replay-warning-zero'),
|
|
211
|
+
all_features_completion: scriptContains('release:check', 'all-features:completion'),
|
|
212
|
+
all_features_deep_completion: scriptContains('release:check', 'all-features:deep-completion'),
|
|
213
|
+
evidence_flagship_coverage: scriptContains('release:check', 'evidence:flagship-coverage'),
|
|
214
|
+
json_schema_recursive_check: scriptContains('release:check', 'json-schema:recursive-check'),
|
|
215
|
+
release_metadata: scriptContains('release:check:parallel', 'release:metadata'),
|
|
216
|
+
memory_summary_rebuild_check: scriptContains('release:check', 'memory-summary:rebuild-check'),
|
|
217
|
+
loop_blocker_check: scriptContains('release:check', 'loop-blocker:check'),
|
|
218
|
+
official_docs_compat: scriptContains('release:check', 'official-docs:compat'),
|
|
219
|
+
update_check_function_only: fileContains('src/core/update-check.ts', 'pipeline_required: false')
|
|
220
|
+
&& fileContains('src/core/update-check.ts', "mode: 'function'")
|
|
221
|
+
&& fileContains('src/core/hooks-runtime.ts', 'UPDATE_CHECK_HOOK_INVOCATION_POLICY')
|
|
222
|
+
&& !/\brunSksUpdateCheck\s*\(/.test(stripComments(hooksRuntimeSource))
|
|
223
|
+
};
|
|
224
|
+
const docs = runNodeScript('dist/scripts/docs-truthfulness-check.js');
|
|
225
|
+
const officialDocs = runNodeScriptWithOkReportCache('dist/scripts/official-docs-compat-report.js', `.sneakoscope/reports/official-docs-compat-${RELEASE_VERSION}.json`, ['src/scripts/official-docs-compat-report.ts', 'package.json', 'package-lock.json']);
|
|
226
|
+
const releaseMetadata = runNodeScript('dist/scripts/release-metadata-check.js');
|
|
227
|
+
const sideEffectRuntime = runNodeScriptWithOkReportCache('dist/scripts/side-effect-runtime-report-check.js', '.sneakoscope/reports/side-effect-runtime-report.json', ['src/core/safety/side-effect-runtime-report.ts', 'src/scripts/side-effect-runtime-report-check.ts', 'package.json']);
|
|
228
|
+
const releaseProvenance = runNodeScript('dist/scripts/release-provenance-check.js');
|
|
229
|
+
const imagegenCore = runNodeScript('dist/scripts/imagegen-capability-check.js');
|
|
230
|
+
const dynamicReleaseMode = process.env.SKS_RELEASE_DYNAMIC === '1' || Boolean(process.env.SKS_REPORT_DIR);
|
|
231
|
+
const imagegenExternalMissingAllowed = imagegenCore.status !== 0 && dynamicReleaseMode && process.env.SKS_RELEASE_REQUIRE_IMAGEGEN !== '1';
|
|
232
|
+
const runtimeReports = {
|
|
233
|
+
ppt_full_e2e_blackbox: readJson('.sneakoscope/reports/ppt-full-e2e-blackbox.json', null),
|
|
234
|
+
flagship_proof_graph_v3: readJson('.sneakoscope/reports/flagship-proof-graph-v3.json', null),
|
|
235
|
+
flagship_proof_graph_v4: readJson('.sneakoscope/reports/flagship-proof-graph-v4.json', null),
|
|
236
|
+
runtime_truth_matrix: readJson(`.sneakoscope/reports/runtime-truth-matrix-${RELEASE_VERSION}.json`, null),
|
|
237
|
+
real_codex_dynamic_smoke: readJson(`.sneakoscope/reports/agent-real-codex-dynamic-smoke-${RELEASE_VERSION}.json`, null),
|
|
238
|
+
codex_0_136_compat: readJson('.sneakoscope/reports/codex-0.136-compat.json', null),
|
|
239
|
+
codex_0_134_official_compat: readJson('.sneakoscope/reports/codex-0-134-official-compat.json', null),
|
|
240
|
+
codex_0_134_runner_truth: readJson('.sneakoscope/reports/codex-0-134-runner-truth.json', null),
|
|
241
|
+
mcp_0_134_modernization: readJson('.sneakoscope/reports/mcp-0-134-modernization.json', null),
|
|
242
|
+
mcp_readonly_runtime_scheduler: readJson('.sneakoscope/reports/mcp-readonly-runtime-scheduler.json', null),
|
|
243
|
+
appshots_thread_attachment_discovery: readJson('.sneakoscope/reports/appshots-thread-attachment-discovery.json', null),
|
|
244
|
+
agent_parallel_write_kernel: readJson('.sneakoscope/reports/agent-parallel-write-kernel.json', null),
|
|
245
|
+
agent_parallel_write_blackbox: readJson('.sneakoscope/reports/agent-parallel-write-blackbox.json', null),
|
|
246
|
+
team_parallel_write_blackbox: readJson('.sneakoscope/reports/team-parallel-write-blackbox.json', null),
|
|
247
|
+
dfix_parallel_write_blackbox: readJson('.sneakoscope/reports/dfix-parallel-write-blackbox.json', null),
|
|
248
|
+
agent_patch_envelope_extraction: readJson('.sneakoscope/reports/agent-patch-envelope-extraction.json', null),
|
|
249
|
+
agent_patch_queue_runtime: readJson('.sneakoscope/reports/agent-patch-queue-runtime.json', null),
|
|
250
|
+
agent_strategy_to_lease_wiring: readJson('.sneakoscope/reports/agent-strategy-to-lease-wiring.json', null),
|
|
251
|
+
agent_patch_swarm_runtime: readJson('.sneakoscope/reports/agent-patch-swarm-runtime.json', null),
|
|
252
|
+
agent_patch_swarm_runtime_truth: readJson('.sneakoscope/reports/agent-patch-swarm-runtime-truth.json', null),
|
|
253
|
+
agent_patch_transaction_journal: readJson('.sneakoscope/reports/agent-patch-transaction-journal.json', null),
|
|
254
|
+
agent_patch_conflict_rebase: readJson('.sneakoscope/reports/agent-patch-conflict-rebase.json', null),
|
|
255
|
+
agent_strategy_to_patch_strict: readJson('.sneakoscope/reports/agent-strategy-to-patch-strict.json', null),
|
|
256
|
+
agent_rollback_command: readJson('.sneakoscope/reports/agent-rollback-command.json', null),
|
|
257
|
+
agent_native_cli_session_swarm: readJson('.sneakoscope/reports/agent-native-cli-session-swarm.json', null),
|
|
258
|
+
agent_native_cli_session_swarm_10: readJson('.sneakoscope/reports/agent-native-cli-session-swarm-10.json', null),
|
|
259
|
+
agent_native_cli_session_swarm_20: readJson('.sneakoscope/reports/agent-native-cli-session-swarm-20.json', null),
|
|
260
|
+
agent_no_subagent_scaling: readJson('.sneakoscope/reports/agent-no-subagent-scaling.json', null),
|
|
261
|
+
agent_official_subagent_helper_policy: readJson('.sneakoscope/reports/agent-official-subagent-helper-policy.json', null),
|
|
262
|
+
agent_native_cli_session_proof: readJson('.sneakoscope/reports/agent-native-cli-session-proof.json', null),
|
|
263
|
+
agent_worker_backend_router: readJson('.sneakoscope/reports/agent-worker-backend-router.json', null),
|
|
264
|
+
agent_codex_child_overlap: readJson('.sneakoscope/reports/agent-codex-child-overlap.json', null),
|
|
265
|
+
agent_model_authored_patch_envelope: readJson('.sneakoscope/reports/agent-model-authored-patch-envelope.json', null),
|
|
266
|
+
zellij_pane_proof: readJson('.sneakoscope/reports/zellij-pane-proof.json', null),
|
|
267
|
+
zellij_screen_proof: readJson('.sneakoscope/reports/zellij-screen-proof.json', null),
|
|
268
|
+
zellij_lane_renderer: readJson('.sneakoscope/reports/zellij-lane-renderer.json', null),
|
|
269
|
+
codex_0139_real_probe_summary: readJson('.sneakoscope/codex-0139-real-probe-summary.json', null),
|
|
270
|
+
mad_sks_zellij_launch: readJson('.sneakoscope/reports/mad-sks-zellij-launch.json', null),
|
|
271
|
+
agent_zellij_runtime: readJson('.sneakoscope/reports/agent-zellij-runtime.json', null),
|
|
272
|
+
real_codex_parallel_workers: readJson('.sneakoscope/reports/agent-real-codex-parallel-workers.json', null),
|
|
273
|
+
agent_fast_mode_default: readJson('.sneakoscope/reports/agent-fast-mode-default.json', null),
|
|
274
|
+
agent_fast_mode_worker_propagation: readJson('.sneakoscope/reports/agent-fast-mode-worker-propagation.json', null),
|
|
275
|
+
codex_fast_mode_profile_propagation: readJson('.sneakoscope/reports/codex-fast-mode-profile-propagation.json', null),
|
|
276
|
+
mad_sks_fast_mode_propagation: readJson('.sneakoscope/reports/mad-sks-fast-mode-propagation.json', null),
|
|
277
|
+
real_codex_patch_envelope_smoke: readJson('.sneakoscope/reports/agent-real-codex-patch-envelope-smoke.json', null),
|
|
278
|
+
agent_patch_verification_dag: readJson('.sneakoscope/reports/agent-patch-verification-dag.json', null),
|
|
279
|
+
agent_patch_rollback_dag: readJson('.sneakoscope/reports/agent-patch-rollback-dag.json', null),
|
|
280
|
+
agent_patch_proof_runtime: readJson('.sneakoscope/reports/agent-patch-proof-runtime.json', null),
|
|
281
|
+
agent_patch_swarm_route_blackbox: readJson('.sneakoscope/reports/agent-patch-swarm-route-blackbox.json', null),
|
|
282
|
+
team_patch_swarm_route_blackbox: readJson('.sneakoscope/reports/team-patch-swarm-route-blackbox.json', null),
|
|
283
|
+
dfix_patch_swarm_route_blackbox: readJson('.sneakoscope/reports/dfix-patch-swarm-route-blackbox.json', null),
|
|
284
|
+
agent_patch_proof: readJson('.sneakoscope/reports/agent-patch-proof.json', null),
|
|
285
|
+
agent_patch_rollback: readJson('.sneakoscope/reports/agent-patch-rollback.json', null),
|
|
286
|
+
retention_cleanup_safety: readJson('.sneakoscope/reports/retention-cleanup-safety.json', null)
|
|
287
|
+
};
|
|
288
|
+
const runtimeChecks = {
|
|
289
|
+
ppt_full_e2e_blackbox: runtimeReports.ppt_full_e2e_blackbox?.ok === true
|
|
290
|
+
&& ['verified', 'verified_partial'].includes(String(runtimeReports.ppt_full_e2e_blackbox?.proof_status || ''))
|
|
291
|
+
&& runtimeReports.ppt_full_e2e_blackbox?.trust_ok === true
|
|
292
|
+
&& !['blocked', 'failed', 'not_verified'].includes(String(runtimeReports.ppt_full_e2e_blackbox?.trust_status || '')),
|
|
293
|
+
flagship_proof_graph_v3: runtimeReports.flagship_proof_graph_v3?.ok === true,
|
|
294
|
+
flagship_proof_graph_v4: runtimeReports.flagship_proof_graph_v4?.ok === true,
|
|
295
|
+
runtime_truth_matrix: releaseDagGatePassed('release:runtime-truth-matrix') || runtimeReports.runtime_truth_matrix?.ok === true
|
|
296
|
+
&& Array.isArray(runtimeReports.runtime_truth_matrix?.rows)
|
|
297
|
+
&& runtimeReports.runtime_truth_matrix.rows.every((row) => row.required_mode !== true || !['blocked', 'real_required_missing', 'integration_optional'].includes(String(row.proof_level || ''))),
|
|
298
|
+
real_codex_dynamic_smoke: !runtimeReports.real_codex_dynamic_smoke
|
|
299
|
+
|| ['proven', 'fixture_instrumented_real', 'integration_optional'].includes(String(runtimeReports.real_codex_dynamic_smoke?.proof_level || runtimeReports.real_codex_dynamic_smoke?.status || '')),
|
|
300
|
+
real_codex_patch_envelope_smoke: !runtimeReports.real_codex_patch_envelope_smoke
|
|
301
|
+
|| ['proven', 'fixture_instrumented_real', 'integration_optional'].includes(String(runtimeReports.real_codex_patch_envelope_smoke?.proof_level || runtimeReports.real_codex_patch_envelope_smoke?.status || '')),
|
|
302
|
+
real_codex_parallel_workers: !runtimeReports.real_codex_parallel_workers
|
|
303
|
+
|| ['proven', 'fixture_instrumented_real', 'integration_optional'].includes(String(runtimeReports.real_codex_parallel_workers?.proof_level || runtimeReports.real_codex_parallel_workers?.status || '')),
|
|
304
|
+
retention_cleanup_safety: runtimeReports.retention_cleanup_safety?.ok === true
|
|
305
|
+
};
|
|
306
|
+
const remainingP0 = [];
|
|
307
|
+
if (pkg.version !== RELEASE_VERSION)
|
|
308
|
+
remainingP0.push(`package_version_not_${RELEASE_VERSION}`);
|
|
309
|
+
for (const [name, ok] of Object.entries({
|
|
310
|
+
runtime_no_src_mjs: checks.runtime_no_src_mjs,
|
|
311
|
+
runtime_ts_source_of_truth: checks.runtime_ts_source_of_truth,
|
|
312
|
+
architecture_guard: checks.architecture_guard,
|
|
313
|
+
runtime_dist_parity: checks.runtime_dist_parity,
|
|
314
|
+
route_proof_artifact_structure: checks.route_proof_artifact_structure,
|
|
315
|
+
agent_codex_app_cockpit: checks.agent_codex_app_cockpit,
|
|
316
|
+
agent_janitor: checks.agent_janitor,
|
|
317
|
+
agent_multi_project_isolation: checks.agent_multi_project_isolation,
|
|
318
|
+
verification_parallel_engine: checks.verification_parallel_engine,
|
|
319
|
+
release_metadata: checks.release_metadata,
|
|
320
|
+
release_readiness: checks.release_readiness,
|
|
321
|
+
xai_mcp_capability: checks.xai_mcp_capability,
|
|
322
|
+
source_intelligence_policy: checks.source_intelligence_policy,
|
|
323
|
+
source_intelligence_all_modes: checks.source_intelligence_all_modes,
|
|
324
|
+
codex_web_adapter: checks.codex_web_adapter,
|
|
325
|
+
goal_mode_official_default: checks.goal_mode_official_default,
|
|
326
|
+
agent_main_no_scout: checks.agent_main_no_scout,
|
|
327
|
+
agent_worker_scout_limited: checks.agent_worker_scout_limited,
|
|
328
|
+
agent_background_terminals: checks.agent_background_terminals,
|
|
329
|
+
agent_zellij_runtime: checks.agent_zellij_runtime,
|
|
330
|
+
agent_task_graph_expansion: checks.agent_task_graph_expansion,
|
|
331
|
+
agent_follow_up_work_schema: checks.agent_follow_up_work_schema,
|
|
332
|
+
agent_dynamic_pool_route_blackbox: checks.agent_dynamic_pool_route_blackbox,
|
|
333
|
+
agent_backfill_route_blackbox: checks.agent_backfill_route_blackbox,
|
|
334
|
+
agent_cli_options_to_task_graph: checks.agent_cli_options_to_task_graph,
|
|
335
|
+
agent_route_truth_backfill: checks.agent_route_truth_backfill,
|
|
336
|
+
team_backfill_route_blackbox: checks.team_backfill_route_blackbox,
|
|
337
|
+
team_actual_route_backfill: checks.team_actual_route_backfill,
|
|
338
|
+
research_backfill_route_blackbox: checks.research_backfill_route_blackbox,
|
|
339
|
+
research_actual_route_backfill: checks.research_actual_route_backfill,
|
|
340
|
+
qa_backfill_route_blackbox: checks.qa_backfill_route_blackbox,
|
|
341
|
+
qa_actual_route_backfill: checks.qa_actual_route_backfill,
|
|
342
|
+
zellij_layout_valid: checks.zellij_layout_valid,
|
|
343
|
+
zellij_lane_renderer_parallel: checks.zellij_lane_renderer_parallel,
|
|
344
|
+
zellij_pane_proof_parallel: checks.zellij_pane_proof_parallel,
|
|
345
|
+
zellij_screen_proof_parallel: checks.zellij_screen_proof_parallel,
|
|
346
|
+
agent_proof_contract_reconciled: checks.agent_proof_contract_reconciled,
|
|
347
|
+
agent_scheduler_proof_hardening: checks.agent_scheduler_proof_hardening,
|
|
348
|
+
agent_dynamic_pool: checks.agent_dynamic_pool,
|
|
349
|
+
agent_backfill_replenishment: checks.agent_backfill_replenishment,
|
|
350
|
+
agent_scheduler_proof: checks.agent_scheduler_proof,
|
|
351
|
+
agent_session_generation: checks.agent_session_generation,
|
|
352
|
+
agent_terminal_generations: checks.agent_terminal_generations,
|
|
353
|
+
agent_zellij_runtime_parallel: checks.agent_zellij_runtime_parallel,
|
|
354
|
+
zellij_pane_lifecycle: checks.zellij_pane_lifecycle,
|
|
355
|
+
zellij_physical_proof: checks.zellij_physical_proof,
|
|
356
|
+
agent_cleanup_executor: checks.agent_cleanup_executor,
|
|
357
|
+
agent_cleanup_executor_v2: checks.agent_cleanup_executor_v2,
|
|
358
|
+
agent_cleanup_command_ux: checks.agent_cleanup_command_ux,
|
|
359
|
+
retention_cleanup_safety: checks.retention_cleanup_safety && runtimeChecks.retention_cleanup_safety,
|
|
360
|
+
agent_intelligent_work_graph: checks.agent_intelligent_work_graph,
|
|
361
|
+
agent_ast_aware_work_graph: checks.agent_ast_aware_work_graph,
|
|
362
|
+
proof_fake_vs_real_policy: checks.proof_fake_vs_real_policy,
|
|
363
|
+
proof_fake_real_policy_v2: checks.proof_fake_real_policy_v2,
|
|
364
|
+
release_runtime_truth_matrix: checks.release_runtime_truth_matrix && runtimeChecks.runtime_truth_matrix,
|
|
365
|
+
codex_0136_compat: checks.codex_0136_compat && (!runtimeReports.codex_0_136_compat || runtimeReports.codex_0_136_compat.ok === true),
|
|
366
|
+
codex_0134_compat: checks.codex_0134_compat && runtimeReports.codex_0_134_official_compat?.ok === true,
|
|
367
|
+
codex_0134_official_compat: checks.codex_0134_official_compat && runtimeReports.codex_0_134_official_compat?.ok === true,
|
|
368
|
+
codex_profile_primary: checks.codex_profile_primary,
|
|
369
|
+
codex_managed_proxy_env: checks.codex_managed_proxy_env,
|
|
370
|
+
codex_0134_runner_truth: checks.codex_0134_runner_truth && (!runtimeReports.codex_0_134_runner_truth || runtimeReports.codex_0_134_runner_truth.ok === true),
|
|
371
|
+
real_codex_patch_envelope_smoke: checks.real_codex_patch_envelope_smoke && runtimeChecks.real_codex_patch_envelope_smoke,
|
|
372
|
+
mcp_0134_modernization: checks.mcp_0134_modernization && runtimeReports.mcp_0_134_modernization?.ok === true,
|
|
373
|
+
mcp_readonly_runtime_scheduler: checks.mcp_readonly_runtime_scheduler && (!runtimeReports.mcp_readonly_runtime_scheduler || runtimeReports.mcp_readonly_runtime_scheduler.ok === true),
|
|
374
|
+
appshots_thread_attachment_discovery: checks.appshots_thread_attachment_discovery && (!runtimeReports.appshots_thread_attachment_discovery || runtimeReports.appshots_thread_attachment_discovery.ok === true),
|
|
375
|
+
source_intelligence_codex_history_search: checks.source_intelligence_codex_history_search,
|
|
376
|
+
agent_parallel_write_kernel: checks.agent_parallel_write_kernel && runtimeReports.agent_parallel_write_kernel?.ok === true,
|
|
377
|
+
agent_parallel_write_blackbox: checks.agent_parallel_write_blackbox && runtimeReports.agent_parallel_write_blackbox?.ok === true,
|
|
378
|
+
team_parallel_write_blackbox: checks.team_parallel_write_blackbox && runtimeReports.team_parallel_write_blackbox?.ok === true,
|
|
379
|
+
dfix_parallel_write_blackbox: checks.dfix_parallel_write_blackbox && runtimeReports.dfix_parallel_write_blackbox?.ok === true,
|
|
380
|
+
agent_patch_envelope_extraction: checks.agent_patch_envelope_extraction && runtimeReports.agent_patch_envelope_extraction?.ok === true,
|
|
381
|
+
agent_patch_queue_runtime: checks.agent_patch_queue_runtime && runtimeReports.agent_patch_queue_runtime?.ok === true,
|
|
382
|
+
agent_strategy_to_lease_wiring: checks.agent_strategy_to_lease_wiring && runtimeReports.agent_strategy_to_lease_wiring?.ok === true,
|
|
383
|
+
agent_patch_swarm_runtime: checks.agent_patch_swarm_runtime && runtimeReports.agent_patch_swarm_runtime?.ok === true,
|
|
384
|
+
agent_patch_swarm_runtime_truth: checks.agent_patch_swarm_runtime_truth && runtimeReports.agent_patch_swarm_runtime_truth?.ok === true,
|
|
385
|
+
agent_patch_transaction_journal: checks.agent_patch_transaction_journal && runtimeReports.agent_patch_transaction_journal?.ok === true,
|
|
386
|
+
agent_patch_conflict_rebase: checks.agent_patch_conflict_rebase && runtimeReports.agent_patch_conflict_rebase?.ok === true,
|
|
387
|
+
agent_strategy_to_patch_strict: checks.agent_strategy_to_patch_strict && runtimeReports.agent_strategy_to_patch_strict?.ok === true,
|
|
388
|
+
agent_rollback_command: checks.agent_rollback_command && runtimeReports.agent_rollback_command?.ok === true,
|
|
389
|
+
agent_native_cli_session_swarm: checks.agent_native_cli_session_swarm && runtimeReports.agent_native_cli_session_swarm?.ok === true,
|
|
390
|
+
agent_native_cli_session_swarm_10: checks.agent_native_cli_session_swarm_10 && runtimeReports.agent_native_cli_session_swarm_10?.ok === true,
|
|
391
|
+
agent_native_cli_session_swarm_20: checks.agent_native_cli_session_swarm_20 && runtimeReports.agent_native_cli_session_swarm_20?.ok === true,
|
|
392
|
+
agent_no_subagent_scaling: checks.agent_no_subagent_scaling && runtimeReports.agent_no_subagent_scaling?.ok === true,
|
|
393
|
+
agent_official_subagent_helper_policy: checks.agent_official_subagent_helper_policy && runtimeReports.agent_official_subagent_helper_policy?.ok === true,
|
|
394
|
+
agent_native_cli_session_proof: checks.agent_native_cli_session_proof && runtimeReports.agent_native_cli_session_proof?.ok === true,
|
|
395
|
+
agent_worker_backend_router: checks.agent_worker_backend_router && runtimeReports.agent_worker_backend_router?.ok === true,
|
|
396
|
+
agent_codex_child_overlap: checks.agent_codex_child_overlap && runtimeReports.agent_codex_child_overlap?.ok === true,
|
|
397
|
+
agent_model_authored_patch_envelope: checks.agent_model_authored_patch_envelope && runtimeReports.agent_model_authored_patch_envelope?.ok === true,
|
|
398
|
+
zellij_pane_proof: checks.zellij_pane_proof && runtimeReports.zellij_pane_proof?.ok === true,
|
|
399
|
+
zellij_screen_proof: checks.zellij_screen_proof && runtimeReports.zellij_screen_proof?.ok === true,
|
|
400
|
+
zellij_lane_renderer: checks.zellij_lane_renderer && runtimeReports.zellij_lane_renderer?.ok === true,
|
|
401
|
+
mad_sks_zellij_launch: checks.mad_sks_zellij_launch && runtimeReports.mad_sks_zellij_launch?.ok === true,
|
|
402
|
+
agent_fast_mode_default: checks.agent_fast_mode_default && runtimeReports.agent_fast_mode_default?.ok === true,
|
|
403
|
+
agent_fast_mode_worker_propagation: checks.agent_fast_mode_worker_propagation && runtimeReports.agent_fast_mode_worker_propagation?.ok === true,
|
|
404
|
+
codex_fast_mode_profile_propagation: checks.codex_fast_mode_profile_propagation && runtimeReports.codex_fast_mode_profile_propagation?.ok === true,
|
|
405
|
+
mad_sks_fast_mode_propagation: checks.mad_sks_fast_mode_propagation && runtimeReports.mad_sks_fast_mode_propagation?.ok === true,
|
|
406
|
+
agent_patch_verification_dag: checks.agent_patch_verification_dag && runtimeReports.agent_patch_verification_dag?.ok === true,
|
|
407
|
+
agent_patch_rollback_dag: checks.agent_patch_rollback_dag && runtimeReports.agent_patch_rollback_dag?.ok === true,
|
|
408
|
+
agent_patch_proof_runtime: checks.agent_patch_proof_runtime && runtimeReports.agent_patch_proof_runtime?.ok === true,
|
|
409
|
+
agent_patch_swarm_route_blackbox: checks.agent_patch_swarm_route_blackbox && runtimeReports.agent_patch_swarm_route_blackbox?.ok === true,
|
|
410
|
+
team_patch_swarm_route_blackbox: checks.team_patch_swarm_route_blackbox && runtimeReports.team_patch_swarm_route_blackbox?.ok === true,
|
|
411
|
+
dfix_patch_swarm_route_blackbox: checks.dfix_patch_swarm_route_blackbox && runtimeReports.dfix_patch_swarm_route_blackbox?.ok === true,
|
|
412
|
+
agent_patch_proof: checks.agent_patch_proof && runtimeReports.agent_patch_proof?.ok === true,
|
|
413
|
+
agent_patch_rollback: checks.agent_patch_rollback && runtimeReports.agent_patch_rollback?.ok === true,
|
|
414
|
+
release_gate_existence_audit: checks.release_gate_existence_audit,
|
|
415
|
+
route_blackbox_realism: checks.route_blackbox_realism,
|
|
416
|
+
agent_dynamic_cockpit: checks.agent_dynamic_cockpit,
|
|
417
|
+
agent_source_intelligence_propagation: checks.agent_source_intelligence_propagation,
|
|
418
|
+
agent_goal_mode_propagation: checks.agent_goal_mode_propagation,
|
|
419
|
+
agent_visual_consistency: checks.agent_visual_consistency,
|
|
420
|
+
release_parallel_full_coverage: checks.release_parallel_full_coverage,
|
|
421
|
+
priority_full_closure: checks.priority_full_closure
|
|
422
|
+
}))
|
|
423
|
+
if (!ok)
|
|
424
|
+
remainingP0.push(`${name}_gate_missing`);
|
|
425
|
+
if (docs.status !== 0)
|
|
426
|
+
remainingP0.push('docs_truthfulness_failed');
|
|
427
|
+
if (officialDocs.status !== 0)
|
|
428
|
+
remainingP0.push('official_docs_compat_failed');
|
|
429
|
+
if (releaseMetadata.status !== 0)
|
|
430
|
+
remainingP0.push('release_metadata_failed');
|
|
431
|
+
if (sideEffectRuntime.status !== 0)
|
|
432
|
+
remainingP0.push('side_effect_runtime_report_failed');
|
|
433
|
+
if (releaseProvenance.status !== 0)
|
|
434
|
+
remainingP0.push('release_provenance_failed');
|
|
435
|
+
if (imagegenCore.status !== 0 && !imagegenExternalMissingAllowed)
|
|
436
|
+
remainingP0.push('imagegen_core_capability_failed');
|
|
437
|
+
const stamp = readJson('.sneakoscope/reports/release-check-stamp.json', null);
|
|
438
|
+
const stampVerify = spawnSync(process.execPath, ['dist/scripts/release-check-stamp.js', 'verify'], {
|
|
439
|
+
cwd: root,
|
|
440
|
+
encoding: 'utf8',
|
|
441
|
+
env: { ...process.env, CI: 'true' },
|
|
442
|
+
timeout: 30_000
|
|
443
|
+
});
|
|
444
|
+
const currentStamp = stampVerify.status === 0 && stamp?.package_version === RELEASE_VERSION ? stamp : null;
|
|
445
|
+
const stampRequiredForOk = process.env.SKS_RELEASE_REQUIRE_STAMP === '1' || !dynamicReleaseMode;
|
|
446
|
+
const nonPublishGaps = [];
|
|
447
|
+
if (stampVerify.status !== 0) {
|
|
448
|
+
if (stampRequiredForOk) {
|
|
449
|
+
remainingP0.push('release_check_stamp_stale_or_missing');
|
|
450
|
+
}
|
|
451
|
+
else {
|
|
452
|
+
nonPublishGaps.push('release_check_stamp_stale_or_missing');
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
const releaseProofTruth = readJson('.sneakoscope/release-proof-truth.json', readJson('dist/release-proof-truth.json', null));
|
|
456
|
+
const report = {
|
|
457
|
+
schema: 'sks.release-readiness.v1',
|
|
458
|
+
generated_at: new Date().toISOString(),
|
|
459
|
+
scope: {
|
|
460
|
+
release_version: RELEASE_VERSION,
|
|
461
|
+
gate: `${RELEASE_VERSION} Codex Native hardening closure DAG`,
|
|
462
|
+
ok_means: `no remaining ${RELEASE_VERSION} Codex Native route blackbox, reference-cache, read/repair split, generated-artifact neutrality, or release metadata gaps`,
|
|
463
|
+
not_in_1_18_parallel_gate: `reported for historical, live, or broader gates that are not part of the ${RELEASE_VERSION} closure DAG`
|
|
464
|
+
},
|
|
465
|
+
package: {
|
|
466
|
+
name: pkg.name,
|
|
467
|
+
version: pkg.version
|
|
468
|
+
},
|
|
469
|
+
release_proof_truth: releaseProofTruth || {
|
|
470
|
+
schema: 'sks.release-proof-truth.v1',
|
|
471
|
+
status: 'missing'
|
|
472
|
+
},
|
|
473
|
+
hook_strict_subset: {
|
|
474
|
+
status: checks.hook_strict_subset ? 'present' : 'missing'
|
|
475
|
+
},
|
|
476
|
+
codex_lb_setup_truthfulness: {
|
|
477
|
+
status: checks.codex_lb_persistence_truth ? 'present' : 'missing',
|
|
478
|
+
persistence_modes: ['durable_env_file', 'durable_keychain', 'durable_launchctl', 'shell_profile', 'process_only_ephemeral']
|
|
479
|
+
},
|
|
480
|
+
computer_use_evidence_mode_support: {
|
|
481
|
+
status: checks.computer_use_live_evidence ? 'present' : 'missing',
|
|
482
|
+
modes: ['probe_only', 'live_capture_attempted', 'live_capture_success', 'live_capture_blocked']
|
|
483
|
+
},
|
|
484
|
+
imagegen_core: {
|
|
485
|
+
status: imagegenCore.status === 0 ? 'pass' : imagegenExternalMissingAllowed ? 'external_unavailable' : 'fail',
|
|
486
|
+
model: 'gpt-image-2',
|
|
487
|
+
required_for_full_visual_verification: true,
|
|
488
|
+
preferred_surface: 'Codex App $imagegen',
|
|
489
|
+
codex_app_builtin_required: true,
|
|
490
|
+
release_blocking: !imagegenExternalMissingAllowed,
|
|
491
|
+
real_output_verified_by_capability_check: false,
|
|
492
|
+
capability_detection_is_not_output_proof: true,
|
|
493
|
+
fallback_surface: 'Explicit OpenAI Images API gpt-image-2 fallback (non-Codex evidence)',
|
|
494
|
+
api_fallback_satisfies_codex_app_evidence: false,
|
|
495
|
+
stdout: trimOutput(imagegenCore.stdout)
|
|
496
|
+
},
|
|
497
|
+
codex_0_136: {
|
|
498
|
+
status: checks.codex_0136_compat
|
|
499
|
+
&& (!runtimeReports.codex_0_136_compat || runtimeReports.codex_0_136_compat.ok === true) ? 'present' : 'missing',
|
|
500
|
+
baseline: 'rust-v0.136.0',
|
|
501
|
+
compat_gate: checks.codex_0136_compat,
|
|
502
|
+
compat_report_ok: runtimeReports.codex_0_136_compat ? runtimeReports.codex_0_136_compat.ok === true : null,
|
|
503
|
+
session_archive: runtimeReports.codex_0_136_compat?.session_archive_supported ?? null,
|
|
504
|
+
app_server_stdio: runtimeReports.codex_0_136_compat?.app_server_stdio_supported ?? null,
|
|
505
|
+
remote_api_key_registration: runtimeReports.codex_0_136_compat?.remote_api_key_registration_supported ?? null,
|
|
506
|
+
command_safety_hardening: runtimeReports.codex_0_136_compat?.command_safety_hardening_supported ?? null,
|
|
507
|
+
native_image_generation_extension: runtimeReports.codex_0_136_compat?.native_image_generation_extension_supported ?? null
|
|
508
|
+
},
|
|
509
|
+
codex_0_133: {
|
|
510
|
+
status: checks.codex_0133_compat ? 'present' : 'missing',
|
|
511
|
+
baseline: 'rust-v0.133.0',
|
|
512
|
+
output_schema_resume: checks.codex_output_schema_fixture ? 'present' : 'missing'
|
|
513
|
+
},
|
|
514
|
+
codex_0_134: {
|
|
515
|
+
status: checks.codex_0134_compat
|
|
516
|
+
&& checks.codex_0134_official_compat
|
|
517
|
+
&& runtimeReports.codex_0_134_official_compat?.ok === true
|
|
518
|
+
&& checks.codex_profile_primary
|
|
519
|
+
&& checks.codex_managed_proxy_env
|
|
520
|
+
&& checks.codex_0134_runner_truth
|
|
521
|
+
&& checks.source_intelligence_codex_history_search ? 'present' : 'missing',
|
|
522
|
+
baseline: 'rust-v0.134.0',
|
|
523
|
+
official_compat: checks.codex_0134_official_compat,
|
|
524
|
+
official_compat_report_ok: runtimeReports.codex_0_134_official_compat ? runtimeReports.codex_0_134_official_compat.ok === true : null,
|
|
525
|
+
profile_primary: checks.codex_profile_primary,
|
|
526
|
+
managed_proxy_env: checks.codex_managed_proxy_env,
|
|
527
|
+
runner_truth: checks.codex_0134_runner_truth,
|
|
528
|
+
runner_truth_report_ok: runtimeReports.codex_0_134_runner_truth ? runtimeReports.codex_0_134_runner_truth.ok === true : null,
|
|
529
|
+
real_patch_envelope_smoke: checks.real_codex_patch_envelope_smoke,
|
|
530
|
+
real_patch_envelope_smoke_report_ok: runtimeReports.real_codex_patch_envelope_smoke ? runtimeReports.real_codex_patch_envelope_smoke.ok === true : null,
|
|
531
|
+
real_patch_envelope_smoke_proof_level: runtimeReports.real_codex_patch_envelope_smoke?.proof_level || null,
|
|
532
|
+
local_history_search: checks.source_intelligence_codex_history_search
|
|
533
|
+
},
|
|
534
|
+
real_codex_patch_envelope_smoke_1_18_11: {
|
|
535
|
+
status: checks.real_codex_patch_envelope_smoke && runtimeChecks.real_codex_patch_envelope_smoke ? 'present' : 'missing',
|
|
536
|
+
gate: 'agent:real-codex-patch-envelope-smoke',
|
|
537
|
+
report: '.sneakoscope/reports/agent-real-codex-patch-envelope-smoke.json',
|
|
538
|
+
proof_level: runtimeReports.real_codex_patch_envelope_smoke?.proof_level || null,
|
|
539
|
+
required: runtimeReports.real_codex_patch_envelope_smoke?.required === true,
|
|
540
|
+
next_action: runtimeReports.real_codex_patch_envelope_smoke?.proof_level === 'integration_optional'
|
|
541
|
+
? 'Run SKS_TEST_REAL_CODEX_PATCHES=1 npm run agent:real-codex-patch-envelope-smoke for live Codex patch evidence; add SKS_REQUIRE_REAL_CODEX_PATCHES=1 when release policy requires it.'
|
|
542
|
+
: null
|
|
543
|
+
},
|
|
544
|
+
mcp_0_134: {
|
|
545
|
+
status: checks.mcp_0134_modernization
|
|
546
|
+
&& runtimeReports.mcp_0_134_modernization?.ok === true
|
|
547
|
+
&& checks.mcp_readonly_runtime_scheduler ? 'present' : 'missing',
|
|
548
|
+
modernization_gate: checks.mcp_0134_modernization,
|
|
549
|
+
modernization_report_ok: runtimeReports.mcp_0_134_modernization ? runtimeReports.mcp_0_134_modernization.ok === true : null,
|
|
550
|
+
readonly_runtime_scheduler: checks.mcp_readonly_runtime_scheduler,
|
|
551
|
+
readonly_runtime_scheduler_report_ok: runtimeReports.mcp_readonly_runtime_scheduler ? runtimeReports.mcp_readonly_runtime_scheduler.ok === true : null
|
|
552
|
+
},
|
|
553
|
+
parallel_write_kernel_1_18_9: {
|
|
554
|
+
status: checks.agent_parallel_write_kernel
|
|
555
|
+
&& checks.agent_parallel_write_blackbox
|
|
556
|
+
&& checks.team_parallel_write_blackbox
|
|
557
|
+
&& checks.dfix_parallel_write_blackbox
|
|
558
|
+
&& checks.agent_patch_proof
|
|
559
|
+
&& checks.agent_patch_rollback
|
|
560
|
+
&& runtimeReports.agent_parallel_write_kernel?.ok === true
|
|
561
|
+
&& runtimeReports.agent_parallel_write_blackbox?.ok === true
|
|
562
|
+
&& runtimeReports.team_parallel_write_blackbox?.ok === true
|
|
563
|
+
&& runtimeReports.dfix_parallel_write_blackbox?.ok === true
|
|
564
|
+
&& runtimeReports.agent_patch_proof?.ok === true
|
|
565
|
+
&& runtimeReports.agent_patch_rollback?.ok === true ? 'present' : 'missing',
|
|
566
|
+
agent_parallel_write_kernel: checks.agent_parallel_write_kernel,
|
|
567
|
+
agent_parallel_write_blackbox: checks.agent_parallel_write_blackbox,
|
|
568
|
+
team_parallel_write_blackbox: checks.team_parallel_write_blackbox,
|
|
569
|
+
dfix_parallel_write_blackbox: checks.dfix_parallel_write_blackbox,
|
|
570
|
+
agent_patch_proof: checks.agent_patch_proof,
|
|
571
|
+
agent_patch_rollback: checks.agent_patch_rollback,
|
|
572
|
+
kernel_report_ok: runtimeReports.agent_parallel_write_kernel ? runtimeReports.agent_parallel_write_kernel.ok === true : null,
|
|
573
|
+
agent_blackbox_report_ok: runtimeReports.agent_parallel_write_blackbox ? runtimeReports.agent_parallel_write_blackbox.ok === true : null,
|
|
574
|
+
team_blackbox_report_ok: runtimeReports.team_parallel_write_blackbox ? runtimeReports.team_parallel_write_blackbox.ok === true : null,
|
|
575
|
+
dfix_blackbox_report_ok: runtimeReports.dfix_parallel_write_blackbox ? runtimeReports.dfix_parallel_write_blackbox.ok === true : null,
|
|
576
|
+
proof_report_ok: runtimeReports.agent_patch_proof ? runtimeReports.agent_patch_proof.ok === true : null,
|
|
577
|
+
rollback_report_ok: runtimeReports.agent_patch_rollback ? runtimeReports.agent_patch_rollback.ok === true : null
|
|
578
|
+
},
|
|
579
|
+
patch_swarm_runtime_1_18_9: {
|
|
580
|
+
status: checks.agent_patch_envelope_extraction
|
|
581
|
+
&& checks.agent_patch_queue_runtime
|
|
582
|
+
&& checks.agent_strategy_to_lease_wiring
|
|
583
|
+
&& checks.agent_patch_swarm_runtime
|
|
584
|
+
&& checks.agent_patch_swarm_runtime_truth
|
|
585
|
+
&& checks.agent_patch_transaction_journal
|
|
586
|
+
&& checks.agent_patch_conflict_rebase
|
|
587
|
+
&& checks.agent_strategy_to_patch_strict
|
|
588
|
+
&& checks.agent_rollback_command
|
|
589
|
+
&& checks.agent_patch_verification_dag
|
|
590
|
+
&& checks.agent_patch_rollback_dag
|
|
591
|
+
&& checks.agent_patch_proof_runtime
|
|
592
|
+
&& checks.agent_patch_swarm_route_blackbox
|
|
593
|
+
&& checks.team_patch_swarm_route_blackbox
|
|
594
|
+
&& checks.dfix_patch_swarm_route_blackbox
|
|
595
|
+
&& runtimeReports.agent_patch_envelope_extraction?.ok === true
|
|
596
|
+
&& runtimeReports.agent_patch_queue_runtime?.ok === true
|
|
597
|
+
&& runtimeReports.agent_strategy_to_lease_wiring?.ok === true
|
|
598
|
+
&& runtimeReports.agent_patch_swarm_runtime?.ok === true
|
|
599
|
+
&& runtimeReports.agent_patch_swarm_runtime_truth?.ok === true
|
|
600
|
+
&& runtimeReports.agent_patch_transaction_journal?.ok === true
|
|
601
|
+
&& runtimeReports.agent_patch_conflict_rebase?.ok === true
|
|
602
|
+
&& runtimeReports.agent_strategy_to_patch_strict?.ok === true
|
|
603
|
+
&& runtimeReports.agent_rollback_command?.ok === true
|
|
604
|
+
&& runtimeReports.agent_patch_verification_dag?.ok === true
|
|
605
|
+
&& runtimeReports.agent_patch_rollback_dag?.ok === true
|
|
606
|
+
&& runtimeReports.agent_patch_proof_runtime?.ok === true
|
|
607
|
+
&& runtimeReports.agent_patch_swarm_route_blackbox?.ok === true
|
|
608
|
+
&& runtimeReports.team_patch_swarm_route_blackbox?.ok === true
|
|
609
|
+
&& runtimeReports.dfix_patch_swarm_route_blackbox?.ok === true ? 'present' : 'missing',
|
|
610
|
+
envelope_extraction_report_ok: runtimeReports.agent_patch_envelope_extraction ? runtimeReports.agent_patch_envelope_extraction.ok === true : null,
|
|
611
|
+
queue_runtime_report_ok: runtimeReports.agent_patch_queue_runtime ? runtimeReports.agent_patch_queue_runtime.ok === true : null,
|
|
612
|
+
strategy_to_lease_report_ok: runtimeReports.agent_strategy_to_lease_wiring ? runtimeReports.agent_strategy_to_lease_wiring.ok === true : null,
|
|
613
|
+
swarm_runtime_report_ok: runtimeReports.agent_patch_swarm_runtime ? runtimeReports.agent_patch_swarm_runtime.ok === true : null,
|
|
614
|
+
swarm_runtime_truth_report_ok: runtimeReports.agent_patch_swarm_runtime_truth ? runtimeReports.agent_patch_swarm_runtime_truth.ok === true : null,
|
|
615
|
+
transaction_journal_report_ok: runtimeReports.agent_patch_transaction_journal ? runtimeReports.agent_patch_transaction_journal.ok === true : null,
|
|
616
|
+
conflict_rebase_report_ok: runtimeReports.agent_patch_conflict_rebase ? runtimeReports.agent_patch_conflict_rebase.ok === true : null,
|
|
617
|
+
strategy_to_patch_strict_report_ok: runtimeReports.agent_strategy_to_patch_strict ? runtimeReports.agent_strategy_to_patch_strict.ok === true : null,
|
|
618
|
+
rollback_command_report_ok: runtimeReports.agent_rollback_command ? runtimeReports.agent_rollback_command.ok === true : null,
|
|
619
|
+
verification_dag_report_ok: runtimeReports.agent_patch_verification_dag ? runtimeReports.agent_patch_verification_dag.ok === true : null,
|
|
620
|
+
rollback_dag_report_ok: runtimeReports.agent_patch_rollback_dag ? runtimeReports.agent_patch_rollback_dag.ok === true : null,
|
|
621
|
+
proof_runtime_report_ok: runtimeReports.agent_patch_proof_runtime ? runtimeReports.agent_patch_proof_runtime.ok === true : null,
|
|
622
|
+
agent_route_blackbox_ok: runtimeReports.agent_patch_swarm_route_blackbox ? runtimeReports.agent_patch_swarm_route_blackbox.ok === true : null,
|
|
623
|
+
team_route_blackbox_ok: runtimeReports.team_patch_swarm_route_blackbox ? runtimeReports.team_patch_swarm_route_blackbox.ok === true : null,
|
|
624
|
+
dfix_route_blackbox_ok: runtimeReports.dfix_patch_swarm_route_blackbox ? runtimeReports.dfix_patch_swarm_route_blackbox.ok === true : null
|
|
625
|
+
},
|
|
626
|
+
native_cli_session_swarm_1_18_10: {
|
|
627
|
+
status: checks.agent_native_cli_session_swarm
|
|
628
|
+
&& checks.agent_native_cli_session_swarm_10
|
|
629
|
+
&& checks.agent_native_cli_session_swarm_20
|
|
630
|
+
&& checks.agent_no_subagent_scaling
|
|
631
|
+
&& checks.agent_official_subagent_helper_policy
|
|
632
|
+
&& checks.agent_native_cli_session_proof
|
|
633
|
+
&& runtimeReports.agent_native_cli_session_swarm?.ok === true
|
|
634
|
+
&& runtimeReports.agent_native_cli_session_swarm_10?.ok === true
|
|
635
|
+
&& runtimeReports.agent_native_cli_session_swarm_20?.ok === true
|
|
636
|
+
&& runtimeReports.agent_no_subagent_scaling?.ok === true
|
|
637
|
+
&& runtimeReports.agent_official_subagent_helper_policy?.ok === true
|
|
638
|
+
&& runtimeReports.agent_native_cli_session_proof?.ok === true ? 'present' : 'missing',
|
|
639
|
+
swarm_5_report_ok: runtimeReports.agent_native_cli_session_swarm ? runtimeReports.agent_native_cli_session_swarm.ok === true : null,
|
|
640
|
+
swarm_10_report_ok: runtimeReports.agent_native_cli_session_swarm_10 ? runtimeReports.agent_native_cli_session_swarm_10.ok === true : null,
|
|
641
|
+
swarm_20_report_ok: runtimeReports.agent_native_cli_session_swarm_20 ? runtimeReports.agent_native_cli_session_swarm_20.ok === true : null,
|
|
642
|
+
no_subagent_scaling_report_ok: runtimeReports.agent_no_subagent_scaling ? runtimeReports.agent_no_subagent_scaling.ok === true : null,
|
|
643
|
+
official_subagent_helper_policy_report_ok: runtimeReports.agent_official_subagent_helper_policy ? runtimeReports.agent_official_subagent_helper_policy.ok === true : null,
|
|
644
|
+
native_cli_session_proof_report_ok: runtimeReports.agent_native_cli_session_proof ? runtimeReports.agent_native_cli_session_proof.ok === true : null,
|
|
645
|
+
max_observed_10: runtimeReports.agent_native_cli_session_swarm_10?.native_cli_session_proof?.max_observed_worker_process_count || null,
|
|
646
|
+
max_observed_20: runtimeReports.agent_native_cli_session_swarm_20?.native_cli_session_proof?.max_observed_worker_process_count || null
|
|
647
|
+
},
|
|
648
|
+
official_subagent_helper_lane_1_18_10: {
|
|
649
|
+
status: checks.agent_official_subagent_helper_policy
|
|
650
|
+
&& runtimeReports.agent_official_subagent_helper_policy?.ok === true ? 'present' : 'missing',
|
|
651
|
+
helper_lane_enabled: runtimeReports.agent_official_subagent_helper_policy?.helper?.official_codex_subagent_helper_lane_enabled === true,
|
|
652
|
+
helper_lane_may_run_in_parallel_with_native_workers: runtimeReports.agent_official_subagent_helper_policy?.helper?.helper_lane_may_run_in_parallel_with_native_workers === true,
|
|
653
|
+
worker_capacity_credit: Number(runtimeReports.agent_official_subagent_helper_policy?.helper?.worker_capacity_credit || 0),
|
|
654
|
+
subagent_events_counted_as_worker_sessions: runtimeReports.agent_official_subagent_helper_policy?.helper?.subagent_events_counted_as_worker_sessions === true,
|
|
655
|
+
observed_subagent_event_count: Number(runtimeReports.agent_official_subagent_helper_policy?.helper?.observed_subagent_event_count || 0),
|
|
656
|
+
codex_builtin_imagegen_helper_allowed: runtimeReports.agent_official_subagent_helper_policy?.helper?.codex_builtin_imagegen_helper_allowed === true,
|
|
657
|
+
codex_app_builtin_evidence_class: runtimeReports.agent_official_subagent_helper_policy?.helper?.codex_app_builtin_evidence_class || null,
|
|
658
|
+
api_fallback_evidence_class: runtimeReports.agent_official_subagent_helper_policy?.helper?.api_fallback_evidence_class || null,
|
|
659
|
+
provider_surface_evidence_required: runtimeReports.agent_official_subagent_helper_policy?.helper?.provider_surface_evidence_required === true,
|
|
660
|
+
imagegen_api_fallback_counts_as_codex_app_evidence: runtimeReports.agent_official_subagent_helper_policy?.helper?.imagegen_api_fallback_counts_as_codex_app_evidence === true,
|
|
661
|
+
required_output_proof_for_generated_images: runtimeReports.agent_official_subagent_helper_policy?.helper?.required_output_proof_for_generated_images || [],
|
|
662
|
+
live_codex_app_output_proof_ran: runtimeReports.agent_official_subagent_helper_policy?.live_codex_app_output_proof_ran === true,
|
|
663
|
+
live_codex_app_output_proof_note: runtimeReports.agent_official_subagent_helper_policy?.live_codex_app_output_proof_note || null
|
|
664
|
+
},
|
|
665
|
+
real_codex_parallel_workers_1_18_11: {
|
|
666
|
+
status: checks.agent_worker_backend_router
|
|
667
|
+
&& checks.agent_codex_child_overlap
|
|
668
|
+
&& checks.agent_model_authored_patch_envelope
|
|
669
|
+
&& checks.zellij_pane_proof
|
|
670
|
+
&& checks.zellij_screen_proof
|
|
671
|
+
&& checks.zellij_lane_renderer
|
|
672
|
+
&& checks.mad_sks_zellij_launch
|
|
673
|
+
&& runtimeReports.agent_worker_backend_router?.ok === true
|
|
674
|
+
&& runtimeReports.agent_codex_child_overlap?.ok === true
|
|
675
|
+
&& runtimeReports.agent_model_authored_patch_envelope?.ok === true
|
|
676
|
+
&& runtimeReports.zellij_pane_proof?.ok === true
|
|
677
|
+
&& runtimeReports.zellij_screen_proof?.ok === true
|
|
678
|
+
&& runtimeReports.zellij_lane_renderer?.ok === true
|
|
679
|
+
&& runtimeReports.mad_sks_zellij_launch?.ok === true ? 'present' : 'missing',
|
|
680
|
+
worker_backend_router: checks.agent_worker_backend_router,
|
|
681
|
+
codex_child_overlap: checks.agent_codex_child_overlap,
|
|
682
|
+
model_authored_patch_envelope: checks.agent_model_authored_patch_envelope,
|
|
683
|
+
zellij_pane_proof: checks.zellij_pane_proof,
|
|
684
|
+
zellij_screen_proof: checks.zellij_screen_proof,
|
|
685
|
+
zellij_lane_renderer: checks.zellij_lane_renderer,
|
|
686
|
+
mad_zellij_launch: checks.mad_sks_zellij_launch,
|
|
687
|
+
real_codex_parallel_optional: runtimeReports.real_codex_parallel_workers?.status || null,
|
|
688
|
+
real_codex_parallel_proof_level: runtimeReports.real_codex_parallel_workers?.proof_level || null
|
|
689
|
+
},
|
|
690
|
+
fast_mode_default_1_18_10: {
|
|
691
|
+
status: checks.agent_fast_mode_default
|
|
692
|
+
&& checks.agent_fast_mode_worker_propagation
|
|
693
|
+
&& checks.codex_fast_mode_profile_propagation
|
|
694
|
+
&& checks.mad_sks_fast_mode_propagation
|
|
695
|
+
&& runtimeReports.agent_fast_mode_default?.ok === true
|
|
696
|
+
&& runtimeReports.agent_fast_mode_worker_propagation?.ok === true
|
|
697
|
+
&& runtimeReports.codex_fast_mode_profile_propagation?.ok === true
|
|
698
|
+
&& runtimeReports.mad_sks_fast_mode_propagation?.ok === true ? 'present' : 'missing',
|
|
699
|
+
default_report_ok: runtimeReports.agent_fast_mode_default ? runtimeReports.agent_fast_mode_default.ok === true : null,
|
|
700
|
+
worker_propagation_report_ok: runtimeReports.agent_fast_mode_worker_propagation ? runtimeReports.agent_fast_mode_worker_propagation.ok === true : null,
|
|
701
|
+
codex_profile_report_ok: runtimeReports.codex_fast_mode_profile_propagation ? runtimeReports.codex_fast_mode_profile_propagation.ok === true : null,
|
|
702
|
+
mad_sks_report_ok: runtimeReports.mad_sks_fast_mode_propagation ? runtimeReports.mad_sks_fast_mode_propagation.ok === true : null
|
|
703
|
+
},
|
|
704
|
+
mad_sks_actual_executor_closure: {
|
|
705
|
+
status: checks.mad_sks_actual_executor
|
|
706
|
+
&& checks.mad_sks_file_write_executor
|
|
707
|
+
&& checks.mad_sks_shell_executor
|
|
708
|
+
&& checks.mad_sks_package_executor
|
|
709
|
+
&& checks.mad_sks_service_executor
|
|
710
|
+
&& checks.mad_sks_db_executor
|
|
711
|
+
&& checks.mad_sks_rollback_apply
|
|
712
|
+
&& checks.mad_sks_live_guard_smoke
|
|
713
|
+
&& checks.mad_sks_executor_proof_graph
|
|
714
|
+
&& checks.flagship_proof_graph_v4
|
|
715
|
+
&& runtimeChecks.flagship_proof_graph_v4 ? 'present' : 'missing',
|
|
716
|
+
gates: {
|
|
717
|
+
actual_executor_blackbox: checks.mad_sks_actual_executor,
|
|
718
|
+
file_write_executor: checks.mad_sks_file_write_executor,
|
|
719
|
+
shell_executor: checks.mad_sks_shell_executor,
|
|
720
|
+
package_executor: checks.mad_sks_package_executor,
|
|
721
|
+
service_executor: checks.mad_sks_service_executor,
|
|
722
|
+
db_executor: checks.mad_sks_db_executor,
|
|
723
|
+
rollback_apply: checks.mad_sks_rollback_apply,
|
|
724
|
+
live_guard_smoke: checks.mad_sks_live_guard_smoke,
|
|
725
|
+
executor_proof_graph: checks.mad_sks_executor_proof_graph,
|
|
726
|
+
flagship_proof_graph_v4: checks.flagship_proof_graph_v4,
|
|
727
|
+
flagship_proof_graph_v4_report_ok: runtimeChecks.flagship_proof_graph_v4
|
|
728
|
+
}
|
|
729
|
+
},
|
|
730
|
+
image_ux_review: {
|
|
731
|
+
status: checks.imagegen_capability && checks.gpt_image_2_request_validator && checks.ux_review_run_wires_imagegen && checks.ux_review_extract_wires_real_extractor && checks.ux_review_patch_diff_recheck && checks.ux_review_imagegen_blackbox && checks.ux_review_real_loop_fixture && checks.ux_review_generate_callouts_fixture && checks.ux_review_extract_real_callouts_fixture && checks.ux_review_patch_handoff_fixture && checks.ux_review_recapture_recheck_fixture && checks.ux_review_no_text_fallback && checks.ux_review_no_fake_callouts && checks.ux_review_image_voxel_relations ? 'present' : 'missing',
|
|
732
|
+
gates: {
|
|
733
|
+
image_fidelity: checks.image_fidelity_check,
|
|
734
|
+
imagegen_capability: checks.imagegen_capability,
|
|
735
|
+
gpt_image_2_request_validator: checks.gpt_image_2_request_validator,
|
|
736
|
+
run_wires_imagegen: checks.ux_review_run_wires_imagegen,
|
|
737
|
+
extract_wires_real_extractor: checks.ux_review_extract_wires_real_extractor,
|
|
738
|
+
patch_diff_recheck: checks.ux_review_patch_diff_recheck,
|
|
739
|
+
imagegen_blackbox: checks.ux_review_imagegen_blackbox,
|
|
740
|
+
real_loop_fixture: checks.ux_review_real_loop_fixture,
|
|
741
|
+
generate_callouts_fixture: checks.ux_review_generate_callouts_fixture,
|
|
742
|
+
extract_real_callouts_fixture: checks.ux_review_extract_real_callouts_fixture,
|
|
743
|
+
patch_handoff_fixture: checks.ux_review_patch_handoff_fixture,
|
|
744
|
+
recapture_recheck_fixture: checks.ux_review_recapture_recheck_fixture,
|
|
745
|
+
no_text_fallback: checks.ux_review_no_text_fallback,
|
|
746
|
+
no_fake_callouts: checks.ux_review_no_fake_callouts,
|
|
747
|
+
image_voxel_relations: checks.ux_review_image_voxel_relations
|
|
748
|
+
}
|
|
749
|
+
},
|
|
750
|
+
ppt_imagegen_review: {
|
|
751
|
+
status: checks.ppt_imagegen_review_fixture && checks.ppt_real_export_adapter && checks.ppt_real_imagegen_wiring && checks.ppt_reexport_rereview && checks.ppt_imagegen_blackbox && checks.ux_ppt_structured_extraction && checks.ppt_slide_export_fixture && checks.ppt_no_text_fallback && checks.ppt_no_mock_as_real && checks.ppt_issue_extraction_fixture && checks.ppt_image_voxel_relations && checks.ppt_proof_trust_fixture ? 'present' : 'missing',
|
|
752
|
+
gates: {
|
|
753
|
+
imagegen_review_fixture: checks.ppt_imagegen_review_fixture,
|
|
754
|
+
real_export_adapter: checks.ppt_real_export_adapter,
|
|
755
|
+
real_imagegen_wiring: checks.ppt_real_imagegen_wiring,
|
|
756
|
+
reexport_rereview: checks.ppt_reexport_rereview,
|
|
757
|
+
imagegen_blackbox: checks.ppt_imagegen_blackbox,
|
|
758
|
+
structured_extraction: checks.ux_ppt_structured_extraction,
|
|
759
|
+
slide_export_fixture: checks.ppt_slide_export_fixture,
|
|
760
|
+
no_text_fallback: checks.ppt_no_text_fallback,
|
|
761
|
+
no_mock_as_real: checks.ppt_no_mock_as_real,
|
|
762
|
+
issue_extraction_fixture: checks.ppt_issue_extraction_fixture,
|
|
763
|
+
image_voxel_relations: checks.ppt_image_voxel_relations,
|
|
764
|
+
proof_trust_fixture: checks.ppt_proof_trust_fixture
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
dfix: {
|
|
768
|
+
status: checks.dfix_fixture && checks.dfix_fast_kernel && checks.dfix_blackbox_fast && checks.dfix_performance && checks.dfix_patch_handoff && checks.dfix_verification_recommendation && checks.dfix_verification ? 'present' : 'missing',
|
|
769
|
+
gates: {
|
|
770
|
+
fixture: checks.dfix_fixture,
|
|
771
|
+
fast_kernel: checks.dfix_fast_kernel,
|
|
772
|
+
blackbox_fast: checks.dfix_blackbox_fast,
|
|
773
|
+
performance: checks.dfix_performance,
|
|
774
|
+
patch_handoff: checks.dfix_patch_handoff,
|
|
775
|
+
verification_recommendation: checks.dfix_verification_recommendation,
|
|
776
|
+
verification: checks.dfix_verification
|
|
777
|
+
}
|
|
778
|
+
},
|
|
779
|
+
hook_trust_warning_zero: {
|
|
780
|
+
status: checks.hooks_latest_schema_check && checks.hooks_trust_state_check && checks.hooks_trust_warning_zero && checks.hooks_subagent_events_check && checks.hooks_no_unsupported_handlers && checks.hooks_actual_parity_check && checks.hooks_actual_parity_v2 && checks.hooks_official_hash_parity && checks.hooks_official_hash_oracle && checks.hooks_managed_install_fixture && checks.hooks_runtime_replay_warning_zero && checks.hooks_runtime_replay_warning_zero_v2 ? 'present' : 'missing',
|
|
781
|
+
latest_schema: checks.hooks_latest_schema_check,
|
|
782
|
+
trust_state: checks.hooks_trust_state_check,
|
|
783
|
+
warning_zero: checks.hooks_trust_warning_zero,
|
|
784
|
+
subagent_events: checks.hooks_subagent_events_check,
|
|
785
|
+
no_unsupported_handlers: checks.hooks_no_unsupported_handlers,
|
|
786
|
+
actual_parity_check: checks.hooks_actual_parity_check,
|
|
787
|
+
actual_parity_v2: checks.hooks_actual_parity_v2,
|
|
788
|
+
official_hash_parity: checks.hooks_official_hash_parity,
|
|
789
|
+
official_hash_oracle: checks.hooks_official_hash_oracle,
|
|
790
|
+
managed_install_fixture: checks.hooks_managed_install_fixture,
|
|
791
|
+
runtime_replay_warning_zero: checks.hooks_runtime_replay_warning_zero,
|
|
792
|
+
runtime_replay_warning_zero_v2: checks.hooks_runtime_replay_warning_zero_v2
|
|
793
|
+
},
|
|
794
|
+
extreme_stabilization_1_14_1: {
|
|
795
|
+
status: checks.hooks_official_hash_oracle && checks.hooks_actual_parity_v2 && checks.hooks_runtime_replay_warning_zero_v2 && checks.ppt_full_e2e_blackbox && runtimeChecks.ppt_full_e2e_blackbox && checks.ppt_full_e2e_artifact_graph && checks.codex_0133_official_compat && checks.flagship_proof_graph_v3 && runtimeChecks.flagship_proof_graph_v3 ? 'present' : 'missing',
|
|
796
|
+
hooks_official_hash_oracle: checks.hooks_official_hash_oracle,
|
|
797
|
+
hooks_actual_parity_v2: checks.hooks_actual_parity_v2,
|
|
798
|
+
hooks_runtime_replay_warning_zero_v2: checks.hooks_runtime_replay_warning_zero_v2,
|
|
799
|
+
ppt_full_e2e_blackbox: checks.ppt_full_e2e_blackbox,
|
|
800
|
+
ppt_full_e2e_blackbox_report_ok: runtimeChecks.ppt_full_e2e_blackbox,
|
|
801
|
+
ppt_full_e2e_artifact_graph: checks.ppt_full_e2e_artifact_graph,
|
|
802
|
+
codex_0_133_official_compat: checks.codex_0133_official_compat,
|
|
803
|
+
flagship_proof_graph_v3: checks.flagship_proof_graph_v3,
|
|
804
|
+
flagship_proof_graph_v3_report_ok: runtimeChecks.flagship_proof_graph_v3
|
|
805
|
+
},
|
|
806
|
+
mad_sks_1_16_0: {
|
|
807
|
+
status: checks.flagship_proof_graph_v4 && runtimeChecks.flagship_proof_graph_v4 ? 'present' : 'missing',
|
|
808
|
+
flagship_proof_graph_v4: checks.flagship_proof_graph_v4,
|
|
809
|
+
flagship_proof_graph_v4_report_ok: runtimeChecks.flagship_proof_graph_v4
|
|
810
|
+
},
|
|
811
|
+
source_intelligence_1_18: {
|
|
812
|
+
status: checks.xai_mcp_capability
|
|
813
|
+
&& checks.source_intelligence_policy
|
|
814
|
+
&& checks.source_intelligence_all_modes
|
|
815
|
+
&& checks.codex_web_adapter ? 'present' : 'missing',
|
|
816
|
+
mode_default: 'context7_codex_web',
|
|
817
|
+
xai_when_available: checks.xai_mcp_capability,
|
|
818
|
+
xai_missing_fallback: checks.source_intelligence_all_modes,
|
|
819
|
+
codex_web_adapter: checks.codex_web_adapter
|
|
820
|
+
},
|
|
821
|
+
agent_terminal_zellij_1_18: {
|
|
822
|
+
status: checks.agent_main_no_scout
|
|
823
|
+
&& checks.agent_worker_scout_limited
|
|
824
|
+
&& checks.agent_background_terminals
|
|
825
|
+
&& checks.agent_zellij_runtime
|
|
826
|
+
&& checks.agent_visual_consistency ? 'present' : 'missing',
|
|
827
|
+
main_no_scout: checks.agent_main_no_scout,
|
|
828
|
+
worker_scout_limited: checks.agent_worker_scout_limited,
|
|
829
|
+
background_terminals: checks.agent_background_terminals,
|
|
830
|
+
zellij_runtime: checks.agent_zellij_runtime,
|
|
831
|
+
codex_app_visual_consistency: checks.agent_visual_consistency
|
|
832
|
+
},
|
|
833
|
+
runtime_truth_1_18_8: {
|
|
834
|
+
status: checks.zellij_pane_lifecycle
|
|
835
|
+
&& checks.zellij_physical_proof
|
|
836
|
+
&& checks.real_codex_dynamic_smoke_v2
|
|
837
|
+
&& checks.agent_cleanup_executor_v2
|
|
838
|
+
&& checks.agent_cleanup_command_ux
|
|
839
|
+
&& checks.retention_cleanup_safety
|
|
840
|
+
&& runtimeChecks.retention_cleanup_safety
|
|
841
|
+
&& checks.agent_ast_aware_work_graph
|
|
842
|
+
&& checks.proof_fake_real_policy_v2
|
|
843
|
+
&& checks.release_runtime_truth_matrix
|
|
844
|
+
&& runtimeChecks.runtime_truth_matrix ? 'present' : 'missing',
|
|
845
|
+
zellij_pane_lifecycle: checks.zellij_pane_lifecycle,
|
|
846
|
+
zellij_physical_proof: checks.zellij_physical_proof,
|
|
847
|
+
real_codex_dynamic_smoke_v2: checks.real_codex_dynamic_smoke_v2,
|
|
848
|
+
real_codex_dynamic_smoke_report_ok: runtimeChecks.real_codex_dynamic_smoke,
|
|
849
|
+
cleanup_executor_v2: checks.agent_cleanup_executor_v2,
|
|
850
|
+
cleanup_command_ux: checks.agent_cleanup_command_ux,
|
|
851
|
+
retention_cleanup_safety: checks.retention_cleanup_safety,
|
|
852
|
+
retention_cleanup_safety_report_ok: runtimeChecks.retention_cleanup_safety,
|
|
853
|
+
retention_cleanup_safety_report: '.sneakoscope/reports/retention-cleanup-safety.json',
|
|
854
|
+
ast_aware_work_graph: checks.agent_ast_aware_work_graph,
|
|
855
|
+
fake_real_policy_v2: checks.proof_fake_real_policy_v2,
|
|
856
|
+
runtime_truth_matrix: checks.release_runtime_truth_matrix,
|
|
857
|
+
runtime_truth_matrix_report_ok: runtimeChecks.runtime_truth_matrix,
|
|
858
|
+
proof_levels: runtimeReports.runtime_truth_matrix?.proof_levels || [],
|
|
859
|
+
subsystem_rows: runtimeReports.runtime_truth_matrix?.rows || []
|
|
860
|
+
},
|
|
861
|
+
dynamic_agent_pool_1_18_3: {
|
|
862
|
+
status: checks.agent_dynamic_pool
|
|
863
|
+
&& checks.agent_task_graph_expansion
|
|
864
|
+
&& checks.agent_follow_up_work_schema
|
|
865
|
+
&& checks.agent_dynamic_pool_route_blackbox
|
|
866
|
+
&& checks.agent_backfill_route_blackbox
|
|
867
|
+
&& checks.agent_cli_options_to_task_graph
|
|
868
|
+
&& checks.agent_route_truth_backfill
|
|
869
|
+
&& checks.team_backfill_route_blackbox
|
|
870
|
+
&& checks.team_actual_route_backfill
|
|
871
|
+
&& checks.research_backfill_route_blackbox
|
|
872
|
+
&& checks.research_actual_route_backfill
|
|
873
|
+
&& checks.qa_backfill_route_blackbox
|
|
874
|
+
&& checks.qa_actual_route_backfill
|
|
875
|
+
&& checks.zellij_layout_valid
|
|
876
|
+
&& checks.zellij_lane_renderer_parallel
|
|
877
|
+
&& checks.zellij_pane_proof_parallel
|
|
878
|
+
&& checks.zellij_screen_proof_parallel
|
|
879
|
+
&& checks.agent_proof_contract_reconciled
|
|
880
|
+
&& checks.agent_scheduler_proof_hardening
|
|
881
|
+
&& checks.agent_backfill_replenishment
|
|
882
|
+
&& checks.agent_scheduler_proof
|
|
883
|
+
&& checks.agent_session_generation
|
|
884
|
+
&& checks.agent_terminal_generations
|
|
885
|
+
&& checks.agent_zellij_runtime_parallel
|
|
886
|
+
&& checks.agent_dynamic_cockpit
|
|
887
|
+
&& checks.agent_source_intelligence_propagation
|
|
888
|
+
&& checks.agent_goal_mode_propagation ? 'present' : 'missing',
|
|
889
|
+
task_graph_expansion: checks.agent_task_graph_expansion,
|
|
890
|
+
follow_up_work_schema: checks.agent_follow_up_work_schema,
|
|
891
|
+
dynamic_pool_route_blackbox: checks.agent_dynamic_pool_route_blackbox,
|
|
892
|
+
backfill_route_blackbox: checks.agent_backfill_route_blackbox,
|
|
893
|
+
cli_options_to_task_graph: checks.agent_cli_options_to_task_graph,
|
|
894
|
+
route_truth_backfill: checks.agent_route_truth_backfill,
|
|
895
|
+
team_backfill_route_blackbox: checks.team_backfill_route_blackbox,
|
|
896
|
+
team_actual_route_backfill: checks.team_actual_route_backfill,
|
|
897
|
+
research_backfill_route_blackbox: checks.research_backfill_route_blackbox,
|
|
898
|
+
research_actual_route_backfill: checks.research_actual_route_backfill,
|
|
899
|
+
qa_backfill_route_blackbox: checks.qa_backfill_route_blackbox,
|
|
900
|
+
qa_actual_route_backfill: checks.qa_actual_route_backfill,
|
|
901
|
+
zellij_layout_valid: checks.zellij_layout_valid,
|
|
902
|
+
zellij_lane_renderer: checks.zellij_lane_renderer_parallel,
|
|
903
|
+
zellij_pane_proof: checks.zellij_pane_proof_parallel,
|
|
904
|
+
zellij_screen_proof: checks.zellij_screen_proof_parallel,
|
|
905
|
+
proof_contract_reconciled: checks.agent_proof_contract_reconciled,
|
|
906
|
+
scheduler_proof_hardening: checks.agent_scheduler_proof_hardening,
|
|
907
|
+
dynamic_pool: checks.agent_dynamic_pool,
|
|
908
|
+
backfill_replenishment: checks.agent_backfill_replenishment,
|
|
909
|
+
scheduler_proof: checks.agent_scheduler_proof,
|
|
910
|
+
session_generation: checks.agent_session_generation,
|
|
911
|
+
terminal_generations: checks.agent_terminal_generations,
|
|
912
|
+
zellij_runtime_parallel: checks.agent_zellij_runtime_parallel,
|
|
913
|
+
dynamic_cockpit: checks.agent_dynamic_cockpit,
|
|
914
|
+
source_intelligence_propagation: checks.agent_source_intelligence_propagation,
|
|
915
|
+
goal_mode_propagation: checks.agent_goal_mode_propagation
|
|
916
|
+
},
|
|
917
|
+
dynamic_agent_pool_1_18: null,
|
|
918
|
+
goal_mode_1_18: {
|
|
919
|
+
status: checks.goal_mode_official_default ? 'present' : 'missing',
|
|
920
|
+
official_default_gate: checks.goal_mode_official_default
|
|
921
|
+
},
|
|
922
|
+
release_full_coverage_1_18: {
|
|
923
|
+
status: checks.release_parallel_full_coverage && checks.priority_full_closure ? 'present' : 'missing',
|
|
924
|
+
release_parallel_full_coverage: checks.release_parallel_full_coverage,
|
|
925
|
+
priority_full_closure: checks.priority_full_closure,
|
|
926
|
+
priorities: ['P0', 'P1', 'P2', 'P3', 'P4', 'P5', 'P6']
|
|
927
|
+
},
|
|
928
|
+
release_native_agent_backend: {
|
|
929
|
+
status: checks.release_native_agent_backend && checks.legacy_multiagent_removed ? 'present' : 'missing',
|
|
930
|
+
backend: 'native_multi_session_agent_kernel',
|
|
931
|
+
legacy_multiagent_surface: checks.legacy_multiagent_removed ? 'removed' : 'missing_removal_gate'
|
|
932
|
+
},
|
|
933
|
+
all_feature_completion: {
|
|
934
|
+
status: checks.all_features_completion && checks.all_features_deep_completion && checks.evidence_flagship_coverage ? 'present' : 'missing',
|
|
935
|
+
report_path: `.sneakoscope/reports/all-feature-completion-${RELEASE_VERSION}.json`
|
|
936
|
+
},
|
|
937
|
+
json_schema_recursive: {
|
|
938
|
+
status: checks.json_schema_recursive_check ? 'present' : 'missing'
|
|
939
|
+
},
|
|
940
|
+
official_docs_compatibility: {
|
|
941
|
+
status: officialDocs.status === 0 ? 'pass' : (checks.official_docs_compat ? 'fail' : 'not_in_1_18_parallel_gate'),
|
|
942
|
+
report_path: `.sneakoscope/reports/official-docs-compat-${RELEASE_VERSION}.json`,
|
|
943
|
+
stdout: trimOutput(officialDocs.stdout)
|
|
944
|
+
},
|
|
945
|
+
update_check: {
|
|
946
|
+
status: checks.update_check_function_only ? 'function_only' : 'missing',
|
|
947
|
+
route_required: false,
|
|
948
|
+
pipeline_required: false
|
|
949
|
+
},
|
|
950
|
+
memory_summary_rebuild: {
|
|
951
|
+
status: checks.memory_summary_rebuild_check ? 'present' : 'missing',
|
|
952
|
+
schema_version: 2
|
|
953
|
+
},
|
|
954
|
+
loop_blocker_stop: {
|
|
955
|
+
status: checks.loop_blocker_check ? 'present' : 'missing',
|
|
956
|
+
repeated_blocker_threshold: 2
|
|
957
|
+
},
|
|
958
|
+
docs_truthfulness: {
|
|
959
|
+
status: docs.status === 0 ? 'pass' : 'fail',
|
|
960
|
+
stdout: trimOutput(docs.stdout)
|
|
961
|
+
},
|
|
962
|
+
release_metadata: {
|
|
963
|
+
status: releaseMetadata.status === 0 ? 'pass' : 'fail',
|
|
964
|
+
stdout: trimOutput(releaseMetadata.stdout)
|
|
965
|
+
},
|
|
966
|
+
side_effect_runtime: {
|
|
967
|
+
status: sideEffectRuntime.status === 0 ? 'pass' : 'fail',
|
|
968
|
+
report: readJson('.sneakoscope/reports/side-effect-runtime-report.json', null),
|
|
969
|
+
stdout: trimOutput(sideEffectRuntime.stdout),
|
|
970
|
+
stderr: trimOutput(sideEffectRuntime.stderr)
|
|
971
|
+
},
|
|
972
|
+
provenance: {
|
|
973
|
+
status: releaseProvenance.status === 0 ? 'pass' : 'fail',
|
|
974
|
+
report: readJson('.sneakoscope/reports/release-provenance.json', null),
|
|
975
|
+
stdout: trimOutput(releaseProvenance.stdout),
|
|
976
|
+
stderr: trimOutput(releaseProvenance.stderr)
|
|
977
|
+
},
|
|
978
|
+
release_gate_last_pass_stamp: currentStamp ? {
|
|
979
|
+
package_version: currentStamp.package_version || null,
|
|
980
|
+
generated_at: currentStamp.generated_at || null,
|
|
981
|
+
source_digest: currentStamp.source_digest || null
|
|
982
|
+
} : null,
|
|
983
|
+
release_gate_stamp_verification: {
|
|
984
|
+
status: stampVerify.status === 0 ? 'pass' : dynamicReleaseMode ? 'dynamic_deferred' : 'fail',
|
|
985
|
+
dynamic_release_mode: dynamicReleaseMode,
|
|
986
|
+
required_for_ok: stampRequiredForOk,
|
|
987
|
+
required_for_publish: true,
|
|
988
|
+
stdout: trimOutput(stampVerify.stdout),
|
|
989
|
+
stderr: trimOutput(stampVerify.stderr)
|
|
990
|
+
},
|
|
991
|
+
stale_release_gate_last_pass_stamp: stamp && !currentStamp ? {
|
|
992
|
+
package_version: stamp.package_version || null,
|
|
993
|
+
generated_at: stamp.generated_at || null,
|
|
994
|
+
ignored: true
|
|
995
|
+
} : null,
|
|
996
|
+
non_publish_gaps: nonPublishGaps,
|
|
997
|
+
publish_ready: stampVerify.status === 0 && remainingP0.length === 0,
|
|
998
|
+
remaining_p0_gaps: remainingP0,
|
|
999
|
+
ok: remainingP0.length === 0
|
|
1000
|
+
};
|
|
1001
|
+
for (const key of [
|
|
1002
|
+
'hook_strict_subset',
|
|
1003
|
+
'codex_lb_setup_truthfulness',
|
|
1004
|
+
'computer_use_evidence_mode_support',
|
|
1005
|
+
'imagegen_core',
|
|
1006
|
+
'codex_0_136',
|
|
1007
|
+
'codex_0_134',
|
|
1008
|
+
'codex_0_133',
|
|
1009
|
+
'mcp_0_134',
|
|
1010
|
+
'parallel_write_kernel_1_18_9',
|
|
1011
|
+
'patch_swarm_runtime_1_18_9',
|
|
1012
|
+
'native_cli_session_swarm_1_18_10',
|
|
1013
|
+
'official_subagent_helper_lane_1_18_10',
|
|
1014
|
+
'real_codex_patch_envelope_smoke_1_18_11',
|
|
1015
|
+
'real_codex_parallel_workers_1_18_11',
|
|
1016
|
+
'fast_mode_default_1_18_10',
|
|
1017
|
+
'mad_sks_actual_executor_closure',
|
|
1018
|
+
'image_ux_review',
|
|
1019
|
+
'ppt_imagegen_review',
|
|
1020
|
+
'dfix',
|
|
1021
|
+
'hook_trust_warning_zero',
|
|
1022
|
+
'extreme_stabilization_1_14_1',
|
|
1023
|
+
'mad_sks_1_16_0',
|
|
1024
|
+
'source_intelligence_1_18',
|
|
1025
|
+
'agent_terminal_zellij_1_18',
|
|
1026
|
+
'runtime_truth_1_18_8',
|
|
1027
|
+
'dynamic_agent_pool_1_18_3',
|
|
1028
|
+
'goal_mode_1_18',
|
|
1029
|
+
'release_full_coverage_1_18',
|
|
1030
|
+
'release_native_agent_backend',
|
|
1031
|
+
'all_feature_completion',
|
|
1032
|
+
'json_schema_recursive',
|
|
1033
|
+
'memory_summary_rebuild',
|
|
1034
|
+
'loop_blocker_stop'
|
|
1035
|
+
]) {
|
|
1036
|
+
if (report[key]?.status === 'missing')
|
|
1037
|
+
report[key].status = key.endsWith('_1_18') ? 'missing' : 'not_in_1_18_parallel_gate';
|
|
1038
|
+
}
|
|
1039
|
+
report.dynamic_agent_pool_1_18 = report.dynamic_agent_pool_1_18_3;
|
|
1040
|
+
fs.mkdirSync(reportDir, { recursive: true });
|
|
1041
|
+
fs.writeFileSync(jsonPath, `${JSON.stringify(report, null, 2)}\n`);
|
|
1042
|
+
fs.writeFileSync(mdPath, renderMarkdown(report));
|
|
1043
|
+
console.log(JSON.stringify(report, null, 2));
|
|
1044
|
+
if (!report.ok)
|
|
1045
|
+
process.exitCode = 1;
|
|
1046
|
+
function releaseDagGatePassed(gateId) {
|
|
1047
|
+
return latestReleaseDagSummary?.ok === true
|
|
1048
|
+
&& latestReleaseDagSummary?.failed === 0
|
|
1049
|
+
&& Array.isArray(latestReleaseDagSummary?.selected_gate_ids)
|
|
1050
|
+
&& latestReleaseDagSummary.selected_gate_ids.includes(gateId);
|
|
1051
|
+
}
|
|
1052
|
+
function readLatestReleaseDagSummary() {
|
|
1053
|
+
const dir = path.join(root, '.sneakoscope', 'reports', 'release-gates');
|
|
1054
|
+
let rows = [];
|
|
1055
|
+
try {
|
|
1056
|
+
rows = fs.readdirSync(dir, { withFileTypes: true })
|
|
1057
|
+
.filter((entry) => entry.isDirectory() && entry.name.startsWith('rg-'))
|
|
1058
|
+
.map((entry) => {
|
|
1059
|
+
const file = path.join(dir, entry.name, 'summary.json');
|
|
1060
|
+
const stat = fs.statSync(file);
|
|
1061
|
+
return { file, mtimeMs: stat.mtimeMs };
|
|
1062
|
+
})
|
|
1063
|
+
.sort((a, b) => b.mtimeMs - a.mtimeMs);
|
|
1064
|
+
}
|
|
1065
|
+
catch {
|
|
1066
|
+
return null;
|
|
1067
|
+
}
|
|
1068
|
+
for (const row of rows) {
|
|
1069
|
+
try {
|
|
1070
|
+
const summary = JSON.parse(fs.readFileSync(row.file, 'utf8'));
|
|
1071
|
+
if (summary?.selected_preset === 'release')
|
|
1072
|
+
return summary;
|
|
1073
|
+
}
|
|
1074
|
+
catch {
|
|
1075
|
+
// Ignore malformed historical release summaries.
|
|
1076
|
+
}
|
|
1077
|
+
}
|
|
1078
|
+
return null;
|
|
1079
|
+
}
|
|
1080
|
+
function readJson(rel, fallback) {
|
|
1081
|
+
try {
|
|
1082
|
+
return JSON.parse(fs.readFileSync(path.join(root, rel), 'utf8'));
|
|
1083
|
+
}
|
|
1084
|
+
catch (err) {
|
|
1085
|
+
if (arguments.length > 1)
|
|
1086
|
+
return fallback;
|
|
1087
|
+
throw err;
|
|
1088
|
+
}
|
|
1089
|
+
}
|
|
1090
|
+
function scriptContains(name, needle) {
|
|
1091
|
+
if (name === 'release:check:parallel') {
|
|
1092
|
+
return String(pkg.scripts?.[name] || '').includes(needle) || releaseParallelCheckSource.includes(needle);
|
|
1093
|
+
}
|
|
1094
|
+
if (name === 'release:check') {
|
|
1095
|
+
return String(pkg.scripts?.[name] || '').includes(needle) || releaseParallelCheckSource.includes(needle) || releaseGateIds.has(needle);
|
|
1096
|
+
}
|
|
1097
|
+
if (name === 'release:real-check') {
|
|
1098
|
+
return String(pkg.scripts?.[name] || '').includes(needle) || releaseRealCheckSource.includes(needle);
|
|
1099
|
+
}
|
|
1100
|
+
return String(pkg.scripts?.[name] || '').includes(needle);
|
|
1101
|
+
}
|
|
1102
|
+
function stripComments(text) {
|
|
1103
|
+
return String(text || '')
|
|
1104
|
+
.replace(/\/\*[\s\S]*?\*\//g, '')
|
|
1105
|
+
.replace(/(^|[^:])\/\/.*$/gm, '$1');
|
|
1106
|
+
}
|
|
1107
|
+
function readText(rel, fallback = '') {
|
|
1108
|
+
try {
|
|
1109
|
+
return fs.readFileSync(path.join(root, rel), 'utf8');
|
|
1110
|
+
}
|
|
1111
|
+
catch {
|
|
1112
|
+
return fallback;
|
|
1113
|
+
}
|
|
1114
|
+
}
|
|
1115
|
+
function fileContains(rel, needle) {
|
|
1116
|
+
try {
|
|
1117
|
+
return fs.readFileSync(path.join(root, rel), 'utf8').includes(needle);
|
|
1118
|
+
}
|
|
1119
|
+
catch {
|
|
1120
|
+
return false;
|
|
1121
|
+
}
|
|
1122
|
+
}
|
|
1123
|
+
function runNodeScript(rel) {
|
|
1124
|
+
return spawnSync(process.execPath, [rel], {
|
|
1125
|
+
cwd: root,
|
|
1126
|
+
encoding: 'utf8',
|
|
1127
|
+
env: { ...process.env, CI: 'true' },
|
|
1128
|
+
timeout: 90_000,
|
|
1129
|
+
maxBuffer: 2 * 1024 * 1024
|
|
1130
|
+
});
|
|
1131
|
+
}
|
|
1132
|
+
function runNodeScriptWithOkReportCache(rel, reportRel, freshnessInputs = []) {
|
|
1133
|
+
const cached = readFreshOkReport(reportRel, freshnessInputs);
|
|
1134
|
+
if (cached) {
|
|
1135
|
+
return {
|
|
1136
|
+
status: 0,
|
|
1137
|
+
stdout: JSON.stringify({
|
|
1138
|
+
ok: true,
|
|
1139
|
+
cached: true,
|
|
1140
|
+
report: reportRel,
|
|
1141
|
+
generated_at: cached.generated_at || null
|
|
1142
|
+
}),
|
|
1143
|
+
stderr: ''
|
|
1144
|
+
};
|
|
1145
|
+
}
|
|
1146
|
+
return runNodeScript(rel);
|
|
1147
|
+
}
|
|
1148
|
+
function readFreshOkReport(reportRel, freshnessInputs = []) {
|
|
1149
|
+
const reportPath = path.join(root, reportRel);
|
|
1150
|
+
let report;
|
|
1151
|
+
try {
|
|
1152
|
+
report = JSON.parse(fs.readFileSync(reportPath, 'utf8'));
|
|
1153
|
+
}
|
|
1154
|
+
catch {
|
|
1155
|
+
return null;
|
|
1156
|
+
}
|
|
1157
|
+
if (report?.ok !== true)
|
|
1158
|
+
return null;
|
|
1159
|
+
let reportStat;
|
|
1160
|
+
try {
|
|
1161
|
+
reportStat = fs.statSync(reportPath);
|
|
1162
|
+
}
|
|
1163
|
+
catch {
|
|
1164
|
+
return null;
|
|
1165
|
+
}
|
|
1166
|
+
for (const input of freshnessInputs) {
|
|
1167
|
+
try {
|
|
1168
|
+
if (fs.statSync(path.join(root, input)).mtimeMs > reportStat.mtimeMs)
|
|
1169
|
+
return null;
|
|
1170
|
+
}
|
|
1171
|
+
catch {
|
|
1172
|
+
return null;
|
|
1173
|
+
}
|
|
1174
|
+
}
|
|
1175
|
+
return report;
|
|
1176
|
+
}
|
|
1177
|
+
function trimOutput(text) {
|
|
1178
|
+
return String(text || '').slice(0, 4000);
|
|
1179
|
+
}
|
|
1180
|
+
function renderMarkdown(report) {
|
|
1181
|
+
return `# SKS ${RELEASE_VERSION} Release Readiness
|
|
1182
|
+
|
|
1183
|
+
- Schema: \`${report.schema}\`
|
|
1184
|
+
- Package: \`${report.package.name}@${report.package.version}\`
|
|
1185
|
+
- Source truth: commit \`${report.release_proof_truth.git_commit_sha || 'missing'}\`, clean=\`${report.release_proof_truth.git_status_clean ?? 'unknown'}\`, packlist=\`${report.release_proof_truth.npm_packlist_count ?? 'unknown'}\`
|
|
1186
|
+
- Scope: \`${report.scope.gate}\`; \`ok: true\` means ${report.scope.ok_means}.
|
|
1187
|
+
- Hook strict subset: \`${report.hook_strict_subset.status}\`
|
|
1188
|
+
- codex-lb persistence truth: \`${report.codex_lb_setup_truthfulness.status}\`
|
|
1189
|
+
- Computer Use evidence modes: \`${report.computer_use_evidence_mode_support.status}\`
|
|
1190
|
+
- Imagegen core gpt-image-2 readiness: \`${report.imagegen_core.status}\` (Codex App $imagegen required; capability detection is not output proof)
|
|
1191
|
+
- Codex 0.136 compatibility: \`${report.codex_0_136.status}\`
|
|
1192
|
+
- Codex 0.134 compatibility: \`${report.codex_0_134.status}\`
|
|
1193
|
+
- Real Codex patch envelope smoke ${RELEASE_VERSION}: \`${report.real_codex_patch_envelope_smoke_1_18_11.status}\` (${report.real_codex_patch_envelope_smoke_1_18_11.proof_level || 'not_reported'})
|
|
1194
|
+
- Real Codex parallel workers ${RELEASE_VERSION}: \`${report.real_codex_parallel_workers_1_18_11.status}\` (${report.real_codex_parallel_workers_1_18_11.real_codex_parallel_proof_level || 'not_reported'})
|
|
1195
|
+
- Codex 0.133 compatibility: \`${report.codex_0_133.status}\`
|
|
1196
|
+
- MCP 0.134 modernization: \`${report.mcp_0_134.status}\`
|
|
1197
|
+
- Parallel write kernel ${RELEASE_VERSION}: \`${report.parallel_write_kernel_1_18_9.status}\`
|
|
1198
|
+
- Patch swarm runtime ${RELEASE_VERSION}: \`${report.patch_swarm_runtime_1_18_9.status}\`
|
|
1199
|
+
- Native CLI Session Swarm ${RELEASE_VERSION}: \`${report.native_cli_session_swarm_1_18_10.status}\`
|
|
1200
|
+
- Official Codex subagent helper lane ${RELEASE_VERSION}: \`${report.official_subagent_helper_lane_1_18_10.status}\` (worker credit ${report.official_subagent_helper_lane_1_18_10.worker_capacity_credit}, live image output proof ${report.official_subagent_helper_lane_1_18_10.live_codex_app_output_proof_ran ? 'ran' : 'not run'})
|
|
1201
|
+
- Fast mode default ${RELEASE_VERSION}: \`${report.fast_mode_default_1_18_10.status}\`
|
|
1202
|
+
- MAD-SKS actual executor closure: \`${report.mad_sks_actual_executor_closure.status}\`
|
|
1203
|
+
- Release native agent backend: \`${report.release_native_agent_backend.status}\`
|
|
1204
|
+
- UX-Review real callout loop gates: \`${report.image_ux_review.status}\`
|
|
1205
|
+
- PPT imagegen review gates: \`${report.ppt_imagegen_review.status}\`
|
|
1206
|
+
- DFix gates: \`${report.dfix.status}\`
|
|
1207
|
+
- Hook trust warning-zero: \`${report.hook_trust_warning_zero.status}\`
|
|
1208
|
+
- Source Intelligence 1.18: \`${report.source_intelligence_1_18.status}\`
|
|
1209
|
+
- Agent terminal/Zellij 1.18: \`${report.agent_terminal_zellij_1_18.status}\`
|
|
1210
|
+
- Runtime truth ${RELEASE_VERSION}: \`${report.runtime_truth_1_18_8.status}\`
|
|
1211
|
+
- Dynamic agent pool ${RELEASE_VERSION}: \`${report.dynamic_agent_pool_1_18_3.status}\`
|
|
1212
|
+
- Goal mode 1.18: \`${report.goal_mode_1_18.status}\`
|
|
1213
|
+
- Release full coverage 1.18: \`${report.release_full_coverage_1_18.status}\`
|
|
1214
|
+
- All-feature completion: \`${report.all_feature_completion.status}\`
|
|
1215
|
+
- Recursive JSON schema check: \`${report.json_schema_recursive.status}\`
|
|
1216
|
+
- Official docs compatibility: \`${report.official_docs_compatibility.status}\`
|
|
1217
|
+
- Update check mode: \`${report.update_check.status}\`
|
|
1218
|
+
- Memory summary rebuild: \`${report.memory_summary_rebuild.status}\`
|
|
1219
|
+
- Loop blocker stop: \`${report.loop_blocker_stop.status}\`
|
|
1220
|
+
- Docs truthfulness: \`${report.docs_truthfulness.status}\`
|
|
1221
|
+
- Release metadata: \`${report.release_metadata.status}\`
|
|
1222
|
+
- Side-effect runtime: \`${report.side_effect_runtime.status}\` (${report.side_effect_runtime.report?.unexpected_applied_mutations ?? 'not_reported'} unexpected applied mutations)
|
|
1223
|
+
- Provenance: \`${report.provenance.status}\` (reviewed_ref=${report.provenance.report?.reviewed_ref || 'not_reported'}, main=${report.provenance.report?.main_version || 'unavailable'}, npm=${report.provenance.report?.npm_version || 'unavailable'}, tag=${report.provenance.report?.tag_status?.exists ? 'present' : 'missing'})
|
|
1224
|
+
- Publish ready: \`${report.publish_ready ? 'true' : 'false'}\`; non-publish gaps: ${report.non_publish_gaps.length ? report.non_publish_gaps.join(', ') : 'None'}
|
|
1225
|
+
- Priority closure: P0 through P9 are tracked in the ${RELEASE_VERSION} readiness surface.
|
|
1226
|
+
- Remaining ${RELEASE_VERSION} P0 DAG gaps: ${report.remaining_p0_gaps.length ? report.remaining_p0_gaps.join(', ') : 'None'}
|
|
1227
|
+
|
|
1228
|
+
\`not_in_1_18_parallel_gate\` is an explicit non-P0 status for historical, live, or broader gates not run by the ${RELEASE_VERSION} parallel DAG. Computer Use live evidence, UX-Review screenshots, and PPT generated review images remain opt-in/local-only. codex-lb process-only setup is reported as \`process_only_ephemeral\`, not durable persistence. UX-Review/PPT cannot pass from text-only critique or mock-as-real fixtures.
|
|
1229
|
+
`;
|
|
1230
|
+
}
|
|
1231
|
+
//# sourceMappingURL=release-readiness-report.js.map
|