@prismatic-io/lux 0.0.1

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 (636) hide show
  1. package/LICENSE +21 -0
  2. package/lib/answerers/claude-code/index.d.ts +17 -0
  3. package/lib/answerers/claude-code/index.d.ts.map +1 -0
  4. package/lib/answerers/claude-code/index.js +280 -0
  5. package/lib/answerers/claude-code/index.js.map +1 -0
  6. package/lib/answerers/persona/index.d.ts +40 -0
  7. package/lib/answerers/persona/index.d.ts.map +1 -0
  8. package/lib/answerers/persona/index.js +265 -0
  9. package/lib/answerers/persona/index.js.map +1 -0
  10. package/lib/answerers/scripted/index.d.ts +8 -0
  11. package/lib/answerers/scripted/index.d.ts.map +1 -0
  12. package/lib/answerers/scripted/index.js +163 -0
  13. package/lib/answerers/scripted/index.js.map +1 -0
  14. package/lib/answerers/shared.d.ts +13 -0
  15. package/lib/answerers/shared.d.ts.map +1 -0
  16. package/lib/answerers/shared.js +17 -0
  17. package/lib/answerers/shared.js.map +1 -0
  18. package/lib/answerers/terminal/index.d.ts +9 -0
  19. package/lib/answerers/terminal/index.d.ts.map +1 -0
  20. package/lib/answerers/terminal/index.js +97 -0
  21. package/lib/answerers/terminal/index.js.map +1 -0
  22. package/lib/assertions/core/command-exits-zero.d.ts +21 -0
  23. package/lib/assertions/core/command-exits-zero.d.ts.map +1 -0
  24. package/lib/assertions/core/command-exits-zero.js +87 -0
  25. package/lib/assertions/core/command-exits-zero.js.map +1 -0
  26. package/lib/assertions/core/event-checks.d.ts +57 -0
  27. package/lib/assertions/core/event-checks.d.ts.map +1 -0
  28. package/lib/assertions/core/event-checks.js +123 -0
  29. package/lib/assertions/core/event-checks.js.map +1 -0
  30. package/lib/assertions/core/file-checks.d.ts +103 -0
  31. package/lib/assertions/core/file-checks.d.ts.map +1 -0
  32. package/lib/assertions/core/file-checks.js +288 -0
  33. package/lib/assertions/core/file-checks.js.map +1 -0
  34. package/lib/assertions/core/helpers.d.ts +66 -0
  35. package/lib/assertions/core/helpers.d.ts.map +1 -0
  36. package/lib/assertions/core/helpers.js +170 -0
  37. package/lib/assertions/core/helpers.js.map +1 -0
  38. package/lib/assertions/core/index.d.ts +15 -0
  39. package/lib/assertions/core/index.d.ts.map +1 -0
  40. package/lib/assertions/core/index.js +56 -0
  41. package/lib/assertions/core/index.js.map +1 -0
  42. package/lib/assertions/core/json-pointer-equals.d.ts +19 -0
  43. package/lib/assertions/core/json-pointer-equals.d.ts.map +1 -0
  44. package/lib/assertions/core/json-pointer-equals.js +71 -0
  45. package/lib/assertions/core/json-pointer-equals.js.map +1 -0
  46. package/lib/assertions/core/output-checks.d.ts +46 -0
  47. package/lib/assertions/core/output-checks.d.ts.map +1 -0
  48. package/lib/assertions/core/output-checks.js +121 -0
  49. package/lib/assertions/core/output-checks.js.map +1 -0
  50. package/lib/assertions/core/predicate.d.ts +14 -0
  51. package/lib/assertions/core/predicate.d.ts.map +1 -0
  52. package/lib/assertions/core/predicate.js +55 -0
  53. package/lib/assertions/core/predicate.js.map +1 -0
  54. package/lib/assertions/core/resource-checks.d.ts +71 -0
  55. package/lib/assertions/core/resource-checks.d.ts.map +1 -0
  56. package/lib/assertions/core/resource-checks.js +159 -0
  57. package/lib/assertions/core/resource-checks.js.map +1 -0
  58. package/lib/assertions/core/safe-regex.d.ts +23 -0
  59. package/lib/assertions/core/safe-regex.d.ts.map +1 -0
  60. package/lib/assertions/core/safe-regex.js +102 -0
  61. package/lib/assertions/core/safe-regex.js.map +1 -0
  62. package/lib/assertions/core/tool-called-with.d.ts +21 -0
  63. package/lib/assertions/core/tool-called-with.d.ts.map +1 -0
  64. package/lib/assertions/core/tool-called-with.js +69 -0
  65. package/lib/assertions/core/tool-called-with.js.map +1 -0
  66. package/lib/assertions/core/tool-calls.d.ts +22 -0
  67. package/lib/assertions/core/tool-calls.d.ts.map +1 -0
  68. package/lib/assertions/core/tool-calls.js +17 -0
  69. package/lib/assertions/core/tool-calls.js.map +1 -0
  70. package/lib/assertions/core/tool-invocation.d.ts +36 -0
  71. package/lib/assertions/core/tool-invocation.d.ts.map +1 -0
  72. package/lib/assertions/core/tool-invocation.js +170 -0
  73. package/lib/assertions/core/tool-invocation.js.map +1 -0
  74. package/lib/assertions/core/tool-result-checks.d.ts +59 -0
  75. package/lib/assertions/core/tool-result-checks.d.ts.map +1 -0
  76. package/lib/assertions/core/tool-result-checks.js +193 -0
  77. package/lib/assertions/core/tool-result-checks.js.map +1 -0
  78. package/lib/assertions/mcp/discovery-checks.d.ts +36 -0
  79. package/lib/assertions/mcp/discovery-checks.d.ts.map +1 -0
  80. package/lib/assertions/mcp/discovery-checks.js +122 -0
  81. package/lib/assertions/mcp/discovery-checks.js.map +1 -0
  82. package/lib/assertions/mcp/index.d.ts +10 -0
  83. package/lib/assertions/mcp/index.d.ts.map +1 -0
  84. package/lib/assertions/mcp/index.js +25 -0
  85. package/lib/assertions/mcp/index.js.map +1 -0
  86. package/lib/assertions/rubric/index.d.ts +104 -0
  87. package/lib/assertions/rubric/index.d.ts.map +1 -0
  88. package/lib/assertions/rubric/index.js +191 -0
  89. package/lib/assertions/rubric/index.js.map +1 -0
  90. package/lib/assertions/rubric/internal.d.ts +14 -0
  91. package/lib/assertions/rubric/internal.d.ts.map +1 -0
  92. package/lib/assertions/rubric/internal.js +335 -0
  93. package/lib/assertions/rubric/internal.js.map +1 -0
  94. package/lib/authoring.d.ts +3 -0
  95. package/lib/authoring.d.ts.map +1 -0
  96. package/lib/authoring.js +3 -0
  97. package/lib/authoring.js.map +1 -0
  98. package/lib/cli/bin.d.ts +3 -0
  99. package/lib/cli/bin.d.ts.map +1 -0
  100. package/lib/cli/bin.js +15 -0
  101. package/lib/cli/bin.js.map +1 -0
  102. package/lib/cli/command-runtime.d.ts +5 -0
  103. package/lib/cli/command-runtime.d.ts.map +1 -0
  104. package/lib/cli/command-runtime.js +30 -0
  105. package/lib/cli/command-runtime.js.map +1 -0
  106. package/lib/cli/init.d.ts +21 -0
  107. package/lib/cli/init.d.ts.map +1 -0
  108. package/lib/cli/init.js +340 -0
  109. package/lib/cli/init.js.map +1 -0
  110. package/lib/cli/program.d.ts +22 -0
  111. package/lib/cli/program.d.ts.map +1 -0
  112. package/lib/cli/program.js +757 -0
  113. package/lib/cli/program.js.map +1 -0
  114. package/lib/cli/render/format.d.ts +14 -0
  115. package/lib/cli/render/format.d.ts.map +1 -0
  116. package/lib/cli/render/format.js +71 -0
  117. package/lib/cli/render/format.js.map +1 -0
  118. package/lib/cli/render/reporter.d.ts +73 -0
  119. package/lib/cli/render/reporter.d.ts.map +1 -0
  120. package/lib/cli/render/reporter.js +519 -0
  121. package/lib/cli/render/reporter.js.map +1 -0
  122. package/lib/cli/render/tty.d.ts +77 -0
  123. package/lib/cli/render/tty.d.ts.map +1 -0
  124. package/lib/cli/render/tty.js +283 -0
  125. package/lib/cli/render/tty.js.map +1 -0
  126. package/lib/cli/run-options.d.ts +27 -0
  127. package/lib/cli/run-options.d.ts.map +1 -0
  128. package/lib/cli/run-options.js +58 -0
  129. package/lib/cli/run-options.js.map +1 -0
  130. package/lib/cli/skills.d.ts +38 -0
  131. package/lib/cli/skills.d.ts.map +1 -0
  132. package/lib/cli/skills.js +84 -0
  133. package/lib/cli/skills.js.map +1 -0
  134. package/lib/core/annotation.d.ts +56 -0
  135. package/lib/core/annotation.d.ts.map +1 -0
  136. package/lib/core/annotation.js +92 -0
  137. package/lib/core/annotation.js.map +1 -0
  138. package/lib/core/answerer.d.ts +68 -0
  139. package/lib/core/answerer.d.ts.map +1 -0
  140. package/lib/core/answerer.js +17 -0
  141. package/lib/core/answerer.js.map +1 -0
  142. package/lib/core/artifact-evidence.d.ts +50 -0
  143. package/lib/core/artifact-evidence.d.ts.map +1 -0
  144. package/lib/core/artifact-evidence.js +185 -0
  145. package/lib/core/artifact-evidence.js.map +1 -0
  146. package/lib/core/artifact-snapshot.d.ts +37 -0
  147. package/lib/core/artifact-snapshot.d.ts.map +1 -0
  148. package/lib/core/artifact-snapshot.js +339 -0
  149. package/lib/core/artifact-snapshot.js.map +1 -0
  150. package/lib/core/assertion.d.ts +129 -0
  151. package/lib/core/assertion.d.ts.map +1 -0
  152. package/lib/core/assertion.js +75 -0
  153. package/lib/core/assertion.js.map +1 -0
  154. package/lib/core/case.d.ts +79 -0
  155. package/lib/core/case.d.ts.map +1 -0
  156. package/lib/core/case.js +90 -0
  157. package/lib/core/case.js.map +1 -0
  158. package/lib/core/conversation-turn.d.ts +23 -0
  159. package/lib/core/conversation-turn.d.ts.map +1 -0
  160. package/lib/core/conversation-turn.js +31 -0
  161. package/lib/core/conversation-turn.js.map +1 -0
  162. package/lib/core/driver.d.ts +64 -0
  163. package/lib/core/driver.d.ts.map +1 -0
  164. package/lib/core/driver.js +18 -0
  165. package/lib/core/driver.js.map +1 -0
  166. package/lib/core/emitter.d.ts +20 -0
  167. package/lib/core/emitter.d.ts.map +1 -0
  168. package/lib/core/emitter.js +34 -0
  169. package/lib/core/emitter.js.map +1 -0
  170. package/lib/core/events.d.ts +202 -0
  171. package/lib/core/events.d.ts.map +1 -0
  172. package/lib/core/events.js +107 -0
  173. package/lib/core/events.js.map +1 -0
  174. package/lib/core/exec.d.ts +82 -0
  175. package/lib/core/exec.d.ts.map +1 -0
  176. package/lib/core/exec.js +168 -0
  177. package/lib/core/exec.js.map +1 -0
  178. package/lib/core/experiment.d.ts +285 -0
  179. package/lib/core/experiment.d.ts.map +1 -0
  180. package/lib/core/experiment.js +389 -0
  181. package/lib/core/experiment.js.map +1 -0
  182. package/lib/core/glob.d.ts +3 -0
  183. package/lib/core/glob.d.ts.map +1 -0
  184. package/lib/core/glob.js +32 -0
  185. package/lib/core/glob.js.map +1 -0
  186. package/lib/core/hash.d.ts +8 -0
  187. package/lib/core/hash.d.ts.map +1 -0
  188. package/lib/core/hash.js +214 -0
  189. package/lib/core/hash.js.map +1 -0
  190. package/lib/core/index.d.ts +29 -0
  191. package/lib/core/index.d.ts.map +1 -0
  192. package/lib/core/index.js +29 -0
  193. package/lib/core/index.js.map +1 -0
  194. package/lib/core/lifecycle-fixtures.d.ts +20 -0
  195. package/lib/core/lifecycle-fixtures.d.ts.map +1 -0
  196. package/lib/core/lifecycle-fixtures.js +109 -0
  197. package/lib/core/lifecycle-fixtures.js.map +1 -0
  198. package/lib/core/lifecycle-hooks.d.ts +52 -0
  199. package/lib/core/lifecycle-hooks.d.ts.map +1 -0
  200. package/lib/core/lifecycle-hooks.js +42 -0
  201. package/lib/core/lifecycle-hooks.js.map +1 -0
  202. package/lib/core/mcp-events.d.ts +44 -0
  203. package/lib/core/mcp-events.d.ts.map +1 -0
  204. package/lib/core/mcp-events.js +23 -0
  205. package/lib/core/mcp-events.js.map +1 -0
  206. package/lib/core/model-cli.d.ts +57 -0
  207. package/lib/core/model-cli.d.ts.map +1 -0
  208. package/lib/core/model-cli.js +237 -0
  209. package/lib/core/model-cli.js.map +1 -0
  210. package/lib/core/observer.d.ts +31 -0
  211. package/lib/core/observer.d.ts.map +1 -0
  212. package/lib/core/observer.js +25 -0
  213. package/lib/core/observer.js.map +1 -0
  214. package/lib/core/platform-process.d.ts +33 -0
  215. package/lib/core/platform-process.d.ts.map +1 -0
  216. package/lib/core/platform-process.js +214 -0
  217. package/lib/core/platform-process.js.map +1 -0
  218. package/lib/core/registry.d.ts +22 -0
  219. package/lib/core/registry.d.ts.map +1 -0
  220. package/lib/core/registry.js +45 -0
  221. package/lib/core/registry.js.map +1 -0
  222. package/lib/core/rubric.d.ts +18 -0
  223. package/lib/core/rubric.d.ts.map +1 -0
  224. package/lib/core/rubric.js +49 -0
  225. package/lib/core/rubric.js.map +1 -0
  226. package/lib/core/run.d.ts +419 -0
  227. package/lib/core/run.d.ts.map +1 -0
  228. package/lib/core/run.js +126 -0
  229. package/lib/core/run.js.map +1 -0
  230. package/lib/core/statistics.d.ts +39 -0
  231. package/lib/core/statistics.d.ts.map +1 -0
  232. package/lib/core/statistics.js +163 -0
  233. package/lib/core/statistics.js.map +1 -0
  234. package/lib/core/subject.d.ts +4 -0
  235. package/lib/core/subject.d.ts.map +1 -0
  236. package/lib/core/subject.js +46 -0
  237. package/lib/core/subject.js.map +1 -0
  238. package/lib/core/tool-events.d.ts +69 -0
  239. package/lib/core/tool-events.d.ts.map +1 -0
  240. package/lib/core/tool-events.js +242 -0
  241. package/lib/core/tool-events.js.map +1 -0
  242. package/lib/core/usage.d.ts +78 -0
  243. package/lib/core/usage.d.ts.map +1 -0
  244. package/lib/core/usage.js +104 -0
  245. package/lib/core/usage.js.map +1 -0
  246. package/lib/core/wire.d.ts +83 -0
  247. package/lib/core/wire.d.ts.map +1 -0
  248. package/lib/core/wire.js +101 -0
  249. package/lib/core/wire.js.map +1 -0
  250. package/lib/core/zod.d.ts +10 -0
  251. package/lib/core/zod.d.ts.map +1 -0
  252. package/lib/core/zod.js +18 -0
  253. package/lib/core/zod.js.map +1 -0
  254. package/lib/drivers/claude-code/index.d.ts +55 -0
  255. package/lib/drivers/claude-code/index.d.ts.map +1 -0
  256. package/lib/drivers/claude-code/index.js +779 -0
  257. package/lib/drivers/claude-code/index.js.map +1 -0
  258. package/lib/drivers/claude-code/parse-events.d.ts +46 -0
  259. package/lib/drivers/claude-code/parse-events.d.ts.map +1 -0
  260. package/lib/drivers/claude-code/parse-events.js +387 -0
  261. package/lib/drivers/claude-code/parse-events.js.map +1 -0
  262. package/lib/drivers/codex/app-events.d.ts +16 -0
  263. package/lib/drivers/codex/app-events.d.ts.map +1 -0
  264. package/lib/drivers/codex/app-events.js +184 -0
  265. package/lib/drivers/codex/app-events.js.map +1 -0
  266. package/lib/drivers/codex/config.d.ts +55 -0
  267. package/lib/drivers/codex/config.d.ts.map +1 -0
  268. package/lib/drivers/codex/config.js +125 -0
  269. package/lib/drivers/codex/config.js.map +1 -0
  270. package/lib/drivers/codex/index.d.ts +8 -0
  271. package/lib/drivers/codex/index.d.ts.map +1 -0
  272. package/lib/drivers/codex/index.js +904 -0
  273. package/lib/drivers/codex/index.js.map +1 -0
  274. package/lib/drivers/mcp/index.d.ts +52 -0
  275. package/lib/drivers/mcp/index.d.ts.map +1 -0
  276. package/lib/drivers/mcp/index.js +282 -0
  277. package/lib/drivers/mcp/index.js.map +1 -0
  278. package/lib/drivers/mcp/transport.d.ts +50 -0
  279. package/lib/drivers/mcp/transport.d.ts.map +1 -0
  280. package/lib/drivers/mcp/transport.js +190 -0
  281. package/lib/drivers/mcp/transport.js.map +1 -0
  282. package/lib/drivers/shared/artifacts.d.ts +4 -0
  283. package/lib/drivers/shared/artifacts.d.ts.map +1 -0
  284. package/lib/drivers/shared/artifacts.js +81 -0
  285. package/lib/drivers/shared/artifacts.js.map +1 -0
  286. package/lib/drivers/shared/secure-copy.d.ts +2 -0
  287. package/lib/drivers/shared/secure-copy.d.ts.map +1 -0
  288. package/lib/drivers/shared/secure-copy.js +35 -0
  289. package/lib/drivers/shared/secure-copy.js.map +1 -0
  290. package/lib/drivers/subprocess/index.d.ts +24 -0
  291. package/lib/drivers/subprocess/index.d.ts.map +1 -0
  292. package/lib/drivers/subprocess/index.js +451 -0
  293. package/lib/drivers/subprocess/index.js.map +1 -0
  294. package/lib/index.d.ts +40 -0
  295. package/lib/index.d.ts.map +1 -0
  296. package/lib/index.js +48 -0
  297. package/lib/index.js.map +1 -0
  298. package/lib/optimization/reflective.d.ts +27 -0
  299. package/lib/optimization/reflective.d.ts.map +1 -0
  300. package/lib/optimization/reflective.js +257 -0
  301. package/lib/optimization/reflective.js.map +1 -0
  302. package/lib/orchestrator/annotation-loader.d.ts +65 -0
  303. package/lib/orchestrator/annotation-loader.d.ts.map +1 -0
  304. package/lib/orchestrator/annotation-loader.js +73 -0
  305. package/lib/orchestrator/annotation-loader.js.map +1 -0
  306. package/lib/orchestrator/annotation-store.d.ts +3 -0
  307. package/lib/orchestrator/annotation-store.d.ts.map +1 -0
  308. package/lib/orchestrator/annotation-store.js +100 -0
  309. package/lib/orchestrator/annotation-store.js.map +1 -0
  310. package/lib/orchestrator/authored-dependencies.d.ts +3 -0
  311. package/lib/orchestrator/authored-dependencies.d.ts.map +1 -0
  312. package/lib/orchestrator/authored-dependencies.js +146 -0
  313. package/lib/orchestrator/authored-dependencies.js.map +1 -0
  314. package/lib/orchestrator/campaign-lifecycle.d.ts +105 -0
  315. package/lib/orchestrator/campaign-lifecycle.d.ts.map +1 -0
  316. package/lib/orchestrator/campaign-lifecycle.js +141 -0
  317. package/lib/orchestrator/campaign-lifecycle.js.map +1 -0
  318. package/lib/orchestrator/candidate-integrity.d.ts +4 -0
  319. package/lib/orchestrator/candidate-integrity.d.ts.map +1 -0
  320. package/lib/orchestrator/candidate-integrity.js +14 -0
  321. package/lib/orchestrator/candidate-integrity.js.map +1 -0
  322. package/lib/orchestrator/candidates.d.ts +13 -0
  323. package/lib/orchestrator/candidates.d.ts.map +1 -0
  324. package/lib/orchestrator/candidates.js +577 -0
  325. package/lib/orchestrator/candidates.js.map +1 -0
  326. package/lib/orchestrator/compare.d.ts +80 -0
  327. package/lib/orchestrator/compare.d.ts.map +1 -0
  328. package/lib/orchestrator/compare.js +270 -0
  329. package/lib/orchestrator/compare.js.map +1 -0
  330. package/lib/orchestrator/comparison-identity.d.ts +10 -0
  331. package/lib/orchestrator/comparison-identity.d.ts.map +1 -0
  332. package/lib/orchestrator/comparison-identity.js +39 -0
  333. package/lib/orchestrator/comparison-identity.js.map +1 -0
  334. package/lib/orchestrator/config.d.ts +121 -0
  335. package/lib/orchestrator/config.d.ts.map +1 -0
  336. package/lib/orchestrator/config.js +176 -0
  337. package/lib/orchestrator/config.js.map +1 -0
  338. package/lib/orchestrator/content-bound-json.d.ts +5 -0
  339. package/lib/orchestrator/content-bound-json.d.ts.map +1 -0
  340. package/lib/orchestrator/content-bound-json.js +59 -0
  341. package/lib/orchestrator/content-bound-json.js.map +1 -0
  342. package/lib/orchestrator/discover.d.ts +45 -0
  343. package/lib/orchestrator/discover.d.ts.map +1 -0
  344. package/lib/orchestrator/discover.js +98 -0
  345. package/lib/orchestrator/discover.js.map +1 -0
  346. package/lib/orchestrator/doctor.d.ts +141 -0
  347. package/lib/orchestrator/doctor.d.ts.map +1 -0
  348. package/lib/orchestrator/doctor.js +525 -0
  349. package/lib/orchestrator/doctor.js.map +1 -0
  350. package/lib/orchestrator/driver-session.d.ts +177 -0
  351. package/lib/orchestrator/driver-session.d.ts.map +1 -0
  352. package/lib/orchestrator/driver-session.js +396 -0
  353. package/lib/orchestrator/driver-session.js.map +1 -0
  354. package/lib/orchestrator/evaluator-identity.d.ts +7 -0
  355. package/lib/orchestrator/evaluator-identity.d.ts.map +1 -0
  356. package/lib/orchestrator/evaluator-identity.js +42 -0
  357. package/lib/orchestrator/evaluator-identity.js.map +1 -0
  358. package/lib/orchestrator/experiment-budget.d.ts +11 -0
  359. package/lib/orchestrator/experiment-budget.d.ts.map +1 -0
  360. package/lib/orchestrator/experiment-budget.js +51 -0
  361. package/lib/orchestrator/experiment-budget.js.map +1 -0
  362. package/lib/orchestrator/experiment-context.d.ts +43 -0
  363. package/lib/orchestrator/experiment-context.d.ts.map +1 -0
  364. package/lib/orchestrator/experiment-context.js +9 -0
  365. package/lib/orchestrator/experiment-context.js.map +1 -0
  366. package/lib/orchestrator/experiment-contracts.d.ts +290 -0
  367. package/lib/orchestrator/experiment-contracts.d.ts.map +1 -0
  368. package/lib/orchestrator/experiment-contracts.js +38 -0
  369. package/lib/orchestrator/experiment-contracts.js.map +1 -0
  370. package/lib/orchestrator/experiment-corpus.d.ts +21 -0
  371. package/lib/orchestrator/experiment-corpus.d.ts.map +1 -0
  372. package/lib/orchestrator/experiment-corpus.js +276 -0
  373. package/lib/orchestrator/experiment-corpus.js.map +1 -0
  374. package/lib/orchestrator/experiment-evaluation.d.ts +44 -0
  375. package/lib/orchestrator/experiment-evaluation.d.ts.map +1 -0
  376. package/lib/orchestrator/experiment-evaluation.js +542 -0
  377. package/lib/orchestrator/experiment-evaluation.js.map +1 -0
  378. package/lib/orchestrator/experiment-finish.d.ts +6 -0
  379. package/lib/orchestrator/experiment-finish.d.ts.map +1 -0
  380. package/lib/orchestrator/experiment-finish.js +19 -0
  381. package/lib/orchestrator/experiment-finish.js.map +1 -0
  382. package/lib/orchestrator/experiment-identity.d.ts +6 -0
  383. package/lib/orchestrator/experiment-identity.d.ts.map +1 -0
  384. package/lib/orchestrator/experiment-identity.js +257 -0
  385. package/lib/orchestrator/experiment-identity.js.map +1 -0
  386. package/lib/orchestrator/experiment-loader.d.ts +175 -0
  387. package/lib/orchestrator/experiment-loader.d.ts.map +1 -0
  388. package/lib/orchestrator/experiment-loader.js +77 -0
  389. package/lib/orchestrator/experiment-loader.js.map +1 -0
  390. package/lib/orchestrator/experiment-report.d.ts +450 -0
  391. package/lib/orchestrator/experiment-report.d.ts.map +1 -0
  392. package/lib/orchestrator/experiment-report.js +570 -0
  393. package/lib/orchestrator/experiment-report.js.map +1 -0
  394. package/lib/orchestrator/experiment-runs.d.ts +379 -0
  395. package/lib/orchestrator/experiment-runs.d.ts.map +1 -0
  396. package/lib/orchestrator/experiment-runs.js +796 -0
  397. package/lib/orchestrator/experiment-runs.js.map +1 -0
  398. package/lib/orchestrator/experiment-runtime-identity.d.ts +41 -0
  399. package/lib/orchestrator/experiment-runtime-identity.d.ts.map +1 -0
  400. package/lib/orchestrator/experiment-runtime-identity.js +411 -0
  401. package/lib/orchestrator/experiment-runtime-identity.js.map +1 -0
  402. package/lib/orchestrator/experiment-selection.d.ts +25 -0
  403. package/lib/orchestrator/experiment-selection.d.ts.map +1 -0
  404. package/lib/orchestrator/experiment-selection.js +286 -0
  405. package/lib/orchestrator/experiment-selection.js.map +1 -0
  406. package/lib/orchestrator/experiment.d.ts +11 -0
  407. package/lib/orchestrator/experiment.d.ts.map +1 -0
  408. package/lib/orchestrator/experiment.js +639 -0
  409. package/lib/orchestrator/experiment.js.map +1 -0
  410. package/lib/orchestrator/fixture-identity.d.ts +7 -0
  411. package/lib/orchestrator/fixture-identity.d.ts.map +1 -0
  412. package/lib/orchestrator/fixture-identity.js +55 -0
  413. package/lib/orchestrator/fixture-identity.js.map +1 -0
  414. package/lib/orchestrator/fs-read.d.ts +19 -0
  415. package/lib/orchestrator/fs-read.d.ts.map +1 -0
  416. package/lib/orchestrator/fs-read.js +113 -0
  417. package/lib/orchestrator/fs-read.js.map +1 -0
  418. package/lib/orchestrator/grader-experiment.d.ts +190 -0
  419. package/lib/orchestrator/grader-experiment.d.ts.map +1 -0
  420. package/lib/orchestrator/grader-experiment.js +579 -0
  421. package/lib/orchestrator/grader-experiment.js.map +1 -0
  422. package/lib/orchestrator/grading.d.ts +31 -0
  423. package/lib/orchestrator/grading.d.ts.map +1 -0
  424. package/lib/orchestrator/grading.js +186 -0
  425. package/lib/orchestrator/grading.js.map +1 -0
  426. package/lib/orchestrator/index.d.ts +22 -0
  427. package/lib/orchestrator/index.d.ts.map +1 -0
  428. package/lib/orchestrator/index.js +30 -0
  429. package/lib/orchestrator/index.js.map +1 -0
  430. package/lib/orchestrator/lifecycle-hook-execution.d.ts +4 -0
  431. package/lib/orchestrator/lifecycle-hook-execution.d.ts.map +1 -0
  432. package/lib/orchestrator/lifecycle-hook-execution.js +67 -0
  433. package/lib/orchestrator/lifecycle-hook-execution.js.map +1 -0
  434. package/lib/orchestrator/list-runs.d.ts +33 -0
  435. package/lib/orchestrator/list-runs.d.ts.map +1 -0
  436. package/lib/orchestrator/list-runs.js +308 -0
  437. package/lib/orchestrator/list-runs.js.map +1 -0
  438. package/lib/orchestrator/loader.d.ts +3 -0
  439. package/lib/orchestrator/loader.d.ts.map +1 -0
  440. package/lib/orchestrator/loader.js +17 -0
  441. package/lib/orchestrator/loader.js.map +1 -0
  442. package/lib/orchestrator/optimization-lifecycle.d.ts +12 -0
  443. package/lib/orchestrator/optimization-lifecycle.d.ts.map +1 -0
  444. package/lib/orchestrator/optimization-lifecycle.js +92 -0
  445. package/lib/orchestrator/optimization-lifecycle.js.map +1 -0
  446. package/lib/orchestrator/orchestrator.d.ts +144 -0
  447. package/lib/orchestrator/orchestrator.d.ts.map +1 -0
  448. package/lib/orchestrator/orchestrator.js +632 -0
  449. package/lib/orchestrator/orchestrator.js.map +1 -0
  450. package/lib/orchestrator/owned-lock.d.ts +17 -0
  451. package/lib/orchestrator/owned-lock.d.ts.map +1 -0
  452. package/lib/orchestrator/owned-lock.js +149 -0
  453. package/lib/orchestrator/owned-lock.js.map +1 -0
  454. package/lib/orchestrator/package-version.d.ts +2 -0
  455. package/lib/orchestrator/package-version.d.ts.map +1 -0
  456. package/lib/orchestrator/package-version.js +4 -0
  457. package/lib/orchestrator/package-version.js.map +1 -0
  458. package/lib/orchestrator/provenance.d.ts +5 -0
  459. package/lib/orchestrator/provenance.d.ts.map +1 -0
  460. package/lib/orchestrator/provenance.js +137 -0
  461. package/lib/orchestrator/provenance.js.map +1 -0
  462. package/lib/orchestrator/regrade.d.ts +80 -0
  463. package/lib/orchestrator/regrade.d.ts.map +1 -0
  464. package/lib/orchestrator/regrade.js +433 -0
  465. package/lib/orchestrator/regrade.js.map +1 -0
  466. package/lib/orchestrator/rubric-loader.d.ts +7 -0
  467. package/lib/orchestrator/rubric-loader.d.ts.map +1 -0
  468. package/lib/orchestrator/rubric-loader.js +65 -0
  469. package/lib/orchestrator/rubric-loader.js.map +1 -0
  470. package/lib/orchestrator/run-dir.d.ts +40 -0
  471. package/lib/orchestrator/run-dir.d.ts.map +1 -0
  472. package/lib/orchestrator/run-dir.js +161 -0
  473. package/lib/orchestrator/run-dir.js.map +1 -0
  474. package/lib/orchestrator/run-execution.d.ts +30 -0
  475. package/lib/orchestrator/run-execution.d.ts.map +1 -0
  476. package/lib/orchestrator/run-execution.js +531 -0
  477. package/lib/orchestrator/run-execution.js.map +1 -0
  478. package/lib/orchestrator/run-lifecycle.d.ts +115 -0
  479. package/lib/orchestrator/run-lifecycle.d.ts.map +1 -0
  480. package/lib/orchestrator/run-lifecycle.js +136 -0
  481. package/lib/orchestrator/run-lifecycle.js.map +1 -0
  482. package/lib/orchestrator/suite-compare.d.ts +76 -0
  483. package/lib/orchestrator/suite-compare.d.ts.map +1 -0
  484. package/lib/orchestrator/suite-compare.js +159 -0
  485. package/lib/orchestrator/suite-compare.js.map +1 -0
  486. package/lib/orchestrator/suite-lifecycle.d.ts +157 -0
  487. package/lib/orchestrator/suite-lifecycle.d.ts.map +1 -0
  488. package/lib/orchestrator/suite-lifecycle.js +253 -0
  489. package/lib/orchestrator/suite-lifecycle.js.map +1 -0
  490. package/lib/orchestrator/suite-runs.d.ts +91 -0
  491. package/lib/orchestrator/suite-runs.d.ts.map +1 -0
  492. package/lib/orchestrator/suite-runs.js +157 -0
  493. package/lib/orchestrator/suite-runs.js.map +1 -0
  494. package/lib/orchestrator/suite-summary.d.ts +109 -0
  495. package/lib/orchestrator/suite-summary.d.ts.map +1 -0
  496. package/lib/orchestrator/suite-summary.js +213 -0
  497. package/lib/orchestrator/suite-summary.js.map +1 -0
  498. package/lib/orchestrator/trace-limits.d.ts +20 -0
  499. package/lib/orchestrator/trace-limits.d.ts.map +1 -0
  500. package/lib/orchestrator/trace-limits.js +28 -0
  501. package/lib/orchestrator/trace-limits.js.map +1 -0
  502. package/lib/orchestrator/validate-plugin-config.d.ts +10 -0
  503. package/lib/orchestrator/validate-plugin-config.d.ts.map +1 -0
  504. package/lib/orchestrator/validate-plugin-config.js +26 -0
  505. package/lib/orchestrator/validate-plugin-config.js.map +1 -0
  506. package/package.json +84 -0
  507. package/skills/lux/SKILL.md +85 -0
  508. package/skills/lux/references/cli.md +102 -0
  509. package/skills/lux/references/eval-authoring.md +105 -0
  510. package/skills/lux-answerer/SKILL.md +169 -0
  511. package/src/answerers/claude-code/index.ts +342 -0
  512. package/src/answerers/persona/index.ts +327 -0
  513. package/src/answerers/scripted/index.ts +186 -0
  514. package/src/answerers/shared.ts +23 -0
  515. package/src/answerers/terminal/index.ts +117 -0
  516. package/src/assertions/core/command-exits-zero.ts +94 -0
  517. package/src/assertions/core/event-checks.ts +138 -0
  518. package/src/assertions/core/file-checks.ts +336 -0
  519. package/src/assertions/core/helpers.ts +203 -0
  520. package/src/assertions/core/index.ts +80 -0
  521. package/src/assertions/core/json-pointer-equals.ts +84 -0
  522. package/src/assertions/core/output-checks.ts +134 -0
  523. package/src/assertions/core/predicate.ts +67 -0
  524. package/src/assertions/core/resource-checks.ts +180 -0
  525. package/src/assertions/core/safe-regex.ts +196 -0
  526. package/src/assertions/core/tool-called-with.ts +68 -0
  527. package/src/assertions/core/tool-calls.ts +28 -0
  528. package/src/assertions/core/tool-invocation.ts +198 -0
  529. package/src/assertions/core/tool-result-checks.ts +211 -0
  530. package/src/assertions/mcp/discovery-checks.ts +139 -0
  531. package/src/assertions/mcp/index.ts +37 -0
  532. package/src/assertions/rubric/index.ts +258 -0
  533. package/src/assertions/rubric/internal.ts +367 -0
  534. package/src/authoring.ts +2 -0
  535. package/src/cli/bin.ts +14 -0
  536. package/src/cli/command-runtime.ts +34 -0
  537. package/src/cli/init.ts +410 -0
  538. package/src/cli/program.ts +992 -0
  539. package/src/cli/render/format.ts +69 -0
  540. package/src/cli/render/reporter.ts +643 -0
  541. package/src/cli/render/tty.ts +314 -0
  542. package/src/cli/run-options.ts +82 -0
  543. package/src/cli/skills.ts +129 -0
  544. package/src/core/annotation.ts +104 -0
  545. package/src/core/answerer.ts +75 -0
  546. package/src/core/artifact-evidence.ts +249 -0
  547. package/src/core/artifact-snapshot.ts +429 -0
  548. package/src/core/assertion.ts +156 -0
  549. package/src/core/case.ts +103 -0
  550. package/src/core/conversation-turn.ts +47 -0
  551. package/src/core/driver.ts +75 -0
  552. package/src/core/emitter.ts +38 -0
  553. package/src/core/events.ts +135 -0
  554. package/src/core/exec.ts +263 -0
  555. package/src/core/experiment.ts +467 -0
  556. package/src/core/glob.ts +31 -0
  557. package/src/core/hash.ts +237 -0
  558. package/src/core/index.ts +28 -0
  559. package/src/core/lifecycle-fixtures.ts +145 -0
  560. package/src/core/lifecycle-hooks.ts +101 -0
  561. package/src/core/mcp-events.ts +57 -0
  562. package/src/core/model-cli.ts +271 -0
  563. package/src/core/observer.ts +50 -0
  564. package/src/core/platform-process.ts +284 -0
  565. package/src/core/registry.ts +57 -0
  566. package/src/core/rubric.ts +52 -0
  567. package/src/core/run.ts +144 -0
  568. package/src/core/statistics.ts +194 -0
  569. package/src/core/subject.ts +50 -0
  570. package/src/core/tool-events.ts +292 -0
  571. package/src/core/usage.ts +123 -0
  572. package/src/core/wire.ts +135 -0
  573. package/src/core/zod.ts +20 -0
  574. package/src/drivers/claude-code/index.ts +866 -0
  575. package/src/drivers/claude-code/parse-events.ts +464 -0
  576. package/src/drivers/codex/app-events.ts +218 -0
  577. package/src/drivers/codex/config.ts +128 -0
  578. package/src/drivers/codex/index.ts +995 -0
  579. package/src/drivers/mcp/index.ts +351 -0
  580. package/src/drivers/mcp/transport.ts +222 -0
  581. package/src/drivers/shared/artifacts.ts +86 -0
  582. package/src/drivers/shared/secure-copy.ts +40 -0
  583. package/src/drivers/subprocess/index.ts +490 -0
  584. package/src/index.ts +594 -0
  585. package/src/optimization/reflective.ts +319 -0
  586. package/src/orchestrator/annotation-loader.ts +97 -0
  587. package/src/orchestrator/annotation-store.ts +112 -0
  588. package/src/orchestrator/authored-dependencies.ts +193 -0
  589. package/src/orchestrator/campaign-lifecycle.ts +181 -0
  590. package/src/orchestrator/candidate-integrity.ts +18 -0
  591. package/src/orchestrator/candidates.ts +683 -0
  592. package/src/orchestrator/compare.ts +358 -0
  593. package/src/orchestrator/comparison-identity.ts +45 -0
  594. package/src/orchestrator/config.ts +205 -0
  595. package/src/orchestrator/content-bound-json.ts +71 -0
  596. package/src/orchestrator/discover.ts +132 -0
  597. package/src/orchestrator/doctor.ts +781 -0
  598. package/src/orchestrator/driver-session.ts +507 -0
  599. package/src/orchestrator/evaluator-identity.ts +45 -0
  600. package/src/orchestrator/experiment-budget.ts +61 -0
  601. package/src/orchestrator/experiment-context.ts +41 -0
  602. package/src/orchestrator/experiment-contracts.ts +43 -0
  603. package/src/orchestrator/experiment-corpus.ts +416 -0
  604. package/src/orchestrator/experiment-evaluation.ts +749 -0
  605. package/src/orchestrator/experiment-finish.ts +33 -0
  606. package/src/orchestrator/experiment-identity.ts +356 -0
  607. package/src/orchestrator/experiment-loader.ts +105 -0
  608. package/src/orchestrator/experiment-report.ts +788 -0
  609. package/src/orchestrator/experiment-runs.ts +960 -0
  610. package/src/orchestrator/experiment-runtime-identity.ts +465 -0
  611. package/src/orchestrator/experiment-selection.ts +467 -0
  612. package/src/orchestrator/experiment.ts +991 -0
  613. package/src/orchestrator/fixture-identity.ts +67 -0
  614. package/src/orchestrator/fs-read.ts +126 -0
  615. package/src/orchestrator/grader-experiment.ts +856 -0
  616. package/src/orchestrator/grading.ts +260 -0
  617. package/src/orchestrator/index.ts +186 -0
  618. package/src/orchestrator/lifecycle-hook-execution.ts +90 -0
  619. package/src/orchestrator/list-runs.ts +384 -0
  620. package/src/orchestrator/loader.ts +19 -0
  621. package/src/orchestrator/optimization-lifecycle.ts +126 -0
  622. package/src/orchestrator/orchestrator.ts +919 -0
  623. package/src/orchestrator/owned-lock.ts +147 -0
  624. package/src/orchestrator/package-version.ts +5 -0
  625. package/src/orchestrator/provenance.ts +140 -0
  626. package/src/orchestrator/regrade.ts +580 -0
  627. package/src/orchestrator/rubric-loader.ts +74 -0
  628. package/src/orchestrator/run-dir.ts +209 -0
  629. package/src/orchestrator/run-execution.ts +694 -0
  630. package/src/orchestrator/run-lifecycle.ts +174 -0
  631. package/src/orchestrator/suite-compare.ts +195 -0
  632. package/src/orchestrator/suite-lifecycle.ts +335 -0
  633. package/src/orchestrator/suite-runs.ts +202 -0
  634. package/src/orchestrator/suite-summary.ts +276 -0
  635. package/src/orchestrator/trace-limits.ts +65 -0
  636. package/src/orchestrator/validate-plugin-config.ts +34 -0
@@ -0,0 +1,157 @@
1
+ import { existsSync } from "node:fs";
2
+ import { mkdir, readdir, rename, writeFile } from "node:fs/promises";
3
+ import { basename, join, relative, resolve } from "node:path";
4
+ import { z } from "zod";
5
+ import { safeReadJson } from "./fs-read.js";
6
+ const SUITES_DIR = ".suites";
7
+ const SUITE_FILE = "suite.json";
8
+ const SuiteItemSchema = z.object({
9
+ caseId: z.string(),
10
+ canonicalCaseId: z.string(),
11
+ status: z.enum(["pending", "running", "completed"]),
12
+ runDir: z.string().nullable(),
13
+ exitReason: z.union([z.literal("done"), z.string()]).nullable(),
14
+ casePassed: z.boolean().nullable(),
15
+ errorMessage: z.exactOptional(z.string()),
16
+ });
17
+ export const SuiteRunSchema = z.object({
18
+ schemaVersion: z.literal(1),
19
+ suiteId: z.string(),
20
+ startedAt: z.string(),
21
+ endedAt: z.string().nullable(),
22
+ status: z.enum(["running", "passed", "failed", "aborted"]),
23
+ aborted: z.boolean(),
24
+ concurrency: z.number().int().positive(),
25
+ profileId: z.exactOptional(z.string()),
26
+ experimentId: z.exactOptional(z.string()),
27
+ experimentUnitId: z.exactOptional(z.string()),
28
+ experimentAttemptId: z.exactOptional(z.string()),
29
+ variantId: z.exactOptional(z.string()),
30
+ candidateId: z.exactOptional(z.string()),
31
+ subjectHash: z.exactOptional(z.string()),
32
+ errorMessage: z.exactOptional(z.string()),
33
+ fixtures: z
34
+ .array(z.object({
35
+ name: z.string(),
36
+ pluginVersion: z.string(),
37
+ }))
38
+ .optional(),
39
+ items: z.array(SuiteItemSchema),
40
+ });
41
+ const timestampId = (date) => date.toISOString().replace(/[:.]/g, "-");
42
+ const writeJsonAtomic = async (path, value) => {
43
+ const temporary = `${path}.${process.pid}.tmp`;
44
+ await writeFile(temporary, `${JSON.stringify(value, null, 2)}\n`);
45
+ await rename(temporary, path);
46
+ };
47
+ export const openSuiteRun = async (options) => {
48
+ const startedAt = options.startedAt ?? new Date();
49
+ const suitesRoot = join(resolve(options.runsRoot), SUITES_DIR);
50
+ await mkdir(suitesRoot, { recursive: true });
51
+ const baseId = timestampId(startedAt);
52
+ let suiteId = baseId;
53
+ let path = join(suitesRoot, suiteId);
54
+ for (let n = 2;; n++) {
55
+ try {
56
+ await mkdir(path);
57
+ break;
58
+ }
59
+ catch (err) {
60
+ if (err.code !== "EEXIST")
61
+ throw err;
62
+ suiteId = `${baseId}-${n}`;
63
+ path = join(suitesRoot, suiteId);
64
+ }
65
+ }
66
+ const manifest = {
67
+ schemaVersion: 1,
68
+ suiteId,
69
+ startedAt: startedAt.toISOString(),
70
+ endedAt: null,
71
+ status: "running",
72
+ aborted: false,
73
+ concurrency: options.concurrency,
74
+ ...(options.profileId ? { profileId: options.profileId } : {}),
75
+ ...(options.experimentId ? { experimentId: options.experimentId } : {}),
76
+ ...(options.experimentUnitId ? { experimentUnitId: options.experimentUnitId } : {}),
77
+ ...(options.experimentAttemptId ? { experimentAttemptId: options.experimentAttemptId } : {}),
78
+ ...(options.variantId ? { variantId: options.variantId } : {}),
79
+ ...(options.candidateId ? { candidateId: options.candidateId } : {}),
80
+ ...(options.subjectHash ? { subjectHash: options.subjectHash } : {}),
81
+ ...(options.fixtures && options.fixtures.length > 0 ? { fixtures: options.fixtures } : {}),
82
+ items: options.items.map((item) => ({
83
+ caseId: item.id,
84
+ canonicalCaseId: item.caseId ?? item.id,
85
+ status: "pending",
86
+ runDir: null,
87
+ exitReason: null,
88
+ casePassed: null,
89
+ })),
90
+ };
91
+ const write = () => writeJsonAtomic(join(path, SUITE_FILE), manifest);
92
+ await write();
93
+ return { path, manifest, write, relativeRunDir: (runDir) => relative(path, runDir) };
94
+ };
95
+ export const loadSuiteRun = async (path) => safeReadJson(join(path, SUITE_FILE), SuiteRunSchema);
96
+ export const listSuiteRuns = async (runsRoot) => {
97
+ const root = join(runsRoot, SUITES_DIR);
98
+ if (!existsSync(root))
99
+ return [];
100
+ const dirs = (await readdir(root, { withFileTypes: true }))
101
+ .filter((entry) => entry.isDirectory())
102
+ .map((entry) => join(root, entry.name));
103
+ const manifests = await Promise.all(dirs.map(async (suiteDir) => ({ suiteDir, suite: await loadSuiteRun(suiteDir) })));
104
+ return manifests
105
+ .flatMap(({ suiteDir, suite }) => (suite ? [{ ...suite, suiteDir }] : []))
106
+ .sort((a, b) => b.suiteId.localeCompare(a.suiteId));
107
+ };
108
+ const resolveSuiteRunDir = (suiteDir, runDir) => resolve(suiteDir, runDir);
109
+ export const formatSuiteRunsTable = (suites) => {
110
+ if (suites.length === 0)
111
+ return "(no suite runs found)";
112
+ const rows = [
113
+ ["status", "suite", "cases", "passed", "failed", "ungraded", "pending"],
114
+ ...suites.map((suite) => [
115
+ suite.status.toUpperCase(),
116
+ basename(suite.suiteDir),
117
+ String(suite.items.length),
118
+ String(suite.items.filter((item) => item.casePassed === true).length),
119
+ String(suite.items.filter((item) => item.status === "completed" &&
120
+ (item.exitReason !== "done" || item.casePassed === false)).length),
121
+ String(suite.items.filter((item) => item.status === "completed" && item.exitReason === "done" && item.casePassed === null).length),
122
+ String(suite.items.filter((item) => item.status !== "completed").length),
123
+ ]),
124
+ ];
125
+ const widths = (rows[0] ?? []).map((_, column) => Math.max(...rows.map((row) => row[column]?.length ?? 0)));
126
+ return rows
127
+ .map((row) => row.map((cell, column) => cell.padEnd(widths[column] ?? 0)).join(" "))
128
+ .join("\n");
129
+ };
130
+ export const formatSuiteRunDetail = (suiteDir, suite) => {
131
+ const lines = [
132
+ `suiteDir: ${suiteDir}`,
133
+ `suite: ${suite.suiteId}`,
134
+ `status: ${suite.status}`,
135
+ `started: ${suite.startedAt}`,
136
+ `ended: ${suite.endedAt ?? "—"}`,
137
+ `cases: ${suite.items.length}`,
138
+ ...(suite.errorMessage ? [`error: ${suite.errorMessage}`] : []),
139
+ "",
140
+ ];
141
+ for (const item of suite.items) {
142
+ const status = (() => {
143
+ if (item.status !== "completed")
144
+ return item.status.toUpperCase();
145
+ if (item.exitReason !== "done" || item.casePassed === false)
146
+ return "FAIL";
147
+ if (item.casePassed === true)
148
+ return "PASS";
149
+ return "UNGRADED";
150
+ })();
151
+ lines.push(`${status.padEnd(8)} ${item.caseId}${item.runDir ? ` ${resolveSuiteRunDir(suiteDir, item.runDir)}` : ""}`);
152
+ if (item.errorMessage)
153
+ lines.push(` ${item.errorMessage}`);
154
+ }
155
+ return lines.join("\n");
156
+ };
157
+ //# sourceMappingURL=suite-runs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"suite-runs.js","sourceRoot":"","sources":["../../src/orchestrator/suite-runs.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,109 @@
1
+ import { z } from "zod";
2
+ import type { SuiteCaseResult } from "./orchestrator.js";
3
+ import type { SuiteRun } from "./suite-runs.js";
4
+ export declare const MetricSummarySchema: z.ZodObject<{
5
+ n: z.ZodNumber;
6
+ min: z.ZodNumber;
7
+ max: z.ZodNumber;
8
+ mean: z.ZodNumber;
9
+ median: z.ZodNumber;
10
+ p90: z.ZodNumber;
11
+ }, z.core.$strip>;
12
+ export type MetricSummary = z.infer<typeof MetricSummarySchema>;
13
+ declare const OutcomeSummarySchema: z.ZodObject<{
14
+ attempts: z.ZodNumber;
15
+ completed: z.ZodNumber;
16
+ passed: z.ZodNumber;
17
+ failed: z.ZodNumber;
18
+ ungraded: z.ZodNumber;
19
+ pending: z.ZodNumber;
20
+ passRate: z.ZodNumber;
21
+ }, z.core.$strip>;
22
+ export type OutcomeSummary = z.infer<typeof OutcomeSummarySchema>;
23
+ declare const CaseSummarySchema: z.ZodObject<{
24
+ attempts: z.ZodNumber;
25
+ completed: z.ZodNumber;
26
+ passed: z.ZodNumber;
27
+ failed: z.ZodNumber;
28
+ ungraded: z.ZodNumber;
29
+ pending: z.ZodNumber;
30
+ passRate: z.ZodNumber;
31
+ canonicalCaseId: z.ZodString;
32
+ metrics: z.ZodRecord<z.ZodString, z.ZodObject<{
33
+ n: z.ZodNumber;
34
+ min: z.ZodNumber;
35
+ max: z.ZodNumber;
36
+ mean: z.ZodNumber;
37
+ median: z.ZodNumber;
38
+ p90: z.ZodNumber;
39
+ }, z.core.$strip>>;
40
+ }, z.core.$strip>;
41
+ export type CaseSummary = z.infer<typeof CaseSummarySchema>;
42
+ export declare const SuiteSampleSchema: z.ZodObject<{
43
+ index: z.ZodNumber;
44
+ caseId: z.ZodString;
45
+ canonicalCaseId: z.ZodString;
46
+ exitReason: z.ZodNullable<z.ZodString>;
47
+ passed: z.ZodNullable<z.ZodBoolean>;
48
+ identityHash: z.ZodNullable<z.ZodString>;
49
+ score: z.ZodExactOptional<z.ZodNumber>;
50
+ metrics: z.ZodRecord<z.ZodString, z.ZodNumber>;
51
+ }, z.core.$strip>;
52
+ export type SuiteSample = z.infer<typeof SuiteSampleSchema>;
53
+ export declare const SuiteSummarySchema: z.ZodObject<{
54
+ schemaVersion: z.ZodLiteral<1>;
55
+ suiteId: z.ZodString;
56
+ generatedAt: z.ZodString;
57
+ totals: z.ZodObject<{
58
+ attempts: z.ZodNumber;
59
+ completed: z.ZodNumber;
60
+ passed: z.ZodNumber;
61
+ failed: z.ZodNumber;
62
+ ungraded: z.ZodNumber;
63
+ pending: z.ZodNumber;
64
+ passRate: z.ZodNumber;
65
+ }, z.core.$strip>;
66
+ metrics: z.ZodRecord<z.ZodString, z.ZodObject<{
67
+ n: z.ZodNumber;
68
+ min: z.ZodNumber;
69
+ max: z.ZodNumber;
70
+ mean: z.ZodNumber;
71
+ median: z.ZodNumber;
72
+ p90: z.ZodNumber;
73
+ }, z.core.$strip>>;
74
+ cases: z.ZodArray<z.ZodObject<{
75
+ attempts: z.ZodNumber;
76
+ completed: z.ZodNumber;
77
+ passed: z.ZodNumber;
78
+ failed: z.ZodNumber;
79
+ ungraded: z.ZodNumber;
80
+ pending: z.ZodNumber;
81
+ passRate: z.ZodNumber;
82
+ canonicalCaseId: z.ZodString;
83
+ metrics: z.ZodRecord<z.ZodString, z.ZodObject<{
84
+ n: z.ZodNumber;
85
+ min: z.ZodNumber;
86
+ max: z.ZodNumber;
87
+ mean: z.ZodNumber;
88
+ median: z.ZodNumber;
89
+ p90: z.ZodNumber;
90
+ }, z.core.$strip>>;
91
+ }, z.core.$strip>>;
92
+ samples: z.ZodArray<z.ZodObject<{
93
+ index: z.ZodNumber;
94
+ caseId: z.ZodString;
95
+ canonicalCaseId: z.ZodString;
96
+ exitReason: z.ZodNullable<z.ZodString>;
97
+ passed: z.ZodNullable<z.ZodBoolean>;
98
+ identityHash: z.ZodNullable<z.ZodString>;
99
+ score: z.ZodExactOptional<z.ZodNumber>;
100
+ metrics: z.ZodRecord<z.ZodString, z.ZodNumber>;
101
+ }, z.core.$strip>>;
102
+ }, z.core.$strip>;
103
+ export type SuiteSummary = z.infer<typeof SuiteSummarySchema>;
104
+ export declare const summarizeNumbers: (values: readonly number[]) => MetricSummary;
105
+ export declare const buildSuiteSummary: (suite: SuiteRun, results: readonly (SuiteCaseResult | undefined)[], generatedAt?: Date) => SuiteSummary;
106
+ export declare const writeSuiteSummary: (suiteDir: string, summary: SuiteSummary) => Promise<void>;
107
+ export declare const loadSuiteSummary: (suiteDir: string) => Promise<SuiteSummary | null>;
108
+ export {};
109
+ //# sourceMappingURL=suite-summary.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"suite-summary.d.ts","sourceRoot":"","sources":["../../src/orchestrator/suite-summary.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAIhD,eAAO,MAAM,mBAAmB;;;;;;;iBAO9B,CAAC;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,QAAA,MAAM,oBAAoB;;;;;;;;iBAQxB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;iBAGrB,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,iBAAiB;;;;;;;;;iBAS5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAQ7B,CAAC;AACH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAuF9D,eAAO,MAAM,gBAAgB,WAAY,SAAS,MAAM,EAAE,KAAG,aAe5D,CAAC;AAuCF,eAAO,MAAM,iBAAiB,UACrB,QAAQ,WACN,SAAS,CAAC,eAAe,GAAG,SAAS,CAAC,EAAE,gBACpC,IAAI,KAChB,YA6DF,CAAC;AAEF,eAAO,MAAM,iBAAiB,aAAoB,MAAM,WAAW,YAAY,KAAG,OAAO,CAAC,IAAI,CAK7F,CAAC;AAEF,eAAO,MAAM,gBAAgB,aAAoB,MAAM,KAAG,OAAO,CAAC,YAAY,GAAG,IAAI,CACrB,CAAC"}
@@ -0,0 +1,213 @@
1
+ import { rename, writeFile } from "node:fs/promises";
2
+ import { join } from "node:path";
3
+ import { z } from "zod";
4
+ import { harnessUsage, isUsageEmpty } from "../core/index.js";
5
+ import { runComparisonIdentity } from "./comparison-identity.js";
6
+ import { safeReadJson } from "./fs-read.js";
7
+ const SUMMARY_FILE = "suite-summary.json";
8
+ export const MetricSummarySchema = z.object({
9
+ n: z.number().int().nonnegative(),
10
+ min: z.number(),
11
+ max: z.number(),
12
+ mean: z.number(),
13
+ median: z.number(),
14
+ p90: z.number(),
15
+ });
16
+ const OutcomeSummarySchema = z.object({
17
+ attempts: z.number().int().nonnegative(),
18
+ completed: z.number().int().nonnegative(),
19
+ passed: z.number().int().nonnegative(),
20
+ failed: z.number().int().nonnegative(),
21
+ ungraded: z.number().int().nonnegative(),
22
+ pending: z.number().int().nonnegative(),
23
+ passRate: z.number().min(0).max(1),
24
+ });
25
+ const CaseSummarySchema = OutcomeSummarySchema.extend({
26
+ canonicalCaseId: z.string(),
27
+ metrics: z.record(z.string(), MetricSummarySchema),
28
+ });
29
+ export const SuiteSampleSchema = z.object({
30
+ index: z.number().int().nonnegative(),
31
+ caseId: z.string(),
32
+ canonicalCaseId: z.string(),
33
+ exitReason: z.string().nullable(),
34
+ passed: z.boolean().nullable(),
35
+ identityHash: z.string().nullable(),
36
+ score: z.exactOptional(z.number()),
37
+ metrics: z.record(z.string(), z.number()),
38
+ });
39
+ export const SuiteSummarySchema = z.object({
40
+ schemaVersion: z.literal(1),
41
+ suiteId: z.string(),
42
+ generatedAt: z.string(),
43
+ totals: OutcomeSummarySchema,
44
+ metrics: z.record(z.string(), MetricSummarySchema),
45
+ cases: z.array(CaseSummarySchema),
46
+ samples: z.array(SuiteSampleSchema),
47
+ });
48
+ const add = (samples, name, value) => {
49
+ if (value === undefined || !Number.isFinite(value))
50
+ return;
51
+ const values = samples.get(name) ?? [];
52
+ values.push(value);
53
+ samples.set(name, values);
54
+ };
55
+ const cacheHitRate = (usage) => {
56
+ const promptTokens = usage.input + usage.cacheRead + usage.cacheCreation;
57
+ return promptTokens > 0 ? usage.cacheRead / promptTokens : undefined;
58
+ };
59
+ const collectMetadata = (samples, metadata) => {
60
+ const started = Date.parse(metadata.startedAt);
61
+ const ended = Date.parse(metadata.endedAt);
62
+ if (!Number.isNaN(started) && !Number.isNaN(ended)) {
63
+ add(samples, "durationMs", Math.max(0, ended - started));
64
+ }
65
+ if (!isUsageEmpty(metadata.usage.agent)) {
66
+ add(samples, "agent.input", metadata.usage.agent.input);
67
+ add(samples, "agent.output", metadata.usage.agent.output);
68
+ add(samples, "agent.cacheRead", metadata.usage.agent.cacheRead);
69
+ add(samples, "agent.cacheCreation", metadata.usage.agent.cacheCreation);
70
+ add(samples, "agent.cacheHitRate", cacheHitRate(metadata.usage.agent));
71
+ add(samples, "agent.total", metadata.usage.agent.input +
72
+ metadata.usage.agent.output +
73
+ metadata.usage.agent.cacheRead +
74
+ metadata.usage.agent.cacheCreation);
75
+ }
76
+ const harness = harnessUsage(metadata.usage);
77
+ if (!isUsageEmpty(harness)) {
78
+ add(samples, "harness.input", harness.input);
79
+ add(samples, "harness.output", harness.output);
80
+ add(samples, "harness.cacheRead", harness.cacheRead);
81
+ add(samples, "harness.cacheCreation", harness.cacheCreation);
82
+ add(samples, "harness.cacheHitRate", cacheHitRate(harness));
83
+ add(samples, "harness.total", harness.input + harness.output + harness.cacheRead + harness.cacheCreation);
84
+ }
85
+ add(samples, "interrupts.ask", metadata.interruptCounts.ask);
86
+ add(samples, "interrupts.approve", metadata.interruptCounts.approve);
87
+ add(samples, "interrupts.custom", metadata.interruptCounts.custom);
88
+ add(samples, "toolCalls", metadata.toolOutcomes?.total ?? metadata.toolCallCount);
89
+ add(samples, "toolCalls.reported", metadata.toolOutcomes?.reportedCalls ?? metadata.toolCallCount);
90
+ add(samples, "toolCalls.succeeded", metadata.toolOutcomes?.succeeded);
91
+ add(samples, "toolCalls.failed", metadata.toolOutcomes?.failed);
92
+ add(samples, "toolCalls.unresolved", metadata.toolOutcomes?.unresolved);
93
+ add(samples, "toolCalls.unmatchedResults", metadata.toolOutcomes?.unmatchedResults);
94
+ add(samples, "toolCalls.malformedEvents", metadata.toolOutcomes?.malformedEvents);
95
+ const settledToolCalls = (metadata.toolOutcomes?.succeeded ?? 0) + (metadata.toolOutcomes?.failed ?? 0);
96
+ if (settledToolCalls > 0 && metadata.toolOutcomes) {
97
+ add(samples, "toolCalls.failureRate", metadata.toolOutcomes.failed / settledToolCalls);
98
+ }
99
+ add(samples, "artifacts.count", metadata.artifacts?.count);
100
+ add(samples, "artifacts.bytes", metadata.artifacts?.bytes);
101
+ add(samples, "cost.usd", metadata.cost?.usd);
102
+ add(samples, "phase.agentMs", metadata.phaseDurationMs?.agent);
103
+ add(samples, "phase.collectMs", metadata.phaseDurationMs?.collect);
104
+ add(samples, "phase.gradingMs", metadata.phaseDurationMs?.grading);
105
+ };
106
+ const percentile = (sorted, fraction) => {
107
+ const index = Math.max(0, Math.ceil(sorted.length * fraction) - 1);
108
+ return sorted[index] ?? 0;
109
+ };
110
+ export const summarizeNumbers = (values) => {
111
+ const sorted = [...values].sort((a, b) => a - b);
112
+ const middle = Math.floor(sorted.length / 2);
113
+ const median = sorted.length % 2 === 0
114
+ ? ((sorted[middle - 1] ?? 0) + (sorted[middle] ?? 0)) / 2
115
+ : (sorted[middle] ?? 0);
116
+ return {
117
+ n: sorted.length,
118
+ min: sorted[0] ?? 0,
119
+ max: sorted.at(-1) ?? 0,
120
+ mean: sorted.reduce((sum, value) => sum + value, 0) / Math.max(sorted.length, 1),
121
+ median,
122
+ p90: percentile(sorted, 0.9),
123
+ };
124
+ };
125
+ const summarizeMetrics = (samples) => Object.fromEntries([...samples.entries()]
126
+ .sort(([a], [b]) => a.localeCompare(b))
127
+ .map(([name, values]) => [name, summarizeNumbers(values)]));
128
+ const summarizeOutcomes = (entries) => {
129
+ const completed = entries.filter((entry) => entry.item.status === "completed").length;
130
+ const passed = entries.filter((entry) => entry.result?.casePassed === true).length;
131
+ const failed = entries.filter((entry) => entry.item.status === "completed" &&
132
+ (entry.result?.exitReason !== "done" || entry.result.casePassed === false)).length;
133
+ const ungraded = entries.filter((entry) => entry.item.status === "completed" &&
134
+ entry.result?.exitReason === "done" &&
135
+ entry.result.casePassed === null).length;
136
+ return {
137
+ attempts: entries.length,
138
+ completed,
139
+ passed,
140
+ failed,
141
+ ungraded,
142
+ pending: entries.length - completed,
143
+ passRate: entries.length === 0 ? 0 : passed / entries.length,
144
+ };
145
+ };
146
+ export const buildSuiteSummary = (suite, results, generatedAt = new Date()) => {
147
+ const entries = suite.items.map((item, index) => ({ item, result: results[index] }));
148
+ const allMetrics = new Map();
149
+ for (const entry of entries) {
150
+ const result = entry.result?.result;
151
+ if (!result)
152
+ continue;
153
+ add(allMetrics, "score", result.grading.caseScore ?? undefined);
154
+ collectMetadata(allMetrics, result.metadata);
155
+ }
156
+ const byCase = new Map();
157
+ for (const entry of entries) {
158
+ const group = byCase.get(entry.item.canonicalCaseId) ?? [];
159
+ group.push(entry);
160
+ byCase.set(entry.item.canonicalCaseId, group);
161
+ }
162
+ const cases = [...byCase.entries()]
163
+ .sort(([a], [b]) => a.localeCompare(b))
164
+ .map(([canonicalCaseId, caseEntries]) => {
165
+ const metrics = new Map();
166
+ for (const entry of caseEntries) {
167
+ const result = entry.result?.result;
168
+ if (!result)
169
+ continue;
170
+ add(metrics, "score", result.grading.caseScore ?? undefined);
171
+ collectMetadata(metrics, result.metadata);
172
+ }
173
+ return {
174
+ canonicalCaseId,
175
+ ...summarizeOutcomes(caseEntries),
176
+ metrics: summarizeMetrics(metrics),
177
+ };
178
+ });
179
+ return {
180
+ schemaVersion: 1,
181
+ suiteId: suite.suiteId,
182
+ generatedAt: generatedAt.toISOString(),
183
+ totals: summarizeOutcomes(entries),
184
+ metrics: summarizeMetrics(allMetrics),
185
+ cases,
186
+ samples: entries.map((entry, index) => {
187
+ const samples = new Map();
188
+ const result = entry.result?.result;
189
+ if (result)
190
+ collectMetadata(samples, result.metadata);
191
+ return {
192
+ index,
193
+ caseId: entry.item.caseId,
194
+ canonicalCaseId: entry.item.canonicalCaseId,
195
+ exitReason: entry.result?.exitReason ?? null,
196
+ passed: entry.result?.casePassed ?? null,
197
+ identityHash: result ? runComparisonIdentity(result.metadata) : null,
198
+ ...(result?.grading.caseScore !== null && result?.grading.caseScore !== undefined
199
+ ? { score: result.grading.caseScore }
200
+ : {}),
201
+ metrics: Object.fromEntries([...samples.entries()].map(([name, values]) => [name, values[0] ?? 0])),
202
+ };
203
+ }),
204
+ };
205
+ };
206
+ export const writeSuiteSummary = async (suiteDir, summary) => {
207
+ const path = join(suiteDir, SUMMARY_FILE);
208
+ const temporary = `${path}.${process.pid}.tmp`;
209
+ await writeFile(temporary, `${JSON.stringify(summary, null, 2)}\n`);
210
+ await rename(temporary, path);
211
+ };
212
+ export const loadSuiteSummary = async (suiteDir) => safeReadJson(join(suiteDir, SUMMARY_FILE), SuiteSummarySchema);
213
+ //# sourceMappingURL=suite-summary.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"suite-summary.js","sourceRoot":"","sources":["../../src/orchestrator/suite-summary.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,20 @@
1
+ import type { RunEvent } from "../core/index.js";
2
+ export declare const MAX_RUN_TRACE_BYTES: number;
3
+ export declare const MAX_RUN_TRACE_EVENTS = 50000;
4
+ export type RunTraceLimits = {
5
+ maxBytes: number;
6
+ maxEvents: number;
7
+ };
8
+ export type RunTraceLimitFailure = {
9
+ code: "run-trace-limit";
10
+ limit: "bytes" | "events";
11
+ maxBytes: number;
12
+ maxEvents: number;
13
+ reason: string;
14
+ };
15
+ export declare const isRunTraceLimit: (value: unknown) => value is Pick<RunTraceLimitFailure, "code">;
16
+ export declare const DEFAULT_RUN_TRACE_LIMITS: RunTraceLimits;
17
+ export declare const runTraceLimitFailure: (limit: RunTraceLimitFailure["limit"], limits: RunTraceLimits) => RunTraceLimitFailure;
18
+ export declare const runTraceLimitDiagnostic: (failure: RunTraceLimitFailure, ts?: number) => RunEvent;
19
+ export declare const terminalDiagnosticReserveBytes: (limits: RunTraceLimits) => number;
20
+ //# sourceMappingURL=trace-limits.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trace-limits.d.ts","sourceRoot":"","sources":["../../src/orchestrator/trace-limits.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEjD,eAAO,MAAM,mBAAmB,QAAmB,CAAC;AACpD,eAAO,MAAM,oBAAoB,QAAS,CAAC;AAE3C,MAAM,MAAM,cAAc,GAAG;IAC3B,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IACjC,IAAI,EAAE,iBAAiB,CAAC;IACxB,KAAK,EAAE,OAAO,GAAG,QAAQ,CAAC;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,eAAe,UAAW,OAAO,KAAG,KAAK,IAAI,IAAI,CAAC,oBAAoB,EAAE,MAAM,CAIzD,CAAC;AAEnC,eAAO,MAAM,wBAAwB,EAAE,cAGtC,CAAC;AAEF,eAAO,MAAM,oBAAoB,UACxB,oBAAoB,CAAC,OAAO,CAAC,UAC5B,cAAc,KACrB,oBASD,CAAC;AAEH,eAAO,MAAM,uBAAuB,YACzB,oBAAoB,OACzB,MAAM,KACT,QAKD,CAAC;AAKH,eAAO,MAAM,8BAA8B,WAAY,cAAc,KAAG,MAQrE,CAAC"}
@@ -0,0 +1,28 @@
1
+ export const MAX_RUN_TRACE_BYTES = 10 * 1024 * 1024;
2
+ export const MAX_RUN_TRACE_EVENTS = 50_000;
3
+ export const isRunTraceLimit = (value) => typeof value === "object" &&
4
+ value !== null &&
5
+ "code" in value &&
6
+ value.code === "run-trace-limit";
7
+ export const DEFAULT_RUN_TRACE_LIMITS = {
8
+ maxBytes: MAX_RUN_TRACE_BYTES,
9
+ maxEvents: MAX_RUN_TRACE_EVENTS,
10
+ };
11
+ export const runTraceLimitFailure = (limit, limits) => ({
12
+ code: "run-trace-limit",
13
+ limit,
14
+ maxBytes: limits.maxBytes,
15
+ maxEvents: limits.maxEvents,
16
+ reason: limit === "events"
17
+ ? `run trace exceeded the ${limits.maxEvents}-event limit`
18
+ : `run trace exceeded the ${limits.maxBytes}-byte limit`,
19
+ });
20
+ export const runTraceLimitDiagnostic = (failure, ts = Date.now()) => ({
21
+ type: "error",
22
+ exitReason: "error",
23
+ reason: failure.reason,
24
+ ts,
25
+ });
26
+ const serializedEventBytes = (event) => Buffer.byteLength(`${JSON.stringify(event)}\n`);
27
+ export const terminalDiagnosticReserveBytes = (limits) => Math.max(serializedEventBytes(runTraceLimitDiagnostic(runTraceLimitFailure("bytes", limits), Number.MAX_SAFE_INTEGER)), serializedEventBytes(runTraceLimitDiagnostic(runTraceLimitFailure("events", limits), Number.MAX_SAFE_INTEGER)));
28
+ //# sourceMappingURL=trace-limits.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trace-limits.js","sourceRoot":"","sources":["../../src/orchestrator/trace-limits.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,mBAAmB,GAAG,EAAE,GAAG,IAAI,GAAG,IAAI,CAAC;AACpD,MAAM,CAAC,MAAM,oBAAoB,GAAG,MAAM,CAAC;AAe3C,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,KAAc,EAA+C,EAAE,CAC7F,OAAO,KAAK,KAAK,QAAQ;IACzB,KAAK,KAAK,IAAI;IACd,MAAM,IAAI,KAAK;IACf,KAAK,CAAC,IAAI,KAAK,iBAAiB,CAAC;AAEnC,MAAM,CAAC,MAAM,wBAAwB,GAAmB;IACtD,QAAQ,EAAE,mBAAmB;IAC7B,SAAS,EAAE,oBAAoB;CAChC,CAAC;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAClC,KAAoC,EACpC,MAAsB,EACA,EAAE,CAAC,CAAC;IAC1B,IAAI,EAAE,iBAAiB;IACvB,KAAK;IACL,QAAQ,EAAE,MAAM,CAAC,QAAQ;IACzB,SAAS,EAAE,MAAM,CAAC,SAAS;IAC3B,MAAM,EACJ,KAAK,KAAK,QAAQ;QAChB,CAAC,CAAC,0BAA0B,MAAM,CAAC,SAAS,cAAc;QAC1D,CAAC,CAAC,0BAA0B,MAAM,CAAC,QAAQ,aAAa;CAC7D,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CACrC,OAA6B,EAC7B,EAAE,GAAW,IAAI,CAAC,GAAG,EAAE,EACb,EAAE,CAAC,CAAC;IACd,IAAI,EAAE,OAAO;IACb,UAAU,EAAE,OAAO;IACnB,MAAM,EAAE,OAAO,CAAC,MAAM;IACtB,EAAE;CACH,CAAC,CAAC;AAEH,MAAM,oBAAoB,GAAG,CAAC,KAAe,EAAU,EAAE,CACvD,MAAM,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;AAElD,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,MAAsB,EAAU,EAAE,CAC/E,IAAI,CAAC,GAAG,CACN,oBAAoB,CAClB,uBAAuB,CAAC,oBAAoB,CAAC,OAAO,EAAE,MAAM,CAAC,EAAE,MAAM,CAAC,gBAAgB,CAAC,CACxF,EACD,oBAAoB,CAClB,uBAAuB,CAAC,oBAAoB,CAAC,QAAQ,EAAE,MAAM,CAAC,EAAE,MAAM,CAAC,gBAAgB,CAAC,CACzF,CACF,CAAC"}
@@ -0,0 +1,10 @@
1
+ import type { z } from "zod";
2
+ /**
3
+ * Centralized plugin/assertion config validation. Both the orchestrator
4
+ * (driver/answerer config) and the grader (assertion config) need to
5
+ * validate untrusted config blobs against a plugin-supplied Zod schema
6
+ * with consistent error formatting; this is the one place that does it.
7
+ */
8
+ export declare const validatePluginConfig: (schema: z.ZodTypeAny | undefined, config: unknown, contextLabel: string) => unknown;
9
+ export declare const validatePluginConfigAsync: (schema: z.ZodTypeAny | undefined, config: unknown, contextLabel: string) => Promise<unknown>;
10
+ //# sourceMappingURL=validate-plugin-config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"validate-plugin-config.d.ts","sourceRoot":"","sources":["../../src/orchestrator/validate-plugin-config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAG7B;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,WACvB,CAAC,CAAC,UAAU,GAAG,SAAS,UACxB,OAAO,gBACD,MAAM,KACnB,OAOF,CAAC;AAEF,eAAO,MAAM,yBAAyB,WAC5B,CAAC,CAAC,UAAU,GAAG,SAAS,UACxB,OAAO,gBACD,MAAM,KACnB,OAAO,CAAC,OAAO,CAOjB,CAAC"}
@@ -0,0 +1,26 @@
1
+ import { formatZodIssues } from "../core/index.js";
2
+ /**
3
+ * Centralized plugin/assertion config validation. Both the orchestrator
4
+ * (driver/answerer config) and the grader (assertion config) need to
5
+ * validate untrusted config blobs against a plugin-supplied Zod schema
6
+ * with consistent error formatting; this is the one place that does it.
7
+ */
8
+ export const validatePluginConfig = (schema, config, contextLabel) => {
9
+ if (!schema)
10
+ return config;
11
+ const parsed = schema.safeParse(config ?? {});
12
+ if (!parsed.success) {
13
+ throw new Error(`invalid config for ${contextLabel}: ${formatZodIssues(parsed.error)}`);
14
+ }
15
+ return parsed.data;
16
+ };
17
+ export const validatePluginConfigAsync = async (schema, config, contextLabel) => {
18
+ if (!schema)
19
+ return config;
20
+ const parsed = await schema.safeParseAsync(config ?? {});
21
+ if (!parsed.success) {
22
+ throw new Error(`invalid config for ${contextLabel}: ${formatZodIssues(parsed.error)}`);
23
+ }
24
+ return parsed.data;
25
+ };
26
+ //# sourceMappingURL=validate-plugin-config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"validate-plugin-config.js","sourceRoot":"","sources":["../../src/orchestrator/validate-plugin-config.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAEnD;;;;;GAKG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAClC,MAAgC,EAChC,MAAe,EACf,YAAoB,EACX,EAAE;IACX,IAAI,CAAC,MAAM;QAAE,OAAO,MAAM,CAAC;IAC3B,MAAM,MAAM,GAAG,MAAM,CAAC,SAAS,CAAC,MAAM,IAAI,EAAE,CAAC,CAAC;IAC9C,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;QACpB,MAAM,IAAI,KAAK,CAAC,sBAAsB,YAAY,KAAK,eAAe,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;IAC1F,CAAC;IACD,OAAO,MAAM,CAAC,IAAI,CAAC;AACrB,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,yBAAyB,GAAG,KAAK,EAC5C,MAAgC,EAChC,MAAe,EACf,YAAoB,EACF,EAAE;IACpB,IAAI,CAAC,MAAM;QAAE,OAAO,MAAM,CAAC;IAC3B,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,cAAc,CAAC,MAAM,IAAI,EAAE,CAAC,CAAC;IACzD,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;QACpB,MAAM,IAAI,KAAK,CAAC,sBAAsB,YAAY,KAAK,eAAe,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;IAC1F,CAAC;IACD,OAAO,MAAM,CAAC,IAAI,CAAC;AACrB,CAAC,CAAC"}