create-principles-disciple 1.85.0 → 1.87.0

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 (1338) hide show
  1. package/console/dist/server/index.js +6 -50
  2. package/console/dist/server/models/ActivationsConsoleModel.d.ts +0 -4
  3. package/console/dist/server/models/ActivationsConsoleModel.js +64 -72
  4. package/console/dist/server/models/ApprovalsConsoleModel.d.ts +33 -7
  5. package/console/dist/server/models/ApprovalsConsoleModel.js +203 -57
  6. package/console/dist/server/models/ApprovalsGroupedConsoleModel.d.ts +4 -2
  7. package/console/dist/server/models/ApprovalsGroupedConsoleModel.js +179 -91
  8. package/console/dist/server/models/EvidenceChainConsoleModel.d.ts +4 -28
  9. package/console/dist/server/models/EvidenceChainConsoleModel.js +103 -298
  10. package/console/dist/server/models/GovernanceConsoleModel.d.ts +6 -4
  11. package/console/dist/server/models/GovernanceConsoleModel.js +269 -195
  12. package/console/dist/server/models/PrincipleClassifier.js +1 -1
  13. package/console/dist/server/models/PrincipleTrajectoryModel.d.ts +49 -0
  14. package/console/dist/server/models/PrincipleTrajectoryModel.js +485 -0
  15. package/console/dist/server/routes/approvals.js +65 -2
  16. package/console/dist/server/routes/principles.js +33 -0
  17. package/console/dist/server/routes/update.js +75 -26
  18. package/console/dist/ui/App.js +4 -2
  19. package/console/dist/ui/api.d.ts +6 -11
  20. package/console/dist/ui/api.js +19 -23
  21. package/console/dist/ui/components/focus/daily-thought-card.d.ts +1 -0
  22. package/console/dist/ui/components/focus/daily-thought-card.js +41 -0
  23. package/console/dist/ui/components/layout/app-sidebar.js +6 -4
  24. package/console/dist/ui/components/layout/page-loading.d.ts +13 -0
  25. package/console/dist/ui/components/layout/page-loading.js +14 -0
  26. package/console/dist/ui/components/layout/page-shell.d.ts +1 -0
  27. package/console/dist/ui/components/layout/page-shell.js +2 -1
  28. package/console/dist/ui/components/layout/section-title.js +1 -1
  29. package/console/dist/ui/components/notifications/NotificationProvider.d.ts +14 -0
  30. package/console/dist/ui/components/notifications/NotificationProvider.js +130 -0
  31. package/console/dist/ui/components/notifications/favicon-badge.d.ts +3 -0
  32. package/console/dist/ui/components/notifications/favicon-badge.js +68 -0
  33. package/console/dist/ui/components/notifications/notification-reducer.d.ts +9 -0
  34. package/console/dist/ui/components/notifications/notification-reducer.js +9 -0
  35. package/console/dist/ui/components/notifications/sound-storage.d.ts +3 -0
  36. package/console/dist/ui/components/notifications/sound-storage.js +37 -0
  37. package/console/dist/ui/components/notifications/useNotifications.d.ts +1 -0
  38. package/console/dist/ui/components/notifications/useNotifications.js +9 -0
  39. package/console/dist/ui/components/ui/badge.js +1 -1
  40. package/console/dist/ui/components/ui/button.d.ts +2 -2
  41. package/console/dist/ui/components/ui/button.js +1 -1
  42. package/console/dist/ui/components/ui/card.js +1 -1
  43. package/console/dist/ui/components/ui/input.js +1 -1
  44. package/console/dist/ui/components/ui/sheet.d.ts +1 -1
  45. package/console/dist/ui/data/daily-thoughts.d.ts +15 -0
  46. package/console/dist/ui/data/daily-thoughts.js +164 -0
  47. package/console/dist/ui/hooks/useNotificationSound.d.ts +12 -0
  48. package/console/dist/ui/hooks/useNotificationSound.js +74 -0
  49. package/console/dist/ui/i18n/en.json +94 -12
  50. package/console/dist/ui/i18n/zh-CN.json +94 -12
  51. package/console/dist/ui/pages/activation/ActivationPage.js +8 -15
  52. package/console/dist/ui/pages/control-center/ControlCenterPage.js +11 -9
  53. package/console/dist/ui/pages/focus/FocusPage.d.ts +13 -0
  54. package/console/dist/ui/pages/focus/FocusPage.js +140 -19
  55. package/console/dist/ui/pages/pain/PainPage.js +71 -32
  56. package/console/dist/ui/pages/pain/pain-card-helpers.d.ts +100 -0
  57. package/console/dist/ui/pages/pain/pain-card-helpers.js +103 -0
  58. package/console/dist/ui/pages/principles/PrincipleDetailPage.js +99 -20
  59. package/console/dist/ui/pages/principles/PrinciplesPage.js +8 -8
  60. package/console/dist/ui/pages/report-problem/ReportProblemPage.js +20 -18
  61. package/console/dist/ui/pages/settings/SettingsPage.js +9 -5
  62. package/console/dist/ui/pages/settings/UpdatePage.d.ts +0 -4
  63. package/console/dist/ui/pages/settings/UpdatePage.js +78 -75
  64. package/console/dist/ui/utils/control-center-helpers.d.ts +2 -0
  65. package/console/dist/ui/utils/enum-labels.d.ts +50 -0
  66. package/console/dist/ui/utils/enum-labels.js +164 -0
  67. package/console/dist/ui/utils/validators.d.ts +62 -6
  68. package/console/dist/ui/utils/validators.js +222 -22
  69. package/console/dist/web/assets/app.css +269 -122
  70. package/console/dist/web/assets/app.js +8134 -3177
  71. package/console/package.json +6 -3
  72. package/core/dist/evolution-store.js +0 -2
  73. package/core/dist/evolution-store.js.map +1 -1
  74. package/core/dist/index.d.ts +1 -10
  75. package/core/dist/index.d.ts.map +1 -1
  76. package/core/dist/index.js +1 -7
  77. package/core/dist/index.js.map +1 -1
  78. package/core/dist/io.d.ts +0 -1
  79. package/core/dist/io.d.ts.map +1 -1
  80. package/core/dist/io.js +0 -4
  81. package/core/dist/io.js.map +1 -1
  82. package/core/dist/principle-injector.d.ts +1 -1
  83. package/core/dist/principle-injector.d.ts.map +1 -1
  84. package/core/dist/prompt-builder/__tests__/prompt-builder-core.test.js.map +1 -1
  85. package/core/dist/quality-scorecard/__tests__/quality-scorecard.test.d.ts +2 -0
  86. package/core/dist/quality-scorecard/__tests__/quality-scorecard.test.d.ts.map +1 -0
  87. package/core/dist/quality-scorecard/__tests__/quality-scorecard.test.js +531 -0
  88. package/core/dist/quality-scorecard/__tests__/quality-scorecard.test.js.map +1 -0
  89. package/core/dist/quality-scorecard/index.d.ts +11 -0
  90. package/core/dist/quality-scorecard/index.d.ts.map +1 -0
  91. package/core/dist/quality-scorecard/index.js +4 -0
  92. package/core/dist/quality-scorecard/index.js.map +1 -0
  93. package/core/dist/quality-scorecard/report-generator.d.ts +11 -0
  94. package/core/dist/quality-scorecard/report-generator.d.ts.map +1 -0
  95. package/core/dist/quality-scorecard/report-generator.js +204 -0
  96. package/core/dist/quality-scorecard/report-generator.js.map +1 -0
  97. package/core/dist/quality-scorecard/types.d.ts +106 -0
  98. package/core/dist/quality-scorecard/types.d.ts.map +1 -0
  99. package/core/dist/quality-scorecard/types.js +51 -0
  100. package/core/dist/quality-scorecard/types.js.map +1 -0
  101. package/core/dist/quality-scorecard/validation.d.ts +73 -0
  102. package/core/dist/quality-scorecard/validation.d.ts.map +1 -0
  103. package/core/dist/quality-scorecard/validation.js +251 -0
  104. package/core/dist/quality-scorecard/validation.js.map +1 -0
  105. package/core/dist/runtime-v2/__tests__/activation-types-helpers.test.d.ts +20 -0
  106. package/core/dist/runtime-v2/__tests__/activation-types-helpers.test.d.ts.map +1 -0
  107. package/core/dist/runtime-v2/__tests__/activation-types-helpers.test.js +223 -0
  108. package/core/dist/runtime-v2/__tests__/activation-types-helpers.test.js.map +1 -0
  109. package/core/dist/runtime-v2/__tests__/admission-gate.test.js +56 -3
  110. package/core/dist/runtime-v2/__tests__/admission-gate.test.js.map +1 -1
  111. package/core/dist/runtime-v2/__tests__/adversarial-loop.test.d.ts +2 -0
  112. package/core/dist/runtime-v2/__tests__/adversarial-loop.test.d.ts.map +1 -0
  113. package/core/dist/runtime-v2/__tests__/adversarial-loop.test.js +381 -0
  114. package/core/dist/runtime-v2/__tests__/adversarial-loop.test.js.map +1 -0
  115. package/core/dist/runtime-v2/__tests__/architecture-regression.test.js +175 -83
  116. package/core/dist/runtime-v2/__tests__/architecture-regression.test.js.map +1 -1
  117. package/core/dist/runtime-v2/__tests__/artificer-runner-vslice.test.js +40 -80
  118. package/core/dist/runtime-v2/__tests__/artificer-runner-vslice.test.js.map +1 -1
  119. package/core/dist/runtime-v2/__tests__/attack-e2e-pipeline-smoke.test.js +126 -21
  120. package/core/dist/runtime-v2/__tests__/attack-e2e-pipeline-smoke.test.js.map +1 -1
  121. package/core/dist/runtime-v2/__tests__/build-golden-trace-from-artificer.test.d.ts +2 -0
  122. package/core/dist/runtime-v2/__tests__/build-golden-trace-from-artificer.test.d.ts.map +1 -0
  123. package/core/dist/runtime-v2/__tests__/build-golden-trace-from-artificer.test.js +169 -0
  124. package/core/dist/runtime-v2/__tests__/build-golden-trace-from-artificer.test.js.map +1 -0
  125. package/core/dist/runtime-v2/__tests__/build-l2-principle-reader.test.d.ts +2 -0
  126. package/core/dist/runtime-v2/__tests__/build-l2-principle-reader.test.d.ts.map +1 -0
  127. package/core/dist/runtime-v2/__tests__/build-l2-principle-reader.test.js +200 -0
  128. package/core/dist/runtime-v2/__tests__/build-l2-principle-reader.test.js.map +1 -0
  129. package/core/dist/runtime-v2/__tests__/chain-integrity-real-path.test.js +20 -3
  130. package/core/dist/runtime-v2/__tests__/chain-integrity-real-path.test.js.map +1 -1
  131. package/core/dist/runtime-v2/__tests__/dreamer-output-validator.test.js.map +1 -1
  132. package/core/dist/runtime-v2/__tests__/dreamer-runner-vslice.test.js +12 -0
  133. package/core/dist/runtime-v2/__tests__/dreamer-runner-vslice.test.js.map +1 -1
  134. package/core/dist/runtime-v2/__tests__/dreamer-runner.test.js +10 -5
  135. package/core/dist/runtime-v2/__tests__/dreamer-runner.test.js.map +1 -1
  136. package/core/dist/runtime-v2/__tests__/evaluator-runner-vslice-v2.test.d.ts +2 -0
  137. package/core/dist/runtime-v2/__tests__/evaluator-runner-vslice-v2.test.d.ts.map +1 -0
  138. package/core/dist/runtime-v2/__tests__/evaluator-runner-vslice-v2.test.js +831 -0
  139. package/core/dist/runtime-v2/__tests__/evaluator-runner-vslice-v2.test.js.map +1 -0
  140. package/core/dist/runtime-v2/__tests__/evaluator-runner-vslice.test.js +22 -0
  141. package/core/dist/runtime-v2/__tests__/evaluator-runner-vslice.test.js.map +1 -1
  142. package/core/dist/runtime-v2/__tests__/evidence-chain-contract.test.d.ts +2 -0
  143. package/core/dist/runtime-v2/__tests__/evidence-chain-contract.test.d.ts.map +1 -0
  144. package/core/dist/runtime-v2/__tests__/evidence-chain-contract.test.js +344 -0
  145. package/core/dist/runtime-v2/__tests__/evidence-chain-contract.test.js.map +1 -0
  146. package/core/dist/runtime-v2/__tests__/evidence-guards.test.d.ts +18 -0
  147. package/core/dist/runtime-v2/__tests__/evidence-guards.test.d.ts.map +1 -0
  148. package/core/dist/runtime-v2/__tests__/evidence-guards.test.js +155 -0
  149. package/core/dist/runtime-v2/__tests__/evidence-guards.test.js.map +1 -0
  150. package/core/dist/runtime-v2/__tests__/evidence-sanitizer.test.js +4 -3
  151. package/core/dist/runtime-v2/__tests__/evidence-sanitizer.test.js.map +1 -1
  152. package/core/dist/runtime-v2/__tests__/feedback/privacy-preview.test.js.map +1 -1
  153. package/core/dist/runtime-v2/__tests__/feedback/render-github-url.test.js.map +1 -1
  154. package/core/dist/runtime-v2/__tests__/feedback/render-markdown.test.js.map +1 -1
  155. package/core/dist/runtime-v2/__tests__/fixtures/llm-e2e-config.d.ts.map +1 -1
  156. package/core/dist/runtime-v2/__tests__/fixtures/llm-e2e-config.js +3 -2
  157. package/core/dist/runtime-v2/__tests__/fixtures/llm-e2e-config.js.map +1 -1
  158. package/core/dist/runtime-v2/__tests__/fixtures/llm-e2e-config.test.js +19 -29
  159. package/core/dist/runtime-v2/__tests__/fixtures/llm-e2e-config.test.js.map +1 -1
  160. package/core/dist/runtime-v2/__tests__/full-chain-real-llm.test.js +2 -2
  161. package/core/dist/runtime-v2/__tests__/full-chain-real-llm.test.js.map +1 -1
  162. package/core/dist/runtime-v2/__tests__/golden-path-diagnostician-e2e.test.d.ts +2 -0
  163. package/core/dist/runtime-v2/__tests__/golden-path-diagnostician-e2e.test.d.ts.map +1 -0
  164. package/core/dist/runtime-v2/__tests__/golden-path-diagnostician-e2e.test.js +372 -0
  165. package/core/dist/runtime-v2/__tests__/golden-path-diagnostician-e2e.test.js.map +1 -0
  166. package/core/dist/runtime-v2/__tests__/intake-to-internalization-bridge.test.js +219 -2
  167. package/core/dist/runtime-v2/__tests__/intake-to-internalization-bridge.test.js.map +1 -1
  168. package/core/dist/runtime-v2/__tests__/internalization-chain-integrity-read-model.test.js +96 -0
  169. package/core/dist/runtime-v2/__tests__/internalization-chain-integrity-read-model.test.js.map +1 -1
  170. package/core/dist/runtime-v2/__tests__/internalization-consumer-product-path.test.d.ts +2 -0
  171. package/core/dist/runtime-v2/__tests__/internalization-consumer-product-path.test.d.ts.map +1 -0
  172. package/core/dist/runtime-v2/__tests__/internalization-consumer-product-path.test.js +226 -0
  173. package/core/dist/runtime-v2/__tests__/internalization-consumer-product-path.test.js.map +1 -0
  174. package/core/dist/runtime-v2/__tests__/internalization-failure-persistence.test.d.ts +2 -0
  175. package/core/dist/runtime-v2/__tests__/internalization-failure-persistence.test.d.ts.map +1 -0
  176. package/core/dist/runtime-v2/__tests__/internalization-failure-persistence.test.js +153 -0
  177. package/core/dist/runtime-v2/__tests__/internalization-failure-persistence.test.js.map +1 -0
  178. package/core/dist/runtime-v2/__tests__/internalization-integrity-remediation.test.js +525 -5
  179. package/core/dist/runtime-v2/__tests__/internalization-integrity-remediation.test.js.map +1 -1
  180. package/core/dist/runtime-v2/__tests__/internalization-orchestrator.test.js +1 -3
  181. package/core/dist/runtime-v2/__tests__/internalization-orchestrator.test.js.map +1 -1
  182. package/core/dist/runtime-v2/__tests__/internalization-peer-runner-contracts.test.js +6 -0
  183. package/core/dist/runtime-v2/__tests__/internalization-peer-runner-contracts.test.js.map +1 -1
  184. package/core/dist/runtime-v2/__tests__/internalization-queue-read-model.test.js +0 -1
  185. package/core/dist/runtime-v2/__tests__/internalization-queue-read-model.test.js.map +1 -1
  186. package/core/dist/runtime-v2/__tests__/internalization-state-machine.test.js.map +1 -1
  187. package/core/dist/runtime-v2/__tests__/mainline-contract.test.d.ts +2 -0
  188. package/core/dist/runtime-v2/__tests__/mainline-contract.test.d.ts.map +1 -0
  189. package/core/dist/runtime-v2/__tests__/mainline-contract.test.js +194 -0
  190. package/core/dist/runtime-v2/__tests__/mainline-contract.test.js.map +1 -0
  191. package/core/dist/runtime-v2/__tests__/mainline-product-path.test.d.ts +2 -0
  192. package/core/dist/runtime-v2/__tests__/mainline-product-path.test.d.ts.map +1 -0
  193. package/core/dist/runtime-v2/__tests__/mainline-product-path.test.js +429 -0
  194. package/core/dist/runtime-v2/__tests__/mainline-product-path.test.js.map +1 -0
  195. package/core/dist/runtime-v2/__tests__/pain-chain-read-model.test.js +0 -1
  196. package/core/dist/runtime-v2/__tests__/pain-chain-read-model.test.js.map +1 -1
  197. package/core/dist/runtime-v2/__tests__/pain-evidence-contract.test.js +5 -2
  198. package/core/dist/runtime-v2/__tests__/pain-evidence-contract.test.js.map +1 -1
  199. package/core/dist/runtime-v2/__tests__/pain-signal-bridge-retried.test.js +10 -6
  200. package/core/dist/runtime-v2/__tests__/pain-signal-bridge-retried.test.js.map +1 -1
  201. package/core/dist/runtime-v2/__tests__/pain-signal-bridge-short-circuit.test.d.ts +2 -0
  202. package/core/dist/runtime-v2/__tests__/pain-signal-bridge-short-circuit.test.d.ts.map +1 -0
  203. package/core/dist/runtime-v2/__tests__/pain-signal-bridge-short-circuit.test.js +211 -0
  204. package/core/dist/runtime-v2/__tests__/pain-signal-bridge-short-circuit.test.js.map +1 -0
  205. package/core/dist/runtime-v2/__tests__/pain-signal-bridge-workspace-dir.test.d.ts +2 -0
  206. package/core/dist/runtime-v2/__tests__/pain-signal-bridge-workspace-dir.test.d.ts.map +1 -0
  207. package/core/dist/runtime-v2/__tests__/pain-signal-bridge-workspace-dir.test.js +182 -0
  208. package/core/dist/runtime-v2/__tests__/pain-signal-bridge-workspace-dir.test.js.map +1 -0
  209. package/core/dist/runtime-v2/__tests__/pain-signal-observability.test.js +53 -0
  210. package/core/dist/runtime-v2/__tests__/pain-signal-observability.test.js.map +1 -1
  211. package/core/dist/runtime-v2/__tests__/philosopher-runner-vslice.test.js +4 -0
  212. package/core/dist/runtime-v2/__tests__/philosopher-runner-vslice.test.js.map +1 -1
  213. package/core/dist/runtime-v2/__tests__/pitask-metadata.test.js +5 -1
  214. package/core/dist/runtime-v2/__tests__/pitask-metadata.test.js.map +1 -1
  215. package/core/dist/runtime-v2/__tests__/principle-compiler-core.test.js +85 -7
  216. package/core/dist/runtime-v2/__tests__/principle-compiler-core.test.js.map +1 -1
  217. package/core/dist/runtime-v2/__tests__/proven-channel-baseline.test.js +14 -1
  218. package/core/dist/runtime-v2/__tests__/proven-channel-baseline.test.js.map +1 -1
  219. package/core/dist/runtime-v2/__tests__/pruning-read-model.test.js +11 -6
  220. package/core/dist/runtime-v2/__tests__/pruning-read-model.test.js.map +1 -1
  221. package/core/dist/runtime-v2/__tests__/rollout-reviewer-runner-vslice.test.js +8 -0
  222. package/core/dist/runtime-v2/__tests__/rollout-reviewer-runner-vslice.test.js.map +1 -1
  223. package/core/dist/runtime-v2/__tests__/rulehost-oob-defense-simulation.test.js.map +1 -1
  224. package/core/dist/runtime-v2/__tests__/scribe-runner-vslice.test.js +4 -0
  225. package/core/dist/runtime-v2/__tests__/scribe-runner-vslice.test.js.map +1 -1
  226. package/core/dist/runtime-v2/__tests__/stalled-diagnostician-task.test.d.ts +2 -0
  227. package/core/dist/runtime-v2/__tests__/stalled-diagnostician-task.test.d.ts.map +1 -0
  228. package/core/dist/runtime-v2/__tests__/stalled-diagnostician-task.test.js +168 -0
  229. package/core/dist/runtime-v2/__tests__/stalled-diagnostician-task.test.js.map +1 -0
  230. package/core/dist/runtime-v2/__tests__/task-three-strikes.test.js.map +1 -1
  231. package/core/dist/runtime-v2/__tests__/trace-refiner-agent.test.js.map +1 -1
  232. package/core/dist/runtime-v2/__tests__/trainer-output-validator.test.js.map +1 -1
  233. package/core/dist/runtime-v2/__tests__/trainer-runner-vslice.test.js +8 -0
  234. package/core/dist/runtime-v2/__tests__/trainer-runner-vslice.test.js.map +1 -1
  235. package/core/dist/runtime-v2/activation/__tests__/activation-dispatcher.test.js +7 -1
  236. package/core/dist/runtime-v2/activation/__tests__/activation-dispatcher.test.js.map +1 -1
  237. package/core/dist/runtime-v2/activation/__tests__/approval-completion-service.test.d.ts +21 -0
  238. package/core/dist/runtime-v2/activation/__tests__/approval-completion-service.test.d.ts.map +1 -0
  239. package/core/dist/runtime-v2/activation/__tests__/approval-completion-service.test.js +363 -0
  240. package/core/dist/runtime-v2/activation/__tests__/approval-completion-service.test.js.map +1 -0
  241. package/core/dist/runtime-v2/activation/__tests__/approval-queue.test.d.ts +15 -0
  242. package/core/dist/runtime-v2/activation/__tests__/approval-queue.test.d.ts.map +1 -1
  243. package/core/dist/runtime-v2/activation/__tests__/approval-queue.test.js +339 -164
  244. package/core/dist/runtime-v2/activation/__tests__/approval-queue.test.js.map +1 -1
  245. package/core/dist/runtime-v2/activation/__tests__/approval-store-extended.test.js +0 -1
  246. package/core/dist/runtime-v2/activation/__tests__/approval-store-extended.test.js.map +1 -1
  247. package/core/dist/runtime-v2/activation/__tests__/edit-then-approve.test.d.ts +20 -0
  248. package/core/dist/runtime-v2/activation/__tests__/edit-then-approve.test.d.ts.map +1 -0
  249. package/core/dist/runtime-v2/activation/__tests__/edit-then-approve.test.js +145 -0
  250. package/core/dist/runtime-v2/activation/__tests__/edit-then-approve.test.js.map +1 -0
  251. package/core/dist/runtime-v2/activation/__tests__/low-risk-writers.test.d.ts +21 -0
  252. package/core/dist/runtime-v2/activation/__tests__/low-risk-writers.test.d.ts.map +1 -0
  253. package/core/dist/runtime-v2/activation/__tests__/low-risk-writers.test.js +468 -0
  254. package/core/dist/runtime-v2/activation/__tests__/low-risk-writers.test.js.map +1 -0
  255. package/core/dist/runtime-v2/activation/__tests__/production-gate-deps.test.d.ts +15 -0
  256. package/core/dist/runtime-v2/activation/__tests__/production-gate-deps.test.d.ts.map +1 -0
  257. package/core/dist/runtime-v2/activation/__tests__/production-gate-deps.test.js +272 -0
  258. package/core/dist/runtime-v2/activation/__tests__/production-gate-deps.test.js.map +1 -0
  259. package/core/dist/runtime-v2/activation/__tests__/prompt-activation-reader-contract.test.js +11 -0
  260. package/core/dist/runtime-v2/activation/__tests__/prompt-activation-reader-contract.test.js.map +1 -1
  261. package/core/dist/runtime-v2/activation/__tests__/sqlite-activation-state-store.test.js +54 -1
  262. package/core/dist/runtime-v2/activation/__tests__/sqlite-activation-state-store.test.js.map +1 -1
  263. package/core/dist/runtime-v2/activation/__tests__/story-a-acceptance.test.d.ts +35 -0
  264. package/core/dist/runtime-v2/activation/__tests__/story-a-acceptance.test.d.ts.map +1 -0
  265. package/core/dist/runtime-v2/activation/__tests__/story-a-acceptance.test.js +511 -0
  266. package/core/dist/runtime-v2/activation/__tests__/story-a-acceptance.test.js.map +1 -0
  267. package/core/dist/runtime-v2/activation/activation-dispatcher.d.ts.map +1 -1
  268. package/core/dist/runtime-v2/activation/activation-dispatcher.js +87 -1
  269. package/core/dist/runtime-v2/activation/activation-dispatcher.js.map +1 -1
  270. package/core/dist/runtime-v2/activation/activation-types.d.ts +49 -2
  271. package/core/dist/runtime-v2/activation/activation-types.d.ts.map +1 -1
  272. package/core/dist/runtime-v2/activation/activation-types.js +6 -0
  273. package/core/dist/runtime-v2/activation/activation-types.js.map +1 -1
  274. package/core/dist/runtime-v2/activation/approval-completion-service.d.ts +50 -0
  275. package/core/dist/runtime-v2/activation/approval-completion-service.d.ts.map +1 -0
  276. package/core/dist/runtime-v2/activation/approval-completion-service.js +160 -0
  277. package/core/dist/runtime-v2/activation/approval-completion-service.js.map +1 -0
  278. package/core/dist/runtime-v2/activation/approval-queue.d.ts +7 -1
  279. package/core/dist/runtime-v2/activation/approval-queue.d.ts.map +1 -1
  280. package/core/dist/runtime-v2/activation/approval-queue.js +14 -0
  281. package/core/dist/runtime-v2/activation/approval-queue.js.map +1 -1
  282. package/core/dist/runtime-v2/activation/index.d.ts +5 -2
  283. package/core/dist/runtime-v2/activation/index.d.ts.map +1 -1
  284. package/core/dist/runtime-v2/activation/index.js +8 -1
  285. package/core/dist/runtime-v2/activation/index.js.map +1 -1
  286. package/core/dist/runtime-v2/activation/memory-activation-state-store.d.ts +2 -1
  287. package/core/dist/runtime-v2/activation/memory-activation-state-store.d.ts.map +1 -1
  288. package/core/dist/runtime-v2/activation/memory-activation-state-store.js +11 -2
  289. package/core/dist/runtime-v2/activation/memory-activation-state-store.js.map +1 -1
  290. package/core/dist/runtime-v2/activation/memory-approval-store.d.ts +2 -1
  291. package/core/dist/runtime-v2/activation/memory-approval-store.d.ts.map +1 -1
  292. package/core/dist/runtime-v2/activation/memory-approval-store.js +18 -0
  293. package/core/dist/runtime-v2/activation/memory-approval-store.js.map +1 -1
  294. package/core/dist/runtime-v2/activation/production-gate-deps.d.ts +32 -0
  295. package/core/dist/runtime-v2/activation/production-gate-deps.d.ts.map +1 -0
  296. package/core/dist/runtime-v2/activation/production-gate-deps.js +213 -0
  297. package/core/dist/runtime-v2/activation/production-gate-deps.js.map +1 -0
  298. package/core/dist/runtime-v2/activation/sqlite-activation-state-store.d.ts +2 -1
  299. package/core/dist/runtime-v2/activation/sqlite-activation-state-store.d.ts.map +1 -1
  300. package/core/dist/runtime-v2/activation/sqlite-activation-state-store.js +21 -7
  301. package/core/dist/runtime-v2/activation/sqlite-activation-state-store.js.map +1 -1
  302. package/core/dist/runtime-v2/activation/sqlite-approval-store.d.ts +2 -1
  303. package/core/dist/runtime-v2/activation/sqlite-approval-store.d.ts.map +1 -1
  304. package/core/dist/runtime-v2/activation/sqlite-approval-store.js +24 -0
  305. package/core/dist/runtime-v2/activation/sqlite-approval-store.js.map +1 -1
  306. package/core/dist/runtime-v2/adapter/__tests__/artificer-l2-adapter.test.d.ts +2 -0
  307. package/core/dist/runtime-v2/adapter/__tests__/artificer-l2-adapter.test.d.ts.map +1 -0
  308. package/core/dist/runtime-v2/adapter/__tests__/artificer-l2-adapter.test.js +340 -0
  309. package/core/dist/runtime-v2/adapter/__tests__/artificer-l2-adapter.test.js.map +1 -0
  310. package/core/dist/runtime-v2/adapter/__tests__/l2-agent-loop-adapter.test.d.ts +2 -0
  311. package/core/dist/runtime-v2/adapter/__tests__/l2-agent-loop-adapter.test.d.ts.map +1 -0
  312. package/core/dist/runtime-v2/adapter/__tests__/l2-agent-loop-adapter.test.js +420 -0
  313. package/core/dist/runtime-v2/adapter/__tests__/l2-agent-loop-adapter.test.js.map +1 -0
  314. package/core/dist/runtime-v2/adapter/__tests__/pi-ai-runtime-adapter.test.js +283 -1
  315. package/core/dist/runtime-v2/adapter/__tests__/pi-ai-runtime-adapter.test.js.map +1 -1
  316. package/core/dist/runtime-v2/adapter/__tests__/schema-prompt-adapter.test.js +4 -4
  317. package/core/dist/runtime-v2/adapter/__tests__/schema-prompt-adapter.test.js.map +1 -1
  318. package/core/dist/runtime-v2/adapter/__tests__/structured-output-repair.test.js.map +1 -1
  319. package/core/dist/runtime-v2/adapter/__tests__/test-double-runtime-adapter.test.js +221 -0
  320. package/core/dist/runtime-v2/adapter/__tests__/test-double-runtime-adapter.test.js.map +1 -1
  321. package/core/dist/runtime-v2/adapter/artificer-l2-adapter.d.ts +49 -0
  322. package/core/dist/runtime-v2/adapter/artificer-l2-adapter.d.ts.map +1 -0
  323. package/core/dist/runtime-v2/adapter/artificer-l2-adapter.js +319 -0
  324. package/core/dist/runtime-v2/adapter/artificer-l2-adapter.js.map +1 -0
  325. package/core/dist/runtime-v2/adapter/l2-agent-loop-adapter.d.ts +78 -0
  326. package/core/dist/runtime-v2/adapter/l2-agent-loop-adapter.d.ts.map +1 -0
  327. package/core/dist/runtime-v2/adapter/l2-agent-loop-adapter.js +478 -0
  328. package/core/dist/runtime-v2/adapter/l2-agent-loop-adapter.js.map +1 -0
  329. package/core/dist/runtime-v2/adapter/pi-ai-runtime-adapter.d.ts +6 -0
  330. package/core/dist/runtime-v2/adapter/pi-ai-runtime-adapter.d.ts.map +1 -1
  331. package/core/dist/runtime-v2/adapter/pi-ai-runtime-adapter.js +33 -9
  332. package/core/dist/runtime-v2/adapter/pi-ai-runtime-adapter.js.map +1 -1
  333. package/core/dist/runtime-v2/adapter/structured-output-repair.js +0 -1
  334. package/core/dist/runtime-v2/adapter/structured-output-repair.js.map +1 -1
  335. package/core/dist/runtime-v2/adapter/test-double-runtime-adapter.d.ts +7 -0
  336. package/core/dist/runtime-v2/adapter/test-double-runtime-adapter.d.ts.map +1 -1
  337. package/core/dist/runtime-v2/adapter/test-double-runtime-adapter.js +40 -1
  338. package/core/dist/runtime-v2/adapter/test-double-runtime-adapter.js.map +1 -1
  339. package/core/dist/runtime-v2/admission-gate.d.ts +5 -1
  340. package/core/dist/runtime-v2/admission-gate.d.ts.map +1 -1
  341. package/core/dist/runtime-v2/admission-gate.js +12 -1
  342. package/core/dist/runtime-v2/admission-gate.js.map +1 -1
  343. package/core/dist/runtime-v2/adversarial-loop.d.ts +65 -0
  344. package/core/dist/runtime-v2/adversarial-loop.d.ts.map +1 -0
  345. package/core/dist/runtime-v2/adversarial-loop.js +181 -0
  346. package/core/dist/runtime-v2/adversarial-loop.js.map +1 -0
  347. package/core/dist/runtime-v2/agent-spec.d.ts +1 -1
  348. package/core/dist/runtime-v2/build-l2-principle-reader.d.ts +49 -0
  349. package/core/dist/runtime-v2/build-l2-principle-reader.d.ts.map +1 -0
  350. package/core/dist/runtime-v2/build-l2-principle-reader.js +70 -0
  351. package/core/dist/runtime-v2/build-l2-principle-reader.js.map +1 -0
  352. package/core/dist/runtime-v2/candidate-intake-service.js +0 -1
  353. package/core/dist/runtime-v2/candidate-intake-service.js.map +1 -1
  354. package/core/dist/runtime-v2/cli/diagnose.d.ts +8 -2
  355. package/core/dist/runtime-v2/cli/diagnose.d.ts.map +1 -1
  356. package/core/dist/runtime-v2/cli/diagnose.js +10 -0
  357. package/core/dist/runtime-v2/cli/diagnose.js.map +1 -1
  358. package/core/dist/runtime-v2/config/__tests__/pd-config-contract.test.js +46 -4
  359. package/core/dist/runtime-v2/config/__tests__/pd-config-contract.test.js.map +1 -1
  360. package/core/dist/runtime-v2/config/__tests__/pd-config-redaction-deep.test.js +2 -2
  361. package/core/dist/runtime-v2/config/__tests__/pd-config-redaction-deep.test.js.map +1 -1
  362. package/core/dist/runtime-v2/config/__tests__/pd-config-validation-edge-cases.test.js +1 -1
  363. package/core/dist/runtime-v2/config/__tests__/pd-config-validation-edge-cases.test.js.map +1 -1
  364. package/core/dist/runtime-v2/config/__tests__/pd-config-workspace.test.d.ts +2 -0
  365. package/core/dist/runtime-v2/config/__tests__/pd-config-workspace.test.d.ts.map +1 -0
  366. package/core/dist/runtime-v2/config/__tests__/pd-config-workspace.test.js +154 -0
  367. package/core/dist/runtime-v2/config/__tests__/pd-config-workspace.test.js.map +1 -0
  368. package/core/dist/runtime-v2/config/index.d.ts +1 -1
  369. package/core/dist/runtime-v2/config/index.d.ts.map +1 -1
  370. package/core/dist/runtime-v2/config/index.js.map +1 -1
  371. package/core/dist/runtime-v2/config/pd-config-agent-binding.d.ts +1 -0
  372. package/core/dist/runtime-v2/config/pd-config-agent-binding.d.ts.map +1 -1
  373. package/core/dist/runtime-v2/config/pd-config-agent-binding.js +3 -0
  374. package/core/dist/runtime-v2/config/pd-config-agent-binding.js.map +1 -1
  375. package/core/dist/runtime-v2/config/pd-config-defaults.d.ts.map +1 -1
  376. package/core/dist/runtime-v2/config/pd-config-defaults.js +8 -18
  377. package/core/dist/runtime-v2/config/pd-config-defaults.js.map +1 -1
  378. package/core/dist/runtime-v2/config/pd-config-effective.d.ts.map +1 -1
  379. package/core/dist/runtime-v2/config/pd-config-effective.js +17 -3
  380. package/core/dist/runtime-v2/config/pd-config-effective.js.map +1 -1
  381. package/core/dist/runtime-v2/config/pd-config-feature-flags.d.ts.map +1 -1
  382. package/core/dist/runtime-v2/config/pd-config-feature-flags.js +11 -2
  383. package/core/dist/runtime-v2/config/pd-config-feature-flags.js.map +1 -1
  384. package/core/dist/runtime-v2/config/pd-config-redaction.d.ts.map +1 -1
  385. package/core/dist/runtime-v2/config/pd-config-redaction.js +10 -0
  386. package/core/dist/runtime-v2/config/pd-config-redaction.js.map +1 -1
  387. package/core/dist/runtime-v2/config/pd-config-types.d.ts +23 -1
  388. package/core/dist/runtime-v2/config/pd-config-types.d.ts.map +1 -1
  389. package/core/dist/runtime-v2/config/pd-config-types.js +5 -1
  390. package/core/dist/runtime-v2/config/pd-config-types.js.map +1 -1
  391. package/core/dist/runtime-v2/config/pd-config-validate.d.ts.map +1 -1
  392. package/core/dist/runtime-v2/config/pd-config-validate.js +69 -0
  393. package/core/dist/runtime-v2/config/pd-config-validate.js.map +1 -1
  394. package/core/dist/runtime-v2/context-payload.d.ts +4 -6
  395. package/core/dist/runtime-v2/context-payload.d.ts.map +1 -1
  396. package/core/dist/runtime-v2/context-payload.js +0 -2
  397. package/core/dist/runtime-v2/context-payload.js.map +1 -1
  398. package/core/dist/runtime-v2/core-principles/__tests__/core-axiom-block.test.d.ts +5 -0
  399. package/core/dist/runtime-v2/core-principles/__tests__/core-axiom-block.test.d.ts.map +1 -0
  400. package/core/dist/runtime-v2/core-principles/__tests__/core-axiom-block.test.js +91 -0
  401. package/core/dist/runtime-v2/core-principles/__tests__/core-axiom-block.test.js.map +1 -0
  402. package/core/dist/runtime-v2/core-principles/__tests__/core-principle-registry.test.d.ts +2 -0
  403. package/core/dist/runtime-v2/core-principles/__tests__/core-principle-registry.test.d.ts.map +1 -0
  404. package/core/dist/runtime-v2/core-principles/__tests__/core-principle-registry.test.js +71 -0
  405. package/core/dist/runtime-v2/core-principles/__tests__/core-principle-registry.test.js.map +1 -0
  406. package/core/dist/runtime-v2/core-principles/__tests__/strip-fabricated-ids.test.d.ts +2 -0
  407. package/core/dist/runtime-v2/core-principles/__tests__/strip-fabricated-ids.test.d.ts.map +1 -0
  408. package/core/dist/runtime-v2/core-principles/__tests__/strip-fabricated-ids.test.js +78 -0
  409. package/core/dist/runtime-v2/core-principles/__tests__/strip-fabricated-ids.test.js.map +1 -0
  410. package/core/dist/runtime-v2/core-principles/core-axiom-block.d.ts +67 -0
  411. package/core/dist/runtime-v2/core-principles/core-axiom-block.d.ts.map +1 -0
  412. package/core/dist/runtime-v2/core-principles/core-axiom-block.js +76 -0
  413. package/core/dist/runtime-v2/core-principles/core-axiom-block.js.map +1 -0
  414. package/core/dist/runtime-v2/core-principles/core-principle-registry.d.ts +41 -0
  415. package/core/dist/runtime-v2/core-principles/core-principle-registry.d.ts.map +1 -0
  416. package/core/dist/runtime-v2/core-principles/core-principle-registry.js +112 -0
  417. package/core/dist/runtime-v2/core-principles/core-principle-registry.js.map +1 -0
  418. package/core/dist/runtime-v2/core-principles/index.d.ts +6 -0
  419. package/core/dist/runtime-v2/core-principles/index.d.ts.map +1 -0
  420. package/core/dist/runtime-v2/core-principles/index.js +4 -0
  421. package/core/dist/runtime-v2/core-principles/index.js.map +1 -0
  422. package/core/dist/runtime-v2/core-principles/strip-fabricated-ids.d.ts +15 -0
  423. package/core/dist/runtime-v2/core-principles/strip-fabricated-ids.d.ts.map +1 -0
  424. package/core/dist/runtime-v2/core-principles/strip-fabricated-ids.js +28 -0
  425. package/core/dist/runtime-v2/core-principles/strip-fabricated-ids.js.map +1 -0
  426. package/core/dist/runtime-v2/diagnostician/__tests__/diag-distiller-output.test.d.ts +2 -0
  427. package/core/dist/runtime-v2/diagnostician/__tests__/diag-distiller-output.test.d.ts.map +1 -0
  428. package/core/dist/runtime-v2/diagnostician/__tests__/diag-distiller-output.test.js +45 -0
  429. package/core/dist/runtime-v2/diagnostician/__tests__/diag-distiller-output.test.js.map +1 -0
  430. package/core/dist/runtime-v2/diagnostician/__tests__/diag-rootcause-output.test.d.ts +2 -0
  431. package/core/dist/runtime-v2/diagnostician/__tests__/diag-rootcause-output.test.d.ts.map +1 -0
  432. package/core/dist/runtime-v2/diagnostician/__tests__/diag-rootcause-output.test.js +91 -0
  433. package/core/dist/runtime-v2/diagnostician/__tests__/diag-rootcause-output.test.js.map +1 -0
  434. package/core/dist/runtime-v2/diagnostician/__tests__/distiller-prompt-builder.test.d.ts +2 -0
  435. package/core/dist/runtime-v2/diagnostician/__tests__/distiller-prompt-builder.test.d.ts.map +1 -0
  436. package/core/dist/runtime-v2/diagnostician/__tests__/distiller-prompt-builder.test.js +39 -0
  437. package/core/dist/runtime-v2/diagnostician/__tests__/distiller-prompt-builder.test.js.map +1 -0
  438. package/core/dist/runtime-v2/diagnostician/__tests__/rootcause-prompt-builder.test.d.ts +2 -0
  439. package/core/dist/runtime-v2/diagnostician/__tests__/rootcause-prompt-builder.test.d.ts.map +1 -0
  440. package/core/dist/runtime-v2/diagnostician/__tests__/rootcause-prompt-builder.test.js +34 -0
  441. package/core/dist/runtime-v2/diagnostician/__tests__/rootcause-prompt-builder.test.js.map +1 -0
  442. package/core/dist/runtime-v2/diagnostician/__tests__/router-prompt-builder.test.d.ts +2 -0
  443. package/core/dist/runtime-v2/diagnostician/__tests__/router-prompt-builder.test.d.ts.map +1 -0
  444. package/core/dist/runtime-v2/diagnostician/__tests__/router-prompt-builder.test.js +57 -0
  445. package/core/dist/runtime-v2/diagnostician/__tests__/router-prompt-builder.test.js.map +1 -0
  446. package/core/dist/runtime-v2/diagnostician/diag-distiller-output.d.ts +80 -0
  447. package/core/dist/runtime-v2/diagnostician/diag-distiller-output.d.ts.map +1 -0
  448. package/core/dist/runtime-v2/diagnostician/diag-distiller-output.js +103 -0
  449. package/core/dist/runtime-v2/diagnostician/diag-distiller-output.js.map +1 -0
  450. package/core/dist/runtime-v2/diagnostician/diag-rootcause-output.d.ts +117 -0
  451. package/core/dist/runtime-v2/diagnostician/diag-rootcause-output.d.ts.map +1 -0
  452. package/core/dist/runtime-v2/diagnostician/diag-rootcause-output.js +182 -0
  453. package/core/dist/runtime-v2/diagnostician/diag-rootcause-output.js.map +1 -0
  454. package/core/dist/runtime-v2/diagnostician/distiller-prompt-builder.d.ts +134 -0
  455. package/core/dist/runtime-v2/diagnostician/distiller-prompt-builder.d.ts.map +1 -0
  456. package/core/dist/runtime-v2/diagnostician/distiller-prompt-builder.js +149 -0
  457. package/core/dist/runtime-v2/diagnostician/distiller-prompt-builder.js.map +1 -0
  458. package/core/dist/runtime-v2/diagnostician/rootcause-prompt-builder.d.ts +96 -0
  459. package/core/dist/runtime-v2/diagnostician/rootcause-prompt-builder.d.ts.map +1 -0
  460. package/core/dist/runtime-v2/diagnostician/rootcause-prompt-builder.js +212 -0
  461. package/core/dist/runtime-v2/diagnostician/rootcause-prompt-builder.js.map +1 -0
  462. package/core/dist/runtime-v2/diagnostician/router-prompt-builder.d.ts +127 -0
  463. package/core/dist/runtime-v2/diagnostician/router-prompt-builder.d.ts.map +1 -0
  464. package/core/dist/runtime-v2/diagnostician/router-prompt-builder.js +131 -0
  465. package/core/dist/runtime-v2/diagnostician/router-prompt-builder.js.map +1 -0
  466. package/core/dist/runtime-v2/diagnostician-prompt-builder.d.ts +10 -50
  467. package/core/dist/runtime-v2/diagnostician-prompt-builder.d.ts.map +1 -1
  468. package/core/dist/runtime-v2/diagnostician-prompt-builder.js +0 -148
  469. package/core/dist/runtime-v2/diagnostician-prompt-builder.js.map +1 -1
  470. package/core/dist/runtime-v2/evidence-guards.d.ts +31 -0
  471. package/core/dist/runtime-v2/evidence-guards.d.ts.map +1 -0
  472. package/core/dist/runtime-v2/evidence-guards.js +29 -0
  473. package/core/dist/runtime-v2/evidence-guards.js.map +1 -0
  474. package/core/dist/runtime-v2/feature-flags/__tests__/feature-flag-contract.test.js +106 -7
  475. package/core/dist/runtime-v2/feature-flags/__tests__/feature-flag-contract.test.js.map +1 -1
  476. package/core/dist/runtime-v2/feature-flags/__tests__/plugin-surface-registry.test.js +3 -3
  477. package/core/dist/runtime-v2/feature-flags/__tests__/plugin-surface-registry.test.js.map +1 -1
  478. package/core/dist/runtime-v2/feature-flags/feature-flag-contract.d.ts.map +1 -1
  479. package/core/dist/runtime-v2/feature-flags/feature-flag-contract.js +39 -4
  480. package/core/dist/runtime-v2/feature-flags/feature-flag-contract.js.map +1 -1
  481. package/core/dist/runtime-v2/feature-flags/plugin-surface-registry.d.ts.map +1 -1
  482. package/core/dist/runtime-v2/feature-flags/plugin-surface-registry.js +27 -22
  483. package/core/dist/runtime-v2/feature-flags/plugin-surface-registry.js.map +1 -1
  484. package/core/dist/runtime-v2/feedback/redact-sensitive.js.map +1 -1
  485. package/core/dist/runtime-v2/feedback/safe-stringify.js.map +1 -1
  486. package/core/dist/runtime-v2/full-trace-contract.d.ts +3 -3
  487. package/core/dist/runtime-v2/golden-trace-replay-validator.d.ts +8 -0
  488. package/core/dist/runtime-v2/golden-trace-replay-validator.d.ts.map +1 -1
  489. package/core/dist/runtime-v2/golden-trace-replay-validator.js +3 -3
  490. package/core/dist/runtime-v2/golden-trace-replay-validator.js.map +1 -1
  491. package/core/dist/runtime-v2/golden-trace.d.ts +46 -1
  492. package/core/dist/runtime-v2/golden-trace.d.ts.map +1 -1
  493. package/core/dist/runtime-v2/golden-trace.js +70 -4
  494. package/core/dist/runtime-v2/golden-trace.js.map +1 -1
  495. package/core/dist/runtime-v2/index.d.ts +62 -31
  496. package/core/dist/runtime-v2/index.d.ts.map +1 -1
  497. package/core/dist/runtime-v2/index.js +54 -18
  498. package/core/dist/runtime-v2/index.js.map +1 -1
  499. package/core/dist/runtime-v2/internalization/__tests__/__fixtures__/split-pipeline-mock-outputs.d.ts +25 -0
  500. package/core/dist/runtime-v2/internalization/__tests__/__fixtures__/split-pipeline-mock-outputs.d.ts.map +1 -0
  501. package/core/dist/runtime-v2/internalization/__tests__/__fixtures__/split-pipeline-mock-outputs.js +123 -0
  502. package/core/dist/runtime-v2/internalization/__tests__/__fixtures__/split-pipeline-mock-outputs.js.map +1 -0
  503. package/core/dist/runtime-v2/internalization/__tests__/adversarial-case.test.d.ts +2 -0
  504. package/core/dist/runtime-v2/internalization/__tests__/adversarial-case.test.d.ts.map +1 -0
  505. package/core/dist/runtime-v2/internalization/__tests__/adversarial-case.test.js +139 -0
  506. package/core/dist/runtime-v2/internalization/__tests__/adversarial-case.test.js.map +1 -0
  507. package/core/dist/runtime-v2/internalization/__tests__/adversarial-feedback.test.d.ts +2 -0
  508. package/core/dist/runtime-v2/internalization/__tests__/adversarial-feedback.test.d.ts.map +1 -0
  509. package/core/dist/runtime-v2/internalization/__tests__/adversarial-feedback.test.js +62 -0
  510. package/core/dist/runtime-v2/internalization/__tests__/adversarial-feedback.test.js.map +1 -0
  511. package/core/dist/runtime-v2/internalization/__tests__/artificer-prompt-builder-v2.test.d.ts +2 -0
  512. package/core/dist/runtime-v2/internalization/__tests__/artificer-prompt-builder-v2.test.d.ts.map +1 -0
  513. package/core/dist/runtime-v2/internalization/__tests__/artificer-prompt-builder-v2.test.js +24 -0
  514. package/core/dist/runtime-v2/internalization/__tests__/artificer-prompt-builder-v2.test.js.map +1 -0
  515. package/core/dist/runtime-v2/internalization/__tests__/artificer-prompt-builder.test.js +5 -4
  516. package/core/dist/runtime-v2/internalization/__tests__/artificer-prompt-builder.test.js.map +1 -1
  517. package/core/dist/runtime-v2/internalization/__tests__/artificer-rule-output.test.d.ts +2 -0
  518. package/core/dist/runtime-v2/internalization/__tests__/artificer-rule-output.test.d.ts.map +1 -0
  519. package/core/dist/runtime-v2/internalization/__tests__/artificer-rule-output.test.js +248 -0
  520. package/core/dist/runtime-v2/internalization/__tests__/artificer-rule-output.test.js.map +1 -0
  521. package/core/dist/runtime-v2/internalization/__tests__/diag-chain-e2e.test.d.ts +2 -0
  522. package/core/dist/runtime-v2/internalization/__tests__/diag-chain-e2e.test.d.ts.map +1 -0
  523. package/core/dist/runtime-v2/internalization/__tests__/diag-chain-e2e.test.js +803 -0
  524. package/core/dist/runtime-v2/internalization/__tests__/diag-chain-e2e.test.js.map +1 -0
  525. package/core/dist/runtime-v2/internalization/__tests__/diag-distiller-runner.test.d.ts +2 -0
  526. package/core/dist/runtime-v2/internalization/__tests__/diag-distiller-runner.test.d.ts.map +1 -0
  527. package/core/dist/runtime-v2/internalization/__tests__/diag-distiller-runner.test.js +441 -0
  528. package/core/dist/runtime-v2/internalization/__tests__/diag-distiller-runner.test.js.map +1 -0
  529. package/core/dist/runtime-v2/internalization/__tests__/diag-rootcause-runner.test.d.ts +2 -0
  530. package/core/dist/runtime-v2/internalization/__tests__/diag-rootcause-runner.test.d.ts.map +1 -0
  531. package/core/dist/runtime-v2/internalization/__tests__/diag-rootcause-runner.test.js +340 -0
  532. package/core/dist/runtime-v2/internalization/__tests__/diag-rootcause-runner.test.js.map +1 -0
  533. package/core/dist/runtime-v2/internalization/__tests__/diag-router-runner.test.d.ts +2 -0
  534. package/core/dist/runtime-v2/internalization/__tests__/diag-router-runner.test.d.ts.map +1 -0
  535. package/core/dist/runtime-v2/internalization/__tests__/diag-router-runner.test.js +441 -0
  536. package/core/dist/runtime-v2/internalization/__tests__/diag-router-runner.test.js.map +1 -0
  537. package/core/dist/runtime-v2/internalization/__tests__/evaluator-output-v2.test.d.ts +2 -0
  538. package/core/dist/runtime-v2/internalization/__tests__/evaluator-output-v2.test.d.ts.map +1 -0
  539. package/core/dist/runtime-v2/internalization/__tests__/evaluator-output-v2.test.js +209 -0
  540. package/core/dist/runtime-v2/internalization/__tests__/evaluator-output-v2.test.js.map +1 -0
  541. package/core/dist/runtime-v2/internalization/__tests__/evaluator-prompt-builder-v2.test.d.ts +2 -0
  542. package/core/dist/runtime-v2/internalization/__tests__/evaluator-prompt-builder-v2.test.d.ts.map +1 -0
  543. package/core/dist/runtime-v2/internalization/__tests__/evaluator-prompt-builder-v2.test.js +125 -0
  544. package/core/dist/runtime-v2/internalization/__tests__/evaluator-prompt-builder-v2.test.js.map +1 -0
  545. package/core/dist/runtime-v2/internalization/__tests__/internalization-consumer-decision.test.d.ts +2 -0
  546. package/core/dist/runtime-v2/internalization/__tests__/internalization-consumer-decision.test.d.ts.map +1 -0
  547. package/core/dist/runtime-v2/internalization/__tests__/internalization-consumer-decision.test.js +223 -0
  548. package/core/dist/runtime-v2/internalization/__tests__/internalization-consumer-decision.test.js.map +1 -0
  549. package/core/dist/runtime-v2/internalization/__tests__/philosopher-runner-trust-boundary.test.js +4 -0
  550. package/core/dist/runtime-v2/internalization/__tests__/philosopher-runner-trust-boundary.test.js.map +1 -1
  551. package/core/dist/runtime-v2/internalization/__tests__/refiner-sandbox-wrapper.test.js.map +1 -1
  552. package/core/dist/runtime-v2/internalization/__tests__/rule-code-dialect.test.d.ts +2 -0
  553. package/core/dist/runtime-v2/internalization/__tests__/rule-code-dialect.test.d.ts.map +1 -0
  554. package/core/dist/runtime-v2/internalization/__tests__/rule-code-dialect.test.js +270 -0
  555. package/core/dist/runtime-v2/internalization/__tests__/rule-code-dialect.test.js.map +1 -0
  556. package/core/dist/runtime-v2/internalization/__tests__/rule-host-input-builder.test.d.ts +2 -0
  557. package/core/dist/runtime-v2/internalization/__tests__/rule-host-input-builder.test.d.ts.map +1 -0
  558. package/core/dist/runtime-v2/internalization/__tests__/rule-host-input-builder.test.js +180 -0
  559. package/core/dist/runtime-v2/internalization/__tests__/rule-host-input-builder.test.js.map +1 -0
  560. package/core/dist/runtime-v2/internalization/__tests__/runnerkind-seam.test.d.ts +2 -0
  561. package/core/dist/runtime-v2/internalization/__tests__/runnerkind-seam.test.d.ts.map +1 -0
  562. package/core/dist/runtime-v2/internalization/__tests__/runnerkind-seam.test.js +224 -0
  563. package/core/dist/runtime-v2/internalization/__tests__/runnerkind-seam.test.js.map +1 -0
  564. package/core/dist/runtime-v2/internalization/__tests__/scribe-prompt-builder.test.js +13 -8
  565. package/core/dist/runtime-v2/internalization/__tests__/scribe-prompt-builder.test.js.map +1 -1
  566. package/core/dist/runtime-v2/internalization/__tests__/scribe-prompt-language.test.js +4 -3
  567. package/core/dist/runtime-v2/internalization/__tests__/scribe-prompt-language.test.js.map +1 -1
  568. package/core/dist/runtime-v2/internalization/__tests__/split-diagnostician-runner-retry.test.d.ts +2 -0
  569. package/core/dist/runtime-v2/internalization/__tests__/split-diagnostician-runner-retry.test.d.ts.map +1 -0
  570. package/core/dist/runtime-v2/internalization/__tests__/split-diagnostician-runner-retry.test.js +227 -0
  571. package/core/dist/runtime-v2/internalization/__tests__/split-diagnostician-runner-retry.test.js.map +1 -0
  572. package/core/dist/runtime-v2/internalization/adversarial-case.d.ts +32 -0
  573. package/core/dist/runtime-v2/internalization/adversarial-case.d.ts.map +1 -0
  574. package/core/dist/runtime-v2/internalization/adversarial-case.js +68 -0
  575. package/core/dist/runtime-v2/internalization/adversarial-case.js.map +1 -0
  576. package/core/dist/runtime-v2/internalization/adversarial-feedback.d.ts +23 -0
  577. package/core/dist/runtime-v2/internalization/adversarial-feedback.d.ts.map +1 -0
  578. package/core/dist/runtime-v2/internalization/adversarial-feedback.js +20 -0
  579. package/core/dist/runtime-v2/internalization/adversarial-feedback.js.map +1 -0
  580. package/core/dist/runtime-v2/internalization/artificer-output.d.ts +54 -30
  581. package/core/dist/runtime-v2/internalization/artificer-output.d.ts.map +1 -1
  582. package/core/dist/runtime-v2/internalization/artificer-output.js +144 -36
  583. package/core/dist/runtime-v2/internalization/artificer-output.js.map +1 -1
  584. package/core/dist/runtime-v2/internalization/artificer-prompt-builder.d.ts +10 -2
  585. package/core/dist/runtime-v2/internalization/artificer-prompt-builder.d.ts.map +1 -1
  586. package/core/dist/runtime-v2/internalization/artificer-prompt-builder.js +37 -20
  587. package/core/dist/runtime-v2/internalization/artificer-prompt-builder.js.map +1 -1
  588. package/core/dist/runtime-v2/internalization/artificer-runner.d.ts +19 -9
  589. package/core/dist/runtime-v2/internalization/artificer-runner.d.ts.map +1 -1
  590. package/core/dist/runtime-v2/internalization/artificer-runner.js +21 -9
  591. package/core/dist/runtime-v2/internalization/artificer-runner.js.map +1 -1
  592. package/core/dist/runtime-v2/internalization/correction-proposal.d.ts.map +1 -1
  593. package/core/dist/runtime-v2/internalization/correction-proposal.js +27 -16
  594. package/core/dist/runtime-v2/internalization/correction-proposal.js.map +1 -1
  595. package/core/dist/runtime-v2/internalization/diag-distiller-runner.d.ts +83 -0
  596. package/core/dist/runtime-v2/internalization/diag-distiller-runner.d.ts.map +1 -0
  597. package/core/dist/runtime-v2/internalization/diag-distiller-runner.js +274 -0
  598. package/core/dist/runtime-v2/internalization/diag-distiller-runner.js.map +1 -0
  599. package/core/dist/runtime-v2/internalization/diag-rootcause-runner.d.ts +73 -0
  600. package/core/dist/runtime-v2/internalization/diag-rootcause-runner.d.ts.map +1 -0
  601. package/core/dist/runtime-v2/internalization/diag-rootcause-runner.js +229 -0
  602. package/core/dist/runtime-v2/internalization/diag-rootcause-runner.js.map +1 -0
  603. package/core/dist/runtime-v2/internalization/diag-router-runner.d.ts +85 -0
  604. package/core/dist/runtime-v2/internalization/diag-router-runner.d.ts.map +1 -0
  605. package/core/dist/runtime-v2/internalization/diag-router-runner.js +353 -0
  606. package/core/dist/runtime-v2/internalization/diag-router-runner.js.map +1 -0
  607. package/core/dist/runtime-v2/internalization/dreamer-prompt-builder.d.ts +19 -1
  608. package/core/dist/runtime-v2/internalization/dreamer-prompt-builder.d.ts.map +1 -1
  609. package/core/dist/runtime-v2/internalization/dreamer-prompt-builder.js +48 -8
  610. package/core/dist/runtime-v2/internalization/dreamer-prompt-builder.js.map +1 -1
  611. package/core/dist/runtime-v2/internalization/dreamer-runner.d.ts +7 -1
  612. package/core/dist/runtime-v2/internalization/dreamer-runner.d.ts.map +1 -1
  613. package/core/dist/runtime-v2/internalization/dreamer-runner.js +13 -3
  614. package/core/dist/runtime-v2/internalization/dreamer-runner.js.map +1 -1
  615. package/core/dist/runtime-v2/internalization/evaluator-output.d.ts +63 -0
  616. package/core/dist/runtime-v2/internalization/evaluator-output.d.ts.map +1 -1
  617. package/core/dist/runtime-v2/internalization/evaluator-output.js +158 -0
  618. package/core/dist/runtime-v2/internalization/evaluator-output.js.map +1 -1
  619. package/core/dist/runtime-v2/internalization/evaluator-prompt-builder.d.ts +8 -1
  620. package/core/dist/runtime-v2/internalization/evaluator-prompt-builder.d.ts.map +1 -1
  621. package/core/dist/runtime-v2/internalization/evaluator-prompt-builder.js +17 -4
  622. package/core/dist/runtime-v2/internalization/evaluator-prompt-builder.js.map +1 -1
  623. package/core/dist/runtime-v2/internalization/evaluator-runner.d.ts +114 -4
  624. package/core/dist/runtime-v2/internalization/evaluator-runner.d.ts.map +1 -1
  625. package/core/dist/runtime-v2/internalization/evaluator-runner.js +629 -7
  626. package/core/dist/runtime-v2/internalization/evaluator-runner.js.map +1 -1
  627. package/core/dist/runtime-v2/internalization/golden-dogfood-fixtures.d.ts +17 -0
  628. package/core/dist/runtime-v2/internalization/golden-dogfood-fixtures.d.ts.map +1 -0
  629. package/core/dist/runtime-v2/internalization/golden-dogfood-fixtures.js +451 -0
  630. package/core/dist/runtime-v2/internalization/golden-dogfood-fixtures.js.map +1 -0
  631. package/core/dist/runtime-v2/internalization/index.d.ts +21 -9
  632. package/core/dist/runtime-v2/internalization/index.d.ts.map +1 -1
  633. package/core/dist/runtime-v2/internalization/index.js +16 -6
  634. package/core/dist/runtime-v2/internalization/index.js.map +1 -1
  635. package/core/dist/runtime-v2/internalization/intake-to-internalization-bridge.d.ts +25 -0
  636. package/core/dist/runtime-v2/internalization/intake-to-internalization-bridge.d.ts.map +1 -1
  637. package/core/dist/runtime-v2/internalization/intake-to-internalization-bridge.js +67 -12
  638. package/core/dist/runtime-v2/internalization/intake-to-internalization-bridge.js.map +1 -1
  639. package/core/dist/runtime-v2/internalization/internalization-consumer-decision.d.ts +17 -0
  640. package/core/dist/runtime-v2/internalization/internalization-consumer-decision.d.ts.map +1 -0
  641. package/core/dist/runtime-v2/internalization/internalization-consumer-decision.js +28 -0
  642. package/core/dist/runtime-v2/internalization/internalization-consumer-decision.js.map +1 -0
  643. package/core/dist/runtime-v2/internalization/internalization-job-graph.d.ts +14 -1
  644. package/core/dist/runtime-v2/internalization/internalization-job-graph.d.ts.map +1 -1
  645. package/core/dist/runtime-v2/internalization/internalization-job-graph.js +22 -0
  646. package/core/dist/runtime-v2/internalization/internalization-job-graph.js.map +1 -1
  647. package/core/dist/runtime-v2/internalization/internalization-orchestrator.d.ts +9 -9
  648. package/core/dist/runtime-v2/internalization/internalization-orchestrator.d.ts.map +1 -1
  649. package/core/dist/runtime-v2/internalization/internalization-orchestrator.js +32 -9
  650. package/core/dist/runtime-v2/internalization/internalization-orchestrator.js.map +1 -1
  651. package/core/dist/runtime-v2/internalization/internalization-state-machine.d.ts +2 -2
  652. package/core/dist/runtime-v2/internalization/internalization-state-machine.d.ts.map +1 -1
  653. package/core/dist/runtime-v2/internalization/internalization-state-machine.js +35 -4
  654. package/core/dist/runtime-v2/internalization/internalization-state-machine.js.map +1 -1
  655. package/core/dist/runtime-v2/internalization/peer-runner-contracts.d.ts +31 -4
  656. package/core/dist/runtime-v2/internalization/peer-runner-contracts.d.ts.map +1 -1
  657. package/core/dist/runtime-v2/internalization/peer-runner-contracts.js +42 -12
  658. package/core/dist/runtime-v2/internalization/peer-runner-contracts.js.map +1 -1
  659. package/core/dist/runtime-v2/internalization/philosopher-prompt-builder.d.ts +20 -1
  660. package/core/dist/runtime-v2/internalization/philosopher-prompt-builder.d.ts.map +1 -1
  661. package/core/dist/runtime-v2/internalization/philosopher-prompt-builder.js +47 -6
  662. package/core/dist/runtime-v2/internalization/philosopher-prompt-builder.js.map +1 -1
  663. package/core/dist/runtime-v2/internalization/philosopher-runner.d.ts +6 -1
  664. package/core/dist/runtime-v2/internalization/philosopher-runner.d.ts.map +1 -1
  665. package/core/dist/runtime-v2/internalization/philosopher-runner.js +10 -3
  666. package/core/dist/runtime-v2/internalization/philosopher-runner.js.map +1 -1
  667. package/core/dist/runtime-v2/internalization/pitask-metadata.d.ts +9 -2
  668. package/core/dist/runtime-v2/internalization/pitask-metadata.d.ts.map +1 -1
  669. package/core/dist/runtime-v2/internalization/pitask-metadata.js +22 -11
  670. package/core/dist/runtime-v2/internalization/pitask-metadata.js.map +1 -1
  671. package/core/dist/runtime-v2/internalization/prompt-serializer.d.ts +3 -0
  672. package/core/dist/runtime-v2/internalization/prompt-serializer.d.ts.map +1 -0
  673. package/core/dist/runtime-v2/internalization/prompt-serializer.js +22 -0
  674. package/core/dist/runtime-v2/internalization/prompt-serializer.js.map +1 -0
  675. package/core/dist/runtime-v2/internalization/queue-actionability.d.ts +3 -3
  676. package/core/dist/runtime-v2/internalization/queue-actionability.d.ts.map +1 -1
  677. package/core/dist/runtime-v2/internalization/refiner-sandbox-wrapper.d.ts.map +1 -1
  678. package/core/dist/runtime-v2/internalization/refiner-sandbox-wrapper.js +16 -1
  679. package/core/dist/runtime-v2/internalization/refiner-sandbox-wrapper.js.map +1 -1
  680. package/core/dist/runtime-v2/internalization/rollout-reviewer-prompt-builder.d.ts +1 -1
  681. package/core/dist/runtime-v2/internalization/rollout-reviewer-prompt-builder.d.ts.map +1 -1
  682. package/core/dist/runtime-v2/internalization/rollout-reviewer-prompt-builder.js +2 -2
  683. package/core/dist/runtime-v2/internalization/rule-code-validator.d.ts +29 -0
  684. package/core/dist/runtime-v2/internalization/rule-code-validator.d.ts.map +1 -1
  685. package/core/dist/runtime-v2/internalization/rule-code-validator.js +87 -1
  686. package/core/dist/runtime-v2/internalization/rule-code-validator.js.map +1 -1
  687. package/core/dist/runtime-v2/internalization/rule-host-evaluator.d.ts +1 -0
  688. package/core/dist/runtime-v2/internalization/rule-host-evaluator.d.ts.map +1 -1
  689. package/core/dist/runtime-v2/internalization/rule-host-evaluator.js +15 -1
  690. package/core/dist/runtime-v2/internalization/rule-host-evaluator.js.map +1 -1
  691. package/core/dist/runtime-v2/internalization/rule-host-input-builder.d.ts +62 -0
  692. package/core/dist/runtime-v2/internalization/rule-host-input-builder.d.ts.map +1 -0
  693. package/core/dist/runtime-v2/internalization/rule-host-input-builder.js +182 -0
  694. package/core/dist/runtime-v2/internalization/rule-host-input-builder.js.map +1 -0
  695. package/core/dist/runtime-v2/internalization/rule-host-validator.d.ts +37 -0
  696. package/core/dist/runtime-v2/internalization/rule-host-validator.d.ts.map +1 -0
  697. package/core/dist/runtime-v2/internalization/rule-host-validator.js +154 -0
  698. package/core/dist/runtime-v2/internalization/rule-host-validator.js.map +1 -0
  699. package/core/dist/runtime-v2/internalization/scribe-prompt-builder.d.ts +20 -6
  700. package/core/dist/runtime-v2/internalization/scribe-prompt-builder.d.ts.map +1 -1
  701. package/core/dist/runtime-v2/internalization/scribe-prompt-builder.js +31 -15
  702. package/core/dist/runtime-v2/internalization/scribe-prompt-builder.js.map +1 -1
  703. package/core/dist/runtime-v2/internalization/scribe-runner.d.ts +6 -1
  704. package/core/dist/runtime-v2/internalization/scribe-runner.d.ts.map +1 -1
  705. package/core/dist/runtime-v2/internalization/scribe-runner.js +10 -3
  706. package/core/dist/runtime-v2/internalization/scribe-runner.js.map +1 -1
  707. package/core/dist/runtime-v2/internalization/split-diagnostician-runner.d.ts +103 -0
  708. package/core/dist/runtime-v2/internalization/split-diagnostician-runner.d.ts.map +1 -0
  709. package/core/dist/runtime-v2/internalization/split-diagnostician-runner.js +286 -0
  710. package/core/dist/runtime-v2/internalization/split-diagnostician-runner.js.map +1 -0
  711. package/core/dist/runtime-v2/internalization/template-generator.d.ts +7 -2
  712. package/core/dist/runtime-v2/internalization/template-generator.d.ts.map +1 -1
  713. package/core/dist/runtime-v2/internalization/template-generator.js +10 -5
  714. package/core/dist/runtime-v2/internalization/template-generator.js.map +1 -1
  715. package/core/dist/runtime-v2/internalization/trainer-prompt-builder.d.ts +1 -1
  716. package/core/dist/runtime-v2/internalization/trainer-prompt-builder.d.ts.map +1 -1
  717. package/core/dist/runtime-v2/internalization/trainer-prompt-builder.js +2 -2
  718. package/core/dist/runtime-v2/internalization-chain-integrity-read-model.d.ts +5 -0
  719. package/core/dist/runtime-v2/internalization-chain-integrity-read-model.d.ts.map +1 -1
  720. package/core/dist/runtime-v2/internalization-chain-integrity-read-model.js +48 -2
  721. package/core/dist/runtime-v2/internalization-chain-integrity-read-model.js.map +1 -1
  722. package/core/dist/runtime-v2/internalization-integrity-remediation.d.ts +67 -0
  723. package/core/dist/runtime-v2/internalization-integrity-remediation.d.ts.map +1 -1
  724. package/core/dist/runtime-v2/internalization-integrity-remediation.js +802 -0
  725. package/core/dist/runtime-v2/internalization-integrity-remediation.js.map +1 -1
  726. package/core/dist/runtime-v2/internalization-queue-read-model.d.ts +7 -7
  727. package/core/dist/runtime-v2/internalization-queue-read-model.d.ts.map +1 -1
  728. package/core/dist/runtime-v2/internalization-queue-read-model.js +4 -4
  729. package/core/dist/runtime-v2/internalization-queue-read-model.js.map +1 -1
  730. package/core/dist/runtime-v2/mainline-contract.d.ts +138 -0
  731. package/core/dist/runtime-v2/mainline-contract.d.ts.map +1 -0
  732. package/core/dist/runtime-v2/mainline-contract.js +224 -0
  733. package/core/dist/runtime-v2/mainline-contract.js.map +1 -0
  734. package/core/dist/runtime-v2/observer/__tests__/empathy-observer.real-e2e.test.js +29 -22
  735. package/core/dist/runtime-v2/observer/__tests__/empathy-observer.real-e2e.test.js.map +1 -1
  736. package/core/dist/runtime-v2/observer/agent-scheduler.js.map +1 -1
  737. package/core/dist/runtime-v2/observer/empathy-observer.js +1 -1
  738. package/core/dist/runtime-v2/observer/empathy-observer.js.map +1 -1
  739. package/core/dist/runtime-v2/pain-signal-bridge.d.ts +36 -4
  740. package/core/dist/runtime-v2/pain-signal-bridge.d.ts.map +1 -1
  741. package/core/dist/runtime-v2/pain-signal-bridge.js +81 -37
  742. package/core/dist/runtime-v2/pain-signal-bridge.js.map +1 -1
  743. package/core/dist/runtime-v2/pain-signal-observability.d.ts +4 -0
  744. package/core/dist/runtime-v2/pain-signal-observability.d.ts.map +1 -1
  745. package/core/dist/runtime-v2/pain-signal-observability.js +58 -8
  746. package/core/dist/runtime-v2/pain-signal-observability.js.map +1 -1
  747. package/core/dist/runtime-v2/pain-signal-runtime-factory.d.ts +20 -1
  748. package/core/dist/runtime-v2/pain-signal-runtime-factory.d.ts.map +1 -1
  749. package/core/dist/runtime-v2/pain-signal-runtime-factory.js +80 -23
  750. package/core/dist/runtime-v2/pain-signal-runtime-factory.js.map +1 -1
  751. package/core/dist/runtime-v2/pain-to-principle-service.d.ts +5 -1
  752. package/core/dist/runtime-v2/pain-to-principle-service.d.ts.map +1 -1
  753. package/core/dist/runtime-v2/pain-to-principle-service.js +39 -0
  754. package/core/dist/runtime-v2/pain-to-principle-service.js.map +1 -1
  755. package/core/dist/runtime-v2/proven-channel-baseline.d.ts.map +1 -1
  756. package/core/dist/runtime-v2/proven-channel-baseline.js +14 -0
  757. package/core/dist/runtime-v2/proven-channel-baseline.js.map +1 -1
  758. package/core/dist/runtime-v2/recovery-sweep-service.d.ts +18 -0
  759. package/core/dist/runtime-v2/recovery-sweep-service.d.ts.map +1 -1
  760. package/core/dist/runtime-v2/recovery-sweep-service.js +46 -0
  761. package/core/dist/runtime-v2/recovery-sweep-service.js.map +1 -1
  762. package/core/dist/runtime-v2/runner/__tests__/base-peer-runner-trust-boundary.test.js +11 -2
  763. package/core/dist/runtime-v2/runner/__tests__/base-peer-runner-trust-boundary.test.js.map +1 -1
  764. package/core/dist/runtime-v2/runner/__tests__/diagnose.test.js.map +1 -1
  765. package/core/dist/runtime-v2/runner/__tests__/pain-signal-bridge-admission.test.js +6 -0
  766. package/core/dist/runtime-v2/runner/__tests__/pain-signal-bridge-admission.test.js.map +1 -1
  767. package/core/dist/runtime-v2/runner/__tests__/pain-signal-bridge.test.js.map +1 -1
  768. package/core/dist/runtime-v2/runner/base-peer-runner.d.ts +10 -3
  769. package/core/dist/runtime-v2/runner/base-peer-runner.d.ts.map +1 -1
  770. package/core/dist/runtime-v2/runner/base-peer-runner.js +58 -15
  771. package/core/dist/runtime-v2/runner/base-peer-runner.js.map +1 -1
  772. package/core/dist/runtime-v2/runner/peer-runner-types.d.ts +10 -3
  773. package/core/dist/runtime-v2/runner/peer-runner-types.d.ts.map +1 -1
  774. package/core/dist/runtime-v2/runtime-protocol.d.ts +3 -3
  775. package/core/dist/runtime-v2/runtime-protocol.d.ts.map +1 -1
  776. package/core/dist/runtime-v2/runtime-protocol.js +1 -0
  777. package/core/dist/runtime-v2/runtime-protocol.js.map +1 -1
  778. package/core/dist/runtime-v2/runtime-selector.d.ts +3 -3
  779. package/core/dist/runtime-v2/stalled-diagnostician-task-read-model.d.ts +26 -0
  780. package/core/dist/runtime-v2/stalled-diagnostician-task-read-model.d.ts.map +1 -0
  781. package/core/dist/runtime-v2/stalled-diagnostician-task-read-model.js +59 -0
  782. package/core/dist/runtime-v2/stalled-diagnostician-task-read-model.js.map +1 -0
  783. package/core/dist/runtime-v2/store/candidate/sqlite-candidate-store.js +2 -2
  784. package/core/dist/runtime-v2/store/candidate/sqlite-candidate-store.js.map +1 -1
  785. package/core/dist/runtime-v2/store/concurrent-lease.test.js +13 -13
  786. package/core/dist/runtime-v2/store/concurrent-lease.test.js.map +1 -1
  787. package/core/dist/runtime-v2/store/context/index.d.ts +1 -0
  788. package/core/dist/runtime-v2/store/context/index.d.ts.map +1 -1
  789. package/core/dist/runtime-v2/store/context/sqlite-context-assembler.d.ts +8 -0
  790. package/core/dist/runtime-v2/store/context/sqlite-context-assembler.d.ts.map +1 -1
  791. package/core/dist/runtime-v2/store/context/sqlite-context-assembler.js +54 -3
  792. package/core/dist/runtime-v2/store/context/sqlite-context-assembler.js.map +1 -1
  793. package/core/dist/runtime-v2/store/context/sqlite-context-assembler.test.js +373 -2
  794. package/core/dist/runtime-v2/store/context/sqlite-context-assembler.test.js.map +1 -1
  795. package/core/dist/runtime-v2/store/context/trajectory-turn-reader.d.ts +32 -0
  796. package/core/dist/runtime-v2/store/context/trajectory-turn-reader.d.ts.map +1 -0
  797. package/core/dist/runtime-v2/store/context/trajectory-turn-reader.js +12 -0
  798. package/core/dist/runtime-v2/store/context/trajectory-turn-reader.js.map +1 -0
  799. package/core/dist/runtime-v2/store/event-emitter.js +0 -1
  800. package/core/dist/runtime-v2/store/event-emitter.js.map +1 -1
  801. package/core/dist/runtime-v2/store/history/sqlite-history-query.test.js +1 -1
  802. package/core/dist/runtime-v2/store/history/sqlite-history-query.test.js.map +1 -1
  803. package/core/dist/runtime-v2/store/idempotent-transitions.test.js +0 -5
  804. package/core/dist/runtime-v2/store/idempotent-transitions.test.js.map +1 -1
  805. package/core/dist/runtime-v2/store/lifecycle/lease-manager.d.ts.map +1 -1
  806. package/core/dist/runtime-v2/store/lifecycle/lease-manager.js +5 -0
  807. package/core/dist/runtime-v2/store/lifecycle/lease-manager.js.map +1 -1
  808. package/core/dist/runtime-v2/store/lifecycle/lease-manager.test.js +0 -2
  809. package/core/dist/runtime-v2/store/lifecycle/lease-manager.test.js.map +1 -1
  810. package/core/dist/runtime-v2/store/lifecycle/recovery-sweep.test.js +0 -2
  811. package/core/dist/runtime-v2/store/lifecycle/recovery-sweep.test.js.map +1 -1
  812. package/core/dist/runtime-v2/store/run/memory-run-store.d.ts +2 -1
  813. package/core/dist/runtime-v2/store/run/memory-run-store.d.ts.map +1 -1
  814. package/core/dist/runtime-v2/store/run/memory-run-store.js +5 -0
  815. package/core/dist/runtime-v2/store/run/memory-run-store.js.map +1 -1
  816. package/core/dist/runtime-v2/store/run/run-store.d.ts +27 -0
  817. package/core/dist/runtime-v2/store/run/run-store.d.ts.map +1 -1
  818. package/core/dist/runtime-v2/store/run/sqlite-run-store.d.ts +26 -2
  819. package/core/dist/runtime-v2/store/run/sqlite-run-store.d.ts.map +1 -1
  820. package/core/dist/runtime-v2/store/run/sqlite-run-store.js +134 -20
  821. package/core/dist/runtime-v2/store/run/sqlite-run-store.js.map +1 -1
  822. package/core/dist/runtime-v2/store/runtime-state-manager-malformed-run-tolerance.test.d.ts +2 -0
  823. package/core/dist/runtime-v2/store/runtime-state-manager-malformed-run-tolerance.test.d.ts.map +1 -0
  824. package/core/dist/runtime-v2/store/runtime-state-manager-malformed-run-tolerance.test.js +160 -0
  825. package/core/dist/runtime-v2/store/runtime-state-manager-malformed-run-tolerance.test.js.map +1 -0
  826. package/core/dist/runtime-v2/store/runtime-state-manager.d.ts +25 -3
  827. package/core/dist/runtime-v2/store/runtime-state-manager.d.ts.map +1 -1
  828. package/core/dist/runtime-v2/store/runtime-state-manager.js +55 -7
  829. package/core/dist/runtime-v2/store/runtime-state-manager.js.map +1 -1
  830. package/core/dist/runtime-v2/store/schema-conformance.test.js +0 -10
  831. package/core/dist/runtime-v2/store/schema-conformance.test.js.map +1 -1
  832. package/core/dist/runtime-v2/store/sqlite-connection-pragma.test.js +2 -2
  833. package/core/dist/runtime-v2/store/sqlite-connection-pragma.test.js.map +1 -1
  834. package/core/dist/runtime-v2/store/sqlite-connection.d.ts.map +1 -1
  835. package/core/dist/runtime-v2/store/sqlite-connection.js +12 -0
  836. package/core/dist/runtime-v2/store/sqlite-connection.js.map +1 -1
  837. package/core/dist/runtime-v2/store/sqlite-run-store.test.js +172 -2
  838. package/core/dist/runtime-v2/store/sqlite-run-store.test.js.map +1 -1
  839. package/core/dist/runtime-v2/store/sqlite-task-store.test.js +0 -2
  840. package/core/dist/runtime-v2/store/sqlite-task-store.test.js.map +1 -1
  841. package/core/dist/runtime-v2/store/trajectory/source-trace-locator.test.js +0 -1
  842. package/core/dist/runtime-v2/store/trajectory/source-trace-locator.test.js.map +1 -1
  843. package/core/dist/runtime-v2/store/trajectory/sqlite-trajectory-locator.test.js +1 -1
  844. package/core/dist/runtime-v2/store/trajectory/sqlite-trajectory-locator.test.js.map +1 -1
  845. package/core/dist/runtime-v2/store/workspace-isolation.test.js +0 -2
  846. package/core/dist/runtime-v2/store/workspace-isolation.test.js.map +1 -1
  847. package/core/dist/runtime-v2/tools/__tests__/agent-tool-contract.test.d.ts +2 -0
  848. package/core/dist/runtime-v2/tools/__tests__/agent-tool-contract.test.d.ts.map +1 -0
  849. package/core/dist/runtime-v2/tools/__tests__/agent-tool-contract.test.js +171 -0
  850. package/core/dist/runtime-v2/tools/__tests__/agent-tool-contract.test.js.map +1 -0
  851. package/core/dist/runtime-v2/tools/__tests__/artificer-l2-tool-contract.test.d.ts +2 -0
  852. package/core/dist/runtime-v2/tools/__tests__/artificer-l2-tool-contract.test.d.ts.map +1 -0
  853. package/core/dist/runtime-v2/tools/__tests__/artificer-l2-tool-contract.test.js +322 -0
  854. package/core/dist/runtime-v2/tools/__tests__/artificer-l2-tool-contract.test.js.map +1 -0
  855. package/core/dist/runtime-v2/tools/__tests__/artificer-output-typebox.test.d.ts +2 -0
  856. package/core/dist/runtime-v2/tools/__tests__/artificer-output-typebox.test.d.ts.map +1 -0
  857. package/core/dist/runtime-v2/tools/__tests__/artificer-output-typebox.test.js +149 -0
  858. package/core/dist/runtime-v2/tools/__tests__/artificer-output-typebox.test.js.map +1 -0
  859. package/core/dist/runtime-v2/tools/__tests__/dreamer-output-typebox.test.d.ts +2 -0
  860. package/core/dist/runtime-v2/tools/__tests__/dreamer-output-typebox.test.d.ts.map +1 -0
  861. package/core/dist/runtime-v2/tools/__tests__/dreamer-output-typebox.test.js +109 -0
  862. package/core/dist/runtime-v2/tools/__tests__/dreamer-output-typebox.test.js.map +1 -0
  863. package/core/dist/runtime-v2/tools/agent-tool-contract.d.ts +76 -0
  864. package/core/dist/runtime-v2/tools/agent-tool-contract.d.ts.map +1 -0
  865. package/core/dist/runtime-v2/tools/agent-tool-contract.js +136 -0
  866. package/core/dist/runtime-v2/tools/agent-tool-contract.js.map +1 -0
  867. package/core/dist/runtime-v2/tools/artificer-l2-tool-contract.d.ts +72 -0
  868. package/core/dist/runtime-v2/tools/artificer-l2-tool-contract.d.ts.map +1 -0
  869. package/core/dist/runtime-v2/tools/artificer-l2-tool-contract.js +275 -0
  870. package/core/dist/runtime-v2/tools/artificer-l2-tool-contract.js.map +1 -0
  871. package/core/dist/runtime-v2/tools/artificer-output-typebox.d.ts +78 -0
  872. package/core/dist/runtime-v2/tools/artificer-output-typebox.d.ts.map +1 -0
  873. package/core/dist/runtime-v2/tools/artificer-output-typebox.js +70 -0
  874. package/core/dist/runtime-v2/tools/artificer-output-typebox.js.map +1 -0
  875. package/core/dist/runtime-v2/tools/dreamer-output-typebox.d.ts +63 -0
  876. package/core/dist/runtime-v2/tools/dreamer-output-typebox.d.ts.map +1 -0
  877. package/core/dist/runtime-v2/tools/dreamer-output-typebox.js +55 -0
  878. package/core/dist/runtime-v2/tools/dreamer-output-typebox.js.map +1 -0
  879. package/core/dist/runtime-v2/types/event-types.d.ts +32 -3
  880. package/core/dist/runtime-v2/types/event-types.d.ts.map +1 -1
  881. package/core/dist/runtime-v2/types/event-types.js +8 -0
  882. package/core/dist/runtime-v2/types/event-types.js.map +1 -1
  883. package/core/dist/runtime-v2/types/evidence-chain-contract.d.ts +213 -0
  884. package/core/dist/runtime-v2/types/evidence-chain-contract.d.ts.map +1 -0
  885. package/core/dist/runtime-v2/types/evidence-chain-contract.js +1064 -0
  886. package/core/dist/runtime-v2/types/evidence-chain-contract.js.map +1 -0
  887. package/core/dist/runtime-v2/types/index.d.ts +4 -2
  888. package/core/dist/runtime-v2/types/index.d.ts.map +1 -1
  889. package/core/dist/runtime-v2/types/index.js +2 -1
  890. package/core/dist/runtime-v2/types/index.js.map +1 -1
  891. package/core/dist/runtime-v2/types/principle-enums.d.ts +2 -2
  892. package/core/dist/runtime-v2/types/principle-enums.d.ts.map +1 -1
  893. package/core/dist/runtime-v2/types/principle-enums.js +1 -0
  894. package/core/dist/runtime-v2/types/principle-enums.js.map +1 -1
  895. package/core/dist/runtime-v2/types/principle-schema.d.ts +1 -1
  896. package/core/dist/runtime-v2/types/principle-tree-store.d.ts +1 -1
  897. package/core/dist/runtime-v2/utils/cli-process-runner.d.ts.map +1 -1
  898. package/core/dist/runtime-v2/utils/cli-process-runner.js +5 -2
  899. package/core/dist/runtime-v2/utils/cli-process-runner.js.map +1 -1
  900. package/core/dist/runtime-v2/utils/cli-process-runner.test.js +7 -5
  901. package/core/dist/runtime-v2/utils/cli-process-runner.test.js.map +1 -1
  902. package/core/dist/telemetry-event.d.ts +3 -3
  903. package/core/dist/telemetry-event.d.ts.map +1 -1
  904. package/core/dist/telemetry-event.js +34 -1
  905. package/core/dist/telemetry-event.js.map +1 -1
  906. package/core/dist/trajectory-store.js +0 -2
  907. package/core/dist/trajectory-store.js.map +1 -1
  908. package/core/package.json +10 -1
  909. package/dist/installer.d.ts +11 -0
  910. package/dist/installer.d.ts.map +1 -1
  911. package/dist/installer.js +47 -2
  912. package/dist/installer.js.map +1 -1
  913. package/dist/mvp-config.d.ts.map +1 -1
  914. package/dist/mvp-config.js +2 -0
  915. package/dist/mvp-config.js.map +1 -1
  916. package/package.json +3 -2
  917. package/pd-cli/dist/commands/__tests__/legacy-cleanup.test.d.ts +18 -0
  918. package/pd-cli/dist/commands/__tests__/legacy-cleanup.test.d.ts.map +1 -0
  919. package/pd-cli/dist/commands/__tests__/legacy-cleanup.test.js +459 -0
  920. package/pd-cli/dist/commands/__tests__/legacy-cleanup.test.js.map +1 -0
  921. package/pd-cli/dist/commands/__tests__/mvp-smoke.test.d.ts +15 -0
  922. package/pd-cli/dist/commands/__tests__/mvp-smoke.test.d.ts.map +1 -0
  923. package/pd-cli/dist/commands/__tests__/mvp-smoke.test.js +262 -0
  924. package/pd-cli/dist/commands/__tests__/mvp-smoke.test.js.map +1 -0
  925. package/pd-cli/dist/commands/__tests__/rulecode-flag-wiring.test.d.ts +21 -0
  926. package/pd-cli/dist/commands/__tests__/rulecode-flag-wiring.test.d.ts.map +1 -0
  927. package/pd-cli/dist/commands/__tests__/rulecode-flag-wiring.test.js +179 -0
  928. package/pd-cli/dist/commands/__tests__/rulecode-flag-wiring.test.js.map +1 -0
  929. package/pd-cli/dist/commands/__tests__/rulecode-handler.test.d.ts +16 -0
  930. package/pd-cli/dist/commands/__tests__/rulecode-handler.test.d.ts.map +1 -0
  931. package/pd-cli/dist/commands/__tests__/rulecode-handler.test.js +285 -0
  932. package/pd-cli/dist/commands/__tests__/rulecode-handler.test.js.map +1 -0
  933. package/pd-cli/dist/commands/__tests__/run-rulehost-flag-wiring.test.d.ts +24 -0
  934. package/pd-cli/dist/commands/__tests__/run-rulehost-flag-wiring.test.d.ts.map +1 -0
  935. package/pd-cli/dist/commands/__tests__/run-rulehost-flag-wiring.test.js +223 -0
  936. package/pd-cli/dist/commands/__tests__/run-rulehost-flag-wiring.test.js.map +1 -0
  937. package/pd-cli/dist/commands/__tests__/runtime-probe-config.test.d.ts +20 -0
  938. package/pd-cli/dist/commands/__tests__/runtime-probe-config.test.d.ts.map +1 -0
  939. package/pd-cli/dist/commands/__tests__/runtime-probe-config.test.js +388 -0
  940. package/pd-cli/dist/commands/__tests__/runtime-probe-config.test.js.map +1 -0
  941. package/pd-cli/dist/commands/build-trajectory-evidence.d.ts +21 -0
  942. package/pd-cli/dist/commands/build-trajectory-evidence.d.ts.map +1 -0
  943. package/pd-cli/dist/commands/build-trajectory-evidence.js +161 -0
  944. package/pd-cli/dist/commands/build-trajectory-evidence.js.map +1 -0
  945. package/pd-cli/dist/commands/candidate.d.ts +24 -0
  946. package/pd-cli/dist/commands/candidate.d.ts.map +1 -1
  947. package/pd-cli/dist/commands/candidate.js +147 -75
  948. package/pd-cli/dist/commands/candidate.js.map +1 -1
  949. package/pd-cli/dist/commands/command-helpers.d.ts +19 -0
  950. package/pd-cli/dist/commands/command-helpers.d.ts.map +1 -0
  951. package/pd-cli/dist/commands/command-helpers.js +22 -0
  952. package/pd-cli/dist/commands/command-helpers.js.map +1 -0
  953. package/pd-cli/dist/commands/config-doctor.d.ts.map +1 -1
  954. package/pd-cli/dist/commands/config-doctor.js +21 -0
  955. package/pd-cli/dist/commands/config-doctor.js.map +1 -1
  956. package/pd-cli/dist/commands/diagnose.d.ts +1 -0
  957. package/pd-cli/dist/commands/diagnose.d.ts.map +1 -1
  958. package/pd-cli/dist/commands/diagnose.js +252 -149
  959. package/pd-cli/dist/commands/diagnose.js.map +1 -1
  960. package/pd-cli/dist/commands/evolution-tasks-show.js +0 -1
  961. package/pd-cli/dist/commands/evolution-tasks-show.js.map +1 -1
  962. package/pd-cli/dist/commands/legacy-cleanup.d.ts +72 -6
  963. package/pd-cli/dist/commands/legacy-cleanup.d.ts.map +1 -1
  964. package/pd-cli/dist/commands/legacy-cleanup.js +243 -23
  965. package/pd-cli/dist/commands/legacy-cleanup.js.map +1 -1
  966. package/pd-cli/dist/commands/mvp-smoke.d.ts +30 -0
  967. package/pd-cli/dist/commands/mvp-smoke.d.ts.map +1 -0
  968. package/pd-cli/dist/commands/mvp-smoke.js +139 -0
  969. package/pd-cli/dist/commands/mvp-smoke.js.map +1 -0
  970. package/pd-cli/dist/commands/pain-record.d.ts +2 -0
  971. package/pd-cli/dist/commands/pain-record.d.ts.map +1 -1
  972. package/pd-cli/dist/commands/pain-record.js +45 -7
  973. package/pd-cli/dist/commands/pain-record.js.map +1 -1
  974. package/pd-cli/dist/commands/pain-retry.d.ts.map +1 -1
  975. package/pd-cli/dist/commands/pain-retry.js +46 -43
  976. package/pd-cli/dist/commands/pain-retry.js.map +1 -1
  977. package/pd-cli/dist/commands/quality-scorecard.d.ts +9 -0
  978. package/pd-cli/dist/commands/quality-scorecard.d.ts.map +1 -0
  979. package/pd-cli/dist/commands/quality-scorecard.js +241 -0
  980. package/pd-cli/dist/commands/quality-scorecard.js.map +1 -0
  981. package/pd-cli/dist/commands/rulecode.d.ts +85 -0
  982. package/pd-cli/dist/commands/rulecode.d.ts.map +1 -0
  983. package/pd-cli/dist/commands/rulecode.js +356 -0
  984. package/pd-cli/dist/commands/rulecode.js.map +1 -0
  985. package/pd-cli/dist/commands/runtime-activation.d.ts +37 -0
  986. package/pd-cli/dist/commands/runtime-activation.d.ts.map +1 -1
  987. package/pd-cli/dist/commands/runtime-activation.js +416 -2
  988. package/pd-cli/dist/commands/runtime-activation.js.map +1 -1
  989. package/pd-cli/dist/commands/runtime-features.d.ts.map +1 -1
  990. package/pd-cli/dist/commands/runtime-features.js +2 -7
  991. package/pd-cli/dist/commands/runtime-features.js.map +1 -1
  992. package/pd-cli/dist/commands/runtime-internalization-integrity-repair.d.ts.map +1 -1
  993. package/pd-cli/dist/commands/runtime-internalization-integrity-repair.js +25 -15
  994. package/pd-cli/dist/commands/runtime-internalization-integrity-repair.js.map +1 -1
  995. package/pd-cli/dist/commands/runtime-internalization-integrity.d.ts.map +1 -1
  996. package/pd-cli/dist/commands/runtime-internalization-integrity.js +42 -1
  997. package/pd-cli/dist/commands/runtime-internalization-integrity.js.map +1 -1
  998. package/pd-cli/dist/commands/runtime-internalization-queue.d.ts.map +1 -1
  999. package/pd-cli/dist/commands/runtime-internalization-queue.js +35 -3
  1000. package/pd-cli/dist/commands/runtime-internalization-queue.js.map +1 -1
  1001. package/pd-cli/dist/commands/runtime-internalization-run-once.d.ts.map +1 -1
  1002. package/pd-cli/dist/commands/runtime-internalization-run-once.js +316 -320
  1003. package/pd-cli/dist/commands/runtime-internalization-run-once.js.map +1 -1
  1004. package/pd-cli/dist/commands/runtime-internalization-run-rulehost.d.ts +23 -0
  1005. package/pd-cli/dist/commands/runtime-internalization-run-rulehost.d.ts.map +1 -0
  1006. package/pd-cli/dist/commands/runtime-internalization-run-rulehost.js +361 -0
  1007. package/pd-cli/dist/commands/runtime-internalization-run-rulehost.js.map +1 -0
  1008. package/pd-cli/dist/commands/runtime-recovery-failed-tasks.d.ts +10 -0
  1009. package/pd-cli/dist/commands/runtime-recovery-failed-tasks.d.ts.map +1 -0
  1010. package/pd-cli/dist/commands/runtime-recovery-failed-tasks.js +164 -0
  1011. package/pd-cli/dist/commands/runtime-recovery-failed-tasks.js.map +1 -0
  1012. package/pd-cli/dist/commands/runtime-recovery.d.ts.map +1 -1
  1013. package/pd-cli/dist/commands/runtime-recovery.js +9 -8
  1014. package/pd-cli/dist/commands/runtime-recovery.js.map +1 -1
  1015. package/pd-cli/dist/commands/runtime.d.ts +7 -1
  1016. package/pd-cli/dist/commands/runtime.d.ts.map +1 -1
  1017. package/pd-cli/dist/commands/runtime.js +223 -30
  1018. package/pd-cli/dist/commands/runtime.js.map +1 -1
  1019. package/pd-cli/dist/commands/samples-list.js +0 -1
  1020. package/pd-cli/dist/commands/samples-list.js.map +1 -1
  1021. package/pd-cli/dist/commands/task.d.ts +11 -0
  1022. package/pd-cli/dist/commands/task.d.ts.map +1 -1
  1023. package/pd-cli/dist/commands/task.js +148 -6
  1024. package/pd-cli/dist/commands/task.js.map +1 -1
  1025. package/pd-cli/dist/index.d.ts +1 -1
  1026. package/pd-cli/dist/index.js +155 -70
  1027. package/pd-cli/dist/index.js.map +1 -1
  1028. package/pd-cli/dist/legacy/session-history-import.js +0 -19
  1029. package/pd-cli/dist/legacy/session-history-import.js.map +1 -1
  1030. package/pd-cli/dist/resolve-workspace.d.ts +15 -3
  1031. package/pd-cli/dist/resolve-workspace.d.ts.map +1 -1
  1032. package/pd-cli/dist/resolve-workspace.js +54 -8
  1033. package/pd-cli/dist/resolve-workspace.js.map +1 -1
  1034. package/pd-cli/dist/services/__tests__/cli-output.test.d.ts +18 -0
  1035. package/pd-cli/dist/services/__tests__/cli-output.test.d.ts.map +1 -0
  1036. package/pd-cli/dist/services/__tests__/cli-output.test.js +103 -0
  1037. package/pd-cli/dist/services/__tests__/cli-output.test.js.map +1 -0
  1038. package/pd-cli/dist/services/__tests__/runtime-adapter-resolver.test.d.ts +18 -0
  1039. package/pd-cli/dist/services/__tests__/runtime-adapter-resolver.test.d.ts.map +1 -0
  1040. package/pd-cli/dist/services/__tests__/runtime-adapter-resolver.test.js +651 -0
  1041. package/pd-cli/dist/services/__tests__/runtime-adapter-resolver.test.js.map +1 -0
  1042. package/pd-cli/dist/services/cli-output.d.ts +61 -0
  1043. package/pd-cli/dist/services/cli-output.d.ts.map +1 -0
  1044. package/pd-cli/dist/services/cli-output.js +72 -0
  1045. package/pd-cli/dist/services/cli-output.js.map +1 -0
  1046. package/pd-cli/dist/services/config-doctor.d.ts +2 -0
  1047. package/pd-cli/dist/services/config-doctor.d.ts.map +1 -1
  1048. package/pd-cli/dist/services/config-doctor.js +11 -8
  1049. package/pd-cli/dist/services/config-doctor.js.map +1 -1
  1050. package/pd-cli/dist/services/console-launcher.js +1 -1
  1051. package/pd-cli/dist/services/console-launcher.js.map +1 -1
  1052. package/pd-cli/dist/services/demo-rule-compiler.d.ts +24 -0
  1053. package/pd-cli/dist/services/demo-rule-compiler.d.ts.map +1 -0
  1054. package/pd-cli/dist/services/demo-rule-compiler.js +58 -0
  1055. package/pd-cli/dist/services/demo-rule-compiler.js.map +1 -0
  1056. package/pd-cli/dist/services/feature-flag-loader.js +0 -1
  1057. package/pd-cli/dist/services/feature-flag-loader.js.map +1 -1
  1058. package/pd-cli/dist/services/mainline-snapshot-assembler.d.ts +35 -0
  1059. package/pd-cli/dist/services/mainline-snapshot-assembler.d.ts.map +1 -0
  1060. package/pd-cli/dist/services/mainline-snapshot-assembler.js +428 -0
  1061. package/pd-cli/dist/services/mainline-snapshot-assembler.js.map +1 -0
  1062. package/pd-cli/dist/services/pain-flood-simulation-runner.d.ts.map +1 -1
  1063. package/pd-cli/dist/services/pain-flood-simulation-runner.js +95 -10
  1064. package/pd-cli/dist/services/pain-flood-simulation-runner.js.map +1 -1
  1065. package/pd-cli/dist/services/pd-config-loader.d.ts +20 -0
  1066. package/pd-cli/dist/services/pd-config-loader.d.ts.map +1 -1
  1067. package/pd-cli/dist/services/pd-config-loader.js +113 -0
  1068. package/pd-cli/dist/services/pd-config-loader.js.map +1 -1
  1069. package/pd-cli/dist/services/quality-scorecard/data-extractor.d.ts +28 -0
  1070. package/pd-cli/dist/services/quality-scorecard/data-extractor.d.ts.map +1 -0
  1071. package/pd-cli/dist/services/quality-scorecard/data-extractor.js +118 -0
  1072. package/pd-cli/dist/services/quality-scorecard/data-extractor.js.map +1 -0
  1073. package/pd-cli/dist/services/quality-scorecard/local-evaluator.d.ts +18 -0
  1074. package/pd-cli/dist/services/quality-scorecard/local-evaluator.d.ts.map +1 -0
  1075. package/pd-cli/dist/services/quality-scorecard/local-evaluator.js +112 -0
  1076. package/pd-cli/dist/services/quality-scorecard/local-evaluator.js.map +1 -0
  1077. package/pd-cli/dist/services/quality-scorecard/strong-model-gate.d.ts +14 -0
  1078. package/pd-cli/dist/services/quality-scorecard/strong-model-gate.d.ts.map +1 -0
  1079. package/pd-cli/dist/services/quality-scorecard/strong-model-gate.js +128 -0
  1080. package/pd-cli/dist/services/quality-scorecard/strong-model-gate.js.map +1 -0
  1081. package/pd-cli/dist/services/resolve-runtime-from-pd-config.d.ts +70 -0
  1082. package/pd-cli/dist/services/resolve-runtime-from-pd-config.d.ts.map +1 -0
  1083. package/pd-cli/dist/services/resolve-runtime-from-pd-config.js +138 -0
  1084. package/pd-cli/dist/services/resolve-runtime-from-pd-config.js.map +1 -0
  1085. package/pd-cli/dist/services/rulehost-pipeline-runner.d.ts +132 -0
  1086. package/pd-cli/dist/services/rulehost-pipeline-runner.d.ts.map +1 -0
  1087. package/pd-cli/dist/services/rulehost-pipeline-runner.js +392 -0
  1088. package/pd-cli/dist/services/rulehost-pipeline-runner.js.map +1 -0
  1089. package/pd-cli/dist/services/runtime-adapter-resolver.d.ts +105 -0
  1090. package/pd-cli/dist/services/runtime-adapter-resolver.d.ts.map +1 -0
  1091. package/pd-cli/dist/services/runtime-adapter-resolver.js +188 -0
  1092. package/pd-cli/dist/services/runtime-adapter-resolver.js.map +1 -0
  1093. package/pd-cli/dist/services/synthetic-baseline-runner.d.ts.map +1 -1
  1094. package/pd-cli/dist/services/synthetic-baseline-runner.js +97 -6
  1095. package/pd-cli/dist/services/synthetic-baseline-runner.js.map +1 -1
  1096. package/pd-cli/dist/utils/production-workspace-guard.d.ts +0 -7
  1097. package/pd-cli/dist/utils/production-workspace-guard.d.ts.map +1 -1
  1098. package/pd-cli/dist/utils/production-workspace-guard.js +0 -11
  1099. package/pd-cli/dist/utils/production-workspace-guard.js.map +1 -1
  1100. package/pd-cli/dist/utils/production-workspace-guard.test.js +9 -2
  1101. package/pd-cli/dist/utils/production-workspace-guard.test.js.map +1 -1
  1102. package/pd-cli/package.json +3 -2
  1103. package/plugin/dist/config/defaults/runtime.d.ts +0 -6
  1104. package/plugin/dist/config/defaults/runtime.js +0 -7
  1105. package/plugin/dist/core/code-implementation-storage.d.ts +0 -9
  1106. package/plugin/dist/core/code-implementation-storage.js +0 -34
  1107. package/plugin/dist/core/config-health.d.ts +27 -0
  1108. package/plugin/dist/core/config-health.js +60 -0
  1109. package/plugin/dist/core/event-log.d.ts +10 -1
  1110. package/plugin/dist/core/event-log.js +11 -0
  1111. package/plugin/dist/core/init.d.ts +1 -1
  1112. package/plugin/dist/core/init.js +10 -14
  1113. package/plugin/dist/core/paths.d.ts +0 -6
  1114. package/plugin/dist/core/paths.js +0 -6
  1115. package/plugin/dist/core/principle-compiler/code-validator.js +4 -1
  1116. package/plugin/dist/core/principle-tree-ledger.d.ts +0 -4
  1117. package/plugin/dist/core/principle-tree-ledger.js +0 -7
  1118. package/plugin/dist/core/rule-host.d.ts +45 -15
  1119. package/plugin/dist/core/rule-host.js +240 -81
  1120. package/plugin/dist/core/rule-implementation-runtime.d.ts +13 -0
  1121. package/plugin/dist/core/rule-implementation-runtime.js +91 -3
  1122. package/plugin/dist/core/runtime-v2-prompt-activation-reader.js +2 -2
  1123. package/plugin/dist/core/thinking-models.d.ts +3 -2
  1124. package/plugin/dist/core/thinking-models.js +9 -29
  1125. package/plugin/dist/core/trajectory-types.d.ts +4 -0
  1126. package/plugin/dist/core/trajectory.js +55 -5
  1127. package/plugin/dist/core/workspace-dir-validation.d.ts +2 -2
  1128. package/plugin/dist/core/workspace-dir-validation.js +2 -2
  1129. package/plugin/dist/hooks/after-tool-call-helpers.d.ts +8 -9
  1130. package/plugin/dist/hooks/after-tool-call-helpers.js +89 -100
  1131. package/plugin/dist/hooks/after-tool-call-types.d.ts +2 -8
  1132. package/plugin/dist/hooks/gate.js +1 -1
  1133. package/plugin/dist/hooks/llm.js +11 -2
  1134. package/plugin/dist/hooks/pain.d.ts +0 -1
  1135. package/plugin/dist/hooks/pain.js +3 -2
  1136. package/plugin/dist/hooks/raw-observation-adapter.d.ts +57 -0
  1137. package/plugin/dist/hooks/raw-observation-adapter.js +170 -0
  1138. package/plugin/dist/hooks/raw-observation-types.d.ts +62 -0
  1139. package/plugin/dist/hooks/raw-observation-types.js +15 -0
  1140. package/plugin/dist/hooks/trajectory-collector.d.ts +17 -28
  1141. package/plugin/dist/hooks/trajectory-collector.js +71 -104
  1142. package/plugin/dist/hooks/trajectory-evidence.js +23 -0
  1143. package/plugin/dist/hooks/triage-adapter.d.ts +7 -31
  1144. package/plugin/dist/hooks/triage-adapter.js +32 -61
  1145. package/plugin/dist/hooks/trigger-cooldown-tracker.d.ts +30 -0
  1146. package/plugin/dist/hooks/trigger-cooldown-tracker.js +55 -0
  1147. package/plugin/dist/index.d.ts +11 -0
  1148. package/plugin/dist/index.js +73 -27
  1149. package/plugin/dist/openclaw-sdk.d.ts +1 -0
  1150. package/plugin/dist/service/evolution-worker.d.ts +1 -1
  1151. package/plugin/dist/service/internalization-auto-consumer-service.d.ts +8 -0
  1152. package/plugin/dist/service/internalization-auto-consumer-service.js +322 -0
  1153. package/plugin/dist/types/event-types.d.ts +1 -1
  1154. package/plugin/dist/utils/io.js +24 -3
  1155. package/plugin/package.json +4 -3
  1156. package/plugin/scripts/sync-plugin.mjs +43 -0
  1157. package/plugin/templates/langs/en/principles/THINKING_OS.md +12 -0
  1158. package/plugin/templates/langs/en/skills/pd-runtime-v2/SKILL.md +1 -1
  1159. package/plugin/templates/langs/zh/principles/THINKING_OS.md +12 -0
  1160. package/plugin/templates/langs/zh/skills/pd-runtime-v2/SKILL.md +1 -1
  1161. package/templates/langs/en/principles/THINKING_OS.md +12 -0
  1162. package/templates/langs/zh/principles/THINKING_OS.md +12 -0
  1163. package/console/dist/server/routes/state.d.ts +0 -11
  1164. package/console/dist/server/routes/state.js +0 -97
  1165. package/console/dist/ui/components/UpdateBanner.d.ts +0 -1
  1166. package/console/dist/ui/components/UpdateBanner.js +0 -41
  1167. package/console/dist/ui/components/UpdateProgressDialog.d.ts +0 -12
  1168. package/console/dist/ui/components/UpdateProgressDialog.js +0 -28
  1169. package/console/dist/ui/components/approval-card.d.ts +0 -8
  1170. package/console/dist/ui/components/approval-card.js +0 -39
  1171. package/console/dist/ui/components/approval-detail-dialog.d.ts +0 -9
  1172. package/console/dist/ui/components/approval-detail-dialog.js +0 -20
  1173. package/console/dist/ui/components/rejection-reason-dialog.d.ts +0 -6
  1174. package/console/dist/ui/components/rejection-reason-dialog.js +0 -23
  1175. package/core/dist/evolution-hook.d.ts +0 -70
  1176. package/core/dist/evolution-hook.d.ts.map +0 -1
  1177. package/core/dist/evolution-hook.js +0 -10
  1178. package/core/dist/evolution-hook.js.map +0 -1
  1179. package/core/dist/pain-flag-resolver.d.ts +0 -18
  1180. package/core/dist/pain-flag-resolver.d.ts.map +0 -1
  1181. package/core/dist/pain-flag-resolver.js +0 -21
  1182. package/core/dist/pain-flag-resolver.js.map +0 -1
  1183. package/core/dist/pain-recorder.d.ts +0 -38
  1184. package/core/dist/pain-recorder.d.ts.map +0 -1
  1185. package/core/dist/pain-recorder.js +0 -62
  1186. package/core/dist/pain-recorder.js.map +0 -1
  1187. package/core/dist/runtime-v2/diagnostician/__tests__/diagnostician-prompt-builder.integration.test.d.ts +0 -2
  1188. package/core/dist/runtime-v2/diagnostician/__tests__/diagnostician-prompt-builder.integration.test.d.ts.map +0 -1
  1189. package/core/dist/runtime-v2/diagnostician/__tests__/diagnostician-prompt-builder.integration.test.js +0 -170
  1190. package/core/dist/runtime-v2/diagnostician/__tests__/diagnostician-prompt-builder.integration.test.js.map +0 -1
  1191. package/core/dist/runtime-v2/diagnostician/__tests__/diagnostician-prompt-builder.test.d.ts +0 -2
  1192. package/core/dist/runtime-v2/diagnostician/__tests__/diagnostician-prompt-builder.test.d.ts.map +0 -1
  1193. package/core/dist/runtime-v2/diagnostician/__tests__/diagnostician-prompt-builder.test.js +0 -396
  1194. package/core/dist/runtime-v2/diagnostician/__tests__/diagnostician-prompt-builder.test.js.map +0 -1
  1195. package/core/dist/runtime-v2/diagnostician/__tests__/diagnostician-prompt-language.test.d.ts +0 -13
  1196. package/core/dist/runtime-v2/diagnostician/__tests__/diagnostician-prompt-language.test.d.ts.map +0 -1
  1197. package/core/dist/runtime-v2/diagnostician/__tests__/diagnostician-prompt-language.test.js +0 -97
  1198. package/core/dist/runtime-v2/diagnostician/__tests__/diagnostician-prompt-language.test.js.map +0 -1
  1199. package/core/dist/runtime-v2/runner/__tests__/diagnostician-runner.integration.test.d.ts +0 -2
  1200. package/core/dist/runtime-v2/runner/__tests__/diagnostician-runner.integration.test.d.ts.map +0 -1
  1201. package/core/dist/runtime-v2/runner/__tests__/diagnostician-runner.integration.test.js +0 -378
  1202. package/core/dist/runtime-v2/runner/__tests__/diagnostician-runner.integration.test.js.map +0 -1
  1203. package/core/dist/runtime-v2/runner/__tests__/diagnostician-runner.test.d.ts +0 -2
  1204. package/core/dist/runtime-v2/runner/__tests__/diagnostician-runner.test.d.ts.map +0 -1
  1205. package/core/dist/runtime-v2/runner/__tests__/diagnostician-runner.test.js +0 -682
  1206. package/core/dist/runtime-v2/runner/__tests__/diagnostician-runner.test.js.map +0 -1
  1207. package/core/dist/runtime-v2/runner/__tests__/diagnostician-telemetry.test.d.ts +0 -2
  1208. package/core/dist/runtime-v2/runner/__tests__/diagnostician-telemetry.test.d.ts.map +0 -1
  1209. package/core/dist/runtime-v2/runner/__tests__/diagnostician-telemetry.test.js +0 -286
  1210. package/core/dist/runtime-v2/runner/__tests__/diagnostician-telemetry.test.js.map +0 -1
  1211. package/core/dist/runtime-v2/runner/__tests__/dual-track-e2e.test.d.ts +0 -2
  1212. package/core/dist/runtime-v2/runner/__tests__/dual-track-e2e.test.d.ts.map +0 -1
  1213. package/core/dist/runtime-v2/runner/__tests__/dual-track-e2e.test.js +0 -320
  1214. package/core/dist/runtime-v2/runner/__tests__/dual-track-e2e.test.js.map +0 -1
  1215. package/core/dist/runtime-v2/runner/__tests__/lease-expiration-recovery.integration.test.d.ts +0 -2
  1216. package/core/dist/runtime-v2/runner/__tests__/lease-expiration-recovery.integration.test.d.ts.map +0 -1
  1217. package/core/dist/runtime-v2/runner/__tests__/lease-expiration-recovery.integration.test.js +0 -261
  1218. package/core/dist/runtime-v2/runner/__tests__/lease-expiration-recovery.integration.test.js.map +0 -1
  1219. package/core/dist/runtime-v2/runner/__tests__/m5-05-e2e.test.d.ts +0 -2
  1220. package/core/dist/runtime-v2/runner/__tests__/m5-05-e2e.test.d.ts.map +0 -1
  1221. package/core/dist/runtime-v2/runner/__tests__/m5-05-e2e.test.js +0 -405
  1222. package/core/dist/runtime-v2/runner/__tests__/m5-05-e2e.test.js.map +0 -1
  1223. package/core/dist/runtime-v2/runner/__tests__/m6-06-e2e.test.d.ts +0 -2
  1224. package/core/dist/runtime-v2/runner/__tests__/m6-06-e2e.test.d.ts.map +0 -1
  1225. package/core/dist/runtime-v2/runner/__tests__/m6-06-e2e.test.js +0 -347
  1226. package/core/dist/runtime-v2/runner/__tests__/m6-06-e2e.test.js.map +0 -1
  1227. package/core/dist/runtime-v2/runner/__tests__/m6-06-legacy.test.d.ts +0 -2
  1228. package/core/dist/runtime-v2/runner/__tests__/m6-06-legacy.test.d.ts.map +0 -1
  1229. package/core/dist/runtime-v2/runner/__tests__/m6-06-legacy.test.js +0 -186
  1230. package/core/dist/runtime-v2/runner/__tests__/m6-06-legacy.test.js.map +0 -1
  1231. package/core/dist/runtime-v2/runner/__tests__/m6-06-real-path.test.d.ts +0 -2
  1232. package/core/dist/runtime-v2/runner/__tests__/m6-06-real-path.test.d.ts.map +0 -1
  1233. package/core/dist/runtime-v2/runner/__tests__/m6-06-real-path.test.js +0 -355
  1234. package/core/dist/runtime-v2/runner/__tests__/m6-06-real-path.test.js.map +0 -1
  1235. package/core/dist/runtime-v2/runner/__tests__/m8-02-e2e.test.d.ts +0 -2
  1236. package/core/dist/runtime-v2/runner/__tests__/m8-02-e2e.test.d.ts.map +0 -1
  1237. package/core/dist/runtime-v2/runner/__tests__/m8-02-e2e.test.js +0 -488
  1238. package/core/dist/runtime-v2/runner/__tests__/m8-02-e2e.test.js.map +0 -1
  1239. package/core/dist/runtime-v2/runner/__tests__/m9-adapter-integration.test.d.ts +0 -2
  1240. package/core/dist/runtime-v2/runner/__tests__/m9-adapter-integration.test.d.ts.map +0 -1
  1241. package/core/dist/runtime-v2/runner/__tests__/m9-adapter-integration.test.js +0 -171
  1242. package/core/dist/runtime-v2/runner/__tests__/m9-adapter-integration.test.js.map +0 -1
  1243. package/core/dist/runtime-v2/runner/__tests__/m9-e2e.test.d.ts +0 -2
  1244. package/core/dist/runtime-v2/runner/__tests__/m9-e2e.test.d.ts.map +0 -1
  1245. package/core/dist/runtime-v2/runner/__tests__/m9-e2e.test.js +0 -182
  1246. package/core/dist/runtime-v2/runner/__tests__/m9-e2e.test.js.map +0 -1
  1247. package/core/dist/runtime-v2/runner/__tests__/max-attempts-exceeded.integration.test.d.ts +0 -2
  1248. package/core/dist/runtime-v2/runner/__tests__/max-attempts-exceeded.integration.test.d.ts.map +0 -1
  1249. package/core/dist/runtime-v2/runner/__tests__/max-attempts-exceeded.integration.test.js +0 -276
  1250. package/core/dist/runtime-v2/runner/__tests__/max-attempts-exceeded.integration.test.js.map +0 -1
  1251. package/core/dist/runtime-v2/runner/__tests__/retry-wait-recovery.integration.test.d.ts +0 -2
  1252. package/core/dist/runtime-v2/runner/__tests__/retry-wait-recovery.integration.test.d.ts.map +0 -1
  1253. package/core/dist/runtime-v2/runner/__tests__/retry-wait-recovery.integration.test.js +0 -272
  1254. package/core/dist/runtime-v2/runner/__tests__/retry-wait-recovery.integration.test.js.map +0 -1
  1255. package/core/dist/runtime-v2/runner/__tests__/start-run-input.test.d.ts +0 -2
  1256. package/core/dist/runtime-v2/runner/__tests__/start-run-input.test.d.ts.map +0 -1
  1257. package/core/dist/runtime-v2/runner/__tests__/start-run-input.test.js +0 -67
  1258. package/core/dist/runtime-v2/runner/__tests__/start-run-input.test.js.map +0 -1
  1259. package/core/dist/runtime-v2/runner/diagnostician-runner-options.d.ts +0 -47
  1260. package/core/dist/runtime-v2/runner/diagnostician-runner-options.d.ts.map +0 -1
  1261. package/core/dist/runtime-v2/runner/diagnostician-runner-options.js +0 -20
  1262. package/core/dist/runtime-v2/runner/diagnostician-runner-options.js.map +0 -1
  1263. package/core/dist/runtime-v2/runner/diagnostician-runner.d.ts +0 -87
  1264. package/core/dist/runtime-v2/runner/diagnostician-runner.d.ts.map +0 -1
  1265. package/core/dist/runtime-v2/runner/diagnostician-runner.js +0 -441
  1266. package/core/dist/runtime-v2/runner/diagnostician-runner.js.map +0 -1
  1267. package/core/dist/storage-adapter.d.ts +0 -59
  1268. package/core/dist/storage-adapter.d.ts.map +0 -1
  1269. package/core/dist/storage-adapter.js +0 -2
  1270. package/core/dist/storage-adapter.js.map +0 -1
  1271. package/core/dist/types/workspace-resolver.d.ts +0 -25
  1272. package/core/dist/types/workspace-resolver.d.ts.map +0 -1
  1273. package/core/dist/types/workspace-resolver.js +0 -10
  1274. package/core/dist/types/workspace-resolver.js.map +0 -1
  1275. package/core/dist/types.d.ts +0 -56
  1276. package/core/dist/types.d.ts.map +0 -1
  1277. package/core/dist/types.js +0 -16
  1278. package/core/dist/types.js.map +0 -1
  1279. package/pd-cli/dist/principle-tree-ledger-adapter.d.ts +0 -12
  1280. package/pd-cli/dist/principle-tree-ledger-adapter.d.ts.map +0 -1
  1281. package/pd-cli/dist/principle-tree-ledger-adapter.js +0 -12
  1282. package/pd-cli/dist/principle-tree-ledger-adapter.js.map +0 -1
  1283. package/plugin/dist/core/evolution-hook.d.ts +0 -54
  1284. package/plugin/dist/core/evolution-hook.js +0 -9
  1285. package/plugin/dist/core/file-storage-adapter.d.ts +0 -43
  1286. package/plugin/dist/core/file-storage-adapter.js +0 -158
  1287. package/plugin/dist/core/merge-gate-audit.d.ts +0 -21
  1288. package/plugin/dist/core/merge-gate-audit.js +0 -241
  1289. package/plugin/dist/core/pain-context-extractor.d.ts +0 -31
  1290. package/plugin/dist/core/pain-context-extractor.js +0 -278
  1291. package/plugin/dist/core/pain-lifecycle.d.ts +0 -15
  1292. package/plugin/dist/core/pain-lifecycle.js +0 -37
  1293. package/plugin/dist/core/pain-signal-adapter.d.ts +0 -37
  1294. package/plugin/dist/core/pain-signal-adapter.js +0 -1
  1295. package/plugin/dist/core/pain-signal.d.ts +0 -6
  1296. package/plugin/dist/core/pain-signal.js +0 -3
  1297. package/plugin/dist/core/principle-injector.d.ts +0 -55
  1298. package/plugin/dist/core/principle-injector.js +0 -17
  1299. package/plugin/dist/core/principle-tree-migration.d.ts +0 -35
  1300. package/plugin/dist/core/principle-tree-migration.js +0 -137
  1301. package/plugin/dist/core/storage-adapter.d.ts +0 -58
  1302. package/plugin/dist/core/storage-adapter.js +0 -1
  1303. package/plugin/dist/core/telemetry-event.d.ts +0 -66
  1304. package/plugin/dist/core/telemetry-event.js +0 -86
  1305. package/plugin/dist/core/training-program.d.ts +0 -233
  1306. package/plugin/dist/core/training-program.js +0 -435
  1307. package/plugin/dist/core/workspace-dir-service.d.ts +0 -33
  1308. package/plugin/dist/core/workspace-dir-service.js +0 -71
  1309. package/plugin/dist/hooks/lifecycle-routing.d.ts +0 -24
  1310. package/plugin/dist/hooks/lifecycle-routing.js +0 -110
  1311. package/plugin/dist/service/event-log-auditor.d.ts +0 -46
  1312. package/plugin/dist/service/event-log-auditor.js +0 -236
  1313. package/plugin/dist/service/evolution-queue-lock.d.ts +0 -18
  1314. package/plugin/dist/service/evolution-queue-lock.js +0 -36
  1315. package/plugin/dist/service/failure-classifier.d.ts +0 -46
  1316. package/plugin/dist/service/failure-classifier.js +0 -57
  1317. package/plugin/dist/service/internalization-trigger-adapter.d.ts +0 -51
  1318. package/plugin/dist/service/internalization-trigger-adapter.js +0 -184
  1319. package/plugin/dist/service/monitoring-query-service.d.ts +0 -21
  1320. package/plugin/dist/service/monitoring-query-service.js +0 -45
  1321. package/plugin/dist/service/subagent-workflow/index.d.ts +0 -3
  1322. package/plugin/dist/service/subagent-workflow/index.js +0 -2
  1323. package/plugin/dist/tools/critique-prompt.d.ts +0 -1
  1324. package/plugin/dist/tools/critique-prompt.js +0 -1
  1325. package/plugin/dist/tools/deep-reflect.d.ts +0 -1
  1326. package/plugin/dist/tools/deep-reflect.js +0 -1
  1327. package/plugin/dist/tools/model-index.d.ts +0 -1
  1328. package/plugin/dist/tools/model-index.js +0 -1
  1329. package/plugin/dist/types/event-payload.d.ts +0 -2
  1330. package/plugin/dist/types/event-payload.js +0 -1
  1331. package/plugin/dist/utils/glob-match.d.ts +0 -28
  1332. package/plugin/dist/utils/glob-match.js +0 -49
  1333. package/plugin/dist/utils/nlp.d.ts +0 -4
  1334. package/plugin/dist/utils/nlp.js +0 -21
  1335. package/plugin/dist/utils/plugin-logger.d.ts +0 -39
  1336. package/plugin/dist/utils/plugin-logger.js +0 -70
  1337. package/plugin/dist/utils/subagent-probe.d.ts +0 -35
  1338. package/plugin/dist/utils/subagent-probe.js +0 -67
@@ -1 +1 @@
1
- {"version":3,"file":"dreamer-runner.js","sourceRoot":"","sources":["../../../src/runtime-v2/internalization/dreamer-runner.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"dreamer-runner.js","sourceRoot":"","sources":["../../../src/runtime-v2/internalization/dreamer-runner.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,47 @@
1
1
  import { type Static } from '@sinclair/typebox';
2
+ import type { GoldenTraceDecision } from '../golden-trace.js';
3
+ /**
4
+ * Attack type for adversarial cases (PRD Decision 4).
5
+ * - boundary: probe ambiguous edges of principle text
6
+ * - omission: satisfy all-but-one condition the code may have skipped
7
+ * - inversion: mutate a positive case so it should become negative
8
+ */
9
+ export type AdversarialAttackType = 'boundary' | 'omission' | 'inversion';
10
+ export interface AdversarialCase {
11
+ readonly caseId: string;
12
+ readonly attackType: AdversarialAttackType;
13
+ readonly toolName: string;
14
+ readonly params: Record<string, unknown>;
15
+ /** GoldenTraceDecision, NOT RuleHostDecision. */
16
+ readonly expectedDecision: GoldenTraceDecision;
17
+ readonly rationale: string;
18
+ }
19
+ export interface AdversarialFailedCase {
20
+ readonly caseId: string;
21
+ readonly attackType: AdversarialAttackType;
22
+ readonly actualDecision: string;
23
+ readonly expectedDecision: string;
24
+ readonly rationale: string;
25
+ }
26
+ export interface EvaluatorCodeReview {
27
+ readonly intentConsistency: {
28
+ readonly aligned: boolean;
29
+ readonly explanation: string;
30
+ };
31
+ readonly scopePrecision: {
32
+ readonly verdict: 'precise' | 'too_broad' | 'too_narrow';
33
+ readonly explanation: string;
34
+ };
35
+ readonly traceCoverage: {
36
+ readonly sufficient: boolean;
37
+ readonly gaps: readonly string[];
38
+ readonly explanation: string;
39
+ };
40
+ }
41
+ export interface EvaluatorAdversarialResult {
42
+ readonly passed: boolean;
43
+ readonly failedCases: readonly AdversarialFailedCase[];
44
+ }
2
45
  export interface EvaluatorEvaluation {
3
46
  readonly decision: 'approved' | 'needs_revision' | 'rejected';
4
47
  readonly summary: string;
@@ -21,6 +64,20 @@ export interface EvaluatorOutputV1 {
21
64
  readonly risks: readonly string[];
22
65
  readonly generatedAt: string;
23
66
  }
67
+ /**
68
+ * EvaluatorOutputV2 — V1 plus code review + adversarial attack fields
69
+ * (PRD Decision 2, ADR-0014 Amendment 2026-06-17).
70
+ *
71
+ * All V2 fields are optional: they appear only when the upstream Artificer
72
+ * output is V2 (code-bearing). V1 Artificer → Evaluator skips code review
73
+ * entirely (no codeReview, no adversarialCases). Use `isEvaluatorOutputV2()`
74
+ * after `validate()` to decide which assembly path applies.
75
+ */
76
+ export interface EvaluatorOutputV2 extends EvaluatorOutputV1 {
77
+ readonly codeReview?: EvaluatorCodeReview;
78
+ readonly adversarialCases?: readonly AdversarialCase[];
79
+ readonly adversarialResult?: EvaluatorAdversarialResult;
80
+ }
24
81
  export declare const EVALUATOR_DECISIONS: readonly ["approved", "needs_revision", "rejected"];
25
82
  export declare const EvaluatorEvaluationSchema: import("@sinclair/typebox").TObject<{
26
83
  decision: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"approved">, import("@sinclair/typebox").TLiteral<"needs_revision">, import("@sinclair/typebox").TLiteral<"rejected">]>;
@@ -62,6 +119,12 @@ export interface EvaluatorValidationResult {
62
119
  readonly errors: readonly string[];
63
120
  readonly errorCategory?: string;
64
121
  }
122
+ /**
123
+ * Runtime type guard distinguishing V2 (code-review/adversarial-bearing)
124
+ * evaluator output from V1. A V2 output is one where at least one V2 field
125
+ * is present AND well-formed. Use after `validate()` (Runtime Contract Rule 2).
126
+ */
127
+ export declare function isEvaluatorOutputV2(output: unknown): output is EvaluatorOutputV2;
65
128
  export interface EvaluatorValidator {
66
129
  validate(output: unknown, taskId: string, expectedSourceArtificerArtifactId?: string): Promise<EvaluatorValidationResult>;
67
130
  }
@@ -1 +1 @@
1
- {"version":3,"file":"evaluator-output.d.ts","sourceRoot":"","sources":["../../../src/runtime-v2/internalization/evaluator-output.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAEtD,MAAM,WAAW,mBAAmB;IAClC,QAAQ,CAAC,QAAQ,EAAE,UAAU,GAAG,gBAAgB,GAAG,UAAU,CAAC;IAC9D,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,SAAS,EAAE,SAAS,MAAM,EAAE,CAAC;IACtC,QAAQ,CAAC,QAAQ,EAAE,SAAS,MAAM,EAAE,CAAC;IACrC,QAAQ,CAAC,eAAe,EAAE,SAAS,MAAM,EAAE,CAAC;CAC7C;AAED,MAAM,WAAW,oBAAoB;IACnC,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAC;IACrC,QAAQ,CAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IACnC,QAAQ,CAAC,qBAAqB,CAAC,EAAE,MAAM,CAAC;IACxC,QAAQ,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;CACrC;AAED,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,yBAAyB,EAAE,MAAM,CAAC;IAC3C,QAAQ,CAAC,UAAU,EAAE,mBAAmB,CAAC;IACzC,QAAQ,CAAC,WAAW,EAAE,oBAAoB,CAAC;IAC3C,QAAQ,CAAC,KAAK,EAAE,SAAS,MAAM,EAAE,CAAC;IAClC,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC9B;AAED,eAAO,MAAM,mBAAmB,qDAAsD,CAAC;AAEvF,eAAO,MAAM,yBAAyB;;;;;;;EAWpC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;EAKrC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;EAOlC,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAEzE,MAAM,WAAW,yBAAyB;IACxC,QAAQ,CAAC,KAAK,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CAAC;IACnC,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC;CACjC;AAMD,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,iCAAiC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,yBAAyB,CAAC,CAAC;CAC3H;AAED,qBAAa,yBAA0B,YAAW,kBAAkB;IAE5D,QAAQ,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,iCAAiC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,yBAAyB,CAAC;CA8EhI"}
1
+ {"version":3,"file":"evaluator-output.d.ts","sourceRoot":"","sources":["../../../src/runtime-v2/internalization/evaluator-output.ts"],"names":[],"mappings":"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"}
@@ -29,6 +29,152 @@ export const EvaluatorOutputV1Schema = Type.Object({
29
29
  function isRecord(v) {
30
30
  return v !== null && typeof v === 'object' && !Array.isArray(v);
31
31
  }
32
+ const ADVERSARIAL_ATTACK_TYPES = new Set(['boundary', 'omission', 'inversion']);
33
+ const GOLDEN_TRACE_DECISIONS = new Set(['allow', 'block', 'propose_correction']);
34
+ const SCOPE_VERDICTS = new Set(['precise', 'too_broad', 'too_narrow']);
35
+ function validateCodeReview(raw) {
36
+ const errors = [];
37
+ if (!isRecord(raw)) {
38
+ errors.push('codeReview must be an object');
39
+ return errors;
40
+ }
41
+ // intentConsistency
42
+ if (!Object.hasOwn(raw, 'intentConsistency') || !isRecord(raw.intentConsistency)) {
43
+ errors.push('codeReview.intentConsistency must be an object');
44
+ }
45
+ else {
46
+ const ic = raw.intentConsistency;
47
+ if (!Object.hasOwn(ic, 'aligned') || typeof ic.aligned !== 'boolean') {
48
+ errors.push('codeReview.intentConsistency.aligned must be a boolean');
49
+ }
50
+ if (!Object.hasOwn(ic, 'explanation') || typeof ic.explanation !== 'string' || ic.explanation.trim() === '') {
51
+ errors.push('codeReview.intentConsistency.explanation must be a non-empty string');
52
+ }
53
+ }
54
+ // scopePrecision
55
+ if (!Object.hasOwn(raw, 'scopePrecision') || !isRecord(raw.scopePrecision)) {
56
+ errors.push('codeReview.scopePrecision must be an object');
57
+ }
58
+ else {
59
+ const sp = raw.scopePrecision;
60
+ if (!Object.hasOwn(sp, 'verdict') || typeof sp.verdict !== 'string' || !SCOPE_VERDICTS.has(sp.verdict)) {
61
+ errors.push(`codeReview.scopePrecision.verdict must be one of precise|too_broad|too_narrow, got ${String(sp.verdict)}`);
62
+ }
63
+ if (!Object.hasOwn(sp, 'explanation') || typeof sp.explanation !== 'string' || sp.explanation.trim() === '') {
64
+ errors.push('codeReview.scopePrecision.explanation must be a non-empty string');
65
+ }
66
+ }
67
+ // traceCoverage
68
+ if (!Object.hasOwn(raw, 'traceCoverage') || !isRecord(raw.traceCoverage)) {
69
+ errors.push('codeReview.traceCoverage must be an object');
70
+ }
71
+ else {
72
+ const tc = raw.traceCoverage;
73
+ if (!Object.hasOwn(tc, 'sufficient') || typeof tc.sufficient !== 'boolean') {
74
+ errors.push('codeReview.traceCoverage.sufficient must be a boolean');
75
+ }
76
+ if (!Object.hasOwn(tc, 'gaps') || !Array.isArray(tc.gaps)) {
77
+ errors.push('codeReview.traceCoverage.gaps must be an array');
78
+ }
79
+ else if (!tc.gaps.every((g) => typeof g === 'string')) {
80
+ errors.push('codeReview.traceCoverage.gaps must be an array of strings');
81
+ }
82
+ if (!Object.hasOwn(tc, 'explanation') || typeof tc.explanation !== 'string' || tc.explanation.trim() === '') {
83
+ errors.push('codeReview.traceCoverage.explanation must be a non-empty string');
84
+ }
85
+ }
86
+ return errors;
87
+ }
88
+ function validateAdversarialCases(raw) {
89
+ const errors = [];
90
+ if (!Array.isArray(raw)) {
91
+ errors.push('adversarialCases must be an array');
92
+ return errors;
93
+ }
94
+ raw.forEach((entry, index) => {
95
+ const prefix = `adversarialCases[${index}]`;
96
+ if (!isRecord(entry)) {
97
+ errors.push(`${prefix} must be an object`);
98
+ return;
99
+ }
100
+ if (!Object.hasOwn(entry, 'caseId') || typeof entry.caseId !== 'string' || entry.caseId.trim() === '') {
101
+ errors.push(`${prefix}.caseId must be a non-empty string`);
102
+ }
103
+ if (!Object.hasOwn(entry, 'attackType') || typeof entry.attackType !== 'string' || !ADVERSARIAL_ATTACK_TYPES.has(entry.attackType)) {
104
+ errors.push(`${prefix}.attackType must be one of boundary|omission|inversion, got ${String(entry.attackType)}`);
105
+ }
106
+ if (!Object.hasOwn(entry, 'toolName') || typeof entry.toolName !== 'string' || entry.toolName.trim() === '') {
107
+ errors.push(`${prefix}.toolName must be a non-empty string`);
108
+ }
109
+ if (!Object.hasOwn(entry, 'params') || !isRecord(entry.params)) {
110
+ errors.push(`${prefix}.params must be an object`);
111
+ }
112
+ if (!Object.hasOwn(entry, 'expectedDecision')
113
+ || typeof entry.expectedDecision !== 'string'
114
+ || !GOLDEN_TRACE_DECISIONS.has(entry.expectedDecision)) {
115
+ errors.push(`${prefix}.expectedDecision must be one of allow|block|propose_correction, got ${String(entry.expectedDecision)}`);
116
+ }
117
+ if (!Object.hasOwn(entry, 'rationale') || typeof entry.rationale !== 'string' || entry.rationale.trim() === '') {
118
+ errors.push(`${prefix}.rationale must be a non-empty string`);
119
+ }
120
+ });
121
+ return errors;
122
+ }
123
+ function validateAdversarialResult(raw) {
124
+ const errors = [];
125
+ if (!isRecord(raw)) {
126
+ errors.push('adversarialResult must be an object');
127
+ return errors;
128
+ }
129
+ if (!Object.hasOwn(raw, 'passed') || typeof raw.passed !== 'boolean') {
130
+ errors.push('adversarialResult.passed must be a boolean');
131
+ }
132
+ if (!Object.hasOwn(raw, 'failedCases') || !Array.isArray(raw.failedCases)) {
133
+ errors.push('adversarialResult.failedCases must be an array');
134
+ }
135
+ else {
136
+ raw.failedCases.forEach((entry, index) => {
137
+ const prefix = `adversarialResult.failedCases[${index}]`;
138
+ if (!isRecord(entry)) {
139
+ errors.push(`${prefix} must be an object`);
140
+ return;
141
+ }
142
+ if (!Object.hasOwn(entry, 'caseId') || typeof entry.caseId !== 'string' || entry.caseId.trim() === '') {
143
+ errors.push(`${prefix}.caseId must be a non-empty string`);
144
+ }
145
+ if (!Object.hasOwn(entry, 'attackType') || typeof entry.attackType !== 'string' || !ADVERSARIAL_ATTACK_TYPES.has(entry.attackType)) {
146
+ errors.push(`${prefix}.attackType must be one of boundary|omission|inversion, got ${String(entry.attackType)}`);
147
+ }
148
+ if (!Object.hasOwn(entry, 'actualDecision') || typeof entry.actualDecision !== 'string') {
149
+ errors.push(`${prefix}.actualDecision must be a string`);
150
+ }
151
+ if (!Object.hasOwn(entry, 'expectedDecision') || typeof entry.expectedDecision !== 'string') {
152
+ errors.push(`${prefix}.expectedDecision must be a string`);
153
+ }
154
+ if (!Object.hasOwn(entry, 'rationale') || typeof entry.rationale !== 'string' || entry.rationale.trim() === '') {
155
+ errors.push(`${prefix}.rationale must be a non-empty string`);
156
+ }
157
+ });
158
+ }
159
+ return errors;
160
+ }
161
+ /**
162
+ * Runtime type guard distinguishing V2 (code-review/adversarial-bearing)
163
+ * evaluator output from V1. A V2 output is one where at least one V2 field
164
+ * is present AND well-formed. Use after `validate()` (Runtime Contract Rule 2).
165
+ */
166
+ export function isEvaluatorOutputV2(output) {
167
+ if (!isRecord(output))
168
+ return false;
169
+ const hasCodeReview = Object.hasOwn(output, 'codeReview');
170
+ const hasCases = Object.hasOwn(output, 'adversarialCases');
171
+ const hasResult = Object.hasOwn(output, 'adversarialResult');
172
+ if (!hasCodeReview && !hasCases && !hasResult)
173
+ return false;
174
+ return (!hasCodeReview || validateCodeReview(output.codeReview).length === 0)
175
+ && (!hasCases || validateAdversarialCases(output.adversarialCases).length === 0)
176
+ && (!hasResult || validateAdversarialResult(output.adversarialResult).length === 0);
177
+ }
32
178
  export class DefaultEvaluatorValidator {
33
179
  // eslint-disable-next-line @typescript-eslint/class-methods-use-this
34
180
  async validate(output, taskId, expectedSourceArtificerArtifactId) {
@@ -111,6 +257,18 @@ export class DefaultEvaluatorValidator {
111
257
  if (!Object.hasOwn(output, 'generatedAt') || typeof output.generatedAt !== 'string' || output.generatedAt.trim() === '') {
112
258
  errors.push('generatedAt must be non-empty string');
113
259
  }
260
+ // ── V2 fields (optional; present only when Artificer output is V2) ──
261
+ // V1 backward compatibility: absence is valid. Presence requires well-formed
262
+ // structure (fail loud, ERR-009). Detect via Object.hasOwn (ERR-013).
263
+ if (Object.hasOwn(output, 'codeReview')) {
264
+ errors.push(...validateCodeReview(output.codeReview));
265
+ }
266
+ if (Object.hasOwn(output, 'adversarialCases')) {
267
+ errors.push(...validateAdversarialCases(output.adversarialCases));
268
+ }
269
+ if (Object.hasOwn(output, 'adversarialResult')) {
270
+ errors.push(...validateAdversarialResult(output.adversarialResult));
271
+ }
114
272
  return errors.length > 0
115
273
  ? { valid: false, errors, errorCategory: 'output_invalid' }
116
274
  : { valid: true, errors: [] };
@@ -1 +1 @@
1
- {"version":3,"file":"evaluator-output.js","sourceRoot":"","sources":["../../../src/runtime-v2/internalization/evaluator-output.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"evaluator-output.js","sourceRoot":"","sources":["../../../src/runtime-v2/internalization/evaluator-output.ts"],"names":[],"mappings":"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"}
@@ -3,12 +3,19 @@ export interface EvaluatorPromptBuilderInput {
3
3
  contextHash: string;
4
4
  sourceArtificerArtifactId: string;
5
5
  artificerArtifact: unknown;
6
+ /**
7
+ * Scribe principle artifact (RuleHost MVP Activation, PRD Decision 12).
8
+ * Present when code review applies (artificer output is V2). Carries the
9
+ * principle text the evaluator uses to judge intentConsistency / scopePrecision.
10
+ */
11
+ scribeArtifact?: unknown;
6
12
  }
7
13
  export interface EvaluatorPromptInput {
8
14
  taskId: string;
9
15
  contextHash: string;
10
16
  sourceArtificerArtifactId: string;
11
17
  artificerArtifact: unknown;
18
+ scribeArtifact?: unknown;
12
19
  evaluatorInstruction: string;
13
20
  promptContractVersion: string;
14
21
  }
@@ -16,7 +23,7 @@ export interface EvaluatorPromptBuildResult {
16
23
  readonly message: string;
17
24
  readonly promptInput: EvaluatorPromptInput;
18
25
  }
19
- export declare const EVALUATOR_PROTOCOL_INSTRUCTION = "You are an Evaluator agent in a principle internalization pipeline. Your role is to critically review the Artificer's implementation plan and produce a structured evaluation with a decision, score, and actionable feedback.\n\nPROTOCOL:\n1. Review the artificerArtifact to understand the proposed implementation plan\n2. Evaluate the plan against quality criteria: completeness, feasibility, test coverage, risk mitigation\n3. Produce a decision: approved (plan is sound), needs_revision (plan has issues but is salvageable), or rejected (plan is fundamentally flawed)\n4. Provide a score from 0.0 to 1.0 reflecting overall quality\n5. List specific strengths, concerns, and required changes\n6. Preserve the lineage trace from artificer, scribe, philosopher, and dreamer artifacts\n7. Identify risks associated with this evaluation\n\nCRITICAL: Your ENTIRE response must be ONLY the JSON object below. Do NOT include any text before or after the JSON. Do NOT wrap the JSON in markdown code fences. Do NOT add explanatory prose. Output the raw JSON object and nothing else.\n\nCOMPLETE EXAMPLE OUTPUT (follow this exact structure):\n{\"taskId\":\"task-123\",\"sourceArtificerArtifactId\":\"pi-art-artificer-001\",\"evaluation\":{\"decision\":\"approved\",\"summary\":\"The implementation plan is well-structured and addresses the identified issues.\",\"score\":0.85,\"strengths\":[\"Clear change descriptions with specific file targets\",\"Good test coverage plan\"],\"concerns\":[\"Rollout notes could be more specific about monitoring\"],\"requiredChanges\":[]},\"sourceTrace\":{\"artificerArtifactId\":\"pi-art-artificer-001\"},\"risks\":[\"May need additional integration tests\"],\"generatedAt\":\"2026-05-11T12:00:00.000Z\"}\n\nCONSTRAINTS:\n- Output ONLY valid JSON \u2014 no markdown, no explanatory text, no code fences, no prose before or after\n- evaluation.decision MUST be one of: approved, needs_revision, rejected\n- evaluation.summary MUST be a non-empty string\n- evaluation.score MUST be a number between 0.0 and 1.0 (NOT a string, NOT a percentage)\n- evaluation.strengths MUST be an array of strings (can be empty)\n- evaluation.concerns MUST be an array of strings (can be empty)\n- evaluation.requiredChanges MUST be an array of strings (can be empty)\n- sourceArtificerArtifactId MUST be copied exactly from input.sourceArtificerArtifactId (non-empty string)\n- sourceTrace.artificerArtifactId MUST be copied exactly from input.sourceArtificerArtifactId\n- sourceTrace.scribeArtifactId is optional \u2014 include only if available from artificer artifact\n- sourceTrace.philosopherArtifactId is optional \u2014 include only if available from artificer artifact\n- sourceTrace.dreamerArtifactId is optional \u2014 include only if available from artificer artifact\n- risks MUST be an array of strings (can be empty if no risks identified)\n- generatedAt MUST be an ISO-8601 timestamp string\n";
26
+ export declare const EVALUATOR_PROTOCOL_INSTRUCTION = "You are an Evaluator agent in a principle internalization pipeline. Your role is to critically review the Artificer's implementation plan and produce a structured evaluation with a decision, score, and actionable feedback.\n\nPROTOCOL:\n1. Review the artificerArtifact to understand the proposed implementation plan\n2. Evaluate the plan against quality criteria: completeness, feasibility, test coverage, risk mitigation\n3. Produce a decision: approved (plan is sound), needs_revision (plan has issues but is salvageable), or rejected (plan is fundamentally flawed)\n4. Provide a score from 0.0 to 1.0 reflecting overall quality\n5. List specific strengths, concerns, and required changes\n6. Preserve the lineage trace from artificer, scribe, philosopher, and dreamer artifacts\n7. Identify risks associated with this evaluation\n\nCODE REVIEW (Part A \u2014 Passive Review): When the artificerArtifact contains an \"implementationCode\" field (V2 output), you MUST additionally review the generated code across three dimensions and emit a \"codeReview\" object:\n- intentConsistency: { aligned: boolean, explanation: string } \u2014 Does the code logic match the constraint intent described in the scribe principle text? Read the principle text (scribeArtifact.principleDraft or painReasonSummary), then read the code, then judge whether the code precisely implements the described constraint.\n- scopePrecision: { verdict: \"precise\" | \"too_broad\" | \"too_narrow\", explanation: string } \u2014 Are the match conditions over-broad (false positive risk, e.g. using includes() substring matching) or over-narrow (false negative risk, e.g. hardcoded paths)?\n- traceCoverage: { sufficient: boolean, gaps: string[], explanation: string } \u2014 Do the goldenTraceCases cover the key scenarios described in the principle (both positive and negative)?\n\nIf ANY of the three dimensions fails (aligned=false, OR verdict!=precise, OR sufficient=false), set evaluation.decision to \"needs_revision\" and describe the gap in concerns/requiredChanges.\n\nADVERSARIAL CASES (Part B \u2014 only when Part A passes): If and only if all three passive-review dimensions pass (aligned=true AND verdict=precise AND sufficient=true), ALSO generate 3-5 \"adversarialCases\" \u2014 test inputs designed to expose gaps between the principle text and the code's actual behavior. Each case: { caseId, attackType: \"boundary\"|\"omission\"|\"inversion\", toolName, params, expectedDecision: \"allow\"|\"block\"|\"propose_correction\", rationale }. If Part A does NOT fully pass, do NOT generate adversarialCases (short-circuit: skip adversarial generation on passive-review failure to save tokens).\n\nCRITICAL: Your ENTIRE response must be ONLY the JSON object below. Do NOT include any text before or after the JSON. Do NOT wrap the JSON in markdown code fences. Do NOT add explanatory prose. Output the raw JSON object and nothing else.\n\nCOMPLETE EXAMPLE OUTPUT FOR A V2 ARTIFICER INPUT (follow this exact structure):\n{\"taskId\":\"task-123\",\"sourceArtificerArtifactId\":\"pi-art-artificer-001\",\"evaluation\":{\"decision\":\"approved\",\"summary\":\"The rule matches the principle and survives adversarial review.\",\"score\":0.85,\"strengths\":[\"Exact path-segment check\"],\"concerns\":[],\"requiredChanges\":[]},\"sourceTrace\":{\"artificerArtifactId\":\"pi-art-artificer-001\"},\"risks\":[],\"codeReview\":{\"intentConsistency\":{\"aligned\":true,\"explanation\":\"The rule enforces the stated confirmation boundary.\"},\"scopePrecision\":{\"verdict\":\"precise\",\"explanation\":\"It avoids substring and sibling-prefix matches.\"},\"traceCoverage\":{\"sufficient\":true,\"gaps\":[],\"explanation\":\"Positive, negative, and boundary cases are covered.\"}},\"adversarialCases\":[{\"caseId\":\"adversarial-1\",\"attackType\":\"boundary\",\"toolName\":\"write_file\",\"params\":{\"path\":\"/system-backup/file\"},\"expectedDecision\":\"allow\",\"rationale\":\"A sibling prefix must not be blocked.\"},{\"caseId\":\"adversarial-2\",\"attackType\":\"omission\",\"toolName\":\"write_file\",\"params\":{\"path\":\"/system/file\"},\"expectedDecision\":\"block\",\"rationale\":\"The protected path must be blocked.\"},{\"caseId\":\"adversarial-3\",\"attackType\":\"inversion\",\"toolName\":\"read_file\",\"params\":{\"path\":\"/system/file\"},\"expectedDecision\":\"allow\",\"rationale\":\"A non-writing tool must remain allowed.\"}],\"generatedAt\":\"<current ISO-8601 timestamp>\"}\n\nCONSTRAINTS:\n- Output ONLY valid JSON \u2014 no markdown, no explanatory text, no code fences, no prose before or after\n- evaluation.decision MUST be one of: approved, needs_revision, rejected\n- evaluation.summary MUST be a non-empty string\n- evaluation.score MUST be a number between 0.0 and 1.0 (NOT a string, NOT a percentage)\n- evaluation.strengths MUST be an array of strings (can be empty)\n- evaluation.concerns MUST be an array of strings (can be empty)\n- evaluation.requiredChanges MUST be an array of strings (can be empty)\n- sourceArtificerArtifactId MUST be copied exactly from input.sourceArtificerArtifactId (non-empty string)\n- sourceTrace.artificerArtifactId MUST be copied exactly from input.sourceArtificerArtifactId\n- sourceTrace.scribeArtifactId is optional \u2014 include only if available from artificer artifact\n- sourceTrace.philosopherArtifactId is optional \u2014 include only if available from artificer artifact\n- sourceTrace.dreamerArtifactId is optional \u2014 include only if available from artificer artifact\n- risks MUST be an array of strings (can be empty if no risks identified)\n- generatedAt MUST be the current ISO-8601 timestamp (use the actual current time, NOT a placeholder)\n- codeReview (when present) MUST contain intentConsistency, scopePrecision, and traceCoverage\n- adversarialCases (when present) MUST be an array of 3-5 objects; omit entirely when passive review fails\n";
20
27
  export declare const EVALUATOR_PROMPT_CONTRACT_VERSION = "evaluator-output-v1.prompt.v1";
21
28
  export declare class EvaluatorPromptBuilder {
22
29
  buildPrompt(input: EvaluatorPromptBuilderInput): EvaluatorPromptBuildResult;
@@ -1 +1 @@
1
- {"version":3,"file":"evaluator-prompt-builder.d.ts","sourceRoot":"","sources":["../../../src/runtime-v2/internalization/evaluator-prompt-builder.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,2BAA2B;IAC1C,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,yBAAyB,EAAE,MAAM,CAAC;IAClC,iBAAiB,EAAE,OAAO,CAAC;CAC5B;AAED,MAAM,WAAW,oBAAoB;IACnC,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,yBAAyB,EAAE,MAAM,CAAC;IAClC,iBAAiB,EAAE,OAAO,CAAC;IAC3B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,qBAAqB,EAAE,MAAM,CAAC;CAC/B;AAED,MAAM,WAAW,0BAA0B;IACzC,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,WAAW,EAAE,oBAAoB,CAAC;CAC5C;AAED,eAAO,MAAM,8BAA8B,s2FA+B1C,CAAC;AAEF,eAAO,MAAM,iCAAiC,kCAAkC,CAAC;AAEjF,qBAAa,sBAAsB;IAEjC,WAAW,CAAC,KAAK,EAAE,2BAA2B,GAAG,0BAA0B;CAc5E"}
1
+ {"version":3,"file":"evaluator-prompt-builder.d.ts","sourceRoot":"","sources":["../../../src/runtime-v2/internalization/evaluator-prompt-builder.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,2BAA2B;IAC1C,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,yBAAyB,EAAE,MAAM,CAAC;IAClC,iBAAiB,EAAE,OAAO,CAAC;IAC3B;;;;OAIG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,MAAM,WAAW,oBAAoB;IACnC,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,yBAAyB,EAAE,MAAM,CAAC;IAClC,iBAAiB,EAAE,OAAO,CAAC;IAC3B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,qBAAqB,EAAE,MAAM,CAAC;CAC/B;AAED,MAAM,WAAW,0BAA0B;IACzC,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,WAAW,EAAE,oBAAoB,CAAC;CAC5C;AAED,eAAO,MAAM,8BAA8B,6xLA0C1C,CAAC;AAEF,eAAO,MAAM,iCAAiC,kCAAkC,CAAC;AAEjF,qBAAa,sBAAsB;IAEjC,WAAW,CAAC,KAAK,EAAE,2BAA2B,GAAG,0BAA0B;CAe5E"}
@@ -1,3 +1,4 @@
1
+ import { serializePromptInput } from './prompt-serializer.js';
1
2
  export const EVALUATOR_PROTOCOL_INSTRUCTION = `You are an Evaluator agent in a principle internalization pipeline. Your role is to critically review the Artificer's implementation plan and produce a structured evaluation with a decision, score, and actionable feedback.
2
3
 
3
4
  PROTOCOL:
@@ -9,10 +10,19 @@ PROTOCOL:
9
10
  6. Preserve the lineage trace from artificer, scribe, philosopher, and dreamer artifacts
10
11
  7. Identify risks associated with this evaluation
11
12
 
13
+ CODE REVIEW (Part A — Passive Review): When the artificerArtifact contains an "implementationCode" field (V2 output), you MUST additionally review the generated code across three dimensions and emit a "codeReview" object:
14
+ - intentConsistency: { aligned: boolean, explanation: string } — Does the code logic match the constraint intent described in the scribe principle text? Read the principle text (scribeArtifact.principleDraft or painReasonSummary), then read the code, then judge whether the code precisely implements the described constraint.
15
+ - scopePrecision: { verdict: "precise" | "too_broad" | "too_narrow", explanation: string } — Are the match conditions over-broad (false positive risk, e.g. using includes() substring matching) or over-narrow (false negative risk, e.g. hardcoded paths)?
16
+ - traceCoverage: { sufficient: boolean, gaps: string[], explanation: string } — Do the goldenTraceCases cover the key scenarios described in the principle (both positive and negative)?
17
+
18
+ If ANY of the three dimensions fails (aligned=false, OR verdict!=precise, OR sufficient=false), set evaluation.decision to "needs_revision" and describe the gap in concerns/requiredChanges.
19
+
20
+ ADVERSARIAL CASES (Part B — only when Part A passes): If and only if all three passive-review dimensions pass (aligned=true AND verdict=precise AND sufficient=true), ALSO generate 3-5 "adversarialCases" — test inputs designed to expose gaps between the principle text and the code's actual behavior. Each case: { caseId, attackType: "boundary"|"omission"|"inversion", toolName, params, expectedDecision: "allow"|"block"|"propose_correction", rationale }. If Part A does NOT fully pass, do NOT generate adversarialCases (short-circuit: skip adversarial generation on passive-review failure to save tokens).
21
+
12
22
  CRITICAL: Your ENTIRE response must be ONLY the JSON object below. Do NOT include any text before or after the JSON. Do NOT wrap the JSON in markdown code fences. Do NOT add explanatory prose. Output the raw JSON object and nothing else.
13
23
 
14
- COMPLETE EXAMPLE OUTPUT (follow this exact structure):
15
- {"taskId":"task-123","sourceArtificerArtifactId":"pi-art-artificer-001","evaluation":{"decision":"approved","summary":"The implementation plan is well-structured and addresses the identified issues.","score":0.85,"strengths":["Clear change descriptions with specific file targets","Good test coverage plan"],"concerns":["Rollout notes could be more specific about monitoring"],"requiredChanges":[]},"sourceTrace":{"artificerArtifactId":"pi-art-artificer-001"},"risks":["May need additional integration tests"],"generatedAt":"2026-05-11T12:00:00.000Z"}
24
+ COMPLETE EXAMPLE OUTPUT FOR A V2 ARTIFICER INPUT (follow this exact structure):
25
+ {"taskId":"task-123","sourceArtificerArtifactId":"pi-art-artificer-001","evaluation":{"decision":"approved","summary":"The rule matches the principle and survives adversarial review.","score":0.85,"strengths":["Exact path-segment check"],"concerns":[],"requiredChanges":[]},"sourceTrace":{"artificerArtifactId":"pi-art-artificer-001"},"risks":[],"codeReview":{"intentConsistency":{"aligned":true,"explanation":"The rule enforces the stated confirmation boundary."},"scopePrecision":{"verdict":"precise","explanation":"It avoids substring and sibling-prefix matches."},"traceCoverage":{"sufficient":true,"gaps":[],"explanation":"Positive, negative, and boundary cases are covered."}},"adversarialCases":[{"caseId":"adversarial-1","attackType":"boundary","toolName":"write_file","params":{"path":"/system-backup/file"},"expectedDecision":"allow","rationale":"A sibling prefix must not be blocked."},{"caseId":"adversarial-2","attackType":"omission","toolName":"write_file","params":{"path":"/system/file"},"expectedDecision":"block","rationale":"The protected path must be blocked."},{"caseId":"adversarial-3","attackType":"inversion","toolName":"read_file","params":{"path":"/system/file"},"expectedDecision":"allow","rationale":"A non-writing tool must remain allowed."}],"generatedAt":"<current ISO-8601 timestamp>"}
16
26
 
17
27
  CONSTRAINTS:
18
28
  - Output ONLY valid JSON — no markdown, no explanatory text, no code fences, no prose before or after
@@ -28,7 +38,9 @@ CONSTRAINTS:
28
38
  - sourceTrace.philosopherArtifactId is optional — include only if available from artificer artifact
29
39
  - sourceTrace.dreamerArtifactId is optional — include only if available from artificer artifact
30
40
  - risks MUST be an array of strings (can be empty if no risks identified)
31
- - generatedAt MUST be an ISO-8601 timestamp string
41
+ - generatedAt MUST be the current ISO-8601 timestamp (use the actual current time, NOT a placeholder)
42
+ - codeReview (when present) MUST contain intentConsistency, scopePrecision, and traceCoverage
43
+ - adversarialCases (when present) MUST be an array of 3-5 objects; omit entirely when passive review fails
32
44
  `;
33
45
  export const EVALUATOR_PROMPT_CONTRACT_VERSION = 'evaluator-output-v1.prompt.v1';
34
46
  export class EvaluatorPromptBuilder {
@@ -39,10 +51,11 @@ export class EvaluatorPromptBuilder {
39
51
  contextHash: input.contextHash,
40
52
  sourceArtificerArtifactId: input.sourceArtificerArtifactId,
41
53
  artificerArtifact: input.artificerArtifact,
54
+ scribeArtifact: input.scribeArtifact,
42
55
  evaluatorInstruction: EVALUATOR_PROTOCOL_INSTRUCTION,
43
56
  promptContractVersion: EVALUATOR_PROMPT_CONTRACT_VERSION,
44
57
  };
45
- const message = JSON.stringify(promptInput);
58
+ const message = serializePromptInput(promptInput);
46
59
  return { message, promptInput };
47
60
  }
48
61
  }
@@ -1 +1 @@
1
- {"version":3,"file":"evaluator-prompt-builder.js","sourceRoot":"","sources":["../../../src/runtime-v2/internalization/evaluator-prompt-builder.ts"],"names":[],"mappings":"AAqBA,MAAM,CAAC,MAAM,8BAA8B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+B7C,CAAC;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,+BAA+B,CAAC;AAEjF,MAAM,OAAO,sBAAsB;IACjC,qEAAqE;IACrE,WAAW,CAAC,KAAkC;QAC5C,MAAM,WAAW,GAAyB;YACxC,MAAM,EAAE,KAAK,CAAC,MAAM;YACpB,WAAW,EAAE,KAAK,CAAC,WAAW;YAC9B,yBAAyB,EAAE,KAAK,CAAC,yBAAyB;YAC1D,iBAAiB,EAAE,KAAK,CAAC,iBAAiB;YAC1C,oBAAoB,EAAE,8BAA8B;YACpD,qBAAqB,EAAE,iCAAiC;SACzD,CAAC;QAEF,MAAM,OAAO,GAAG,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC;QAE5C,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,CAAC;IAClC,CAAC;CACF"}
1
+ {"version":3,"file":"evaluator-prompt-builder.js","sourceRoot":"","sources":["../../../src/runtime-v2/internalization/evaluator-prompt-builder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AA8B9D,MAAM,CAAC,MAAM,8BAA8B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0C7C,CAAC;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,+BAA+B,CAAC;AAEjF,MAAM,OAAO,sBAAsB;IACjC,qEAAqE;IACrE,WAAW,CAAC,KAAkC;QAC5C,MAAM,WAAW,GAAyB;YACxC,MAAM,EAAE,KAAK,CAAC,MAAM;YACpB,WAAW,EAAE,KAAK,CAAC,WAAW;YAC9B,yBAAyB,EAAE,KAAK,CAAC,yBAAyB;YAC1D,iBAAiB,EAAE,KAAK,CAAC,iBAAiB;YAC1C,cAAc,EAAE,KAAK,CAAC,cAAc;YACpC,oBAAoB,EAAE,8BAA8B;YACpD,qBAAqB,EAAE,iCAAiC;SACzD,CAAC;QAEF,MAAM,OAAO,GAAG,oBAAoB,CAAC,WAAW,CAAC,CAAC;QAElD,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,CAAC;IAClC,CAAC;CACF"}