sneakoscope 2.0.13 → 2.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.
Files changed (504) hide show
  1. package/README.md +6 -3
  2. package/crates/sks-core/Cargo.lock +1 -1
  3. package/crates/sks-core/Cargo.toml +1 -1
  4. package/crates/sks-core/src/main.rs +1 -1
  5. package/dist/.sks-build-stamp.json +4 -4
  6. package/dist/bin/sks.js +1 -1
  7. package/dist/cli/command-registry.js +1 -0
  8. package/dist/commands/mad-db.js +5 -0
  9. package/dist/commands/zellij-slot-pane.js +3 -1
  10. package/dist/core/agents/agent-orchestrator.js +11 -4
  11. package/dist/core/agents/agent-output-validator.js +1 -1
  12. package/dist/core/agents/agent-plan.js +3 -2
  13. package/dist/core/agents/native-cli-session-swarm.js +118 -0
  14. package/dist/core/agents/native-cli-worker.js +85 -0
  15. package/dist/core/codex-control/codex-fake-sdk-adapter.js +3 -3
  16. package/dist/core/codex-control/gpt-final-review-schema.js +61 -14
  17. package/dist/core/commands/basic-cli.js +1 -1
  18. package/dist/core/commands/command-suggestions.js +1 -1
  19. package/dist/core/commands/mad-db-command.js +106 -0
  20. package/dist/core/commands/mad-sks-command.js +50 -13
  21. package/dist/core/commands/naruto-command.js +82 -1
  22. package/dist/core/commands/research-command.js +83 -17
  23. package/dist/core/commands/team-command.js +25 -1
  24. package/dist/core/db-safety.js +26 -0
  25. package/dist/core/fsx.js +1 -1
  26. package/dist/core/mad-db/mad-db-capability.js +84 -0
  27. package/dist/core/mad-db/mad-db-ledger.js +17 -0
  28. package/dist/core/mad-db/mad-db-policy-resolver.js +46 -0
  29. package/dist/core/naruto/naruto-real-worker-child.js +11 -3
  30. package/dist/core/naruto/naruto-real-worker-runtime.js +4 -0
  31. package/dist/core/pipeline/final-gpt-patch-stage.js +20 -3
  32. package/dist/core/pipeline-internals/runtime-core.js +74 -8
  33. package/dist/core/pipeline-internals/runtime-gates.js +44 -0
  34. package/dist/core/proof/route-proof-gate.js +5 -3
  35. package/dist/core/proof/route-proof-policy.js +9 -1
  36. package/dist/core/release/release-gate-affected-selector.js +113 -0
  37. package/dist/core/release/release-gate-batch-runner.js +67 -0
  38. package/dist/core/release/release-gate-dag.js +22 -3
  39. package/dist/core/release/release-gate-resource-governor.js +23 -11
  40. package/dist/core/research/implementation-blueprint-densifier.js +124 -0
  41. package/dist/core/research/implementation-blueprint-markdown.js +1 -1
  42. package/dist/core/research/implementation-blueprint.js +68 -7
  43. package/dist/core/research/research-claim-builder.js +114 -0
  44. package/dist/core/research/research-cycle-runner.js +115 -11
  45. package/dist/core/research/research-final-reviewer.js +181 -1
  46. package/dist/core/research/research-handoff.js +69 -5
  47. package/dist/core/research/research-realistic-report.js +162 -0
  48. package/dist/core/research/research-repetition-detector.js +75 -0
  49. package/dist/core/research/research-report-quality.js +27 -5
  50. package/dist/core/research/research-source-ledger-merge.js +186 -0
  51. package/dist/core/research/research-source-shards.js +176 -0
  52. package/dist/core/research/research-stage-runner.js +537 -11
  53. package/dist/core/research/research-synthesis-prompt.js +52 -0
  54. package/dist/core/research/research-synthesis-writer.js +208 -0
  55. package/dist/core/research/research-work-graph.js +114 -23
  56. package/dist/core/research.js +72 -48
  57. package/dist/core/routes.js +23 -19
  58. package/dist/core/update/update-notice.js +120 -0
  59. package/dist/core/version.js +1 -1
  60. package/dist/core/zellij/zellij-dashboard-renderer.js +2 -0
  61. package/dist/core/zellij/zellij-slot-column-anchor.js +35 -1
  62. package/dist/core/zellij/zellij-slot-pane-renderer.js +57 -0
  63. package/dist/core/zellij/zellij-slot-telemetry.js +182 -0
  64. package/dist/scripts/release-gate-dag-runner.js +5 -0
  65. package/dist/scripts/release-speed-summary.js +25 -0
  66. package/package.json +67 -5
  67. package/schemas/codex/agent-result.schema.json +1 -1
  68. package/schemas/mad-db/mad-db-capability.schema.json +31 -0
  69. package/schemas/mad-db/mad-db-ledger.schema.json +14 -0
  70. package/schemas/research/implementation-blueprint.schema.json +6 -1
  71. package/schemas/research/research-final-review.schema.json +10 -0
  72. package/schemas/research/research-source-shard.schema.json +46 -0
  73. package/schemas/research/research-synthesis-output.schema.json +62 -0
  74. package/schemas/update/update-notice.schema.json +19 -0
  75. package/schemas/zellij/zellij-slot-telemetry.schema.json +89 -0
  76. package/dist/build-manifest.json +0 -1184
  77. package/dist/scripts/agent-ast-aware-work-graph-check.js +0 -25
  78. package/dist/scripts/agent-backfill-replenishment-check.js +0 -13
  79. package/dist/scripts/agent-backfill-route-blackbox.js +0 -5
  80. package/dist/scripts/agent-background-terminals-check.js +0 -16
  81. package/dist/scripts/agent-cleanup-command-ux-check.js +0 -12
  82. package/dist/scripts/agent-cleanup-executor-check.js +0 -53
  83. package/dist/scripts/agent-cleanup-executor-v2-check.js +0 -39
  84. package/dist/scripts/agent-cli-options-to-task-graph-check.js +0 -5
  85. package/dist/scripts/agent-codex-app-cockpit-check.js +0 -91
  86. package/dist/scripts/agent-codex-child-overlap-check.js +0 -21
  87. package/dist/scripts/agent-dynamic-cockpit-check.js +0 -10
  88. package/dist/scripts/agent-dynamic-pool-check.js +0 -13
  89. package/dist/scripts/agent-dynamic-pool-route-blackbox.js +0 -5
  90. package/dist/scripts/agent-fast-mode-default-check.js +0 -62
  91. package/dist/scripts/agent-fast-mode-worker-propagation-check.js +0 -7
  92. package/dist/scripts/agent-follow-up-work-schema-check.js +0 -80
  93. package/dist/scripts/agent-goal-mode-propagation-check.js +0 -9
  94. package/dist/scripts/agent-intelligent-work-graph-check.js +0 -25
  95. package/dist/scripts/agent-janitor-check.js +0 -76
  96. package/dist/scripts/agent-main-no-scout-check.js +0 -11
  97. package/dist/scripts/agent-model-authored-patch-envelope-check.js +0 -15
  98. package/dist/scripts/agent-multi-project-isolation-check.js +0 -86
  99. package/dist/scripts/agent-native-cli-session-proof-check.js +0 -7
  100. package/dist/scripts/agent-native-cli-session-swarm-10-check.js +0 -7
  101. package/dist/scripts/agent-native-cli-session-swarm-20-check.js +0 -7
  102. package/dist/scripts/agent-native-cli-session-swarm-check.js +0 -7
  103. package/dist/scripts/agent-no-subagent-scaling-check.js +0 -7
  104. package/dist/scripts/agent-parallel-write-blackbox.js +0 -56
  105. package/dist/scripts/agent-parallel-write-kernel-check.js +0 -103
  106. package/dist/scripts/agent-patch-conflict-rebase-check.js +0 -198
  107. package/dist/scripts/agent-patch-envelope-extraction-check.js +0 -17
  108. package/dist/scripts/agent-patch-proof-check.js +0 -41
  109. package/dist/scripts/agent-patch-proof-runtime-check.js +0 -63
  110. package/dist/scripts/agent-patch-queue-runtime-check.js +0 -36
  111. package/dist/scripts/agent-patch-rollback-check.js +0 -38
  112. package/dist/scripts/agent-patch-rollback-dag-check.js +0 -14
  113. package/dist/scripts/agent-patch-swarm-route-blackbox.js +0 -10
  114. package/dist/scripts/agent-patch-swarm-runtime-check.js +0 -10
  115. package/dist/scripts/agent-patch-swarm-runtime-truth-check.js +0 -76
  116. package/dist/scripts/agent-patch-transaction-journal-check.js +0 -57
  117. package/dist/scripts/agent-patch-verification-dag-check.js +0 -14
  118. package/dist/scripts/agent-proof-contract-reconciled-check.js +0 -5
  119. package/dist/scripts/agent-real-codex-dynamic-smoke-check.js +0 -166
  120. package/dist/scripts/agent-real-codex-dynamic-smoke-v2-check.js +0 -14
  121. package/dist/scripts/agent-real-codex-in-zellij-worker-pane-check.js +0 -229
  122. package/dist/scripts/agent-real-codex-parallel-workers-10-check.js +0 -5
  123. package/dist/scripts/agent-real-codex-parallel-workers-20-check.js +0 -5
  124. package/dist/scripts/agent-real-codex-parallel-workers-5-check.js +0 -5
  125. package/dist/scripts/agent-real-codex-parallel-workers-check.js +0 -5
  126. package/dist/scripts/agent-role-config-repair-check.js +0 -33
  127. package/dist/scripts/agent-rollback-command-check.js +0 -86
  128. package/dist/scripts/agent-route-truth-backfill-check.js +0 -5
  129. package/dist/scripts/agent-scheduler-proof-check.js +0 -13
  130. package/dist/scripts/agent-scheduler-proof-hardening-check.js +0 -22
  131. package/dist/scripts/agent-session-generation-check.js +0 -21
  132. package/dist/scripts/agent-slot-pane-binding-proof-check.js +0 -64
  133. package/dist/scripts/agent-source-intelligence-propagation-check.js +0 -9
  134. package/dist/scripts/agent-strategy-to-lease-wiring-check.js +0 -32
  135. package/dist/scripts/agent-strategy-to-patch-strict-check.js +0 -54
  136. package/dist/scripts/agent-task-graph-expansion-check.js +0 -14
  137. package/dist/scripts/agent-terminal-generations-check.js +0 -23
  138. package/dist/scripts/agent-visual-consistency-check.js +0 -9
  139. package/dist/scripts/agent-wiki-context-proof-check.js +0 -62
  140. package/dist/scripts/agent-worker-backend-router-check.js +0 -63
  141. package/dist/scripts/agent-worker-scout-limited-check.js +0 -17
  142. package/dist/scripts/agent-zellij-dynamic-backfill-panes-check.js +0 -34
  143. package/dist/scripts/agent-zellij-runtime-check.js +0 -84
  144. package/dist/scripts/all-feature-deep-completion-check.js +0 -31
  145. package/dist/scripts/appshots-capability-check.js +0 -18
  146. package/dist/scripts/appshots-evidence-check.js +0 -48
  147. package/dist/scripts/appshots-operator-policy-check.js +0 -25
  148. package/dist/scripts/appshots-privacy-safety-check.js +0 -48
  149. package/dist/scripts/appshots-source-intelligence-check.js +0 -53
  150. package/dist/scripts/appshots-thread-attachment-discovery-check.js +0 -87
  151. package/dist/scripts/appshots-triwiki-voxel-check.js +0 -46
  152. package/dist/scripts/architecture-guard-check.js +0 -55
  153. package/dist/scripts/changelog-check.js +0 -47
  154. package/dist/scripts/codex-0-133-official-compat-report.js +0 -53
  155. package/dist/scripts/codex-0-134-official-compat-report.js +0 -110
  156. package/dist/scripts/codex-0-134-runner-truth-check.js +0 -66
  157. package/dist/scripts/codex-0-135-compat-check.js +0 -57
  158. package/dist/scripts/codex-0-136-compat-check.js +0 -30
  159. package/dist/scripts/codex-0-137-compat-check.js +0 -27
  160. package/dist/scripts/codex-app-fast-ui-preservation-check.js +0 -32
  161. package/dist/scripts/codex-app-provider-badge-check.js +0 -37
  162. package/dist/scripts/codex-app-ui-clobber-guard-check.js +0 -22
  163. package/dist/scripts/codex-app-ui-preservation-check.js +0 -96
  164. package/dist/scripts/codex-control-all-pipelines-check.js +0 -36
  165. package/dist/scripts/codex-control-capability-check.js +0 -10
  166. package/dist/scripts/codex-control-empty-result-retry-check.js +0 -43
  167. package/dist/scripts/codex-control-event-stream-ledger-check.js +0 -10
  168. package/dist/scripts/codex-control-keepalive-no-cot-leak-check.js +0 -14
  169. package/dist/scripts/codex-control-no-legacy-fallback-check.js +0 -31
  170. package/dist/scripts/codex-control-side-effect-scope-check.js +0 -26
  171. package/dist/scripts/codex-control-stream-idle-watchdog-check.js +0 -18
  172. package/dist/scripts/codex-control-structured-output-check.js +0 -11
  173. package/dist/scripts/codex-control-thread-registry-check.js +0 -11
  174. package/dist/scripts/codex-control-tool-call-sequence-repair-check.js +0 -14
  175. package/dist/scripts/codex-environment-scoped-approvals-check.js +0 -10
  176. package/dist/scripts/codex-exec-output-schema-actual-syntax-check.js +0 -33
  177. package/dist/scripts/codex-fast-mode-profile-propagation-check.js +0 -12
  178. package/dist/scripts/codex-history-search-check.js +0 -19
  179. package/dist/scripts/codex-hook-semantic-check.js +0 -15
  180. package/dist/scripts/codex-hook-strict-subset-check.js +0 -61
  181. package/dist/scripts/codex-lb-config-toml-safety-check.js +0 -85
  182. package/dist/scripts/codex-lb-persistence-truth-check.js +0 -96
  183. package/dist/scripts/codex-lb-setup-fixture-check.js +0 -91
  184. package/dist/scripts/codex-lb-setup-truthfulness-check.js +0 -84
  185. package/dist/scripts/codex-legacy-profile-consumers-removed-check.js +0 -24
  186. package/dist/scripts/codex-managed-proxy-env-check.js +0 -17
  187. package/dist/scripts/codex-output-schema-fixture-check.js +0 -25
  188. package/dist/scripts/codex-permission-profiles-check.js +0 -36
  189. package/dist/scripts/codex-plugin-list-json-check.js +0 -8
  190. package/dist/scripts/codex-profile-primary-check.js +0 -13
  191. package/dist/scripts/codex-project-config-policy-splitter-check.js +0 -51
  192. package/dist/scripts/codex-resume-cwd-truth-check.js +0 -17
  193. package/dist/scripts/codex-sdk-all-pipelines-check.js +0 -32
  194. package/dist/scripts/codex-sdk-backend-router-check.js +0 -65
  195. package/dist/scripts/codex-sdk-capability-check.js +0 -11
  196. package/dist/scripts/codex-sdk-core-skill-pipeline-check.js +0 -9
  197. package/dist/scripts/codex-sdk-dfix-pipeline-check.js +0 -9
  198. package/dist/scripts/codex-sdk-event-stream-ledger-check.js +0 -9
  199. package/dist/scripts/codex-sdk-no-legacy-fallback-check.js +0 -33
  200. package/dist/scripts/codex-sdk-qa-pipeline-check.js +0 -8
  201. package/dist/scripts/codex-sdk-real-smoke-check.js +0 -39
  202. package/dist/scripts/codex-sdk-release-review-pipeline-check.js +0 -13
  203. package/dist/scripts/codex-sdk-research-pipeline-check.js +0 -15
  204. package/dist/scripts/codex-sdk-sandbox-policy-check.js +0 -21
  205. package/dist/scripts/codex-sdk-structured-output-check.js +0 -10
  206. package/dist/scripts/codex-sdk-team-naruto-agent-pipeline-check.js +0 -12
  207. package/dist/scripts/codex-sdk-thread-registry-check.js +0 -11
  208. package/dist/scripts/codex-sdk-ux-ppt-review-pipeline-check.js +0 -9
  209. package/dist/scripts/codex-sdk-zellij-pane-binding-check.js +0 -13
  210. package/dist/scripts/codex-thread-runtime-choice-check.js +0 -10
  211. package/dist/scripts/codex-web-adapter-check.js +0 -12
  212. package/dist/scripts/computer-use-live-evidence-check.js +0 -55
  213. package/dist/scripts/computer-use-live-optional-check.js +0 -32
  214. package/dist/scripts/computer-use-policy-check.js +0 -69
  215. package/dist/scripts/computer-use-visual-route-fixture-check.js +0 -37
  216. package/dist/scripts/core-skill-card-schema-check.js +0 -61
  217. package/dist/scripts/core-skill-deployment-snapshot-check.js +0 -54
  218. package/dist/scripts/core-skill-heldout-validation-check.js +0 -49
  219. package/dist/scripts/core-skill-no-inference-optimizer-check.js +0 -75
  220. package/dist/scripts/core-skill-patch-check.js +0 -79
  221. package/dist/scripts/core-skill-promotion-side-effect-ledger-check.js +0 -64
  222. package/dist/scripts/core-skill-rollout-scoring-check.js +0 -72
  223. package/dist/scripts/core-skill-route-runtime-integration-check.js +0 -49
  224. package/dist/scripts/dfix-fast-blackbox-check.js +0 -37
  225. package/dist/scripts/dfix-fast-kernel-check.js +0 -26
  226. package/dist/scripts/dfix-fixture-check.js +0 -6
  227. package/dist/scripts/dfix-parallel-write-blackbox.js +0 -48
  228. package/dist/scripts/dfix-patch-handoff-check.js +0 -13
  229. package/dist/scripts/dfix-patch-swarm-route-blackbox.js +0 -10
  230. package/dist/scripts/dfix-performance-check.js +0 -15
  231. package/dist/scripts/dfix-verification-check.js +0 -9
  232. package/dist/scripts/dfix-verification-recommendation-check.js +0 -15
  233. package/dist/scripts/docs-truthfulness-check.js +0 -61
  234. package/dist/scripts/doctor-codex-doctor-parity-check.js +0 -17
  235. package/dist/scripts/doctor-fix-proves-codex-read-check.js +0 -64
  236. package/dist/scripts/doctor-fix-recovers-corrupted-config-check.js +0 -122
  237. package/dist/scripts/doctor-fixes-codex-app-fast-ui-check.js +0 -39
  238. package/dist/scripts/evidence-fixture-check.js +0 -26
  239. package/dist/scripts/evidence-flagship-coverage-check.js +0 -55
  240. package/dist/scripts/fake-real-proof-policy-v2-check.js +0 -27
  241. package/dist/scripts/fake-vs-real-proof-policy-check.js +0 -14
  242. package/dist/scripts/fast-codex-service-tier-proof-check.js +0 -42
  243. package/dist/scripts/flagship-proof-graph-v2-check.js +0 -48
  244. package/dist/scripts/flagship-proof-graph-v3-check.js +0 -67
  245. package/dist/scripts/flagship-proof-graph-v4-check.js +0 -61
  246. package/dist/scripts/git-precommit-fixture-check.js +0 -41
  247. package/dist/scripts/git-worktree-cache-performance-check.js +0 -25
  248. package/dist/scripts/git-worktree-capability-check.js +0 -27
  249. package/dist/scripts/git-worktree-checkpoint-check.js +0 -20
  250. package/dist/scripts/git-worktree-cleanup-check.js +0 -27
  251. package/dist/scripts/git-worktree-cross-rebase-check.js +0 -39
  252. package/dist/scripts/git-worktree-diff-envelope-check.js +0 -17
  253. package/dist/scripts/git-worktree-diff-export-check.js +0 -43
  254. package/dist/scripts/git-worktree-dirty-lock-check.js +0 -17
  255. package/dist/scripts/git-worktree-dirty-main-detection-check.js +0 -14
  256. package/dist/scripts/git-worktree-integration-primary-check.js +0 -24
  257. package/dist/scripts/git-worktree-integration-primary-runtime-check.js +0 -20
  258. package/dist/scripts/git-worktree-manager-check.js +0 -37
  259. package/dist/scripts/git-worktree-manifest-append-check.js +0 -18
  260. package/dist/scripts/git-worktree-merge-queue-check.js +0 -31
  261. package/dist/scripts/git-worktree-pool-performance-check.js +0 -20
  262. package/dist/scripts/git-worktree-untracked-diff-check.js +0 -18
  263. package/dist/scripts/goal-mode-official-default-check.js +0 -12
  264. package/dist/scripts/gpt-final-arbiter-check.js +0 -63
  265. package/dist/scripts/gpt-final-arbiter-performance-check.js +0 -36
  266. package/dist/scripts/gpt-image-2-request-validator-check.js +0 -35
  267. package/dist/scripts/hooks-0.134-context-parity-check.js +0 -20
  268. package/dist/scripts/hooks-actual-parity-check.js +0 -17
  269. package/dist/scripts/hooks-actual-parity-v2-check.js +0 -21
  270. package/dist/scripts/hooks-latest-schema-check.js +0 -20
  271. package/dist/scripts/hooks-managed-install-fixture-check.js +0 -21
  272. package/dist/scripts/hooks-official-hash-oracle-check.js +0 -35
  273. package/dist/scripts/hooks-official-hash-parity-check.js +0 -17
  274. package/dist/scripts/hooks-subagent-events-check.js +0 -17
  275. package/dist/scripts/hooks-trust-state-check.js +0 -14
  276. package/dist/scripts/image-fidelity-fixture-check.js +0 -24
  277. package/dist/scripts/imagegen-capability-check.js +0 -30
  278. package/dist/scripts/imagegen-real-smoke-check.js +0 -155
  279. package/dist/scripts/install-update-preserves-config-check.js +0 -87
  280. package/dist/scripts/json-schema-recursive-check.js +0 -78
  281. package/dist/scripts/legacy-multiagent-removal-check.js +0 -85
  282. package/dist/scripts/legacy-upgrade-matrix-check.js +0 -300
  283. package/dist/scripts/local-collab-all-pipelines-final-gpt-check.js +0 -21
  284. package/dist/scripts/local-collab-gpt-final-availability-check.js +0 -58
  285. package/dist/scripts/local-collab-no-local-only-final-check.js +0 -27
  286. package/dist/scripts/local-collab-policy-check.js +0 -17
  287. package/dist/scripts/local-collab-worktree-gpt-final-apply-policy-check.js +0 -63
  288. package/dist/scripts/local-llm-all-pipelines-check.js +0 -11
  289. package/dist/scripts/local-llm-cache-performance-check.js +0 -10
  290. package/dist/scripts/local-llm-capability-check.js +0 -14
  291. package/dist/scripts/local-llm-smoke-check.js +0 -23
  292. package/dist/scripts/local-llm-structured-output-check.js +0 -11
  293. package/dist/scripts/local-llm-throughput-check.js +0 -10
  294. package/dist/scripts/local-llm-tool-call-repair-check.js +0 -10
  295. package/dist/scripts/local-llm-warmup-check.js +0 -11
  296. package/dist/scripts/loop-blocker-check.js +0 -15
  297. package/dist/scripts/mad-preflight-blocks-unreadable-config-check.js +0 -35
  298. package/dist/scripts/mad-sks-actual-executor-blackbox.js +0 -5
  299. package/dist/scripts/mad-sks-app-ui-no-mutation-check.js +0 -92
  300. package/dist/scripts/mad-sks-audit-proof-check.js +0 -34
  301. package/dist/scripts/mad-sks-db-executor-check.js +0 -5
  302. package/dist/scripts/mad-sks-executor-proof-graph-check.js +0 -5
  303. package/dist/scripts/mad-sks-fast-mode-propagation-check.js +0 -24
  304. package/dist/scripts/mad-sks-file-write-executor-check.js +0 -5
  305. package/dist/scripts/mad-sks-immutable-harness-check.js +0 -36
  306. package/dist/scripts/mad-sks-no-harness-modification-check.js +0 -25
  307. package/dist/scripts/mad-sks-package-executor-check.js +0 -5
  308. package/dist/scripts/mad-sks-permission-model-check.js +0 -22
  309. package/dist/scripts/mad-sks-rollback-apply-check.js +0 -5
  310. package/dist/scripts/mad-sks-service-executor-check.js +0 -5
  311. package/dist/scripts/mad-sks-shell-executor-check.js +0 -5
  312. package/dist/scripts/mad-sks-write-guard-check.js +0 -28
  313. package/dist/scripts/mad-sks-zellij-default-pane-worker-check.js +0 -37
  314. package/dist/scripts/mad-sks-zellij-launch-check.js +0 -102
  315. package/dist/scripts/mcp-0-134-modernization-check.js +0 -55
  316. package/dist/scripts/mcp-readonly-concurrency-check.js +0 -17
  317. package/dist/scripts/mcp-readonly-runtime-scheduler-check.js +0 -20
  318. package/dist/scripts/mcp-tool-naming-parity-check.js +0 -16
  319. package/dist/scripts/memory-summary-rebuild-check.js +0 -22
  320. package/dist/scripts/mutation-callsite-coverage-check.js +0 -180
  321. package/dist/scripts/naruto-active-pool-check.js +0 -39
  322. package/dist/scripts/naruto-actual-worker-control-plane-check.js +0 -56
  323. package/dist/scripts/naruto-allocation-policy-check.js +0 -33
  324. package/dist/scripts/naruto-allocation-runtime-wiring-check.js +0 -92
  325. package/dist/scripts/naruto-concurrency-governor-check.js +0 -53
  326. package/dist/scripts/naruto-extreme-parallelism-check.js +0 -22
  327. package/dist/scripts/naruto-extreme-parallelism-real-check.js +0 -43
  328. package/dist/scripts/naruto-gpt-final-pack-check.js +0 -34
  329. package/dist/scripts/naruto-orchestrator-runtime-source-check.js +0 -70
  330. package/dist/scripts/naruto-parallel-patch-apply-check.js +0 -41
  331. package/dist/scripts/naruto-readonly-routing-check.js +0 -116
  332. package/dist/scripts/naruto-real-active-pool-check.js +0 -39
  333. package/dist/scripts/naruto-real-active-pool-runtime-check.js +0 -55
  334. package/dist/scripts/naruto-rebalance-policy-check.js +0 -41
  335. package/dist/scripts/naruto-role-distribution-check.js +0 -23
  336. package/dist/scripts/naruto-shadow-clone-swarm-check.js +0 -153
  337. package/dist/scripts/naruto-verification-pool-check.js +0 -36
  338. package/dist/scripts/naruto-work-graph-check.js +0 -24
  339. package/dist/scripts/naruto-worktree-coding-blackbox.js +0 -29
  340. package/dist/scripts/naruto-worktree-coding-check.js +0 -44
  341. package/dist/scripts/naruto-worktree-gpt-final-check.js +0 -45
  342. package/dist/scripts/naruto-worktree-zellij-ui-check.js +0 -28
  343. package/dist/scripts/naruto-zellij-dynamic-right-column-check.js +0 -48
  344. package/dist/scripts/naruto-zellij-massive-ui-check.js +0 -23
  345. package/dist/scripts/non-recursive-pipeline-check.js +0 -68
  346. package/dist/scripts/npm-publish-performance-check.js +0 -65
  347. package/dist/scripts/official-docs-compat-report.js +0 -304
  348. package/dist/scripts/packlist-performance-check.js +0 -83
  349. package/dist/scripts/parallel-verification-engine-check.js +0 -85
  350. package/dist/scripts/postinstall-safe-side-effects-check.js +0 -65
  351. package/dist/scripts/ppt-full-e2e-artifact-graph-check.js +0 -40
  352. package/dist/scripts/ppt-full-e2e-blackbox-check.js +0 -109
  353. package/dist/scripts/ppt-image-voxel-relations-check.js +0 -9
  354. package/dist/scripts/ppt-imagegen-blackbox-check.js +0 -46
  355. package/dist/scripts/ppt-imagegen-review-fixture-check.js +0 -6
  356. package/dist/scripts/ppt-issue-extraction-fixture-check.js +0 -7
  357. package/dist/scripts/ppt-no-mock-as-real-check.js +0 -8
  358. package/dist/scripts/ppt-no-text-fallback-check.js +0 -7
  359. package/dist/scripts/ppt-proof-trust-fixture-check.js +0 -10
  360. package/dist/scripts/ppt-real-export-adapter-check.js +0 -13
  361. package/dist/scripts/ppt-real-imagegen-smoke-check.js +0 -42
  362. package/dist/scripts/ppt-real-imagegen-wiring-check.js +0 -16
  363. package/dist/scripts/ppt-reexport-rereview-check.js +0 -19
  364. package/dist/scripts/ppt-slide-export-fixture-check.js +0 -7
  365. package/dist/scripts/prepublish-fast-check.js +0 -128
  366. package/dist/scripts/priority-full-closure-check.js +0 -12
  367. package/dist/scripts/product-design-auto-install-check.js +0 -119
  368. package/dist/scripts/product-design-plugin-routing-check.js +0 -101
  369. package/dist/scripts/prompt-placeholder-guard-check.js +0 -33
  370. package/dist/scripts/provider-badge-context-check.js +0 -26
  371. package/dist/scripts/provider-context-config-toml-check.js +0 -63
  372. package/dist/scripts/python-codex-sdk-all-pipelines-check.js +0 -47
  373. package/dist/scripts/python-codex-sdk-capability-check.js +0 -75
  374. package/dist/scripts/python-codex-sdk-sandbox-policy-check.js +0 -10
  375. package/dist/scripts/python-codex-sdk-stream-bridge-check.js +0 -12
  376. package/dist/scripts/python-tools-smoke-check.js +0 -71
  377. package/dist/scripts/qa-actual-route-backfill-check.js +0 -5
  378. package/dist/scripts/qa-backfill-route-blackbox.js +0 -5
  379. package/dist/scripts/qa-patch-swarm-route-blackbox.js +0 -10
  380. package/dist/scripts/readme-architecture-imagegen-official-check.js +0 -448
  381. package/dist/scripts/release-cache-glob-hashing-check.js +0 -42
  382. package/dist/scripts/release-dag-full-coverage-check.js +0 -53
  383. package/dist/scripts/release-dist-freshness-check.js +0 -8
  384. package/dist/scripts/release-dynamic-performance-check.js +0 -103
  385. package/dist/scripts/release-gate-budget-check.js +0 -36
  386. package/dist/scripts/release-gate-dag-runner-check.js +0 -17
  387. package/dist/scripts/release-metadata-1-11-check.js +0 -37
  388. package/dist/scripts/release-metadata-1-12-check.js +0 -48
  389. package/dist/scripts/release-metadata-1-13-check.js +0 -53
  390. package/dist/scripts/release-metadata-1-14-check.js +0 -63
  391. package/dist/scripts/release-metadata-1-16-check.js +0 -81
  392. package/dist/scripts/release-metadata-1-17-check.js +0 -51
  393. package/dist/scripts/release-metadata-1-19-check.js +0 -371
  394. package/dist/scripts/release-metadata-check.js +0 -7
  395. package/dist/scripts/release-native-agent-fixture-check.js +0 -41
  396. package/dist/scripts/release-parallel-check.js +0 -374
  397. package/dist/scripts/release-parallel-full-coverage-check.js +0 -13
  398. package/dist/scripts/release-parallel-speed-budget-check.js +0 -79
  399. package/dist/scripts/release-provenance-check.js +0 -150
  400. package/dist/scripts/release-readiness-report.js +0 -1146
  401. package/dist/scripts/release-real-check.js +0 -330
  402. package/dist/scripts/release-registry-check.js +0 -344
  403. package/dist/scripts/release-runtime-truth-matrix-check.js +0 -47
  404. package/dist/scripts/release-stability-report-check.js +0 -99
  405. package/dist/scripts/release-version-truth-check.js +0 -134
  406. package/dist/scripts/research-actual-route-backfill-check.js +0 -5
  407. package/dist/scripts/research-backfill-route-blackbox.js +0 -5
  408. package/dist/scripts/research-quality-gate-check.js +0 -86
  409. package/dist/scripts/responses-retry-policy-centralized-check.js +0 -19
  410. package/dist/scripts/retention-cleanup-safety-check.js +0 -155
  411. package/dist/scripts/route-blackbox-realism-check.js +0 -21
  412. package/dist/scripts/route-proof-artifact-structure-check.js +0 -145
  413. package/dist/scripts/runtime-dist-parity-check.js +0 -78
  414. package/dist/scripts/runtime-no-mjs-scripts-check.js +0 -45
  415. package/dist/scripts/runtime-no-src-mjs-check.js +0 -32
  416. package/dist/scripts/runtime-no-tmux-check.js +0 -113
  417. package/dist/scripts/runtime-ts-python-boundary-check.js +0 -59
  418. package/dist/scripts/runtime-ts-rust-boundary-check.js +0 -74
  419. package/dist/scripts/runtime-ts-source-of-truth-check.js +0 -55
  420. package/dist/scripts/safety-check.js +0 -23
  421. package/dist/scripts/shared-memory-fixture-check.js +0 -27
  422. package/dist/scripts/side-effect-runtime-report-check.js +0 -19
  423. package/dist/scripts/side-effect-zero-gate-check.js +0 -226
  424. package/dist/scripts/sks-1-11-fixture-check.js +0 -130
  425. package/dist/scripts/source-intelligence-all-modes-check.js +0 -32
  426. package/dist/scripts/source-intelligence-policy-check.js +0 -13
  427. package/dist/scripts/strategy-adhd-orchestrating-gate-check.js +0 -22
  428. package/dist/scripts/strategy-file-ownership-plan-check.js +0 -18
  429. package/dist/scripts/strategy-parallel-modification-plan-check.js +0 -19
  430. package/dist/scripts/strategy-verification-rollback-dag-check.js +0 -19
  431. package/dist/scripts/team-actual-route-backfill-check.js +0 -5
  432. package/dist/scripts/team-backfill-route-blackbox.js +0 -5
  433. package/dist/scripts/team-parallel-write-blackbox.js +0 -55
  434. package/dist/scripts/team-patch-swarm-route-blackbox.js +0 -10
  435. package/dist/scripts/terminal-keyboard-enhancement-safety-check.js +0 -12
  436. package/dist/scripts/terminal-tui-output-stability-check.js +0 -35
  437. package/dist/scripts/test-no-orphan-dist-imports-check.js +0 -73
  438. package/dist/scripts/trust-fixture-check.js +0 -33
  439. package/dist/scripts/typescript-migration-report.js +0 -78
  440. package/dist/scripts/ultra-router-auto-router-check.js +0 -33
  441. package/dist/scripts/ultra-router-classification-check.js +0 -28
  442. package/dist/scripts/ux-patch-swarm-route-blackbox.js +0 -10
  443. package/dist/scripts/ux-ppt-structured-extraction-check.js +0 -21
  444. package/dist/scripts/ux-review-extract-real-callouts-fixture-check.js +0 -8
  445. package/dist/scripts/ux-review-extract-wires-real-extractor-check.js +0 -15
  446. package/dist/scripts/ux-review-generate-callouts-fixture-check.js +0 -9
  447. package/dist/scripts/ux-review-image-voxel-relations-check.js +0 -31
  448. package/dist/scripts/ux-review-imagegen-blackbox-check.js +0 -67
  449. package/dist/scripts/ux-review-no-fake-callouts-check.js +0 -8
  450. package/dist/scripts/ux-review-no-text-fallback-check.js +0 -25
  451. package/dist/scripts/ux-review-patch-diff-recheck-check.js +0 -20
  452. package/dist/scripts/ux-review-patch-handoff-fixture-check.js +0 -8
  453. package/dist/scripts/ux-review-real-imagegen-smoke-check.js +0 -31
  454. package/dist/scripts/ux-review-real-loop-fixture-check.js +0 -24
  455. package/dist/scripts/ux-review-recapture-recheck-fixture-check.js +0 -8
  456. package/dist/scripts/ux-review-run-wires-imagegen-check.js +0 -11
  457. package/dist/scripts/worker-pane-communication-contract-check.js +0 -54
  458. package/dist/scripts/wrongness-fixture-check.js +0 -65
  459. package/dist/scripts/xai-mcp-capability-check.js +0 -14
  460. package/dist/scripts/zellij-capability-check.js +0 -15
  461. package/dist/scripts/zellij-dashboard-pane-check.js +0 -70
  462. package/dist/scripts/zellij-developer-controls-check.js +0 -20
  463. package/dist/scripts/zellij-doctor-readiness-check.js +0 -63
  464. package/dist/scripts/zellij-dynamic-pane-lifecycle-check.js +0 -21
  465. package/dist/scripts/zellij-first-slot-down-stack-check.js +0 -20
  466. package/dist/scripts/zellij-first-slot-down-stack-real-check.js +0 -356
  467. package/dist/scripts/zellij-initial-main-only-blackbox.js +0 -28
  468. package/dist/scripts/zellij-lane-renderer-check.js +0 -65
  469. package/dist/scripts/zellij-launch-command-truth-check.js +0 -75
  470. package/dist/scripts/zellij-layout-valid-check.js +0 -90
  471. package/dist/scripts/zellij-pane-proof-check.js +0 -59
  472. package/dist/scripts/zellij-real-session-cleanup-check.js +0 -21
  473. package/dist/scripts/zellij-real-session-heartbeat-check.js +0 -49
  474. package/dist/scripts/zellij-real-session-launch-check.js +0 -57
  475. package/dist/scripts/zellij-right-column-headless-overflow-check.js +0 -22
  476. package/dist/scripts/zellij-right-column-manager-check.js +0 -27
  477. package/dist/scripts/zellij-screen-proof-check.js +0 -45
  478. package/dist/scripts/zellij-slot-column-anchor-check.js +0 -66
  479. package/dist/scripts/zellij-slot-only-ui-check.js +0 -26
  480. package/dist/scripts/zellij-slot-pane-renderer-check.js +0 -106
  481. package/dist/scripts/zellij-slot-renderer-proof-semantics-check.js +0 -59
  482. package/dist/scripts/zellij-spawn-on-demand-layout-check.js +0 -40
  483. package/dist/scripts/zellij-ui-design-check.js +0 -105
  484. package/dist/scripts/zellij-worker-pane-manager-check.js +0 -109
  485. package/dist/scripts/zellij-worker-pane-manager-single-owner-check.js +0 -47
  486. package/dist/scripts/zellij-worker-pane-real-ui-blackbox.js +0 -202
  487. package/dist/scripts/zellij-worker-pane-spawn-order-check.js +0 -35
  488. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/permission-request.command.input.schema.json +0 -61
  489. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/permission-request.command.output.schema.json +0 -103
  490. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/post-compact.command.input.schema.json +0 -52
  491. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/post-compact.command.output.schema.json +0 -24
  492. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/post-tool-use.command.input.schema.json +0 -67
  493. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/post-tool-use.command.output.schema.json +0 -84
  494. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/pre-compact.command.input.schema.json +0 -52
  495. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/pre-compact.command.output.schema.json +0 -24
  496. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/pre-tool-use.command.input.schema.json +0 -65
  497. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/pre-tool-use.command.output.schema.json +0 -105
  498. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/session-start.command.input.schema.json +0 -59
  499. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/session-start.command.output.schema.json +0 -63
  500. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/snapshot-metadata.json +0 -31
  501. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/stop.command.input.schema.json +0 -63
  502. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/stop.command.output.schema.json +0 -45
  503. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/user-prompt-submit.command.input.schema.json +0 -59
  504. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/user-prompt-submit.command.output.schema.json +0 -81
@@ -1,83 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import fs from 'node:fs';
4
- import os from 'node:os';
5
- import path from 'node:path';
6
- import { spawnSync } from 'node:child_process';
7
- import { assertGate, emitGate, root } from './sks-1-18-gate-lib.js';
8
- const MAX_FILES = Number(process.env.SKS_MAX_PACK_FILES || 1250);
9
- const MAX_UNPACKED = Number(process.env.SKS_MAX_UNPACKED_BYTES || 6 * 1024 * 1024);
10
- const MAX_PACKED = Number(process.env.SKS_MAX_PACK_BYTES || 1536 * 1024);
11
- function runNpmPack() {
12
- const npmCli = process.env.npm_execpath; // set when invoked via `npm run`
13
- const npmCache = process.env.SKS_RELEASE_NPM_CACHE || path.join(os.tmpdir(), 'sneakoscope-npm-cache');
14
- fs.mkdirSync(npmCache, { recursive: true });
15
- const argv = ['pack', '--dry-run', '--json', '--ignore-scripts'];
16
- const opts = {
17
- cwd: root,
18
- encoding: 'utf8',
19
- maxBuffer: 32 * 1024 * 1024,
20
- env: {
21
- ...process.env,
22
- npm_config_cache: npmCache,
23
- NPM_CONFIG_CACHE: npmCache
24
- }
25
- };
26
- const res = npmCli
27
- ? spawnSync(process.execPath, [npmCli, ...argv], opts)
28
- : spawnSync('npm', argv, opts);
29
- return res;
30
- }
31
- const res = runNpmPack();
32
- assertGate(res.status === 0, 'npm_pack_failed', { stderr: res.stderr });
33
- let info;
34
- try {
35
- const parsed = JSON.parse(res.stdout);
36
- info = Array.isArray(parsed) ? parsed[0] : parsed;
37
- }
38
- catch (err) {
39
- assertGate(false, 'npm_pack_unparseable', { error: String(err && err.message ? err.message : err) });
40
- }
41
- const files = info.files.map((f) => f.path);
42
- const runtimeManifest = JSON.parse(fs.readFileSync(path.join(root, 'runtime-required-scripts.json'), 'utf8'));
43
- assertGate(runtimeManifest.schema === 'sks.runtime-required-scripts.v1' && Array.isArray(runtimeManifest.scripts), 'runtime required scripts manifest invalid', runtimeManifest);
44
- assertGate(info.entryCount <= MAX_FILES, 'packlist_file_count_over_limit', { entryCount: info.entryCount, max_files: MAX_FILES });
45
- assertGate(info.unpackedSize <= MAX_UNPACKED, 'packlist_unpacked_over_limit', { unpackedSize: info.unpackedSize, max_unpacked: MAX_UNPACKED });
46
- assertGate(info.size <= MAX_PACKED, 'packlist_packed_over_limit', { size: info.size, max_packed: MAX_PACKED });
47
- assertGate(files.includes('dist/bin/sks.js'), 'packlist_missing_runtime_entry', { missing: 'dist/bin/sks.js' });
48
- for (const entry of runtimeManifest.scripts) {
49
- assertGate(files.includes(entry.path), 'packlist_missing_runtime_required_script', { missing: entry.path, reason: entry.reason });
50
- }
51
- assertGate(files.includes('package.json'), 'packlist_missing_runtime_entry', { missing: 'package.json' });
52
- assertGate(files.includes('README.md'), 'packlist_missing_runtime_entry', { missing: 'README.md' });
53
- assertGate(files.includes('LICENSE'), 'packlist_missing_runtime_entry', { missing: 'LICENSE' });
54
- assertGate(files.some((f) => f.startsWith('schemas/')), 'packlist_missing_runtime_entry', { missing: 'schemas/' });
55
- const forbidden = files.filter((f) => f.startsWith('test/') ||
56
- f.startsWith('src/') ||
57
- f.startsWith('docs/internal/') ||
58
- f.endsWith('.map') ||
59
- f.startsWith('.sneakoscope/') ||
60
- f.endsWith('.tgz') ||
61
- f.startsWith('coverage/') ||
62
- /(^|\/)\.env/.test(f));
63
- assertGate(forbidden.length === 0, 'packlist_forbidden_files', { forbidden });
64
- const report = {
65
- entryCount: info.entryCount,
66
- size: info.size,
67
- unpackedSize: info.unpackedSize,
68
- runtime_required_scripts: runtimeManifest.scripts.map((entry) => entry.path),
69
- runtime_required_missing: runtimeManifest.scripts.filter((entry) => !files.includes(entry.path)).map((entry) => entry.path),
70
- max_files: MAX_FILES,
71
- max_packed: MAX_PACKED,
72
- max_unpacked: MAX_UNPACKED,
73
- forbidden: []
74
- };
75
- const out = path.join(root, '.sneakoscope', 'reports', 'packlist-performance.json');
76
- fs.mkdirSync(path.dirname(out), { recursive: true });
77
- fs.writeFileSync(out, `${JSON.stringify(report, null, 2)}\n`);
78
- emitGate('publish:packlist-performance', {
79
- files: info.entryCount,
80
- packed_kib: Math.round(info.size / 1024),
81
- unpacked_mib: +(info.unpackedSize / 1048576).toFixed(2)
82
- });
83
- //# sourceMappingURL=packlist-performance-check.js.map
@@ -1,85 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import fs from 'node:fs';
4
- import os from 'node:os';
5
- import path from 'node:path';
6
- import { fileURLToPath, pathToFileURL } from 'node:url';
7
- const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..', '..');
8
- const issues = [];
9
- for (const rel of [
10
- 'src/core/verification/verification-dag.ts',
11
- 'src/core/verification/verification-worker-pool.ts',
12
- 'src/core/verification/verification-artifact-lock.ts',
13
- 'src/core/verification/verification-result.ts',
14
- 'src/core/verification/verification-proof.ts',
15
- 'src/scripts/release-parallel-check.ts'
16
- ]) {
17
- if (!fs.existsSync(path.join(root, rel)))
18
- issues.push(`missing:${rel}`);
19
- }
20
- await runFixture();
21
- const releaseSource = read('src/scripts/release-parallel-check.ts');
22
- for (const token of ['runVerificationDag', 'buildVerificationDag', 'writeParallelVerificationProof']) {
23
- if (!releaseSource.includes(token))
24
- issues.push(`release_parallel_runner_missing:${token}`);
25
- }
26
- const result = { schema: 'sks.parallel-verification-engine-check.v1', ok: issues.length === 0, issues };
27
- console.log(JSON.stringify(result, null, 2));
28
- if (!result.ok)
29
- process.exitCode = 1;
30
- async function runFixture() {
31
- const dagPath = path.join(root, 'dist', 'core', 'verification', 'verification-dag.js');
32
- const poolPath = path.join(root, 'dist', 'core', 'verification', 'verification-worker-pool.js');
33
- if (!fs.existsSync(dagPath) || !fs.existsSync(poolPath))
34
- return;
35
- const dagMod = await import(pathToFileURL(dagPath).href);
36
- const poolMod = await import(pathToFileURL(poolPath).href);
37
- const dag = dagMod.buildVerificationDag([
38
- { id: 'a', command: `${process.execPath} -e "process.exit(0)"`, outputs: ['a.json'] },
39
- { id: 'b', command: `${process.execPath} -e "process.exit(0)"`, dependencies: ['a'], outputs: ['b.json'] }
40
- ]);
41
- const tmp = fs.mkdtempSync(path.join(os.tmpdir(), 'sks-verify-'));
42
- const result = await poolMod.runVerificationDag(dag, { cwd: root, concurrency: 2, logDir: tmp });
43
- if (!result.ok || result.task_count !== 2)
44
- issues.push('fixture_parallel_verification_failed');
45
- const failedDag = dagMod.buildVerificationDag([
46
- { id: 'fail', command: `${process.execPath} -e "process.exit(3)"`, outputs: ['fail.json'] },
47
- { id: 'after', command: `${process.execPath} -e "process.exit(0)"`, dependencies: ['fail'], outputs: ['after.json'] }
48
- ]);
49
- const failed = await poolMod.runVerificationDag(failedDag, { cwd: root, concurrency: 2, logDir: tmp });
50
- const after = failed.results.find((row) => row.id === 'after');
51
- if (!after?.skipped || failed.skipped !== 1 || failed.failed !== 1 || failed.task_count !== 2)
52
- issues.push('fixture_failed_dependency_not_skipped');
53
- const timeoutDag = dagMod.buildVerificationDag([
54
- { id: 'slow', command: `${process.execPath} -e "process.on('SIGTERM',()=>setTimeout(()=>process.exit(0),200)); setInterval(()=>{},50)"`, timeout_ms: 20, outputs: ['slow.json'] }
55
- ]);
56
- const timeoutResult = await poolMod.runVerificationDag(timeoutDag, { cwd: root, concurrency: 1, logDir: tmp });
57
- const slow = timeoutResult.results.find((row) => row.id === 'slow');
58
- if (!slow?.error?.startsWith('timeout:') || slow.duration_ms < 20)
59
- issues.push('fixture_timeout_process_tree_not_reported');
60
- try {
61
- dagMod.buildVerificationDag([
62
- { id: 'x', command: 'true', outputs: ['same'] },
63
- { id: 'y', command: 'true', outputs: ['same'] }
64
- ]);
65
- issues.push('fixture_output_conflict_not_blocked');
66
- }
67
- catch { }
68
- try {
69
- dagMod.buildVerificationDag([
70
- { id: 'x', command: 'true', outputs: ['reports/x.json'] },
71
- { id: 'y', command: 'true', outputs: ['reports/../reports/x.json'] }
72
- ]);
73
- issues.push('fixture_normalized_output_conflict_not_blocked');
74
- }
75
- catch { }
76
- }
77
- function read(rel) {
78
- try {
79
- return fs.readFileSync(path.join(root, rel), 'utf8');
80
- }
81
- catch {
82
- return '';
83
- }
84
- }
85
- //# sourceMappingURL=parallel-verification-engine-check.js.map
@@ -1,65 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import fs from 'node:fs';
4
- import path from 'node:path';
5
- import { root, assertGate, emitGate, readText } from './sks-1-18-gate-lib.js';
6
- // Locks the guarantee that `postinstall` performs no heavy / network / process-kill
7
- // side-effects by default. This is STATIC source analysis only — we never execute
8
- // `postinstall`, because doing so would mutate the global Codex App / shell environment.
9
- const helpers = readText('src/cli/install-helpers.ts');
10
- // Heavy CLI tool installs (brew / npm globals) are opt-in only.
11
- assertGate(helpers.includes('SKS_POSTINSTALL_AUTO_INSTALL_CLI_TOOLS'), 'postinstall cli tool install must be gated behind SKS_POSTINSTALL_AUTO_INSTALL_CLI_TOOLS');
12
- // Killing a third-party app's processes is opt-in only.
13
- assertGate(helpers.includes("SKS_POSTINSTALL_RECONCILE_APP_PROCESSES === '1'"), 'postinstall process reconciliation must be gated behind SKS_POSTINSTALL_RECONCILE_APP_PROCESSES');
14
- // Config writes are gated (unparseable preserved / unsafe rewrite skipped) and backed up.
15
- assertGate(helpers.includes('unparseable_config_preserved'), 'postinstall must preserve unparseable config');
16
- assertGate(helpers.includes('skipped_unsafe_rewrite'), 'postinstall must skip unsafe config rewrites');
17
- assertGate(helpers.includes('backupCodexConfig'), 'postinstall config writes must back up the existing config');
18
- // User model / service_tier are set-if-absent, never overwritten.
19
- assertGate(helpers.includes('upsertTopLevelTomlStringIfAbsent'), 'postinstall must set user model/service_tier only when absent');
20
- // The postinstall() body must be wrapped in try/catch/finally so it never fails `npm install`.
21
- const postinstallStart = helpers.indexOf('export async function postinstall');
22
- assertGate(postinstallStart !== -1, 'postinstall function not found in install-helpers.ts');
23
- const afterStart = postinstallStart + 'export async function postinstall'.length;
24
- const nextExport = helpers.indexOf('\nexport ', afterStart);
25
- const nextAsync = helpers.indexOf('\nasync function ', afterStart);
26
- const candidates = [nextExport, nextAsync].filter((idx) => idx !== -1);
27
- const bodyEnd = candidates.length ? Math.min(...candidates) : helpers.length;
28
- const postinstallBody = helpers.slice(postinstallStart, bodyEnd);
29
- assertGate(postinstallBody.includes('try'), 'postinstall body must use try (never fail npm install)');
30
- assertGate(postinstallBody.includes('catch'), 'postinstall body must use catch (never fail npm install)');
31
- assertGate(postinstallBody.includes('finally'), 'postinstall body must use finally (never fail npm install)');
32
- // Explicit repair / opt-in paths must be surfaced to the user.
33
- assertGate(helpers.includes('sks bootstrap'), 'postinstall must surface `sks bootstrap` repair path');
34
- assertGate(helpers.includes('sks deps check'), 'postinstall must surface `sks deps check` repair path');
35
- assertGate(helpers.includes('sks doctor --fix'), 'postinstall must surface `sks doctor --fix` repair path');
36
- assertGate(helpers.includes('SKS_POSTINSTALL_AUTO_INSTALL_CLI_TOOLS=1'), 'postinstall hint must mention the SKS_POSTINSTALL_AUTO_INSTALL_CLI_TOOLS=1 opt-in');
37
- // init.ts hardening: managed Codex config merge is set-if-absent and never force-overwrites features.
38
- const init = readText('src/core/init.ts');
39
- const mergeStart = init.indexOf('mergeManagedCodexConfigToml(');
40
- assertGate(mergeStart !== -1, 'mergeManagedCodexConfigToml not found in init.ts');
41
- const afterMergeStart = mergeStart + 'mergeManagedCodexConfigToml('.length;
42
- const mergeNextExport = init.indexOf('\nexport ', afterMergeStart);
43
- const mergeNextAsync = init.indexOf('\nasync function ', afterMergeStart);
44
- const mergeNextFn = init.indexOf('\nfunction ', afterMergeStart);
45
- const mergeCandidates = [mergeNextExport, mergeNextAsync, mergeNextFn].filter((idx) => idx !== -1);
46
- const mergeEnd = mergeCandidates.length ? Math.min(...mergeCandidates) : init.length;
47
- const mergeBody = init.slice(mergeStart, mergeEnd);
48
- assertGate(mergeBody.includes('upsertTomlTableKeyIfAbsent'), 'managed config merge must set feature flags only when absent');
49
- assertGate(mergeBody.includes("SKS_MANAGE_CODEX_APP_PLUGINS === '1'"), 'managed config plugin auto-enable must be opt-in via SKS_MANAGE_CODEX_APP_PLUGINS=1');
50
- assertGate(!/upsertTomlTableKey\(next, 'features'/.test(mergeBody), 'managed config merge must NOT force-overwrite the features table');
51
- const report = {
52
- schema: 'sks.postinstall-safe-side-effects.v1',
53
- ok: true,
54
- gated: ['cli_install', 'process_kill', 'config_write'],
55
- try_catch_finally: true,
56
- managed_config_set_if_absent: true
57
- };
58
- const out = path.join(root, '.sneakoscope/reports/postinstall-safe-side-effects.json');
59
- fs.mkdirSync(path.dirname(out), { recursive: true });
60
- fs.writeFileSync(out, `${JSON.stringify(report, null, 2)}\n`);
61
- emitGate('postinstall:safe-side-effects', {
62
- gated: ['cli_install', 'process_kill', 'config_write'],
63
- try_catch_finally: true
64
- });
65
- //# sourceMappingURL=postinstall-safe-side-effects-check.js.map
@@ -1,40 +0,0 @@
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
- const reportPath = path.join(process.cwd(), '.sneakoscope', 'reports', 'ppt-full-e2e-blackbox.json');
7
- if (!fs.existsSync(reportPath)) {
8
- const run = spawnSync(process.execPath, ['./dist/scripts/ppt-full-e2e-blackbox-check.js'], { cwd: process.cwd(), env: process.env, encoding: 'utf8', maxBuffer: 8 * 1024 * 1024 });
9
- if (run.status !== 0) {
10
- console.log(JSON.stringify({ schema: 'sks.ppt-full-e2e-artifact-graph.v1', ok: false, blocker: 'blackbox_failed', stdout_tail: run.stdout.slice(-2000), stderr_tail: run.stderr.slice(-2000) }, null, 2));
11
- process.exit(1);
12
- }
13
- }
14
- const blackbox = JSON.parse(fs.readFileSync(reportPath, 'utf8'));
15
- const required = ['inventory', 'exportLedger', 'callouts', 'slideIssues', 'deckIssues'];
16
- const blockers = required.filter((key) => !blackbox.artifacts?.[key]).map((key) => `missing:${key}`);
17
- if (!blackbox.artifacts?.proof_schema)
18
- blockers.push('missing:completion_proof');
19
- if (!blackbox.artifacts?.trust_schema)
20
- blockers.push('missing:trust_report');
21
- if (blackbox.generated_slide_review_count < blackbox.exported_slide_images_count)
22
- blockers.push('generated_review_count_lt_slide_count');
23
- if (blackbox.issue_extraction_count <= 0)
24
- blockers.push('issue_extraction_empty');
25
- if (!blackbox.mock_fake_not_verified_real)
26
- blockers.push('mock_promoted_to_real');
27
- const result = {
28
- schema: 'sks.ppt-full-e2e-artifact-graph.v1',
29
- ok: blockers.length === 0,
30
- mission_id: blackbox.mission_id,
31
- local_only_policy: true,
32
- generated_slide_review_count: blackbox.generated_slide_review_count,
33
- slide_count: blackbox.exported_slide_images_count,
34
- issue_extraction_count: blackbox.issue_extraction_count,
35
- blockers
36
- };
37
- console.log(JSON.stringify(result, null, 2));
38
- if (!result.ok)
39
- process.exitCode = 1;
40
- //# sourceMappingURL=ppt-full-e2e-artifact-graph-check.js.map
@@ -1,109 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import fs from 'node:fs';
4
- import os from 'node:os';
5
- import path from 'node:path';
6
- import { spawnSync } from 'node:child_process';
7
- const tmp = fs.mkdtempSync(path.join(os.tmpdir(), 'sks-ppt-e2e-'));
8
- const deck = path.join(tmp, 'synthetic-two-slide.pptx');
9
- fs.writeFileSync(deck, [
10
- 'ppt/slides/slide1.xml',
11
- '<p:sld><p:cSld><p:spTree><a:t>SKS 1.14.1 Synthetic Slide 1</a:t></p:spTree></p:cSld></p:sld>',
12
- 'ppt/slides/slide2.xml',
13
- '<p:sld><p:cSld><p:spTree><a:t>SKS 1.14.1 Synthetic Slide 2</a:t></p:spTree></p:cSld></p:sld>'
14
- ].join('\n'));
15
- const repoRoot = process.cwd();
16
- const run = spawnSync(process.execPath, [path.join(repoRoot, 'dist/bin/sks.js'), 'ppt', 'review', '--deck', deck, '--mock', '--imagegen', '--json'], {
17
- cwd: tmp,
18
- env: { ...process.env, SKS_TEST_FAKE_IMAGEGEN: '1', SKS_TEST_FAKE_EXTRACTOR: '1' },
19
- encoding: 'utf8',
20
- maxBuffer: 8 * 1024 * 1024
21
- });
22
- const parsed = parseJson(run.stdout);
23
- const missionDir = parsed?.mission_id ? path.join(tmp, '.sneakoscope', 'missions', parsed.mission_id) : null;
24
- const inventory = (missionDir ? readJson(path.join(missionDir, 'ppt-deck-inventory.json')) : null)
25
- || parsed?.artifacts?.deck_inventory
26
- || parsed?.artifacts?.deckInventory
27
- || null;
28
- const exportLedger = (missionDir ? readJson(path.join(missionDir, 'ppt-slide-export-ledger.json')) : null)
29
- || parsed?.artifacts?.slide_export_ledger
30
- || parsed?.artifacts?.slideExportLedger
31
- || null;
32
- const callouts = missionDir ? readJson(path.join(missionDir, 'ppt-slide-callout-ledger.json')) : null;
33
- const slideIssues = missionDir ? readJson(path.join(missionDir, 'ppt-slide-issue-ledger.json')) : null;
34
- const deckIssues = missionDir ? readJson(path.join(missionDir, 'ppt-deck-issue-ledger.json')) : null;
35
- const proof = missionDir ? readJson(path.join(missionDir, 'completion-proof.json')) : null;
36
- const trust = missionDir ? readJson(path.join(missionDir, 'trust-report.json')) : null;
37
- const fakeNotReal = !JSON.stringify(callouts || {}).includes('"real_generated":true');
38
- const proofStatusOk = proof?.schema === 'sks.completion-proof.v1' && ['verified', 'verified_partial'].includes(String(proof?.status || ''));
39
- const trustStatusOk = trust?.schema === 'sks.trust-report.v1' && trust?.ok === true && !['blocked', 'failed', 'not_verified'].includes(String(trust?.status || ''));
40
- const ok = Boolean(parsed?.mission_id)
41
- && inventory?.deck_present === true
42
- && inventory?.slide_count >= 1
43
- && exportLedger?.exported_slide_images_count >= 1
44
- && callouts?.generated_slide_callout_images_count >= exportLedger.exported_slide_images_count
45
- && Array.isArray(slideIssues?.issues)
46
- && slideIssues.issues.length > 0
47
- && deckIssues?.schema === 'sks.ppt-deck-issue-ledger.v1'
48
- && proofStatusOk
49
- && trustStatusOk
50
- && fakeNotReal;
51
- const result = {
52
- schema: 'sks.ppt-full-e2e-blackbox.v1',
53
- ok,
54
- process_status: run.status,
55
- mission_id: parsed?.mission_id || null,
56
- deck,
57
- synthetic_deck: true,
58
- manual_slide_images_used: false,
59
- slide_count: inventory?.slide_count || 0,
60
- exported_slide_images_count: exportLedger?.exported_slide_images_count || 0,
61
- generated_slide_review_count: callouts?.generated_slide_callout_images_count || 0,
62
- issue_extraction_count: slideIssues?.issues?.length || 0,
63
- mock_fake_not_verified_real: fakeNotReal,
64
- completion_proof_linked: proofStatusOk,
65
- trust_report_linked: trustStatusOk,
66
- wrongness_linked: true,
67
- proof_status: proof?.status || null,
68
- trust_ok: trust?.ok ?? null,
69
- trust_status: trust?.status || null,
70
- trust_blockers: trust?.blockers || [],
71
- blockers: [
72
- ...(!proofStatusOk ? [`completion_proof_status_${proof?.status || 'missing'}`] : []),
73
- ...(!trustStatusOk ? [`trust_report_status_${trust?.status || 'missing'}`] : []),
74
- ...(!fakeNotReal ? ['mock_or_fake_marked_real'] : [])
75
- ],
76
- artifacts: {
77
- inventory,
78
- exportLedger,
79
- callouts,
80
- slideIssues,
81
- deckIssues,
82
- proof_schema: proof?.schema || null,
83
- proof_status: proof?.status || null,
84
- trust_schema: trust?.schema || null,
85
- trust_ok: trust?.ok ?? null,
86
- trust_status: trust?.status || null
87
- },
88
- stdout_tail: run.stdout.slice(-2000),
89
- stderr_tail: run.stderr.slice(-2000)
90
- };
91
- const out = path.join(repoRoot, '.sneakoscope', 'reports', 'ppt-full-e2e-blackbox.json');
92
- fs.mkdirSync(path.dirname(out), { recursive: true });
93
- fs.writeFileSync(out, `${JSON.stringify(result, null, 2)}\n`);
94
- console.log(JSON.stringify(result, null, 2));
95
- if (!ok)
96
- process.exitCode = 1;
97
- function parseJson(text) { try {
98
- return JSON.parse(text);
99
- }
100
- catch {
101
- return null;
102
- } }
103
- function readJson(file) { try {
104
- return JSON.parse(fs.readFileSync(file, 'utf8'));
105
- }
106
- catch {
107
- return null;
108
- } }
109
- //# sourceMappingURL=ppt-full-e2e-blackbox-check.js.map
@@ -1,9 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import { assertGate, emitGate, hasRelationType, runPptReview } from './sks-1-11-gate-lib.js';
4
- const result = runPptReview('review');
5
- for (const type of ['slide_callout_review_of', 'slide_issue_detected_in', 'deck_patch_attempt_for_issue', 'fixed_slide_after', 'slide_re_review_of_after', 'slide_issue_resolved_by_recheck']) {
6
- assertGate(hasRelationType(result.mission_id, type), `ppt image voxel relation missing: ${type}`, { mission_id: result.mission_id });
7
- }
8
- emitGate('ppt:image-voxel-relations', { mission_id: result.mission_id });
9
- //# sourceMappingURL=ppt-image-voxel-relations-check.js.map
@@ -1,46 +0,0 @@
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 { osTempPngFixtureArg } from './lib/valid-png-fixture.js';
7
- const sourceImage = osTempPngFixtureArg('ppt-imagegen-blackbox-source.png');
8
- const run = spawnSync(process.execPath, ['./dist/bin/sks.js', 'ppt', 'review', '--manual-slide-images', sourceImage, '--json'], {
9
- cwd: process.cwd(),
10
- env: { ...process.env, SKS_TEST_FAKE_IMAGEGEN: '1', SKS_TEST_FAKE_EXTRACTOR: '1' },
11
- encoding: 'utf8',
12
- maxBuffer: 4 * 1024 * 1024
13
- });
14
- const parsed = parseJson(run.stdout);
15
- const missionDir = parsed?.mission_id ? path.join(process.cwd(), '.sneakoscope', 'missions', parsed.mission_id) : null;
16
- const callouts = missionDir ? readJson(path.join(missionDir, 'ppt-slide-callout-ledger.json')) : null;
17
- const slideIssues = missionDir ? readJson(path.join(missionDir, 'ppt-slide-issue-ledger.json')) : null;
18
- const deckIssues = missionDir ? readJson(path.join(missionDir, 'ppt-deck-issue-ledger.json')) : null;
19
- const proofEvidence = parsed?.proof_evidence || null;
20
- const ok = Boolean(parsed?.mission_id)
21
- && callouts?.generated_slide_callout_images_count === 1
22
- && callouts?.generated_review_images?.[0]?.mock === true
23
- && Array.isArray(slideIssues?.issues)
24
- && slideIssues.issues.length > 0
25
- && deckIssues?.schema === 'sks.ppt-deck-issue-ledger.v1'
26
- && proofEvidence?.schema === 'sks.ppt-review-proof-evidence.v1';
27
- console.log(JSON.stringify({ schema: 'sks.ppt-imagegen-blackbox-check.v1', ok, process_status: run.status, mission_id: parsed?.mission_id || null, gate_status: parsed?.status || null, source_image: sourceImage, generated_count: callouts?.generated_slide_callout_images_count || 0, issue_count: slideIssues?.issues?.length || 0, proof_status: proofEvidence?.status || null }, null, 2));
28
- if (!ok)
29
- process.exitCode = 1;
30
- function parseJson(text) {
31
- try {
32
- return JSON.parse(text);
33
- }
34
- catch {
35
- return null;
36
- }
37
- }
38
- function readJson(file) {
39
- try {
40
- return JSON.parse(fs.readFileSync(file, 'utf8'));
41
- }
42
- catch {
43
- return null;
44
- }
45
- }
46
- //# sourceMappingURL=ppt-imagegen-blackbox-check.js.map
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import { emitGate, runPptReview } from './sks-1-11-gate-lib.js';
4
- const result = runPptReview('review');
5
- emitGate('ppt:imagegen-review-fixture', { mission_id: result.mission_id, relations: result.proof_evidence.image_voxel_relation_count });
6
- //# sourceMappingURL=ppt-imagegen-review-fixture-check.js.map
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import { assertGate, emitGate, runPptReview } from './sks-1-11-gate-lib.js';
4
- const result = runPptReview('extract-issues');
5
- assertGate(result.artifacts.slideIssues?.issues?.length > 0 && result.proof_evidence.slide_issue_extraction_status === 'valid', 'ppt issue extraction fixture invalid', result.artifacts.slideIssues);
6
- emitGate('ppt:issue-extraction-fixture', { mission_id: result.mission_id, issues: result.artifacts.slideIssues.issues.length });
7
- //# sourceMappingURL=ppt-issue-extraction-fixture-check.js.map
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import { assertGate, emitGate, readMissionJson, runPptReview } from './sks-1-11-gate-lib.js';
4
- const result = runPptReview('review');
5
- const proof = readMissionJson(result.mission_id, 'completion-proof.json');
6
- assertGate(proof.status !== 'verified' && result.proof_evidence.status === 'verified_partial', 'ppt mock fixture was allowed to claim fully real evidence', { proof_status: proof.status, evidence_status: result.proof_evidence.status });
7
- emitGate('ppt:no-mock-as-real', { mission_id: result.mission_id, proof_status: proof.status });
8
- //# sourceMappingURL=ppt-no-mock-as-real-check.js.map
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import { assertGate, emitGate, runPptReview } from './sks-1-11-gate-lib.js';
4
- const result = runPptReview('callouts');
5
- assertGate(result.artifacts.callouts?.no_text_fallback === true, 'ppt text-only fallback was not blocked by fixture policy', result.artifacts.callouts);
6
- emitGate('ppt:no-text-fallback', { mission_id: result.mission_id });
7
- //# sourceMappingURL=ppt-no-text-fallback-check.js.map
@@ -1,10 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import { assertGate, emitGate, readMissionJson, runPptReview, runSksJson } from './sks-1-11-gate-lib.js';
4
- const result = runPptReview('proof');
5
- const proof = readMissionJson(result.mission_id, 'completion-proof.json');
6
- const trust = runSksJson(['trust', 'report', result.mission_id, '--json']);
7
- assertGate(Boolean(proof.evidence?.ppt_review), 'ppt review evidence missing from completion proof', proof.evidence);
8
- assertGate(JSON.stringify(trust).includes('ppt_review'), 'ppt review evidence missing from trust report', trust);
9
- emitGate('ppt:proof-trust-fixture', { mission_id: result.mission_id, proof_status: proof.status });
10
- //# sourceMappingURL=ppt-proof-trust-fixture-check.js.map
@@ -1,13 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import { emitGate, requireContains } from './sks-1-12-real-execution-check-lib.js';
4
- requireContains('ppt:real-export-adapter', 'src/core/ppt-review/slide-exporter.ts', [
5
- 'soffice',
6
- 'libreoffice',
7
- 'powerpoint_osascript',
8
- 'partial_export',
9
- 'slide_export_unavailable',
10
- 'manual_slide_image_attach'
11
- ]);
12
- emitGate('ppt:real-export-adapter', { adapters: ['LibreOffice/soffice', 'PowerPoint/osascript', 'manual_attach'] });
13
- //# sourceMappingURL=ppt-real-export-adapter-check.js.map
@@ -1,42 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import { spawnSync } from 'node:child_process';
4
- import { osTempPngFixtureArg } from './lib/valid-png-fixture.js';
5
- const enabled = process.env.SKS_TEST_REAL_IMAGEGEN === '1' || process.env.SKS_REAL_IMAGEGEN === '1';
6
- const hasKey = Boolean(process.env.OPENAI_API_KEY || process.env.SKS_CODEX_APP_IMAGEGEN === '1');
7
- if (!enabled || !hasKey) {
8
- const result = {
9
- schema: 'sks.ppt-real-imagegen-smoke.v1',
10
- ok: true,
11
- status: 'integration_optional',
12
- reason: !enabled ? 'SKS_TEST_REAL_IMAGEGEN=1 not set' : 'OPENAI_API_KEY or Codex App imagegen capability not configured',
13
- fake_adapter: false,
14
- real_generated: false
15
- };
16
- console.log(JSON.stringify(result, null, 2));
17
- process.exit(0);
18
- }
19
- const sourceImage = osTempPngFixtureArg('ppt-real-imagegen-smoke-source.png');
20
- const run = spawnSync(process.execPath, ['./dist/bin/sks.js', 'ppt', 'review', '--manual-slide-images', sourceImage, '--json'], {
21
- cwd: process.cwd(),
22
- env: process.env,
23
- encoding: 'utf8',
24
- timeout: Number(process.env.SKS_PPT_REAL_IMAGEGEN_SMOKE_TIMEOUT_MS || 180000),
25
- maxBuffer: 8 * 1024 * 1024
26
- });
27
- const result = {
28
- schema: 'sks.ppt-real-imagegen-smoke.v1',
29
- ok: run.status === 0,
30
- status: run.status === 0 ? 'passed' : 'blocked',
31
- fake_adapter: false,
32
- source_image: sourceImage,
33
- real_generated: run.status === 0,
34
- process_error: run.error?.message || null,
35
- process_signal: run.signal || null,
36
- stdout_tail: run.stdout.slice(-4000),
37
- stderr_tail: run.stderr.slice(-4000)
38
- };
39
- console.log(JSON.stringify(result, null, 2));
40
- if (!result.ok)
41
- process.exitCode = 1;
42
- //# sourceMappingURL=ppt-real-imagegen-smoke-check.js.map
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import { emitGate, requireContains } from './sks-1-12-real-execution-check-lib.js';
4
- requireContains('ppt:real-imagegen-wiring', 'src/core/ppt-review/slide-imagegen-review.ts', [
5
- 'generateGptImage2CalloutReview',
6
- 'PPT_SLIDE_IMAGEGEN_REQUEST_ARTIFACT',
7
- 'PPT_SLIDE_IMAGEGEN_RESPONSE_ARTIFACT',
8
- 'extraction_pending_count',
9
- 'callout_extraction_status'
10
- ]);
11
- requireContains('ppt:real-imagegen-wiring', 'src/core/ppt-review/index.ts', [
12
- 'buildSlideImagegenRequestArtifact',
13
- 'buildSlideImagegenResponseArtifact'
14
- ]);
15
- emitGate('ppt:real-imagegen-wiring', { adapter: 'shared UX generateGptImage2CalloutReview' });
16
- //# sourceMappingURL=ppt-real-imagegen-wiring-check.js.map
@@ -1,19 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import { emitGate, requireContains } from './sks-1-12-real-execution-check-lib.js';
4
- requireContains('ppt:reexport-rereview', 'src/core/commands/ppt-command.ts', [
5
- 'attach-fixed-deck',
6
- 'fixedDeckPath',
7
- 'recheck'
8
- ]);
9
- requireContains('ppt:reexport-rereview', 'src/core/ppt-review/index.ts', [
10
- 'changed_slides_rechecked',
11
- 'ppt_slide_recheck_missing',
12
- 'fixedDeckPath'
13
- ]);
14
- requireContains('ppt:reexport-rereview', 'src/core/ppt-review/ppt-patch-handoff.ts', [
15
- 'deck_binary_edit_unavailable_manual_handoff_required',
16
- 're_export_required'
17
- ]);
18
- emitGate('ppt:reexport-rereview', { recheck: 'fixed-deck-or-slide-evidence-required' });
19
- //# sourceMappingURL=ppt-reexport-rereview-check.js.map
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env node
2
- // @ts-nocheck
3
- import { assertGate, emitGate, runPptReview } from './sks-1-11-gate-lib.js';
4
- const result = runPptReview('slide-export');
5
- assertGate(result.proof_evidence.slide_export_status === 'exported' && result.proof_evidence.exported_slide_images_count > 0, 'ppt slide export fixture missing exported images', result.proof_evidence);
6
- emitGate('ppt:slide-export-fixture', { mission_id: result.mission_id });
7
- //# sourceMappingURL=ppt-slide-export-fixture-check.js.map