@tangle-network/agent-bench 0.3.6 → 0.3.8

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 (265) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/HARNESS.md +43 -0
  3. package/dist/adapters.js +24 -24
  4. package/dist/benchmarks/_harness.d.ts +1 -1
  5. package/dist/benchmarks/_harness.js +1 -1
  6. package/dist/benchmarks/aec-bench.js +2 -2
  7. package/dist/benchmarks/agentbench.js +2 -2
  8. package/dist/benchmarks/appworld.js +2 -2
  9. package/dist/benchmarks/bfcl.js +2 -2
  10. package/dist/benchmarks/commit0.js +2 -2
  11. package/dist/benchmarks/crag.js +2 -2
  12. package/dist/benchmarks/dabstep.js +2 -2
  13. package/dist/benchmarks/enterpriseops-gym.js +2 -2
  14. package/dist/benchmarks/finresearchbench.js +2 -2
  15. package/dist/benchmarks/humaneval.d.ts +10 -1
  16. package/dist/benchmarks/humaneval.js +5 -3
  17. package/dist/benchmarks/nomiracl.js +2 -2
  18. package/dist/benchmarks/open-rag-bench.js +2 -2
  19. package/dist/benchmarks/programbench.js +2 -2
  20. package/dist/benchmarks/ragbench.js +2 -2
  21. package/dist/benchmarks/swe-bench.js +2 -2
  22. package/dist/benchmarks/t2-ragbench.js +2 -2
  23. package/dist/benchmarks/tau-bench-shared.js +2 -2
  24. package/dist/benchmarks/tau2-bench.js +3 -3
  25. package/dist/benchmarks/tau3-banking.js +3 -3
  26. package/dist/benchmarks/terminal-bench.js +2 -2
  27. package/dist/benchmarks/toollm.js +2 -2
  28. package/dist/benchmarks/webarena-verified.js +2 -2
  29. package/dist/{chunk-CKUVRZ2T.js → chunk-3U5TXJZS.js} +2 -2
  30. package/dist/{chunk-PPYSEKFM.js → chunk-5H5XV76F.js} +73 -15
  31. package/dist/chunk-5H5XV76F.js.map +1 -0
  32. package/dist/{chunk-YCGY7UIZ.js → chunk-7GRVHU22.js} +2 -2
  33. package/dist/{chunk-Z7ML6L77.js → chunk-HWST3SED.js} +2 -2
  34. package/dist/{chunk-SYDW647C.js → chunk-IA2FBTWC.js} +2 -2
  35. package/dist/{chunk-R67DFVLO.js → chunk-IFVINJ4B.js} +2 -2
  36. package/dist/{chunk-R36V2VP7.js → chunk-IZ5M6OAC.js} +2 -2
  37. package/dist/{chunk-ODT47UAY.js → chunk-K3BQGZCT.js} +2 -2
  38. package/dist/{chunk-IFAV6KEM.js → chunk-KP5KD6EN.js} +2 -2
  39. package/dist/{chunk-ZEWMTR5M.js → chunk-MQMRLGOG.js} +2 -2
  40. package/dist/{chunk-TSWPNOYM.js → chunk-NQG5XDSB.js} +2 -2
  41. package/dist/{chunk-7WSD27QQ.js → chunk-PB64GYIG.js} +2 -2
  42. package/dist/{chunk-HBSWHQNJ.js → chunk-RCYQEFNX.js} +3 -3
  43. package/dist/{chunk-J3KDJNX2.js → chunk-RH5F53JT.js} +2 -2
  44. package/dist/{chunk-UAIOHCUK.js → chunk-SFLA7OH3.js} +3 -3
  45. package/dist/{chunk-Y6O2OCUO.js → chunk-SHM6MRRF.js} +2 -2
  46. package/dist/{chunk-KDIKRJGB.js → chunk-SHYIRB7I.js} +2 -2
  47. package/dist/{chunk-HHXFIHXC.js → chunk-SVR2LKYI.js} +2 -2
  48. package/dist/{chunk-5SBJCB6W.js → chunk-V7AEBY6U.js} +22 -22
  49. package/dist/{chunk-LRRD7NAG.js → chunk-WSKWVEQB.js} +18 -2
  50. package/dist/chunk-WSKWVEQB.js.map +1 -0
  51. package/dist/{chunk-2PVVP7GN.js → chunk-XKEFIFIC.js} +2 -2
  52. package/dist/{chunk-JRWWGMK7.js → chunk-XYA4XSNU.js} +2 -2
  53. package/dist/{chunk-X5YKXC6V.js → chunk-YSMEKBTD.js} +2 -2
  54. package/dist/{chunk-2XU6OGEN.js → chunk-Z4TZ76N7.js} +2 -2
  55. package/dist/index.js +24 -24
  56. package/package.json +6 -5
  57. package/scripts/run-package-tests.mjs +30 -8
  58. package/scripts/verify-packed-consumer.mjs +1 -1
  59. package/scripts/verify-pier-agent.mts +1 -0
  60. package/src/benchmarks/_harness.ts +20 -2
  61. package/src/benchmarks/humaneval.test.mts +122 -0
  62. package/src/benchmarks/humaneval.ts +100 -27
  63. package/src/david-attribution.mts +78 -0
  64. package/src/david-goliath.mts +149 -0
  65. package/src/hev-improve.mts +25 -6
  66. package/src/humaneval-object-ablation.mts +201 -0
  67. package/src/live-improve-campaign-mbpp.mts +641 -0
  68. package/src/live-improve-campaign.mts +500 -0
  69. package/src/mbpp-structural.mts +12 -7
  70. package/src/quant-arena/README.md +144 -0
  71. package/src/quant-arena/backtest.test.mts +135 -0
  72. package/src/quant-arena/backtest.ts +218 -0
  73. package/src/quant-arena/data.test.mts +44 -0
  74. package/src/quant-arena/data.ts +141 -0
  75. package/src/quant-arena/driver.test.mts +253 -0
  76. package/src/quant-arena/driver.ts +219 -0
  77. package/src/quant-arena/fixtures/data/PROVENANCE.md +26 -0
  78. package/src/quant-arena/fixtures/data/holdout/IDX.csv +523 -0
  79. package/src/quant-arena/fixtures/data/holdout/S01.csv +523 -0
  80. package/src/quant-arena/fixtures/data/holdout/S02.csv +523 -0
  81. package/src/quant-arena/fixtures/data/holdout/S03.csv +523 -0
  82. package/src/quant-arena/fixtures/data/holdout/S04.csv +523 -0
  83. package/src/quant-arena/fixtures/data/holdout/S05.csv +523 -0
  84. package/src/quant-arena/fixtures/data/holdout/S06.csv +523 -0
  85. package/src/quant-arena/fixtures/data/holdout/S07.csv +523 -0
  86. package/src/quant-arena/fixtures/data/holdout/S08.csv +523 -0
  87. package/src/quant-arena/fixtures/data/holdout/S09.csv +523 -0
  88. package/src/quant-arena/fixtures/data/holdout/S10.csv +523 -0
  89. package/src/quant-arena/fixtures/data/insample/IDX.csv +2087 -0
  90. package/src/quant-arena/fixtures/data/insample/S01.csv +2087 -0
  91. package/src/quant-arena/fixtures/data/insample/S02.csv +2087 -0
  92. package/src/quant-arena/fixtures/data/insample/S03.csv +2087 -0
  93. package/src/quant-arena/fixtures/data/insample/S04.csv +2087 -0
  94. package/src/quant-arena/fixtures/data/insample/S05.csv +2087 -0
  95. package/src/quant-arena/fixtures/data/insample/S06.csv +2087 -0
  96. package/src/quant-arena/fixtures/data/insample/S07.csv +2087 -0
  97. package/src/quant-arena/fixtures/data/insample/S08.csv +2087 -0
  98. package/src/quant-arena/fixtures/data/insample/S09.csv +2087 -0
  99. package/src/quant-arena/fixtures/data/insample/S10.csv +2087 -0
  100. package/src/quant-arena/fixtures/demo-campaign/cost-ledger.jsonl +16 -0
  101. package/src/quant-arena/fixtures/demo-campaign/notebook.jsonl +5 -0
  102. package/src/quant-arena/fixtures/demo-campaign/rollout-manifest.json +171 -0
  103. package/src/quant-arena/fixtures/demo-campaign/strategies/cand-001-default-author/strategy.ts +119 -0
  104. package/src/quant-arena/fixtures/demo-campaign/strategies/cand-002-default-author/strategy.ts +119 -0
  105. package/src/quant-arena/fixtures/demo-campaign/strategies/cand-003-quant-researcher/strategy.ts +105 -0
  106. package/src/quant-arena/fixtures/demo-campaign/strategies/cand-004-quant-researcher/strategy.ts +102 -0
  107. package/src/quant-arena/fixtures/demo-campaign-v2/cost-ledger.jsonl +4 -0
  108. package/src/quant-arena/fixtures/demo-campaign-v2/notebook.jsonl +2 -0
  109. package/src/quant-arena/fixtures/demo-campaign-v2/rollout-manifest.json +84 -0
  110. package/src/quant-arena/fixtures/demo-campaign-v2/strategies/cand-001-quant-researcher/strategy.ts +117 -0
  111. package/src/quant-arena/holdout-certify.mts +206 -0
  112. package/src/quant-arena/holdout-certify.test.mts +82 -0
  113. package/src/quant-arena/leak-audit.test.mts +79 -0
  114. package/src/quant-arena/leak-audit.ts +95 -0
  115. package/src/quant-arena/make-fixtures.mts +161 -0
  116. package/src/quant-arena/multiplicity.test.mts +68 -0
  117. package/src/quant-arena/multiplicity.ts +87 -0
  118. package/src/quant-arena/nautilus-certify.ts +31 -0
  119. package/src/quant-arena/oms.ts +90 -0
  120. package/src/quant-arena/profiles/quant-researcher.profile.json +7 -0
  121. package/src/quant-arena/python/pyproject.toml +8 -0
  122. package/src/quant-arena/python/uv.lock +1297 -0
  123. package/src/quant-arena/python/vbt-worker.py +192 -0
  124. package/src/quant-arena/quant-loop.mts +813 -0
  125. package/src/quant-arena/quant-loop.test.mts +75 -0
  126. package/src/quant-arena/strategies/buy-hold-index/strategy.ts +11 -0
  127. package/src/quant-arena/strategies/equal-weight/strategy.ts +20 -0
  128. package/src/quant-arena/strategies/sma-crossover/strategy.ts +42 -0
  129. package/src/quant-arena/types.ts +133 -0
  130. package/src/quant-arena/vbt-client.ts +321 -0
  131. package/src/quant-arena/vbt-parity.test.mts +183 -0
  132. package/src/quant-arena/windows.test.mts +45 -0
  133. package/src/quant-arena/windows.ts +54 -0
  134. package/src/rollout-ledger/backfill-swe-arena.mts +606 -0
  135. package/src/rollout-ledger/backfill-swe-arena.test.mts +338 -0
  136. package/src/rollout-ledger/settle-capture.mts +442 -0
  137. package/src/rollout-ledger/settle-capture.test.mts +270 -0
  138. package/src/stream-observe.py +45 -0
  139. package/src/stream-observe.tpl.html +247 -0
  140. package/src/supervisor-arena.mts +816 -0
  141. package/src/swe-arena/activation.mts +228 -0
  142. package/src/swe-arena/activation.test.mts +303 -0
  143. package/src/swe-arena/analyze.ts +211 -0
  144. package/src/swe-arena/arms.ts +804 -0
  145. package/src/swe-arena/bootstrap-meta.mts +188 -0
  146. package/src/swe-arena/bootstrap-meta.test.mts +51 -0
  147. package/src/swe-arena/briefing.mts +217 -0
  148. package/src/swe-arena/briefing.test.mts +178 -0
  149. package/src/swe-arena/calibrate.ts +217 -0
  150. package/src/swe-arena/capabilities.mts +76 -0
  151. package/src/swe-arena/capabilities.test.mts +57 -0
  152. package/src/swe-arena/capacity.ts +194 -0
  153. package/src/swe-arena/cell-evidence.mts +437 -0
  154. package/src/swe-arena/cell-evidence.test.mts +248 -0
  155. package/src/swe-arena/diagnosis-ensemble.test.mts +210 -0
  156. package/src/swe-arena/diagnosis-ensemble.ts +520 -0
  157. package/src/swe-arena/execution.test.mts +1170 -0
  158. package/src/swe-arena/factory-command-container.ts +284 -0
  159. package/src/swe-arena/factory-judge-child.mts +228 -0
  160. package/src/swe-arena/factory.test.mts +643 -0
  161. package/src/swe-arena/fixtures/analyze.py +80 -0
  162. package/src/swe-arena/fixtures/excludes.txt +8 -0
  163. package/src/swe-arena/fixtures/factory/agent-eval-309/calibration.md +51 -0
  164. package/src/swe-arena/fixtures/factory/agent-eval-309/manifest.json +29 -0
  165. package/src/swe-arena/fixtures/factory/agent-eval-309/spec.md +64 -0
  166. package/src/swe-arena/fixtures/factory/agent-runtime-232/calibration.md +48 -0
  167. package/src/swe-arena/fixtures/factory/agent-runtime-232/manifest.json +29 -0
  168. package/src/swe-arena/fixtures/factory/agent-runtime-232/spec.md +48 -0
  169. package/src/swe-arena/fixtures/factory/loops-28/calibration.md +47 -0
  170. package/src/swe-arena/fixtures/factory/loops-28/manifest.json +30 -0
  171. package/src/swe-arena/fixtures/factory/loops-28/spec.md +50 -0
  172. package/src/swe-arena/fixtures/gen1-salvage/README.md +45 -0
  173. package/src/swe-arena/fixtures/gen1-salvage/cand0-e6d7361.diff +116 -0
  174. package/src/swe-arena/fixtures/gen1-salvage/cand1-76a8590.diff +293 -0
  175. package/src/swe-arena/fixtures/holdout-preregister.log +12 -0
  176. package/src/swe-arena/fixtures/holdout.json +44 -0
  177. package/src/swe-arena/fixtures/instances.json +146 -0
  178. package/src/swe-arena/fixtures/ledger.jsonl +12 -0
  179. package/src/swe-arena/fixtures/patches/pallets__flask-5014.solo.patch +36 -0
  180. package/src/swe-arena/fixtures/patches/pydata__xarray-4687.sup.patch +33 -0
  181. package/src/swe-arena/fixtures/rejudge.jsonl +15 -0
  182. package/src/swe-arena/fixtures/rematch.jsonl +3 -0
  183. package/src/swe-arena/fixtures/rematch2.jsonl +3 -0
  184. package/src/swe-arena/fixtures/rematch3.jsonl +3 -0
  185. package/src/swe-arena/fixtures/run-report/README.md +43 -0
  186. package/src/swe-arena/fixtures/run-report/factory-agent-eval-309-FSUP0.json +173 -0
  187. package/src/swe-arena/fixtures/run-report/factory-agent-eval-309-FSUP0.md +100 -0
  188. package/src/swe-arena/fixtures/run-report/gen3-rollup.json +551 -0
  189. package/src/swe-arena/fixtures/run-report/gen3-rollup.md +64 -0
  190. package/src/swe-arena/fixtures/sup-journal-true.json +19 -0
  191. package/src/swe-arena/fixtures/verify/astropy__astropy-13033.sh +48 -0
  192. package/src/swe-arena/fixtures/verify/django__django-11532.sh +50 -0
  193. package/src/swe-arena/fixtures/verify/matplotlib__matplotlib-20826.sh +76 -0
  194. package/src/swe-arena/fixtures/verify/pydata__xarray-4687.sh +44 -0
  195. package/src/swe-arena/fixtures/verify/pytest-dev__pytest-6197.sh +32 -0
  196. package/src/swe-arena/fixtures/verify/sphinx-doc__sphinx-9658.sh +51 -0
  197. package/src/swe-arena/fixtures/worker-tokens.json +42 -0
  198. package/src/swe-arena/fixtures.ts +237 -0
  199. package/src/swe-arena/gepa-seat.mts +583 -0
  200. package/src/swe-arena/gepa-seat.test.mts +635 -0
  201. package/src/swe-arena/holdout-certify.mts +408 -0
  202. package/src/swe-arena/holdout-certify.test.mts +160 -0
  203. package/src/swe-arena/judge-child.mts +37 -0
  204. package/src/swe-arena/ledger-orphans.mts +77 -0
  205. package/src/swe-arena/ledger-orphans.test.mts +147 -0
  206. package/src/swe-arena/lineage-record.mts +164 -0
  207. package/src/swe-arena/lineage-record.test.mts +115 -0
  208. package/src/swe-arena/manifest.mts +293 -0
  209. package/src/swe-arena/manifest.test.mts +169 -0
  210. package/src/swe-arena/materialize.ts +142 -0
  211. package/src/swe-arena/outer-loop.mts +2795 -0
  212. package/src/swe-arena/outer-loop.test.mts +696 -0
  213. package/src/swe-arena/parity.test.mts +87 -0
  214. package/src/swe-arena/premeasured-from-cells.mts +281 -0
  215. package/src/swe-arena/premeasured-from-cells.test.mts +180 -0
  216. package/src/swe-arena/proc.test.mts +174 -0
  217. package/src/swe-arena/proc.ts +260 -0
  218. package/src/swe-arena/profiles/default-author.profile.json +4 -0
  219. package/src/swe-arena/proposer-fanout.mts +770 -0
  220. package/src/swe-arena/proposer-fanout.test.mts +619 -0
  221. package/src/swe-arena/proposer-provenance.mts +177 -0
  222. package/src/swe-arena/proposer-provenance.test.mts +106 -0
  223. package/src/swe-arena/reconcile.ts +0 -0
  224. package/src/swe-arena/replay.mts +183 -0
  225. package/src/swe-arena/replay.test.mts +300 -0
  226. package/src/swe-arena/run-experiment.mts +727 -0
  227. package/src/swe-arena/run-report.mts +75 -0
  228. package/src/swe-arena/run-supervisor.mjs +297 -0
  229. package/src/swe-arena/run-supervisor.test.mts +500 -0
  230. package/src/swe-arena/score-split.mts +140 -0
  231. package/src/swe-arena/score-split.test.mts +123 -0
  232. package/src/swe-arena/serialized-judge.ts +414 -0
  233. package/src/swe-arena/types.ts +218 -0
  234. package/src/swe-code-improve.mts +328 -0
  235. package/src/swe-emit-patch.mts +104 -0
  236. package/src/swe-improve.mts +232 -0
  237. package/src/swe-jail.ts +2 -2
  238. package/src/swe-local-proof.mts +169 -0
  239. package/src/swe-repro-calibrate.mts +446 -0
  240. package/src/swe-stream.mts +1497 -0
  241. package/src/swe-structural.mts +245 -837
  242. package/dist/chunk-LRRD7NAG.js.map +0 -1
  243. package/dist/chunk-PPYSEKFM.js.map +0 -1
  244. /package/dist/{chunk-CKUVRZ2T.js.map → chunk-3U5TXJZS.js.map} +0 -0
  245. /package/dist/{chunk-YCGY7UIZ.js.map → chunk-7GRVHU22.js.map} +0 -0
  246. /package/dist/{chunk-Z7ML6L77.js.map → chunk-HWST3SED.js.map} +0 -0
  247. /package/dist/{chunk-SYDW647C.js.map → chunk-IA2FBTWC.js.map} +0 -0
  248. /package/dist/{chunk-R67DFVLO.js.map → chunk-IFVINJ4B.js.map} +0 -0
  249. /package/dist/{chunk-R36V2VP7.js.map → chunk-IZ5M6OAC.js.map} +0 -0
  250. /package/dist/{chunk-ODT47UAY.js.map → chunk-K3BQGZCT.js.map} +0 -0
  251. /package/dist/{chunk-IFAV6KEM.js.map → chunk-KP5KD6EN.js.map} +0 -0
  252. /package/dist/{chunk-ZEWMTR5M.js.map → chunk-MQMRLGOG.js.map} +0 -0
  253. /package/dist/{chunk-TSWPNOYM.js.map → chunk-NQG5XDSB.js.map} +0 -0
  254. /package/dist/{chunk-7WSD27QQ.js.map → chunk-PB64GYIG.js.map} +0 -0
  255. /package/dist/{chunk-HBSWHQNJ.js.map → chunk-RCYQEFNX.js.map} +0 -0
  256. /package/dist/{chunk-J3KDJNX2.js.map → chunk-RH5F53JT.js.map} +0 -0
  257. /package/dist/{chunk-UAIOHCUK.js.map → chunk-SFLA7OH3.js.map} +0 -0
  258. /package/dist/{chunk-Y6O2OCUO.js.map → chunk-SHM6MRRF.js.map} +0 -0
  259. /package/dist/{chunk-KDIKRJGB.js.map → chunk-SHYIRB7I.js.map} +0 -0
  260. /package/dist/{chunk-HHXFIHXC.js.map → chunk-SVR2LKYI.js.map} +0 -0
  261. /package/dist/{chunk-5SBJCB6W.js.map → chunk-V7AEBY6U.js.map} +0 -0
  262. /package/dist/{chunk-2PVVP7GN.js.map → chunk-XKEFIFIC.js.map} +0 -0
  263. /package/dist/{chunk-JRWWGMK7.js.map → chunk-XYA4XSNU.js.map} +0 -0
  264. /package/dist/{chunk-X5YKXC6V.js.map → chunk-YSMEKBTD.js.map} +0 -0
  265. /package/dist/{chunk-2XU6OGEN.js.map → chunk-Z4TZ76N7.js.map} +0 -0
@@ -0,0 +1,300 @@
1
+ /**
2
+ * Proof-of-faithfulness gate for the swe-arena replay module.
3
+ *
4
+ * Every expected value below was produced by running the reference
5
+ * implementation (`fixtures/analyze.py`) against the committed fixtures on
6
+ * 2026-07-15 and captured verbatim — the typed port must reproduce it exactly
7
+ * before any typed execution path is built on top.
8
+ *
9
+ * KNOWN, DELIBERATE DIVERGENCE (flagged, both sides pinned): analyze.py's
10
+ * printed "SUP total tokens: 560,554 / 0.83x" counts the supervisor BRAIN
11
+ * only (journal metered events). The true SUP-arm spend adds worker-session
12
+ * tokens (worker-tokens.json): 560,554 + 1,161,836 = 1,722,390 → 2.55x
13
+ * SOLO. Both rollups are pinned; neither replaces the other.
14
+ */
15
+
16
+ import { createHash } from 'node:crypto'
17
+ import { describe, expect, it } from 'vitest'
18
+ import {
19
+ costRollup,
20
+ ledgerOutcomes,
21
+ pairedSignTest,
22
+ reconciledOutcomes,
23
+ roundsProgression,
24
+ splitPairs,
25
+ } from './analyze.ts'
26
+ import {
27
+ loadHoldout,
28
+ loadLedger,
29
+ loadPreregisterLog,
30
+ loadRejudge,
31
+ loadRematchRounds,
32
+ loadSupJournalTrue,
33
+ loadWorkerTokens,
34
+ readFixture,
35
+ } from './fixtures.ts'
36
+ import { applyRejudge, reconcile } from './reconcile.ts'
37
+ import { buildReplay, renderReplay } from './replay.mts'
38
+
39
+ const DISCORDANT = [
40
+ 'astropy__astropy-13033',
41
+ 'django__django-11532',
42
+ 'matplotlib__matplotlib-20826',
43
+ ]
44
+
45
+ describe('fixture integrity', () => {
46
+ // The fixtures ARE the experiment record. Any byte drift invalidates every
47
+ // pinned number below, so drift must fail loudly here first.
48
+ const sha256 = (name: string): string =>
49
+ createHash('sha256').update(readFixture(name)).digest('hex')
50
+
51
+ it.each([
52
+ ['ledger.jsonl', '0014a1a2e7432a6551edbaf6668357cdbee8adb15b92e4f48ff530daf6ab8529'],
53
+ ['rejudge.jsonl', '71ecadde0925d573573a7bb0fe171d26da386149f693035d3ca47c983a5f1700'],
54
+ ['rematch.jsonl', 'aac48fdaa3c80f08367c220e406e1bb28b09c4f7d74fd17e4b76f50b5caaa5e4'],
55
+ ['rematch2.jsonl', 'fe8347eae3e3f48c838cca0aa37e835730520482b705038c19450c98edd54d54'],
56
+ ['rematch3.jsonl', '4eaeb9916634f3ffea7f66cb3bf747040a346524602a74a537efcdbc828ff020'],
57
+ ['holdout.json', '56938f7c509621bcadbd50b1d6dacbee0f63b350506795e45d785c9de37d93f2'],
58
+ ['worker-tokens.json', 'aa2f394120984a1c21ea7b70ed830a990477c08a1b38b6db743024660b43b129'],
59
+ ['sup-journal-true.json', 'a95b48bdd7ab46011355c6a2b2844d67aa5811235ed3b8a5c9a4c9342eff9784'],
60
+ ['analyze.py', '5512f4e1732ae4f0f92d7cb92840e5e99e54073c27f2b8ebd293b75346d9ebfc'],
61
+ ['holdout-preregister.log', 'e11fbf34840765d8cd452c870905acec67e5a6b9dc05c2f76c64f71c2ad70884'],
62
+ ])('%s is byte-identical to the captured artifact', (name, expected) => {
63
+ expect(sha256(name)).toBe(expected)
64
+ })
65
+
66
+ it('loads the expected row counts', () => {
67
+ expect(loadLedger()).toHaveLength(12)
68
+ expect(loadRejudge()).toHaveLength(15)
69
+ expect(loadRematchRounds().map((r) => r.length)).toEqual([3, 3, 3])
70
+ })
71
+
72
+ it('psf__requests-1766 carries the corrected-sup-verdict note', () => {
73
+ const row = loadLedger().find((r) => r.iid === 'psf__requests-1766')
74
+ expect(row?.sup_resolved).toBe(true)
75
+ expect(row?._note).toMatch(/re-judged 2x stable resolved=true/)
76
+ })
77
+ })
78
+
79
+ describe('reconcile: rejudge overrides + gold gate', () => {
80
+ const table = reconcile(loadLedger(), loadRejudge())
81
+
82
+ it('excludes exactly the gold-ungradeable instances 2317 + 2931', () => {
83
+ expect(table.excluded.map((e) => e.iid)).toEqual(['psf__requests-2317', 'psf__requests-2931'])
84
+ expect(table.excluded.map((e) => e.excludeReason)).toEqual([
85
+ 'gold patch unresolved by judge (gold2) — instance ungradeable',
86
+ 'gold patch unresolved by judge (gold) — instance ungradeable',
87
+ ])
88
+ expect(table.valid).toHaveLength(10)
89
+ })
90
+
91
+ it('gold-control (flask) grades true and stays in the denominator', () => {
92
+ const flask = table.valid.find((r) => r.iid === 'pallets__flask-5014')
93
+ expect(flask?.goldStatus).toBe('gradeable')
94
+ expect(flask?.excluded).toBe(false)
95
+ })
96
+
97
+ it('parse-error rejudge rows (resolved=null) never override; final2 retries do', () => {
98
+ const r2317 = applyRejudge(loadLedger(), loadRejudge()).find(
99
+ (r) => r.iid === 'psf__requests-2317',
100
+ )
101
+ // solo-final and sup-final on 2317 both failed to parse; the *-final2
102
+ // retries are the authoritative rows.
103
+ expect(r2317?.solo).toEqual({ resolved: false, source: 'solo-final2' })
104
+ expect(r2317?.sup).toEqual({ resolved: false, source: 'sup-final2' })
105
+ // gold parse error superseded by the conclusive gold2 retry → ungradeable.
106
+ expect(r2317?.goldStatus).toBe('ungradeable')
107
+ })
108
+
109
+ it('personal re-judges override the automated verdict for their arm only', () => {
110
+ const byIid = new Map(applyRejudge(loadLedger(), loadRejudge()).map((r) => [r.iid, r]))
111
+ for (const iid of DISCORDANT) {
112
+ expect(byIid.get(iid)?.solo).toEqual({ resolved: true, source: 'solo-final' })
113
+ expect(byIid.get(iid)?.sup.source).toBe('ledger')
114
+ }
115
+ expect(byIid.get('pydata__xarray-4687')?.solo).toEqual({
116
+ resolved: false,
117
+ source: 'solo-final',
118
+ })
119
+ expect(byIid.get('pydata__xarray-4687')?.sup).toEqual({ resolved: false, source: 'sup-final' })
120
+ })
121
+ })
122
+
123
+ describe('analyze: raw ledger reproduction of analyze.py', () => {
124
+ const outcomes = ledgerOutcomes(loadLedger())
125
+ const split = splitPairs(outcomes)
126
+ const sign = pairedSignTest(outcomes)
127
+
128
+ it('SOLO 7/12, SUP 4/12', () => {
129
+ expect(outcomes.filter((o) => o.solo)).toHaveLength(7)
130
+ expect(outcomes.filter((o) => o.sup)).toHaveLength(4)
131
+ })
132
+
133
+ it('discordant pairs: 3 SOLO-only, 0 SUP-only', () => {
134
+ expect(split.soloOnly).toEqual(DISCORDANT)
135
+ expect(split.supOnly).toEqual([])
136
+ expect(split.both).toHaveLength(4)
137
+ expect(split.neither).toEqual([
138
+ 'psf__requests-2317',
139
+ 'psf__requests-2931',
140
+ 'pydata__xarray-4687',
141
+ 'pytest-dev__pytest-6197',
142
+ 'sphinx-doc__sphinx-9658',
143
+ ])
144
+ })
145
+
146
+ it('exact two-sided sign test p = 0.25 (agent-eval mcnemar)', () => {
147
+ expect(sign.b).toBe(0)
148
+ expect(sign.c).toBe(3)
149
+ expect(sign.nDiscordant).toBe(3)
150
+ expect(sign.pValue).toBeCloseTo(0.25, 10)
151
+ expect(sign.pValue.toFixed(4)).toBe('0.2500')
152
+ })
153
+ })
154
+
155
+ describe('analyze: valid-denominator verdict', () => {
156
+ const outcomes = reconciledOutcomes(reconcile(loadLedger(), loadRejudge()).valid)
157
+
158
+ it('SOLO 7/10, SUP 4/10 after excluding 2931 + 2317', () => {
159
+ expect(outcomes).toHaveLength(10)
160
+ expect(outcomes.filter((o) => o.solo)).toHaveLength(7)
161
+ expect(outcomes.filter((o) => o.sup)).toHaveLength(4)
162
+ })
163
+
164
+ it('same discordant set and p=0.25 (excluded pairs were concordant-neither)', () => {
165
+ const split = splitPairs(outcomes)
166
+ expect(split.soloOnly).toEqual(DISCORDANT)
167
+ expect(split.supOnly).toEqual([])
168
+ expect(pairedSignTest(outcomes).pValue).toBeCloseTo(0.25, 10)
169
+ })
170
+ })
171
+
172
+ describe('analyze: cost rollups', () => {
173
+ const cost = costRollup(loadLedger(), loadSupJournalTrue(), loadWorkerTokens())
174
+
175
+ it('SOLO total 675,412 tokens (analyze.py oracle)', () => {
176
+ expect(cost.soloTokens).toBe(675412)
177
+ })
178
+
179
+ it('SUP brain total 560,554 tokens — what analyze.py prints as "SUP total"', () => {
180
+ expect(cost.supBrainTokens).toBe(560554)
181
+ expect(cost.brainTokenRatio.toFixed(2)).toBe('0.83')
182
+ })
183
+
184
+ it('TRUE SUP total 1,722,390 = brain 560,554 + workers 1,161,836 → 2.55x SOLO', () => {
185
+ // The loudly-flagged divergence: analyze.py never printed worker tokens,
186
+ // so its 0.83x understates the SUP arm's true spend by the worker share.
187
+ expect(cost.supWorkerTokens).toBe(1161836)
188
+ expect(cost.supTotalTokens).toBe(1722390)
189
+ expect(cost.totalTokenRatio).toBeCloseTo(2.5501, 4)
190
+ expect(cost.totalTokenRatio.toFixed(2)).toBe('2.55')
191
+ })
192
+
193
+ it('USD via blended SUP rate (analyze.py oracle strings)', () => {
194
+ expect(cost.supUsd.toFixed(4)).toBe('0.1754')
195
+ expect((cost.blendedRatePerTok * 1e6).toFixed(3)).toBe('0.313')
196
+ expect(cost.soloUsdDerived.toFixed(4)).toBe('0.2114')
197
+ })
198
+
199
+ it('wall time: SOLO 3769s vs SUP 9124s → 2.42x', () => {
200
+ expect(cost.soloWallS).toBe(3769)
201
+ expect(cost.supWallS).toBe(9124)
202
+ expect(cost.wallRatio.toFixed(2)).toBe('2.42')
203
+ })
204
+
205
+ it('telemetry gaps: runtime zeroed spentTokens on the 4 no-winner/crashed runs', () => {
206
+ expect(cost.telemetryGaps).toEqual([
207
+ 'astropy__astropy-13033',
208
+ 'django__django-11532',
209
+ 'matplotlib__matplotlib-20826',
210
+ 'pytest-dev__pytest-6197',
211
+ ])
212
+ })
213
+ })
214
+
215
+ describe('analyze: supervisor evolution rounds', () => {
216
+ const rounds = roundsProgression(loadLedger(), loadRematchRounds())
217
+
218
+ it('matplotlib: 0-line unresolved at SUP round 0 → RESOLVED at SUP4', () => {
219
+ const states = rounds.get('matplotlib__matplotlib-20826')
220
+ expect(states?.map((s) => ({ round: s.round, resolved: s.resolved, patchLines: s.patchLines }))).toEqual([
221
+ { round: 'SUP', resolved: false, patchLines: 0 },
222
+ { round: 'SUP2', resolved: false, patchLines: 0 },
223
+ { round: 'SUP3', resolved: false, patchLines: 0 },
224
+ { round: 'SUP4', resolved: true, patchLines: 23 },
225
+ ])
226
+ })
227
+
228
+ it('astropy + django: never resolved across SUP..SUP4', () => {
229
+ for (const iid of ['astropy__astropy-13033', 'django__django-11532']) {
230
+ const states = rounds.get(iid)
231
+ expect(states).toHaveLength(4)
232
+ expect(states?.every((s) => !s.resolved)).toBe(true)
233
+ }
234
+ })
235
+ })
236
+
237
+ describe('holdout registry', () => {
238
+ const holdout = loadHoldout()
239
+ const log = loadPreregisterLog()
240
+
241
+ it('6 instances, all gold-verified and judge-calibrated, single selection commit', () => {
242
+ expect(holdout.entries).toHaveLength(6)
243
+ expect(holdout.selectedAtCommit).toBe('4a06fc54bd180789d1402c843a63ed245df9f8eb')
244
+ expect(holdout.entries.every((e) => e.gold_official_resolved && e.verify_calibrated)).toBe(true)
245
+ })
246
+
247
+ it('every entry was preregistered before any arm ran, then registered', () => {
248
+ const iids = holdout.entries.map((e) => e.iid)
249
+ for (const iid of iids) {
250
+ const pre = log.findIndex((l) => l.includes('PREREGISTER') && l.includes(iid))
251
+ const reg = log.findIndex((l) => l.includes('REGISTERED') && l.includes(iid))
252
+ expect(pre).toBeGreaterThanOrEqual(0)
253
+ expect(reg).toBeGreaterThan(pre)
254
+ expect(log[pre]).toContain('status=selected-before-any-arm-run')
255
+ }
256
+ })
257
+ })
258
+
259
+ describe('replay CLI output', () => {
260
+ // Lines below are verbatim from running fixtures/analyze.py on 2026-07-15
261
+ // (trailing whitespace trimmed — the per-instance table pads columns).
262
+ const lines = renderReplay(buildReplay())
263
+ .split('\n')
264
+ .map((l) => l.trimEnd())
265
+
266
+ it.each([
267
+ ['SOLO resolved: 7/12 = 58.3%'],
268
+ ['SUP resolved: 4/12 = 33.3%'],
269
+ ['delta (SUP-SOLO): -3 instances (-25.0 pts)'],
270
+ [" SOLO-only wins (SOLO✓ SUP✗): 3 ['astropy__astropy-13033', 'django__django-11532', 'matplotlib__matplotlib-20826']"],
271
+ [' SUP-only wins (SUP✓ SOLO✗): 0 []'],
272
+ [' exact two-sided sign test on discordant pairs: p=0.2500'],
273
+ ['COST (measured tokens; USD via shared blended rate $0.313/1M from SUP accounting):'],
274
+ [' SOLO total tokens: 675,412 -> derived $0.2114'],
275
+ [' SUP total tokens: 560,554 -> runtime $0.1754'],
276
+ [' SUP/SOLO token ratio: 0.83x'],
277
+ [' SUP/SOLO cost ratio (token-derived): 0.83x'],
278
+ [" [telemetry] instances where runtime spentTokens != journal-true (no-winner zeroing): ['astropy__astropy-13033', 'django__django-11532', 'matplotlib__matplotlib-20826', 'pytest-dev__pytest-6197']"],
279
+ [' WALL: SOLO 3769s total vs SUP 9124s total -> SUP 2.42x wall'],
280
+ ['pallets__flask-5014 True True T T ? 30738 15731 0.0124 116 261'],
281
+ ['astropy__astropy-13033 True False T F 3 59496 0 0.0000 350 1550'],
282
+ ['pytest-dev__pytest-6197 False False F F 0 133032 0 0.0000 755 248'],
283
+ ])('reproduces analyze.py line: %s', (expected) => {
284
+ expect(lines).toContain(expected)
285
+ })
286
+
287
+ it.each([
288
+ ['SOLO resolved: 7/10'],
289
+ ['SUP resolved: 4/10'],
290
+ [' EXCLUDED psf__requests-2317: gold patch unresolved by judge (gold2) — instance ungradeable'],
291
+ [' EXCLUDED psf__requests-2931: gold patch unresolved by judge (gold) — instance ungradeable'],
292
+ ['exact two-sided sign test: p=0.2500'],
293
+ [' brain 560,554 + workers 1,161,836 = 1,722,390 tokens'],
294
+ [' SUP/SOLO true token ratio: 2.55x (brain-only ratio: 0.83x)'],
295
+ [' matplotlib__matplotlib-20826 SUP:unresolved(0L,null) -> SUP2:unresolved(0L,no-winner) -> SUP3:unresolved(0L,null) -> SUP4:RESOLVED(23L,delivered)'],
296
+ ['HOLDOUT REGISTRY (pre-registered at loops@4a06fc54bd, untouched):'],
297
+ ])('prints reconciled line: %s', (expected) => {
298
+ expect(lines).toContain(expected)
299
+ })
300
+ })