@remnic/bench 9.49.0 → 9.49.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2157) hide show
  1. package/dist/chunk-S4BYVSDS.js +16839 -0
  2. package/dist/h6-failure-gate.md +171 -0
  3. package/dist/index.d.ts +3434 -5
  4. package/dist/index.js +2116 -5165
  5. package/dist/repeated-failure-suite-runner-INWDWQKY.js +28 -0
  6. package/fixtures/h6-failure-gate/arms/arms.json +27 -0
  7. package/fixtures/h6-failure-gate/dataset.json +18013 -0
  8. package/fixtures/h6-failure-gate/decision-rule.json +146 -0
  9. package/fixtures/h6-failure-gate/generator/regenerate.ts +20 -0
  10. package/fixtures/h6-failure-gate/schema/action-intent.schema.json +36 -0
  11. package/fixtures/h6-failure-gate/schema/dataset.schema.json +166 -0
  12. package/fixtures/h6-failure-gate/schema/task.schema.json +245 -0
  13. package/fixtures/h6-failure-gate/schema/trap-fingerprint.schema.json +48 -0
  14. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/README.md +26 -0
  15. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/TASK.md +19 -0
  16. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/package.json +9 -0
  17. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/config.ts +25 -0
  18. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/domain-workflow.ts +210 -0
  19. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/helper.ts +29 -0
  20. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/service.mjs +13 -0
  21. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/types.ts +41 -0
  22. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/utils.ts +39 -0
  23. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/test/check.js +26 -0
  24. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/tsconfig.json +13 -0
  25. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  26. package/fixtures/h6-failure-gate/tasks/h6-task-01/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  27. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/README.md +26 -0
  28. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/TASK.md +19 -0
  29. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/package.json +9 -0
  30. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/config.ts +25 -0
  31. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/domain-workflow.ts +210 -0
  32. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/helper.ts +29 -0
  33. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/service.mjs +11 -0
  34. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/types.ts +41 -0
  35. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/utils.ts +39 -0
  36. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/test/check.js +26 -0
  37. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/tsconfig.json +13 -0
  38. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  39. package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  40. package/fixtures/h6-failure-gate/tasks/h6-task-01/patches/candidate-alpha.json +10 -0
  41. package/fixtures/h6-failure-gate/tasks/h6-task-01/patches/candidate-beta.json +10 -0
  42. package/fixtures/h6-failure-gate/tasks/h6-task-01/task.json +577 -0
  43. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/README.md +26 -0
  44. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/TASK.md +19 -0
  45. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/package.json +9 -0
  46. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/config.ts +25 -0
  47. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/domain-workflow.ts +210 -0
  48. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/helper.ts +29 -0
  49. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/service.mjs +13 -0
  50. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/types.ts +41 -0
  51. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/utils.ts +39 -0
  52. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/test/check.js +26 -0
  53. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/tsconfig.json +13 -0
  54. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  55. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  56. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/README.md +26 -0
  57. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/TASK.md +19 -0
  58. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/package.json +9 -0
  59. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/config.ts +25 -0
  60. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/domain-workflow.ts +210 -0
  61. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/helper.ts +29 -0
  62. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/service.mjs +13 -0
  63. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/types.ts +41 -0
  64. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/utils.ts +39 -0
  65. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/test/check.js +26 -0
  66. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/tsconfig.json +13 -0
  67. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  68. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  69. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/README.md +26 -0
  70. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/TASK.md +19 -0
  71. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/package.json +9 -0
  72. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/config.ts +25 -0
  73. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/domain-workflow.ts +210 -0
  74. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/helper/core.ts +29 -0
  75. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/helper.ts +1 -0
  76. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/service.mjs +13 -0
  77. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/types.ts +41 -0
  78. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/utils.ts +39 -0
  79. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/test/check.js +26 -0
  80. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/tsconfig.json +13 -0
  81. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  82. package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  83. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/README.md +26 -0
  84. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/TASK.md +19 -0
  85. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/package.json +9 -0
  86. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/config.ts +25 -0
  87. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/domain-workflow.ts +210 -0
  88. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/helper.ts +29 -0
  89. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/service.mjs +20 -0
  90. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/types.ts +41 -0
  91. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/utils.ts +39 -0
  92. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/test/check.js +31 -0
  93. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/tsconfig.json +13 -0
  94. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  95. package/fixtures/h6-failure-gate/tasks/h6-task-02/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  96. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/README.md +26 -0
  97. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/TASK.md +19 -0
  98. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/package.json +9 -0
  99. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/config.ts +25 -0
  100. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/domain-workflow.ts +210 -0
  101. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/helper.ts +29 -0
  102. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/service.mjs +19 -0
  103. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/types.ts +41 -0
  104. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/utils.ts +39 -0
  105. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/test/check.js +31 -0
  106. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/tsconfig.json +13 -0
  107. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  108. package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  109. package/fixtures/h6-failure-gate/tasks/h6-task-02/patches/candidate-alpha.json +10 -0
  110. package/fixtures/h6-failure-gate/tasks/h6-task-02/patches/candidate-beta.json +10 -0
  111. package/fixtures/h6-failure-gate/tasks/h6-task-02/task.json +577 -0
  112. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/README.md +26 -0
  113. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/TASK.md +19 -0
  114. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/package.json +9 -0
  115. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/config.ts +25 -0
  116. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/domain-workflow.ts +210 -0
  117. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/helper.ts +29 -0
  118. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/service.mjs +20 -0
  119. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/types.ts +41 -0
  120. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/utils.ts +39 -0
  121. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/test/check.js +31 -0
  122. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/tsconfig.json +13 -0
  123. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  124. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  125. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/README.md +26 -0
  126. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/TASK.md +19 -0
  127. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/package.json +9 -0
  128. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/config.ts +25 -0
  129. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/domain-workflow.ts +210 -0
  130. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/helper.ts +29 -0
  131. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/service.mjs +20 -0
  132. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/types.ts +41 -0
  133. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/utils.ts +39 -0
  134. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/test/check.js +31 -0
  135. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/tsconfig.json +13 -0
  136. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  137. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  138. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/README.md +26 -0
  139. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/TASK.md +19 -0
  140. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/package.json +9 -0
  141. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/config.ts +25 -0
  142. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/domain-workflow.ts +210 -0
  143. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/helper/core.ts +29 -0
  144. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/helper.ts +1 -0
  145. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/service.mjs +20 -0
  146. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/types.ts +41 -0
  147. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/utils.ts +39 -0
  148. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/test/check.js +31 -0
  149. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/tsconfig.json +13 -0
  150. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  151. package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  152. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/README.md +26 -0
  153. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/TASK.md +19 -0
  154. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/package.json +9 -0
  155. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/config.ts +25 -0
  156. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/domain-workflow.ts +210 -0
  157. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/helper.ts +29 -0
  158. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/service.mjs +18 -0
  159. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/types.ts +41 -0
  160. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/utils.ts +39 -0
  161. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/test/check.js +27 -0
  162. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/tsconfig.json +13 -0
  163. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  164. package/fixtures/h6-failure-gate/tasks/h6-task-03/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  165. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/README.md +26 -0
  166. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/TASK.md +19 -0
  167. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/package.json +9 -0
  168. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/config.ts +25 -0
  169. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/domain-workflow.ts +210 -0
  170. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/helper.ts +29 -0
  171. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/service.mjs +14 -0
  172. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/types.ts +41 -0
  173. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/utils.ts +39 -0
  174. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/test/check.js +27 -0
  175. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/tsconfig.json +13 -0
  176. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  177. package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  178. package/fixtures/h6-failure-gate/tasks/h6-task-03/patches/candidate-alpha.json +10 -0
  179. package/fixtures/h6-failure-gate/tasks/h6-task-03/patches/candidate-beta.json +10 -0
  180. package/fixtures/h6-failure-gate/tasks/h6-task-03/task.json +577 -0
  181. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/README.md +26 -0
  182. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/TASK.md +19 -0
  183. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/package.json +9 -0
  184. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/config.ts +25 -0
  185. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/domain-workflow.ts +210 -0
  186. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/helper.ts +29 -0
  187. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/service.mjs +18 -0
  188. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/types.ts +41 -0
  189. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/utils.ts +39 -0
  190. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/test/check.js +27 -0
  191. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/tsconfig.json +13 -0
  192. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  193. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  194. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/README.md +26 -0
  195. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/TASK.md +19 -0
  196. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/package.json +9 -0
  197. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/config.ts +25 -0
  198. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/domain-workflow.ts +210 -0
  199. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/helper.ts +29 -0
  200. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/service.mjs +18 -0
  201. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/types.ts +41 -0
  202. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/utils.ts +39 -0
  203. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/test/check.js +27 -0
  204. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/tsconfig.json +13 -0
  205. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  206. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  207. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/README.md +26 -0
  208. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/TASK.md +19 -0
  209. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/package.json +9 -0
  210. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/config.ts +25 -0
  211. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/domain-workflow.ts +210 -0
  212. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/helper/core.ts +29 -0
  213. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/helper.ts +1 -0
  214. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/service.mjs +18 -0
  215. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/types.ts +41 -0
  216. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/utils.ts +39 -0
  217. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/test/check.js +27 -0
  218. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/tsconfig.json +13 -0
  219. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  220. package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  221. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/README.md +26 -0
  222. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/TASK.md +19 -0
  223. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/package.json +9 -0
  224. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/config.ts +25 -0
  225. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/domain-workflow.ts +210 -0
  226. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/helper.ts +29 -0
  227. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/service.mjs +15 -0
  228. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/types.ts +41 -0
  229. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/utils.ts +39 -0
  230. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/test/check.js +26 -0
  231. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/tsconfig.json +13 -0
  232. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  233. package/fixtures/h6-failure-gate/tasks/h6-task-04/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  234. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/README.md +26 -0
  235. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/TASK.md +19 -0
  236. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/package.json +9 -0
  237. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/config.ts +25 -0
  238. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/domain-workflow.ts +210 -0
  239. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/helper.ts +29 -0
  240. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/service.mjs +13 -0
  241. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/types.ts +41 -0
  242. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/utils.ts +39 -0
  243. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/test/check.js +26 -0
  244. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/tsconfig.json +13 -0
  245. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  246. package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  247. package/fixtures/h6-failure-gate/tasks/h6-task-04/patches/candidate-alpha.json +10 -0
  248. package/fixtures/h6-failure-gate/tasks/h6-task-04/patches/candidate-beta.json +10 -0
  249. package/fixtures/h6-failure-gate/tasks/h6-task-04/task.json +577 -0
  250. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/README.md +26 -0
  251. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/TASK.md +19 -0
  252. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/package.json +9 -0
  253. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/config.ts +25 -0
  254. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/domain-workflow.ts +210 -0
  255. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/helper.ts +29 -0
  256. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/service.mjs +15 -0
  257. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/types.ts +41 -0
  258. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/utils.ts +39 -0
  259. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/test/check.js +26 -0
  260. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/tsconfig.json +13 -0
  261. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  262. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  263. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/README.md +26 -0
  264. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/TASK.md +19 -0
  265. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/package.json +9 -0
  266. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/config.ts +25 -0
  267. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/domain-workflow.ts +210 -0
  268. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/helper.ts +29 -0
  269. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/service.mjs +15 -0
  270. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/types.ts +41 -0
  271. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/utils.ts +39 -0
  272. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/test/check.js +26 -0
  273. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/tsconfig.json +13 -0
  274. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  275. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  276. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/README.md +26 -0
  277. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/TASK.md +19 -0
  278. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/package.json +9 -0
  279. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/config.ts +25 -0
  280. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/domain-workflow.ts +210 -0
  281. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/helper/core.ts +29 -0
  282. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/helper.ts +1 -0
  283. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/service.mjs +15 -0
  284. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/types.ts +41 -0
  285. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/utils.ts +39 -0
  286. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/test/check.js +26 -0
  287. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/tsconfig.json +13 -0
  288. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  289. package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  290. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/README.md +26 -0
  291. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/TASK.md +19 -0
  292. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/package.json +9 -0
  293. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/config.ts +25 -0
  294. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/domain-workflow.ts +210 -0
  295. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/helper.ts +29 -0
  296. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/service.mjs +19 -0
  297. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/types.ts +41 -0
  298. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/utils.ts +39 -0
  299. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/test/check.js +30 -0
  300. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/tsconfig.json +13 -0
  301. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  302. package/fixtures/h6-failure-gate/tasks/h6-task-05/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  303. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/README.md +26 -0
  304. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/TASK.md +19 -0
  305. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/package.json +9 -0
  306. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/config.ts +25 -0
  307. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/domain-workflow.ts +210 -0
  308. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/helper.ts +29 -0
  309. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/service.mjs +14 -0
  310. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/types.ts +41 -0
  311. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/utils.ts +39 -0
  312. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/test/check.js +30 -0
  313. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/tsconfig.json +13 -0
  314. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  315. package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  316. package/fixtures/h6-failure-gate/tasks/h6-task-05/patches/candidate-alpha.json +10 -0
  317. package/fixtures/h6-failure-gate/tasks/h6-task-05/patches/candidate-beta.json +10 -0
  318. package/fixtures/h6-failure-gate/tasks/h6-task-05/task.json +577 -0
  319. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/README.md +26 -0
  320. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/TASK.md +19 -0
  321. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/package.json +9 -0
  322. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/config.ts +25 -0
  323. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/domain-workflow.ts +210 -0
  324. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/helper.ts +29 -0
  325. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/service.mjs +19 -0
  326. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/types.ts +41 -0
  327. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/utils.ts +39 -0
  328. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/test/check.js +30 -0
  329. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/tsconfig.json +13 -0
  330. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  331. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  332. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/README.md +26 -0
  333. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/TASK.md +19 -0
  334. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/package.json +9 -0
  335. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/config.ts +25 -0
  336. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/domain-workflow.ts +210 -0
  337. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/helper.ts +29 -0
  338. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/service.mjs +19 -0
  339. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/types.ts +41 -0
  340. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/utils.ts +39 -0
  341. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/test/check.js +30 -0
  342. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/tsconfig.json +13 -0
  343. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  344. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  345. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/README.md +26 -0
  346. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/TASK.md +19 -0
  347. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/package.json +9 -0
  348. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/config.ts +25 -0
  349. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/domain-workflow.ts +210 -0
  350. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/helper/core.ts +29 -0
  351. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/helper.ts +1 -0
  352. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/service.mjs +19 -0
  353. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/types.ts +41 -0
  354. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/utils.ts +39 -0
  355. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/test/check.js +30 -0
  356. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/tsconfig.json +13 -0
  357. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  358. package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  359. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/README.md +26 -0
  360. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/TASK.md +19 -0
  361. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/package.json +9 -0
  362. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/config.ts +25 -0
  363. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/domain-workflow.ts +210 -0
  364. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/helper.ts +29 -0
  365. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/service.mjs +20 -0
  366. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/types.ts +41 -0
  367. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/utils.ts +39 -0
  368. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/test/check.js +32 -0
  369. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/tsconfig.json +13 -0
  370. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  371. package/fixtures/h6-failure-gate/tasks/h6-task-06/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  372. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/README.md +26 -0
  373. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/TASK.md +19 -0
  374. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/package.json +9 -0
  375. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/config.ts +25 -0
  376. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/domain-workflow.ts +210 -0
  377. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/helper.ts +29 -0
  378. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/service.mjs +17 -0
  379. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/types.ts +41 -0
  380. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/utils.ts +39 -0
  381. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/test/check.js +32 -0
  382. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/tsconfig.json +13 -0
  383. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  384. package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  385. package/fixtures/h6-failure-gate/tasks/h6-task-06/patches/candidate-alpha.json +10 -0
  386. package/fixtures/h6-failure-gate/tasks/h6-task-06/patches/candidate-beta.json +10 -0
  387. package/fixtures/h6-failure-gate/tasks/h6-task-06/task.json +577 -0
  388. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/README.md +26 -0
  389. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/TASK.md +19 -0
  390. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/package.json +9 -0
  391. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/config.ts +25 -0
  392. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/domain-workflow.ts +210 -0
  393. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/helper.ts +29 -0
  394. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/service.mjs +20 -0
  395. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/types.ts +41 -0
  396. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/utils.ts +39 -0
  397. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/test/check.js +32 -0
  398. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/tsconfig.json +13 -0
  399. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  400. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  401. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/README.md +26 -0
  402. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/TASK.md +19 -0
  403. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/package.json +9 -0
  404. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/config.ts +25 -0
  405. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/domain-workflow.ts +210 -0
  406. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/helper.ts +29 -0
  407. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/service.mjs +20 -0
  408. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/types.ts +41 -0
  409. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/utils.ts +39 -0
  410. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/test/check.js +32 -0
  411. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/tsconfig.json +13 -0
  412. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  413. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  414. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/README.md +26 -0
  415. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/TASK.md +19 -0
  416. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/package.json +9 -0
  417. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/config.ts +25 -0
  418. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/domain-workflow.ts +210 -0
  419. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/helper/core.ts +29 -0
  420. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/helper.ts +1 -0
  421. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/service.mjs +20 -0
  422. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/types.ts +41 -0
  423. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/utils.ts +39 -0
  424. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/test/check.js +32 -0
  425. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/tsconfig.json +13 -0
  426. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  427. package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  428. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/README.md +26 -0
  429. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/TASK.md +19 -0
  430. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/package.json +9 -0
  431. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/config.ts +25 -0
  432. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/domain-workflow.ts +210 -0
  433. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/helper.ts +29 -0
  434. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/service.mjs +33 -0
  435. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/types.ts +41 -0
  436. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/utils.ts +39 -0
  437. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/test/check.js +28 -0
  438. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/tsconfig.json +13 -0
  439. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  440. package/fixtures/h6-failure-gate/tasks/h6-task-07/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  441. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/README.md +26 -0
  442. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/TASK.md +19 -0
  443. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/package.json +9 -0
  444. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/config.ts +25 -0
  445. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/domain-workflow.ts +210 -0
  446. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/helper.ts +29 -0
  447. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/service.mjs +27 -0
  448. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/types.ts +41 -0
  449. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/utils.ts +39 -0
  450. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/test/check.js +28 -0
  451. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/tsconfig.json +13 -0
  452. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  453. package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  454. package/fixtures/h6-failure-gate/tasks/h6-task-07/patches/candidate-alpha.json +10 -0
  455. package/fixtures/h6-failure-gate/tasks/h6-task-07/patches/candidate-beta.json +10 -0
  456. package/fixtures/h6-failure-gate/tasks/h6-task-07/task.json +577 -0
  457. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/README.md +26 -0
  458. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/TASK.md +19 -0
  459. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/package.json +9 -0
  460. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/config.ts +25 -0
  461. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/domain-workflow.ts +210 -0
  462. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/helper.ts +29 -0
  463. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/service.mjs +33 -0
  464. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/types.ts +41 -0
  465. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/utils.ts +39 -0
  466. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/test/check.js +28 -0
  467. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/tsconfig.json +13 -0
  468. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  469. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  470. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/README.md +26 -0
  471. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/TASK.md +19 -0
  472. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/package.json +9 -0
  473. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/config.ts +25 -0
  474. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/domain-workflow.ts +210 -0
  475. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/helper.ts +29 -0
  476. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/service.mjs +33 -0
  477. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/types.ts +41 -0
  478. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/utils.ts +39 -0
  479. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/test/check.js +28 -0
  480. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/tsconfig.json +13 -0
  481. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  482. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  483. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/README.md +26 -0
  484. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/TASK.md +19 -0
  485. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/package.json +9 -0
  486. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/config.ts +25 -0
  487. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/domain-workflow.ts +210 -0
  488. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/helper/core.ts +29 -0
  489. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/helper.ts +1 -0
  490. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/service.mjs +33 -0
  491. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/types.ts +41 -0
  492. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/utils.ts +39 -0
  493. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/test/check.js +28 -0
  494. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/tsconfig.json +13 -0
  495. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  496. package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  497. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/README.md +26 -0
  498. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/TASK.md +19 -0
  499. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/package.json +9 -0
  500. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/config.ts +25 -0
  501. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/domain-workflow.ts +210 -0
  502. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/helper.ts +29 -0
  503. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/service.mjs +41 -0
  504. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/types.ts +41 -0
  505. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/utils.ts +39 -0
  506. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/test/check.js +30 -0
  507. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/tsconfig.json +13 -0
  508. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  509. package/fixtures/h6-failure-gate/tasks/h6-task-08/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  510. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/README.md +26 -0
  511. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/TASK.md +19 -0
  512. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/package.json +9 -0
  513. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/config.ts +25 -0
  514. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/domain-workflow.ts +210 -0
  515. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/helper.ts +29 -0
  516. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/service.mjs +36 -0
  517. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/types.ts +41 -0
  518. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/utils.ts +39 -0
  519. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/test/check.js +30 -0
  520. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/tsconfig.json +13 -0
  521. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  522. package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  523. package/fixtures/h6-failure-gate/tasks/h6-task-08/patches/candidate-alpha.json +10 -0
  524. package/fixtures/h6-failure-gate/tasks/h6-task-08/patches/candidate-beta.json +10 -0
  525. package/fixtures/h6-failure-gate/tasks/h6-task-08/task.json +577 -0
  526. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/README.md +26 -0
  527. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/TASK.md +19 -0
  528. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/package.json +9 -0
  529. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/config.ts +25 -0
  530. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/domain-workflow.ts +210 -0
  531. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/helper.ts +29 -0
  532. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/service.mjs +41 -0
  533. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/types.ts +41 -0
  534. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/utils.ts +39 -0
  535. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/test/check.js +30 -0
  536. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/tsconfig.json +13 -0
  537. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  538. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  539. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/README.md +26 -0
  540. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/TASK.md +19 -0
  541. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/package.json +9 -0
  542. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/config.ts +25 -0
  543. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/domain-workflow.ts +210 -0
  544. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/helper.ts +29 -0
  545. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/service.mjs +41 -0
  546. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/types.ts +41 -0
  547. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/utils.ts +39 -0
  548. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/test/check.js +30 -0
  549. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/tsconfig.json +13 -0
  550. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  551. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  552. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/README.md +26 -0
  553. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/TASK.md +19 -0
  554. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/package.json +9 -0
  555. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/config.ts +25 -0
  556. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/domain-workflow.ts +210 -0
  557. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/helper/core.ts +29 -0
  558. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/helper.ts +1 -0
  559. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/service.mjs +41 -0
  560. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/types.ts +41 -0
  561. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/utils.ts +39 -0
  562. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/test/check.js +30 -0
  563. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/tsconfig.json +13 -0
  564. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  565. package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  566. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/README.md +26 -0
  567. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/TASK.md +19 -0
  568. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/package.json +9 -0
  569. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/config.ts +25 -0
  570. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/domain-workflow.ts +210 -0
  571. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/helper.ts +29 -0
  572. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/service.mjs +35 -0
  573. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/types.ts +41 -0
  574. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/utils.ts +39 -0
  575. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/test/check.js +28 -0
  576. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/tsconfig.json +13 -0
  577. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  578. package/fixtures/h6-failure-gate/tasks/h6-task-09/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  579. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/README.md +26 -0
  580. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/TASK.md +19 -0
  581. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/package.json +9 -0
  582. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/config.ts +25 -0
  583. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/domain-workflow.ts +210 -0
  584. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/helper.ts +29 -0
  585. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/service.mjs +27 -0
  586. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/types.ts +41 -0
  587. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/utils.ts +39 -0
  588. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/test/check.js +28 -0
  589. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/tsconfig.json +13 -0
  590. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  591. package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  592. package/fixtures/h6-failure-gate/tasks/h6-task-09/patches/candidate-alpha.json +10 -0
  593. package/fixtures/h6-failure-gate/tasks/h6-task-09/patches/candidate-beta.json +10 -0
  594. package/fixtures/h6-failure-gate/tasks/h6-task-09/task.json +577 -0
  595. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/README.md +26 -0
  596. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/TASK.md +19 -0
  597. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/package.json +9 -0
  598. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/config.ts +25 -0
  599. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/domain-workflow.ts +210 -0
  600. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/helper.ts +29 -0
  601. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/service.mjs +35 -0
  602. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/types.ts +41 -0
  603. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/utils.ts +39 -0
  604. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/test/check.js +28 -0
  605. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/tsconfig.json +13 -0
  606. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  607. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  608. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/README.md +26 -0
  609. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/TASK.md +19 -0
  610. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/package.json +9 -0
  611. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/config.ts +25 -0
  612. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/domain-workflow.ts +210 -0
  613. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/helper.ts +29 -0
  614. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/service.mjs +35 -0
  615. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/types.ts +41 -0
  616. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/utils.ts +39 -0
  617. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/test/check.js +28 -0
  618. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/tsconfig.json +13 -0
  619. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  620. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  621. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/README.md +26 -0
  622. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/TASK.md +19 -0
  623. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/package.json +9 -0
  624. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/config.ts +25 -0
  625. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/domain-workflow.ts +210 -0
  626. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/helper/core.ts +29 -0
  627. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/helper.ts +1 -0
  628. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/service.mjs +35 -0
  629. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/types.ts +41 -0
  630. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/utils.ts +39 -0
  631. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/test/check.js +28 -0
  632. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/tsconfig.json +13 -0
  633. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  634. package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  635. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/README.md +26 -0
  636. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/TASK.md +19 -0
  637. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/package.json +9 -0
  638. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/config.ts +25 -0
  639. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/domain-workflow.ts +210 -0
  640. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/helper.ts +29 -0
  641. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/service.mjs +35 -0
  642. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/types.ts +41 -0
  643. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/utils.ts +39 -0
  644. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/test/check.js +32 -0
  645. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/tsconfig.json +13 -0
  646. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  647. package/fixtures/h6-failure-gate/tasks/h6-task-10/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  648. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/README.md +26 -0
  649. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/TASK.md +19 -0
  650. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/package.json +9 -0
  651. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/config.ts +25 -0
  652. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/domain-workflow.ts +210 -0
  653. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/helper.ts +29 -0
  654. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/service.mjs +31 -0
  655. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/types.ts +41 -0
  656. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/utils.ts +39 -0
  657. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/test/check.js +32 -0
  658. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/tsconfig.json +13 -0
  659. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  660. package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  661. package/fixtures/h6-failure-gate/tasks/h6-task-10/patches/candidate-alpha.json +10 -0
  662. package/fixtures/h6-failure-gate/tasks/h6-task-10/patches/candidate-beta.json +10 -0
  663. package/fixtures/h6-failure-gate/tasks/h6-task-10/task.json +577 -0
  664. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/README.md +26 -0
  665. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/TASK.md +19 -0
  666. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/package.json +9 -0
  667. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/config.ts +25 -0
  668. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/domain-workflow.ts +210 -0
  669. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/helper.ts +29 -0
  670. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/service.mjs +35 -0
  671. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/types.ts +41 -0
  672. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/utils.ts +39 -0
  673. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/test/check.js +32 -0
  674. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/tsconfig.json +13 -0
  675. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  676. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  677. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/README.md +26 -0
  678. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/TASK.md +19 -0
  679. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/package.json +9 -0
  680. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/config.ts +25 -0
  681. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/domain-workflow.ts +210 -0
  682. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/helper.ts +29 -0
  683. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/service.mjs +35 -0
  684. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/types.ts +41 -0
  685. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/utils.ts +39 -0
  686. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/test/check.js +32 -0
  687. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/tsconfig.json +13 -0
  688. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  689. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  690. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/README.md +26 -0
  691. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/TASK.md +19 -0
  692. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/package.json +9 -0
  693. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/config.ts +25 -0
  694. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/domain-workflow.ts +210 -0
  695. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/helper/core.ts +29 -0
  696. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/helper.ts +1 -0
  697. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/service.mjs +35 -0
  698. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/types.ts +41 -0
  699. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/utils.ts +39 -0
  700. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/test/check.js +32 -0
  701. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/tsconfig.json +13 -0
  702. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  703. package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  704. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/README.md +26 -0
  705. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/TASK.md +19 -0
  706. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/package.json +9 -0
  707. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/config.ts +25 -0
  708. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/domain-workflow.ts +210 -0
  709. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/helper.ts +29 -0
  710. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/service.mjs +13 -0
  711. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/types.ts +41 -0
  712. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/user-schema.mjs +9 -0
  713. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/utils.ts +39 -0
  714. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/test/check.js +26 -0
  715. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/tsconfig.json +13 -0
  716. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  717. package/fixtures/h6-failure-gate/tasks/h6-task-11/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  718. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/README.md +26 -0
  719. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/TASK.md +19 -0
  720. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/package.json +9 -0
  721. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/config.ts +25 -0
  722. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/domain-workflow.ts +210 -0
  723. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/helper.ts +29 -0
  724. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/service.mjs +16 -0
  725. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/types.ts +41 -0
  726. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/user-schema.mjs +9 -0
  727. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/utils.ts +39 -0
  728. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/test/check.js +26 -0
  729. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/tsconfig.json +13 -0
  730. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  731. package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  732. package/fixtures/h6-failure-gate/tasks/h6-task-11/patches/candidate-alpha.json +10 -0
  733. package/fixtures/h6-failure-gate/tasks/h6-task-11/patches/candidate-beta.json +14 -0
  734. package/fixtures/h6-failure-gate/tasks/h6-task-11/task.json +629 -0
  735. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/README.md +26 -0
  736. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/TASK.md +19 -0
  737. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/package.json +9 -0
  738. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/config.ts +25 -0
  739. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/domain-workflow.ts +210 -0
  740. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/helper.ts +29 -0
  741. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/service.mjs +13 -0
  742. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/types.ts +41 -0
  743. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/user-schema.mjs +9 -0
  744. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/utils.ts +39 -0
  745. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/test/check.js +26 -0
  746. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/tsconfig.json +13 -0
  747. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  748. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  749. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/README.md +26 -0
  750. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/TASK.md +19 -0
  751. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/package.json +9 -0
  752. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/config.ts +25 -0
  753. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/domain-workflow.ts +210 -0
  754. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/helper.ts +29 -0
  755. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/service.mjs +13 -0
  756. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/types.ts +41 -0
  757. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/user-schema.mjs +9 -0
  758. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/utils.ts +39 -0
  759. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/test/check.js +26 -0
  760. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/tsconfig.json +13 -0
  761. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  762. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  763. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/README.md +26 -0
  764. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/TASK.md +19 -0
  765. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/package.json +9 -0
  766. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/config.ts +25 -0
  767. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/domain-workflow.ts +210 -0
  768. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/helper/core.ts +29 -0
  769. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/helper.ts +1 -0
  770. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/service.mjs +13 -0
  771. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/types.ts +41 -0
  772. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/user-schema.mjs +9 -0
  773. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/utils.ts +39 -0
  774. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/test/check.js +26 -0
  775. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/tsconfig.json +13 -0
  776. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  777. package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  778. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/README.md +26 -0
  779. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/TASK.md +19 -0
  780. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/package.json +9 -0
  781. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/config.ts +25 -0
  782. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/domain-workflow.ts +210 -0
  783. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/helper.ts +29 -0
  784. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/service.mjs +22 -0
  785. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/types.ts +41 -0
  786. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/user-schema.mjs +9 -0
  787. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/utils.ts +39 -0
  788. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/test/check.js +31 -0
  789. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/tsconfig.json +13 -0
  790. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  791. package/fixtures/h6-failure-gate/tasks/h6-task-12/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  792. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/README.md +26 -0
  793. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/TASK.md +19 -0
  794. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/package.json +9 -0
  795. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/config.ts +25 -0
  796. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/domain-workflow.ts +210 -0
  797. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/helper.ts +29 -0
  798. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/service.mjs +25 -0
  799. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/types.ts +41 -0
  800. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/user-schema.mjs +9 -0
  801. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/utils.ts +39 -0
  802. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/test/check.js +31 -0
  803. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/tsconfig.json +13 -0
  804. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  805. package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  806. package/fixtures/h6-failure-gate/tasks/h6-task-12/patches/candidate-alpha.json +14 -0
  807. package/fixtures/h6-failure-gate/tasks/h6-task-12/patches/candidate-beta.json +10 -0
  808. package/fixtures/h6-failure-gate/tasks/h6-task-12/task.json +629 -0
  809. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/README.md +26 -0
  810. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/TASK.md +19 -0
  811. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/package.json +9 -0
  812. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/config.ts +25 -0
  813. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/domain-workflow.ts +210 -0
  814. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/helper.ts +29 -0
  815. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/service.mjs +22 -0
  816. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/types.ts +41 -0
  817. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/user-schema.mjs +9 -0
  818. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/utils.ts +39 -0
  819. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/test/check.js +31 -0
  820. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/tsconfig.json +13 -0
  821. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  822. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  823. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/README.md +26 -0
  824. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/TASK.md +19 -0
  825. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/package.json +9 -0
  826. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/config.ts +25 -0
  827. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/domain-workflow.ts +210 -0
  828. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/helper.ts +29 -0
  829. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/service.mjs +22 -0
  830. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/types.ts +41 -0
  831. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/user-schema.mjs +9 -0
  832. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/utils.ts +39 -0
  833. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/test/check.js +31 -0
  834. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/tsconfig.json +13 -0
  835. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  836. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  837. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/README.md +26 -0
  838. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/TASK.md +19 -0
  839. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/package.json +9 -0
  840. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/config.ts +25 -0
  841. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/domain-workflow.ts +210 -0
  842. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/helper/core.ts +29 -0
  843. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/helper.ts +1 -0
  844. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/service.mjs +22 -0
  845. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/types.ts +41 -0
  846. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/user-schema.mjs +9 -0
  847. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/utils.ts +39 -0
  848. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/test/check.js +31 -0
  849. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/tsconfig.json +13 -0
  850. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  851. package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  852. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/README.md +26 -0
  853. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/TASK.md +19 -0
  854. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/package.json +9 -0
  855. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/config.ts +25 -0
  856. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/domain-workflow.ts +210 -0
  857. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/helper.ts +29 -0
  858. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/service.mjs +25 -0
  859. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/types.ts +41 -0
  860. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/user-schema.mjs +9 -0
  861. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/utils.ts +39 -0
  862. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/test/check.js +27 -0
  863. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/tsconfig.json +13 -0
  864. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  865. package/fixtures/h6-failure-gate/tasks/h6-task-13/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  866. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/README.md +26 -0
  867. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/TASK.md +19 -0
  868. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/package.json +9 -0
  869. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/config.ts +25 -0
  870. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/domain-workflow.ts +210 -0
  871. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/helper.ts +29 -0
  872. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/service.mjs +28 -0
  873. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/types.ts +41 -0
  874. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/user-schema.mjs +9 -0
  875. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/utils.ts +39 -0
  876. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/test/check.js +27 -0
  877. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/tsconfig.json +13 -0
  878. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  879. package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  880. package/fixtures/h6-failure-gate/tasks/h6-task-13/patches/candidate-alpha.json +10 -0
  881. package/fixtures/h6-failure-gate/tasks/h6-task-13/patches/candidate-beta.json +14 -0
  882. package/fixtures/h6-failure-gate/tasks/h6-task-13/task.json +629 -0
  883. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/README.md +26 -0
  884. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/TASK.md +19 -0
  885. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/package.json +9 -0
  886. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/config.ts +25 -0
  887. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/domain-workflow.ts +210 -0
  888. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/helper.ts +29 -0
  889. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/service.mjs +25 -0
  890. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/types.ts +41 -0
  891. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/user-schema.mjs +9 -0
  892. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/utils.ts +39 -0
  893. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/test/check.js +27 -0
  894. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/tsconfig.json +13 -0
  895. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  896. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  897. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/README.md +26 -0
  898. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/TASK.md +19 -0
  899. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/package.json +9 -0
  900. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/config.ts +25 -0
  901. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/domain-workflow.ts +210 -0
  902. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/helper.ts +29 -0
  903. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/service.mjs +25 -0
  904. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/types.ts +41 -0
  905. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/user-schema.mjs +9 -0
  906. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/utils.ts +39 -0
  907. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/test/check.js +27 -0
  908. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/tsconfig.json +13 -0
  909. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  910. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  911. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/README.md +26 -0
  912. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/TASK.md +19 -0
  913. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/package.json +9 -0
  914. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/config.ts +25 -0
  915. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/domain-workflow.ts +210 -0
  916. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/helper/core.ts +29 -0
  917. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/helper.ts +1 -0
  918. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/service.mjs +25 -0
  919. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/types.ts +41 -0
  920. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/user-schema.mjs +9 -0
  921. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/utils.ts +39 -0
  922. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/test/check.js +27 -0
  923. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/tsconfig.json +13 -0
  924. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  925. package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  926. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/README.md +26 -0
  927. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/TASK.md +19 -0
  928. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/package.json +9 -0
  929. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/config.ts +25 -0
  930. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/domain-workflow.ts +210 -0
  931. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/helper.ts +29 -0
  932. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/service.mjs +23 -0
  933. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/types.ts +41 -0
  934. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/user-schema.mjs +9 -0
  935. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/utils.ts +39 -0
  936. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/test/check.js +38 -0
  937. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/tsconfig.json +13 -0
  938. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  939. package/fixtures/h6-failure-gate/tasks/h6-task-14/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  940. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/README.md +26 -0
  941. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/TASK.md +19 -0
  942. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/package.json +9 -0
  943. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/config.ts +25 -0
  944. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/domain-workflow.ts +210 -0
  945. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/helper.ts +29 -0
  946. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/service.mjs +26 -0
  947. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/types.ts +41 -0
  948. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/user-schema.mjs +9 -0
  949. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/utils.ts +39 -0
  950. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/test/check.js +38 -0
  951. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/tsconfig.json +13 -0
  952. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  953. package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  954. package/fixtures/h6-failure-gate/tasks/h6-task-14/patches/candidate-alpha.json +14 -0
  955. package/fixtures/h6-failure-gate/tasks/h6-task-14/patches/candidate-beta.json +10 -0
  956. package/fixtures/h6-failure-gate/tasks/h6-task-14/task.json +629 -0
  957. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/README.md +26 -0
  958. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/TASK.md +19 -0
  959. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/package.json +9 -0
  960. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/config.ts +25 -0
  961. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/domain-workflow.ts +210 -0
  962. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/helper.ts +29 -0
  963. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/service.mjs +23 -0
  964. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/types.ts +41 -0
  965. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/user-schema.mjs +9 -0
  966. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/utils.ts +39 -0
  967. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/test/check.js +38 -0
  968. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/tsconfig.json +13 -0
  969. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  970. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  971. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/README.md +26 -0
  972. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/TASK.md +19 -0
  973. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/package.json +9 -0
  974. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/config.ts +25 -0
  975. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/domain-workflow.ts +210 -0
  976. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/helper.ts +29 -0
  977. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/service.mjs +23 -0
  978. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/types.ts +41 -0
  979. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/user-schema.mjs +9 -0
  980. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/utils.ts +39 -0
  981. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/test/check.js +38 -0
  982. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/tsconfig.json +13 -0
  983. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  984. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  985. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/README.md +26 -0
  986. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/TASK.md +19 -0
  987. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/package.json +9 -0
  988. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/config.ts +25 -0
  989. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/domain-workflow.ts +210 -0
  990. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/helper/core.ts +29 -0
  991. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/helper.ts +1 -0
  992. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/service.mjs +23 -0
  993. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/types.ts +41 -0
  994. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/user-schema.mjs +9 -0
  995. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/utils.ts +39 -0
  996. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/test/check.js +38 -0
  997. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/tsconfig.json +13 -0
  998. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  999. package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1000. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/README.md +26 -0
  1001. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/TASK.md +19 -0
  1002. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/package.json +9 -0
  1003. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/config.ts +25 -0
  1004. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/domain-workflow.ts +210 -0
  1005. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/helper.ts +29 -0
  1006. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/service.mjs +20 -0
  1007. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/types.ts +41 -0
  1008. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/user-schema.mjs +9 -0
  1009. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/utils.ts +39 -0
  1010. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/test/check.js +29 -0
  1011. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/tsconfig.json +13 -0
  1012. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1013. package/fixtures/h6-failure-gate/tasks/h6-task-15/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1014. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/README.md +26 -0
  1015. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/TASK.md +19 -0
  1016. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/package.json +9 -0
  1017. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/config.ts +25 -0
  1018. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/domain-workflow.ts +210 -0
  1019. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/helper.ts +29 -0
  1020. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/service.mjs +23 -0
  1021. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/types.ts +41 -0
  1022. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/user-schema.mjs +9 -0
  1023. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/utils.ts +39 -0
  1024. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/test/check.js +29 -0
  1025. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/tsconfig.json +13 -0
  1026. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1027. package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1028. package/fixtures/h6-failure-gate/tasks/h6-task-15/patches/candidate-alpha.json +10 -0
  1029. package/fixtures/h6-failure-gate/tasks/h6-task-15/patches/candidate-beta.json +14 -0
  1030. package/fixtures/h6-failure-gate/tasks/h6-task-15/task.json +629 -0
  1031. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/README.md +26 -0
  1032. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/TASK.md +19 -0
  1033. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/package.json +9 -0
  1034. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/config.ts +25 -0
  1035. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/domain-workflow.ts +210 -0
  1036. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/helper.ts +29 -0
  1037. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/service.mjs +20 -0
  1038. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/types.ts +41 -0
  1039. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/user-schema.mjs +9 -0
  1040. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/utils.ts +39 -0
  1041. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/test/check.js +29 -0
  1042. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/tsconfig.json +13 -0
  1043. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1044. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1045. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/README.md +26 -0
  1046. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/TASK.md +19 -0
  1047. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/package.json +9 -0
  1048. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/config.ts +25 -0
  1049. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/domain-workflow.ts +210 -0
  1050. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/helper.ts +29 -0
  1051. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/service.mjs +20 -0
  1052. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/types.ts +41 -0
  1053. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/user-schema.mjs +9 -0
  1054. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/utils.ts +39 -0
  1055. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/test/check.js +29 -0
  1056. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/tsconfig.json +13 -0
  1057. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1058. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1059. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/README.md +26 -0
  1060. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/TASK.md +19 -0
  1061. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/package.json +9 -0
  1062. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/config.ts +25 -0
  1063. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/domain-workflow.ts +210 -0
  1064. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/helper/core.ts +29 -0
  1065. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/helper.ts +1 -0
  1066. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/service.mjs +20 -0
  1067. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/types.ts +41 -0
  1068. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/user-schema.mjs +9 -0
  1069. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/utils.ts +39 -0
  1070. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/test/check.js +29 -0
  1071. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/tsconfig.json +13 -0
  1072. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1073. package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1074. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/README.md +26 -0
  1075. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/TASK.md +19 -0
  1076. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/package.json +9 -0
  1077. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/config.ts +25 -0
  1078. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/domain-workflow.ts +210 -0
  1079. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/helper.ts +29 -0
  1080. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/service.mjs +9 -0
  1081. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/types.ts +41 -0
  1082. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/utils.ts +39 -0
  1083. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/test/check.js +33 -0
  1084. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/tsconfig.json +13 -0
  1085. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1086. package/fixtures/h6-failure-gate/tasks/h6-task-16/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1087. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/README.md +26 -0
  1088. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/TASK.md +19 -0
  1089. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/package.json +9 -0
  1090. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/config.ts +25 -0
  1091. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/domain-workflow.ts +210 -0
  1092. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/helper.ts +29 -0
  1093. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/service.mjs +15 -0
  1094. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/types.ts +41 -0
  1095. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/utils.ts +39 -0
  1096. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/test/check.js +33 -0
  1097. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/tsconfig.json +13 -0
  1098. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1099. package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1100. package/fixtures/h6-failure-gate/tasks/h6-task-16/patches/candidate-alpha.json +10 -0
  1101. package/fixtures/h6-failure-gate/tasks/h6-task-16/patches/candidate-beta.json +10 -0
  1102. package/fixtures/h6-failure-gate/tasks/h6-task-16/task.json +577 -0
  1103. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/README.md +26 -0
  1104. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/TASK.md +19 -0
  1105. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/package.json +9 -0
  1106. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/config.ts +25 -0
  1107. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/domain-workflow.ts +210 -0
  1108. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/helper.ts +29 -0
  1109. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/service.mjs +9 -0
  1110. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/types.ts +41 -0
  1111. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/utils.ts +39 -0
  1112. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/test/check.js +33 -0
  1113. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/tsconfig.json +13 -0
  1114. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1115. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1116. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/README.md +26 -0
  1117. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/TASK.md +19 -0
  1118. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/package.json +9 -0
  1119. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/config.ts +25 -0
  1120. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/domain-workflow.ts +210 -0
  1121. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/helper.ts +29 -0
  1122. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/service.mjs +9 -0
  1123. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/types.ts +41 -0
  1124. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/utils.ts +39 -0
  1125. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/test/check.js +33 -0
  1126. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/tsconfig.json +13 -0
  1127. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1128. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1129. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/README.md +26 -0
  1130. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/TASK.md +19 -0
  1131. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/package.json +9 -0
  1132. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/config.ts +25 -0
  1133. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/domain-workflow.ts +210 -0
  1134. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/helper/core.ts +29 -0
  1135. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/helper.ts +1 -0
  1136. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/service.mjs +9 -0
  1137. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/types.ts +41 -0
  1138. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/utils.ts +39 -0
  1139. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/test/check.js +33 -0
  1140. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/tsconfig.json +13 -0
  1141. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1142. package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1143. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/README.md +26 -0
  1144. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/TASK.md +19 -0
  1145. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/package.json +9 -0
  1146. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/config.ts +25 -0
  1147. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/domain-workflow.ts +210 -0
  1148. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/helper.ts +29 -0
  1149. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/service.mjs +13 -0
  1150. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/types.ts +41 -0
  1151. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/utils.ts +39 -0
  1152. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/test/check.js +38 -0
  1153. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/tsconfig.json +13 -0
  1154. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1155. package/fixtures/h6-failure-gate/tasks/h6-task-17/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1156. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/README.md +26 -0
  1157. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/TASK.md +19 -0
  1158. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/package.json +9 -0
  1159. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/config.ts +25 -0
  1160. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/domain-workflow.ts +210 -0
  1161. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/helper.ts +29 -0
  1162. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/service.mjs +15 -0
  1163. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/types.ts +41 -0
  1164. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/utils.ts +39 -0
  1165. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/test/check.js +38 -0
  1166. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/tsconfig.json +13 -0
  1167. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1168. package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1169. package/fixtures/h6-failure-gate/tasks/h6-task-17/patches/candidate-alpha.json +10 -0
  1170. package/fixtures/h6-failure-gate/tasks/h6-task-17/patches/candidate-beta.json +10 -0
  1171. package/fixtures/h6-failure-gate/tasks/h6-task-17/task.json +577 -0
  1172. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/README.md +26 -0
  1173. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/TASK.md +19 -0
  1174. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/package.json +9 -0
  1175. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/config.ts +25 -0
  1176. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/domain-workflow.ts +210 -0
  1177. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/helper.ts +29 -0
  1178. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/service.mjs +13 -0
  1179. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/types.ts +41 -0
  1180. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/utils.ts +39 -0
  1181. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/test/check.js +38 -0
  1182. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/tsconfig.json +13 -0
  1183. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1184. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1185. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/README.md +26 -0
  1186. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/TASK.md +19 -0
  1187. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/package.json +9 -0
  1188. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/config.ts +25 -0
  1189. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/domain-workflow.ts +210 -0
  1190. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/helper.ts +29 -0
  1191. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/service.mjs +13 -0
  1192. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/types.ts +41 -0
  1193. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/utils.ts +39 -0
  1194. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/test/check.js +38 -0
  1195. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/tsconfig.json +13 -0
  1196. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1197. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1198. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/README.md +26 -0
  1199. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/TASK.md +19 -0
  1200. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/package.json +9 -0
  1201. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/config.ts +25 -0
  1202. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/domain-workflow.ts +210 -0
  1203. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/helper/core.ts +29 -0
  1204. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/helper.ts +1 -0
  1205. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/service.mjs +13 -0
  1206. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/types.ts +41 -0
  1207. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/utils.ts +39 -0
  1208. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/test/check.js +38 -0
  1209. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/tsconfig.json +13 -0
  1210. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1211. package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1212. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/README.md +26 -0
  1213. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/TASK.md +19 -0
  1214. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/package.json +9 -0
  1215. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/config.ts +25 -0
  1216. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/domain-workflow.ts +210 -0
  1217. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/helper.ts +29 -0
  1218. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/service.mjs +16 -0
  1219. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/types.ts +41 -0
  1220. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/utils.ts +39 -0
  1221. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/test/check.js +39 -0
  1222. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/tsconfig.json +13 -0
  1223. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1224. package/fixtures/h6-failure-gate/tasks/h6-task-18/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1225. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/README.md +26 -0
  1226. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/TASK.md +19 -0
  1227. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/package.json +9 -0
  1228. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/config.ts +25 -0
  1229. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/domain-workflow.ts +210 -0
  1230. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/helper.ts +29 -0
  1231. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/service.mjs +17 -0
  1232. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/types.ts +41 -0
  1233. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/utils.ts +39 -0
  1234. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/test/check.js +39 -0
  1235. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/tsconfig.json +13 -0
  1236. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1237. package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1238. package/fixtures/h6-failure-gate/tasks/h6-task-18/patches/candidate-alpha.json +10 -0
  1239. package/fixtures/h6-failure-gate/tasks/h6-task-18/patches/candidate-beta.json +10 -0
  1240. package/fixtures/h6-failure-gate/tasks/h6-task-18/task.json +577 -0
  1241. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/README.md +26 -0
  1242. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/TASK.md +19 -0
  1243. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/package.json +9 -0
  1244. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/config.ts +25 -0
  1245. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/domain-workflow.ts +210 -0
  1246. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/helper.ts +29 -0
  1247. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/service.mjs +16 -0
  1248. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/types.ts +41 -0
  1249. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/utils.ts +39 -0
  1250. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/test/check.js +39 -0
  1251. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/tsconfig.json +13 -0
  1252. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1253. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1254. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/README.md +26 -0
  1255. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/TASK.md +19 -0
  1256. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/package.json +9 -0
  1257. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/config.ts +25 -0
  1258. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/domain-workflow.ts +210 -0
  1259. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/helper.ts +29 -0
  1260. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/service.mjs +16 -0
  1261. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/types.ts +41 -0
  1262. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/utils.ts +39 -0
  1263. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/test/check.js +39 -0
  1264. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/tsconfig.json +13 -0
  1265. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1266. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1267. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/README.md +26 -0
  1268. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/TASK.md +19 -0
  1269. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/package.json +9 -0
  1270. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/config.ts +25 -0
  1271. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/domain-workflow.ts +210 -0
  1272. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/helper/core.ts +29 -0
  1273. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/helper.ts +1 -0
  1274. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/service.mjs +16 -0
  1275. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/types.ts +41 -0
  1276. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/utils.ts +39 -0
  1277. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/test/check.js +39 -0
  1278. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/tsconfig.json +13 -0
  1279. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1280. package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1281. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/README.md +26 -0
  1282. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/TASK.md +19 -0
  1283. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/package.json +9 -0
  1284. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/config.ts +25 -0
  1285. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/domain-workflow.ts +210 -0
  1286. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/helper.ts +29 -0
  1287. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/service.mjs +12 -0
  1288. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/types.ts +41 -0
  1289. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/utils.ts +39 -0
  1290. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/test/check.js +41 -0
  1291. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/tsconfig.json +13 -0
  1292. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1293. package/fixtures/h6-failure-gate/tasks/h6-task-19/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1294. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/README.md +26 -0
  1295. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/TASK.md +19 -0
  1296. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/package.json +9 -0
  1297. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/config.ts +25 -0
  1298. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/domain-workflow.ts +210 -0
  1299. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/helper.ts +29 -0
  1300. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/service.mjs +16 -0
  1301. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/types.ts +41 -0
  1302. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/utils.ts +39 -0
  1303. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/test/check.js +41 -0
  1304. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/tsconfig.json +13 -0
  1305. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1306. package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1307. package/fixtures/h6-failure-gate/tasks/h6-task-19/patches/candidate-alpha.json +10 -0
  1308. package/fixtures/h6-failure-gate/tasks/h6-task-19/patches/candidate-beta.json +10 -0
  1309. package/fixtures/h6-failure-gate/tasks/h6-task-19/task.json +577 -0
  1310. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/README.md +26 -0
  1311. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/TASK.md +19 -0
  1312. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/package.json +9 -0
  1313. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/config.ts +25 -0
  1314. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/domain-workflow.ts +210 -0
  1315. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/helper.ts +29 -0
  1316. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/service.mjs +12 -0
  1317. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/types.ts +41 -0
  1318. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/utils.ts +39 -0
  1319. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/test/check.js +41 -0
  1320. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/tsconfig.json +13 -0
  1321. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1322. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1323. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/README.md +26 -0
  1324. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/TASK.md +19 -0
  1325. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/package.json +9 -0
  1326. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/config.ts +25 -0
  1327. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/domain-workflow.ts +210 -0
  1328. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/helper.ts +29 -0
  1329. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/service.mjs +12 -0
  1330. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/types.ts +41 -0
  1331. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/utils.ts +39 -0
  1332. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/test/check.js +41 -0
  1333. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/tsconfig.json +13 -0
  1334. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1335. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1336. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/README.md +26 -0
  1337. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/TASK.md +19 -0
  1338. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/package.json +9 -0
  1339. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/config.ts +25 -0
  1340. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/domain-workflow.ts +210 -0
  1341. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/helper/core.ts +29 -0
  1342. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/helper.ts +1 -0
  1343. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/service.mjs +12 -0
  1344. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/types.ts +41 -0
  1345. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/utils.ts +39 -0
  1346. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/test/check.js +41 -0
  1347. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/tsconfig.json +13 -0
  1348. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1349. package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1350. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/README.md +26 -0
  1351. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/TASK.md +19 -0
  1352. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/package.json +9 -0
  1353. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/config.ts +25 -0
  1354. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/domain-workflow.ts +210 -0
  1355. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/helper.ts +29 -0
  1356. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/service.mjs +15 -0
  1357. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/types.ts +41 -0
  1358. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/utils.ts +39 -0
  1359. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/test/check.js +38 -0
  1360. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/tsconfig.json +13 -0
  1361. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1362. package/fixtures/h6-failure-gate/tasks/h6-task-20/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1363. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/README.md +26 -0
  1364. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/TASK.md +19 -0
  1365. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/package.json +9 -0
  1366. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/config.ts +25 -0
  1367. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/domain-workflow.ts +210 -0
  1368. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/helper.ts +29 -0
  1369. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/service.mjs +19 -0
  1370. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/types.ts +41 -0
  1371. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/utils.ts +39 -0
  1372. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/test/check.js +38 -0
  1373. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/tsconfig.json +13 -0
  1374. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1375. package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1376. package/fixtures/h6-failure-gate/tasks/h6-task-20/patches/candidate-alpha.json +10 -0
  1377. package/fixtures/h6-failure-gate/tasks/h6-task-20/patches/candidate-beta.json +10 -0
  1378. package/fixtures/h6-failure-gate/tasks/h6-task-20/task.json +577 -0
  1379. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/README.md +26 -0
  1380. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/TASK.md +19 -0
  1381. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/package.json +9 -0
  1382. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/config.ts +25 -0
  1383. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/domain-workflow.ts +210 -0
  1384. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/helper.ts +29 -0
  1385. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/service.mjs +15 -0
  1386. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/types.ts +41 -0
  1387. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/utils.ts +39 -0
  1388. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/test/check.js +38 -0
  1389. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/tsconfig.json +13 -0
  1390. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1391. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1392. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/README.md +26 -0
  1393. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/TASK.md +19 -0
  1394. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/package.json +9 -0
  1395. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/config.ts +25 -0
  1396. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/domain-workflow.ts +210 -0
  1397. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/helper.ts +29 -0
  1398. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/service.mjs +15 -0
  1399. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/types.ts +41 -0
  1400. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/utils.ts +39 -0
  1401. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/test/check.js +38 -0
  1402. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/tsconfig.json +13 -0
  1403. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1404. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1405. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/README.md +26 -0
  1406. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/TASK.md +19 -0
  1407. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/package.json +9 -0
  1408. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/config.ts +25 -0
  1409. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/domain-workflow.ts +210 -0
  1410. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/helper/core.ts +29 -0
  1411. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/helper.ts +1 -0
  1412. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/service.mjs +15 -0
  1413. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/types.ts +41 -0
  1414. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/utils.ts +39 -0
  1415. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/test/check.js +38 -0
  1416. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/tsconfig.json +13 -0
  1417. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1418. package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1419. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/README.md +26 -0
  1420. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/TASK.md +19 -0
  1421. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/package.json +9 -0
  1422. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/config.ts +25 -0
  1423. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/domain-workflow.ts +210 -0
  1424. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/helper.ts +29 -0
  1425. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/service.mjs +14 -0
  1426. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/types.ts +41 -0
  1427. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/utils.ts +39 -0
  1428. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/test/check.js +23 -0
  1429. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/tsconfig.json +13 -0
  1430. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1431. package/fixtures/h6-failure-gate/tasks/h6-task-21/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1432. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/README.md +26 -0
  1433. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/TASK.md +19 -0
  1434. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/package.json +9 -0
  1435. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/config.ts +25 -0
  1436. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/domain-workflow.ts +210 -0
  1437. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/helper.ts +29 -0
  1438. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/service.mjs +14 -0
  1439. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/types.ts +41 -0
  1440. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/utils.ts +39 -0
  1441. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/test/check.js +23 -0
  1442. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/tsconfig.json +13 -0
  1443. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1444. package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1445. package/fixtures/h6-failure-gate/tasks/h6-task-21/patches/candidate-alpha.json +10 -0
  1446. package/fixtures/h6-failure-gate/tasks/h6-task-21/patches/candidate-beta.json +10 -0
  1447. package/fixtures/h6-failure-gate/tasks/h6-task-21/task.json +577 -0
  1448. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/README.md +26 -0
  1449. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/TASK.md +19 -0
  1450. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/package.json +9 -0
  1451. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/config.ts +25 -0
  1452. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/domain-workflow.ts +210 -0
  1453. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/helper.ts +29 -0
  1454. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/service.mjs +14 -0
  1455. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/types.ts +41 -0
  1456. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/utils.ts +39 -0
  1457. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/test/check.js +23 -0
  1458. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/tsconfig.json +13 -0
  1459. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1460. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1461. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/README.md +26 -0
  1462. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/TASK.md +19 -0
  1463. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/package.json +9 -0
  1464. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/config.ts +25 -0
  1465. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/domain-workflow.ts +210 -0
  1466. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/helper.ts +29 -0
  1467. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/service.mjs +14 -0
  1468. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/types.ts +41 -0
  1469. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/utils.ts +39 -0
  1470. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/test/check.js +23 -0
  1471. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/tsconfig.json +13 -0
  1472. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1473. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1474. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/README.md +26 -0
  1475. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/TASK.md +19 -0
  1476. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/package.json +9 -0
  1477. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/config.ts +25 -0
  1478. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/domain-workflow.ts +210 -0
  1479. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/helper/core.ts +29 -0
  1480. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/helper.ts +1 -0
  1481. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/service.mjs +14 -0
  1482. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/types.ts +41 -0
  1483. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/utils.ts +39 -0
  1484. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/test/check.js +23 -0
  1485. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/tsconfig.json +13 -0
  1486. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1487. package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1488. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/README.md +26 -0
  1489. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/TASK.md +19 -0
  1490. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/package.json +9 -0
  1491. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/config.ts +25 -0
  1492. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/domain-workflow.ts +210 -0
  1493. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/helper.ts +29 -0
  1494. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/service.mjs +13 -0
  1495. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/types.ts +41 -0
  1496. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/utils.ts +39 -0
  1497. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/test/check.js +22 -0
  1498. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/tsconfig.json +13 -0
  1499. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1500. package/fixtures/h6-failure-gate/tasks/h6-task-22/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1501. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/README.md +26 -0
  1502. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/TASK.md +19 -0
  1503. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/package.json +9 -0
  1504. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/config.ts +25 -0
  1505. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/domain-workflow.ts +210 -0
  1506. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/helper.ts +29 -0
  1507. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/service.mjs +13 -0
  1508. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/types.ts +41 -0
  1509. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/utils.ts +39 -0
  1510. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/test/check.js +22 -0
  1511. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/tsconfig.json +13 -0
  1512. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1513. package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1514. package/fixtures/h6-failure-gate/tasks/h6-task-22/patches/candidate-alpha.json +10 -0
  1515. package/fixtures/h6-failure-gate/tasks/h6-task-22/patches/candidate-beta.json +10 -0
  1516. package/fixtures/h6-failure-gate/tasks/h6-task-22/task.json +577 -0
  1517. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/README.md +26 -0
  1518. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/TASK.md +19 -0
  1519. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/package.json +9 -0
  1520. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/config.ts +25 -0
  1521. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/domain-workflow.ts +210 -0
  1522. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/helper.ts +29 -0
  1523. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/service.mjs +13 -0
  1524. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/types.ts +41 -0
  1525. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/utils.ts +39 -0
  1526. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/test/check.js +22 -0
  1527. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/tsconfig.json +13 -0
  1528. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1529. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1530. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/README.md +26 -0
  1531. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/TASK.md +19 -0
  1532. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/package.json +9 -0
  1533. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/config.ts +25 -0
  1534. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/domain-workflow.ts +210 -0
  1535. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/helper.ts +29 -0
  1536. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/service.mjs +13 -0
  1537. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/types.ts +41 -0
  1538. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/utils.ts +39 -0
  1539. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/test/check.js +22 -0
  1540. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/tsconfig.json +13 -0
  1541. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1542. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1543. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/README.md +26 -0
  1544. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/TASK.md +19 -0
  1545. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/package.json +9 -0
  1546. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/config.ts +25 -0
  1547. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/domain-workflow.ts +210 -0
  1548. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/helper/core.ts +29 -0
  1549. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/helper.ts +1 -0
  1550. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/service.mjs +13 -0
  1551. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/types.ts +41 -0
  1552. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/utils.ts +39 -0
  1553. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/test/check.js +22 -0
  1554. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/tsconfig.json +13 -0
  1555. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1556. package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1557. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/README.md +26 -0
  1558. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/TASK.md +19 -0
  1559. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/package.json +9 -0
  1560. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/config.ts +25 -0
  1561. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/domain-workflow.ts +210 -0
  1562. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/helper.ts +29 -0
  1563. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/service.mjs +21 -0
  1564. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/types.ts +41 -0
  1565. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/utils.ts +39 -0
  1566. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/test/check.js +24 -0
  1567. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/tsconfig.json +13 -0
  1568. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1569. package/fixtures/h6-failure-gate/tasks/h6-task-23/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1570. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/README.md +26 -0
  1571. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/TASK.md +19 -0
  1572. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/package.json +9 -0
  1573. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/config.ts +25 -0
  1574. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/domain-workflow.ts +210 -0
  1575. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/helper.ts +29 -0
  1576. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/service.mjs +21 -0
  1577. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/types.ts +41 -0
  1578. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/utils.ts +39 -0
  1579. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/test/check.js +24 -0
  1580. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/tsconfig.json +13 -0
  1581. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1582. package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1583. package/fixtures/h6-failure-gate/tasks/h6-task-23/patches/candidate-alpha.json +10 -0
  1584. package/fixtures/h6-failure-gate/tasks/h6-task-23/patches/candidate-beta.json +10 -0
  1585. package/fixtures/h6-failure-gate/tasks/h6-task-23/task.json +577 -0
  1586. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/README.md +26 -0
  1587. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/TASK.md +19 -0
  1588. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/package.json +9 -0
  1589. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/config.ts +25 -0
  1590. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/domain-workflow.ts +210 -0
  1591. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/helper.ts +29 -0
  1592. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/service.mjs +21 -0
  1593. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/types.ts +41 -0
  1594. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/utils.ts +39 -0
  1595. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/test/check.js +24 -0
  1596. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/tsconfig.json +13 -0
  1597. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1598. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1599. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/README.md +26 -0
  1600. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/TASK.md +19 -0
  1601. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/package.json +9 -0
  1602. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/config.ts +25 -0
  1603. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/domain-workflow.ts +210 -0
  1604. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/helper.ts +29 -0
  1605. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/service.mjs +21 -0
  1606. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/types.ts +41 -0
  1607. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/utils.ts +39 -0
  1608. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/test/check.js +24 -0
  1609. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/tsconfig.json +13 -0
  1610. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1611. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1612. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/README.md +26 -0
  1613. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/TASK.md +19 -0
  1614. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/package.json +9 -0
  1615. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/config.ts +25 -0
  1616. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/domain-workflow.ts +210 -0
  1617. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/helper/core.ts +29 -0
  1618. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/helper.ts +1 -0
  1619. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/service.mjs +21 -0
  1620. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/types.ts +41 -0
  1621. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/utils.ts +39 -0
  1622. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/test/check.js +24 -0
  1623. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/tsconfig.json +13 -0
  1624. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1625. package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1626. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/README.md +26 -0
  1627. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/TASK.md +19 -0
  1628. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/package.json +9 -0
  1629. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/config.ts +25 -0
  1630. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/domain-workflow.ts +210 -0
  1631. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/helper.ts +29 -0
  1632. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/service.mjs +17 -0
  1633. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/types.ts +41 -0
  1634. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/utils.ts +39 -0
  1635. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/test/check.js +25 -0
  1636. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/tsconfig.json +13 -0
  1637. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1638. package/fixtures/h6-failure-gate/tasks/h6-task-24/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1639. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/README.md +26 -0
  1640. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/TASK.md +19 -0
  1641. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/package.json +9 -0
  1642. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/config.ts +25 -0
  1643. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/domain-workflow.ts +210 -0
  1644. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/helper.ts +29 -0
  1645. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/service.mjs +17 -0
  1646. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/types.ts +41 -0
  1647. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/utils.ts +39 -0
  1648. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/test/check.js +25 -0
  1649. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/tsconfig.json +13 -0
  1650. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1651. package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1652. package/fixtures/h6-failure-gate/tasks/h6-task-24/patches/candidate-alpha.json +10 -0
  1653. package/fixtures/h6-failure-gate/tasks/h6-task-24/patches/candidate-beta.json +10 -0
  1654. package/fixtures/h6-failure-gate/tasks/h6-task-24/task.json +577 -0
  1655. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/README.md +26 -0
  1656. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/TASK.md +19 -0
  1657. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/package.json +9 -0
  1658. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/config.ts +25 -0
  1659. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/domain-workflow.ts +210 -0
  1660. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/helper.ts +29 -0
  1661. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/service.mjs +17 -0
  1662. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/types.ts +41 -0
  1663. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/utils.ts +39 -0
  1664. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/test/check.js +25 -0
  1665. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/tsconfig.json +13 -0
  1666. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1667. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1668. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/README.md +26 -0
  1669. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/TASK.md +19 -0
  1670. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/package.json +9 -0
  1671. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/config.ts +25 -0
  1672. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/domain-workflow.ts +210 -0
  1673. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/helper.ts +29 -0
  1674. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/service.mjs +17 -0
  1675. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/types.ts +41 -0
  1676. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/utils.ts +39 -0
  1677. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/test/check.js +25 -0
  1678. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/tsconfig.json +13 -0
  1679. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1680. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1681. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/README.md +26 -0
  1682. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/TASK.md +19 -0
  1683. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/package.json +9 -0
  1684. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/config.ts +25 -0
  1685. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/domain-workflow.ts +210 -0
  1686. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/helper/core.ts +29 -0
  1687. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/helper.ts +1 -0
  1688. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/service.mjs +17 -0
  1689. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/types.ts +41 -0
  1690. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/utils.ts +39 -0
  1691. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/test/check.js +25 -0
  1692. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/tsconfig.json +13 -0
  1693. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1694. package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1695. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/README.md +26 -0
  1696. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/TASK.md +19 -0
  1697. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/package.json +9 -0
  1698. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/config.ts +25 -0
  1699. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/domain-workflow.ts +210 -0
  1700. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/helper.ts +29 -0
  1701. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/service.mjs +15 -0
  1702. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/types.ts +41 -0
  1703. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/utils.ts +39 -0
  1704. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/test/check.js +23 -0
  1705. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/tsconfig.json +13 -0
  1706. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1707. package/fixtures/h6-failure-gate/tasks/h6-task-25/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1708. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/README.md +26 -0
  1709. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/TASK.md +19 -0
  1710. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/package.json +9 -0
  1711. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/config.ts +25 -0
  1712. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/domain-workflow.ts +210 -0
  1713. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/helper.ts +29 -0
  1714. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/service.mjs +15 -0
  1715. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/types.ts +41 -0
  1716. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/utils.ts +39 -0
  1717. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/test/check.js +23 -0
  1718. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/tsconfig.json +13 -0
  1719. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1720. package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1721. package/fixtures/h6-failure-gate/tasks/h6-task-25/patches/candidate-alpha.json +10 -0
  1722. package/fixtures/h6-failure-gate/tasks/h6-task-25/patches/candidate-beta.json +10 -0
  1723. package/fixtures/h6-failure-gate/tasks/h6-task-25/task.json +577 -0
  1724. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/README.md +26 -0
  1725. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/TASK.md +19 -0
  1726. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/package.json +9 -0
  1727. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/config.ts +25 -0
  1728. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/domain-workflow.ts +210 -0
  1729. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/helper.ts +29 -0
  1730. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/service.mjs +15 -0
  1731. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/types.ts +41 -0
  1732. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/utils.ts +39 -0
  1733. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/test/check.js +23 -0
  1734. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/tsconfig.json +13 -0
  1735. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1736. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1737. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/README.md +26 -0
  1738. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/TASK.md +19 -0
  1739. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/package.json +9 -0
  1740. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/config.ts +25 -0
  1741. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/domain-workflow.ts +210 -0
  1742. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/helper.ts +29 -0
  1743. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/service.mjs +15 -0
  1744. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/types.ts +41 -0
  1745. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/utils.ts +39 -0
  1746. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/test/check.js +23 -0
  1747. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/tsconfig.json +13 -0
  1748. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1749. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1750. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/README.md +26 -0
  1751. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/TASK.md +19 -0
  1752. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/package.json +9 -0
  1753. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/config.ts +25 -0
  1754. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/domain-workflow.ts +210 -0
  1755. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/helper/core.ts +29 -0
  1756. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/helper.ts +1 -0
  1757. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/service.mjs +15 -0
  1758. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/types.ts +41 -0
  1759. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/utils.ts +39 -0
  1760. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/test/check.js +23 -0
  1761. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/tsconfig.json +13 -0
  1762. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1763. package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1764. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/README.md +26 -0
  1765. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/TASK.md +19 -0
  1766. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/config/default.json +4 -0
  1767. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/config/local-override.json +4 -0
  1768. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/package.json +9 -0
  1769. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/config.ts +25 -0
  1770. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/domain-workflow.ts +210 -0
  1771. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/helper.ts +29 -0
  1772. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/service.mjs +12 -0
  1773. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/types.ts +41 -0
  1774. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/utils.ts +39 -0
  1775. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/test/check.js +23 -0
  1776. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/tsconfig.json +13 -0
  1777. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1778. package/fixtures/h6-failure-gate/tasks/h6-task-26/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1779. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/README.md +26 -0
  1780. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/TASK.md +19 -0
  1781. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/config/default.json +4 -0
  1782. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/package.json +9 -0
  1783. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/config.ts +25 -0
  1784. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/domain-workflow.ts +210 -0
  1785. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/helper.ts +29 -0
  1786. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/service.mjs +9 -0
  1787. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/types.ts +41 -0
  1788. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/utils.ts +39 -0
  1789. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/test/check.js +23 -0
  1790. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/tsconfig.json +13 -0
  1791. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1792. package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1793. package/fixtures/h6-failure-gate/tasks/h6-task-26/patches/candidate-alpha.json +14 -0
  1794. package/fixtures/h6-failure-gate/tasks/h6-task-26/patches/candidate-beta.json +10 -0
  1795. package/fixtures/h6-failure-gate/tasks/h6-task-26/task.json +645 -0
  1796. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/README.md +26 -0
  1797. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/TASK.md +19 -0
  1798. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/config/default.json +4 -0
  1799. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/config/local-override.json +4 -0
  1800. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/package.json +9 -0
  1801. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/config.ts +25 -0
  1802. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/domain-workflow.ts +210 -0
  1803. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/helper.ts +29 -0
  1804. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/service.mjs +12 -0
  1805. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/types.ts +41 -0
  1806. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/utils.ts +39 -0
  1807. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/test/check.js +23 -0
  1808. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/tsconfig.json +13 -0
  1809. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1810. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1811. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/README.md +26 -0
  1812. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/TASK.md +19 -0
  1813. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/config/default.json +4 -0
  1814. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/config/local-override.json +4 -0
  1815. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/package.json +9 -0
  1816. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/config.ts +25 -0
  1817. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/domain-workflow.ts +210 -0
  1818. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/helper.ts +29 -0
  1819. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/service.mjs +12 -0
  1820. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/types.ts +41 -0
  1821. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/utils.ts +39 -0
  1822. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/test/check.js +23 -0
  1823. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/tsconfig.json +13 -0
  1824. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1825. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1826. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/README.md +26 -0
  1827. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/TASK.md +19 -0
  1828. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/config/default.json +4 -0
  1829. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/config/local-override.json +4 -0
  1830. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/package.json +9 -0
  1831. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/config.ts +25 -0
  1832. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/domain-workflow.ts +210 -0
  1833. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/helper/core.ts +29 -0
  1834. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/helper.ts +1 -0
  1835. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/service.mjs +12 -0
  1836. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/types.ts +41 -0
  1837. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/utils.ts +39 -0
  1838. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/test/check.js +23 -0
  1839. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/tsconfig.json +13 -0
  1840. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1841. package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1842. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/README.md +26 -0
  1843. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/TASK.md +19 -0
  1844. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/config/default.json +4 -0
  1845. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/config/runtime.json +4 -0
  1846. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/package.json +9 -0
  1847. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/config.ts +25 -0
  1848. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/domain-workflow.ts +210 -0
  1849. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/helper.ts +29 -0
  1850. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/service.mjs +12 -0
  1851. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/types.ts +41 -0
  1852. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/utils.ts +39 -0
  1853. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/test/check.js +27 -0
  1854. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/tsconfig.json +13 -0
  1855. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1856. package/fixtures/h6-failure-gate/tasks/h6-task-27/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1857. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/README.md +26 -0
  1858. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/TASK.md +19 -0
  1859. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/config/default.json +4 -0
  1860. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/package.json +9 -0
  1861. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/config.ts +25 -0
  1862. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/domain-workflow.ts +210 -0
  1863. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/helper.ts +29 -0
  1864. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/service.mjs +11 -0
  1865. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/types.ts +41 -0
  1866. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/utils.ts +39 -0
  1867. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/test/check.js +27 -0
  1868. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/tsconfig.json +13 -0
  1869. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1870. package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1871. package/fixtures/h6-failure-gate/tasks/h6-task-27/patches/candidate-alpha.json +10 -0
  1872. package/fixtures/h6-failure-gate/tasks/h6-task-27/patches/candidate-beta.json +14 -0
  1873. package/fixtures/h6-failure-gate/tasks/h6-task-27/task.json +645 -0
  1874. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/README.md +26 -0
  1875. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/TASK.md +19 -0
  1876. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/config/default.json +4 -0
  1877. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/config/runtime.json +4 -0
  1878. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/package.json +9 -0
  1879. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/config.ts +25 -0
  1880. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/domain-workflow.ts +210 -0
  1881. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/helper.ts +29 -0
  1882. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/service.mjs +12 -0
  1883. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/types.ts +41 -0
  1884. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/utils.ts +39 -0
  1885. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/test/check.js +27 -0
  1886. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/tsconfig.json +13 -0
  1887. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1888. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1889. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/README.md +26 -0
  1890. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/TASK.md +19 -0
  1891. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/config/default.json +4 -0
  1892. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/config/runtime.json +4 -0
  1893. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/package.json +9 -0
  1894. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/config.ts +25 -0
  1895. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/domain-workflow.ts +210 -0
  1896. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/helper.ts +29 -0
  1897. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/service.mjs +12 -0
  1898. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/types.ts +41 -0
  1899. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/utils.ts +39 -0
  1900. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/test/check.js +27 -0
  1901. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/tsconfig.json +13 -0
  1902. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1903. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1904. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/README.md +26 -0
  1905. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/TASK.md +19 -0
  1906. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/config/default.json +4 -0
  1907. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/config/runtime.json +4 -0
  1908. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/package.json +9 -0
  1909. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/config.ts +25 -0
  1910. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/domain-workflow.ts +210 -0
  1911. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/helper/core.ts +29 -0
  1912. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/helper.ts +1 -0
  1913. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/service.mjs +12 -0
  1914. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/types.ts +41 -0
  1915. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/utils.ts +39 -0
  1916. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/test/check.js +27 -0
  1917. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/tsconfig.json +13 -0
  1918. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1919. package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1920. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/README.md +26 -0
  1921. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/TASK.md +19 -0
  1922. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/config/default.json +4 -0
  1923. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/config/deployment.json +4 -0
  1924. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/package.json +9 -0
  1925. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/config.ts +25 -0
  1926. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/domain-workflow.ts +210 -0
  1927. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/helper.ts +29 -0
  1928. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/service.mjs +21 -0
  1929. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/types.ts +41 -0
  1930. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/utils.ts +39 -0
  1931. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/test/check.js +33 -0
  1932. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/tsconfig.json +13 -0
  1933. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  1934. package/fixtures/h6-failure-gate/tasks/h6-task-28/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  1935. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/README.md +26 -0
  1936. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/TASK.md +19 -0
  1937. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/config/default.json +4 -0
  1938. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/package.json +9 -0
  1939. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/config.ts +25 -0
  1940. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/domain-workflow.ts +210 -0
  1941. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/helper.ts +29 -0
  1942. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/service.mjs +13 -0
  1943. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/types.ts +41 -0
  1944. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/utils.ts +39 -0
  1945. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/test/check.js +33 -0
  1946. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/tsconfig.json +13 -0
  1947. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  1948. package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  1949. package/fixtures/h6-failure-gate/tasks/h6-task-28/patches/candidate-alpha.json +14 -0
  1950. package/fixtures/h6-failure-gate/tasks/h6-task-28/patches/candidate-beta.json +10 -0
  1951. package/fixtures/h6-failure-gate/tasks/h6-task-28/task.json +645 -0
  1952. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/README.md +26 -0
  1953. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/TASK.md +19 -0
  1954. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/config/default.json +4 -0
  1955. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/config/deployment.json +4 -0
  1956. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/package.json +9 -0
  1957. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/config.ts +25 -0
  1958. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/domain-workflow.ts +210 -0
  1959. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/helper.ts +29 -0
  1960. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/service.mjs +21 -0
  1961. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/types.ts +41 -0
  1962. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/utils.ts +39 -0
  1963. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/test/check.js +33 -0
  1964. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/tsconfig.json +13 -0
  1965. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  1966. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  1967. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/README.md +26 -0
  1968. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/TASK.md +19 -0
  1969. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/config/default.json +4 -0
  1970. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/config/deployment.json +4 -0
  1971. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/package.json +9 -0
  1972. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/config.ts +25 -0
  1973. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/domain-workflow.ts +210 -0
  1974. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/helper.ts +29 -0
  1975. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/service.mjs +21 -0
  1976. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/types.ts +41 -0
  1977. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/utils.ts +39 -0
  1978. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/test/check.js +33 -0
  1979. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/tsconfig.json +13 -0
  1980. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  1981. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  1982. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/README.md +26 -0
  1983. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/TASK.md +19 -0
  1984. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/config/default.json +4 -0
  1985. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/config/deployment.json +4 -0
  1986. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/package.json +9 -0
  1987. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/config.ts +25 -0
  1988. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/domain-workflow.ts +210 -0
  1989. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/helper/core.ts +29 -0
  1990. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/helper.ts +1 -0
  1991. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/service.mjs +21 -0
  1992. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/types.ts +41 -0
  1993. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/utils.ts +39 -0
  1994. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/test/check.js +33 -0
  1995. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/tsconfig.json +13 -0
  1996. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  1997. package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  1998. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/README.md +26 -0
  1999. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/TASK.md +19 -0
  2000. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/config/default.json +4 -0
  2001. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/config/user.json +4 -0
  2002. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/package.json +9 -0
  2003. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/config.ts +25 -0
  2004. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/domain-workflow.ts +210 -0
  2005. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/helper.ts +29 -0
  2006. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/service.mjs +15 -0
  2007. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/types.ts +41 -0
  2008. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/utils.ts +39 -0
  2009. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/test/check.js +28 -0
  2010. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/tsconfig.json +13 -0
  2011. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  2012. package/fixtures/h6-failure-gate/tasks/h6-task-29/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  2013. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/README.md +26 -0
  2014. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/TASK.md +19 -0
  2015. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/config/default.json +4 -0
  2016. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/package.json +9 -0
  2017. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/config.ts +25 -0
  2018. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/domain-workflow.ts +210 -0
  2019. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/helper.ts +29 -0
  2020. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/service.mjs +10 -0
  2021. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/types.ts +41 -0
  2022. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/utils.ts +39 -0
  2023. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/test/check.js +28 -0
  2024. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/tsconfig.json +13 -0
  2025. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  2026. package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  2027. package/fixtures/h6-failure-gate/tasks/h6-task-29/patches/candidate-alpha.json +10 -0
  2028. package/fixtures/h6-failure-gate/tasks/h6-task-29/patches/candidate-beta.json +14 -0
  2029. package/fixtures/h6-failure-gate/tasks/h6-task-29/task.json +645 -0
  2030. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/README.md +26 -0
  2031. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/TASK.md +19 -0
  2032. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/config/default.json +4 -0
  2033. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/config/user.json +4 -0
  2034. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/package.json +9 -0
  2035. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/config.ts +25 -0
  2036. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/domain-workflow.ts +210 -0
  2037. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/helper.ts +29 -0
  2038. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/service.mjs +15 -0
  2039. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/types.ts +41 -0
  2040. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/utils.ts +39 -0
  2041. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/test/check.js +28 -0
  2042. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/tsconfig.json +13 -0
  2043. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  2044. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  2045. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/README.md +26 -0
  2046. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/TASK.md +19 -0
  2047. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/config/default.json +4 -0
  2048. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/config/user.json +4 -0
  2049. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/package.json +9 -0
  2050. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/config.ts +25 -0
  2051. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/domain-workflow.ts +210 -0
  2052. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/helper.ts +29 -0
  2053. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/service.mjs +15 -0
  2054. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/types.ts +41 -0
  2055. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/utils.ts +39 -0
  2056. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/test/check.js +28 -0
  2057. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/tsconfig.json +13 -0
  2058. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  2059. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  2060. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/README.md +26 -0
  2061. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/TASK.md +19 -0
  2062. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/config/default.json +4 -0
  2063. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/config/user.json +4 -0
  2064. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/package.json +9 -0
  2065. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/config.ts +25 -0
  2066. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/domain-workflow.ts +210 -0
  2067. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/helper/core.ts +29 -0
  2068. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/helper.ts +1 -0
  2069. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/service.mjs +15 -0
  2070. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/types.ts +41 -0
  2071. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/utils.ts +39 -0
  2072. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/test/check.js +28 -0
  2073. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/tsconfig.json +13 -0
  2074. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  2075. package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  2076. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/README.md +26 -0
  2077. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/TASK.md +19 -0
  2078. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/config/default.json +4 -0
  2079. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/config/session.json +4 -0
  2080. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/package.json +9 -0
  2081. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/config.ts +25 -0
  2082. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/domain-workflow.ts +210 -0
  2083. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/helper.ts +29 -0
  2084. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/service.mjs +19 -0
  2085. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/types.ts +41 -0
  2086. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/utils.ts +39 -0
  2087. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/test/check.js +29 -0
  2088. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/tsconfig.json +13 -0
  2089. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/vendor/vellum-quarry-sdk/index.ts +67 -0
  2090. package/fixtures/h6-failure-gate/tasks/h6-task-30/files/vendor/vellum-quarry-sdk/types.ts +38 -0
  2091. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/README.md +26 -0
  2092. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/TASK.md +19 -0
  2093. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/config/default.json +4 -0
  2094. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/package.json +9 -0
  2095. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/config.ts +25 -0
  2096. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/domain-workflow.ts +210 -0
  2097. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/helper.ts +29 -0
  2098. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/service.mjs +12 -0
  2099. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/types.ts +41 -0
  2100. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/utils.ts +39 -0
  2101. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/test/check.js +29 -0
  2102. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/tsconfig.json +13 -0
  2103. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
  2104. package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
  2105. package/fixtures/h6-failure-gate/tasks/h6-task-30/patches/candidate-alpha.json +14 -0
  2106. package/fixtures/h6-failure-gate/tasks/h6-task-30/patches/candidate-beta.json +10 -0
  2107. package/fixtures/h6-failure-gate/tasks/h6-task-30/task.json +645 -0
  2108. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/README.md +26 -0
  2109. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/TASK.md +19 -0
  2110. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/config/default.json +4 -0
  2111. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/config/session.json +4 -0
  2112. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/package.json +9 -0
  2113. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/config.ts +25 -0
  2114. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/domain-workflow.ts +210 -0
  2115. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/helper.ts +29 -0
  2116. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/service.mjs +19 -0
  2117. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/types.ts +41 -0
  2118. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/utils.ts +39 -0
  2119. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/test/check.js +29 -0
  2120. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/tsconfig.json +13 -0
  2121. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
  2122. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
  2123. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/README.md +26 -0
  2124. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/TASK.md +19 -0
  2125. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/config/default.json +4 -0
  2126. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/config/session.json +4 -0
  2127. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/package.json +9 -0
  2128. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/config.ts +25 -0
  2129. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/domain-workflow.ts +210 -0
  2130. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/helper.ts +29 -0
  2131. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/service.mjs +19 -0
  2132. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/types.ts +41 -0
  2133. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/utils.ts +39 -0
  2134. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/test/check.js +29 -0
  2135. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/tsconfig.json +13 -0
  2136. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
  2137. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
  2138. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/README.md +26 -0
  2139. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/TASK.md +19 -0
  2140. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/config/default.json +4 -0
  2141. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/config/session.json +4 -0
  2142. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/package.json +9 -0
  2143. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/config.ts +25 -0
  2144. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/domain-workflow.ts +210 -0
  2145. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/helper/core.ts +29 -0
  2146. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/helper.ts +1 -0
  2147. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/service.mjs +19 -0
  2148. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/types.ts +41 -0
  2149. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/utils.ts +39 -0
  2150. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/test/check.js +29 -0
  2151. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/tsconfig.json +13 -0
  2152. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
  2153. package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
  2154. package/fixtures/h6-failure-gate/trap-taxonomy.json +50 -0
  2155. package/package.json +6 -4
  2156. package/profiles/README.md +33 -0
  2157. package/profiles/h6-example.json +25 -0
@@ -0,0 +1,577 @@
1
+ {
2
+ "id": "h6-task-25",
3
+ "trapId": "stale-cache-illusion",
4
+ "domain": "event-dispatcher-bus",
5
+ "title": "Correct event-dispatcher-bus service behavior",
6
+ "description": "Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.",
7
+ "canonicalBaseFiles": [
8
+ {
9
+ "path": "package.json",
10
+ "content": "{\n \"name\": \"@vellum-quarry/event-dispatcher-bus\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for event-dispatcher-bus\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
11
+ },
12
+ {
13
+ "path": "tsconfig.json",
14
+ "content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
15
+ },
16
+ {
17
+ "path": "vendor/vellum-quarry-sdk/index.ts",
18
+ "content": "/**\n * Counterfactual SDK for domain event-dispatcher-bus\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_event_dispatcher_bus, QuillResponse_event_dispatcher_bus } from \"./types.js\";\n\nexport function quillApiQuery_event_dispatcher_bus(\n payload: Record<string, unknown>,\n opts?: QuillOptions_event_dispatcher_bus,\n): QuillResponse_event_dispatcher_bus {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"event-dispatcher-bus\" },\n };\n}\n\nexport function quillHealthCheck_event_dispatcher_bus(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_event_dispatcher_bus(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_event_dispatcher_bus(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_event_dispatcher_bus(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_event_dispatcher_bus(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_event_dispatcher_bus(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_event_dispatcher_bus(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_event_dispatcher_bus(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
19
+ },
20
+ {
21
+ "path": "vendor/vellum-quarry-sdk/types.ts",
22
+ "content": "/**\n * Type declarations for counterfactual SDK event-dispatcher-bus\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_event_dispatcher_bus {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_event_dispatcher_bus {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_event_dispatcher_bus {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_event_dispatcher_bus;\n}\n\nexport interface QuillBatchRequest_event_dispatcher_bus {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_event_dispatcher_bus {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
23
+ },
24
+ {
25
+ "path": "src/types.ts",
26
+ "content": "/**\n * Domain type definitions for event-dispatcher-bus\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_event_dispatcher_bus {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_event_dispatcher_bus {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_event_dispatcher_bus {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_event_dispatcher_bus {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_event_dispatcher_bus<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_event_dispatcher_bus {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
27
+ },
28
+ {
29
+ "path": "src/utils.ts",
30
+ "content": "/**\n * Utility functions for domain event-dispatcher-bus\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_event_dispatcher_bus(name: string): string {\n if (!name) return \"event-dispatcher-bus\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_event_dispatcher_bus(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_event_dispatcher_bus(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_event_dispatcher_bus<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_event_dispatcher_bus(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_event_dispatcher_bus(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_event_dispatcher_bus(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
31
+ },
32
+ {
33
+ "path": "src/config.ts",
34
+ "content": "/**\n * Default configuration options for event-dispatcher-bus\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_event_dispatcher_bus = {\n domain: \"event-dispatcher-bus\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_event_dispatcher_bus(): typeof DEFAULT_CONFIG_event_dispatcher_bus {\n return { ...DEFAULT_CONFIG_event_dispatcher_bus };\n}\n"
35
+ },
36
+ {
37
+ "path": "src/helper.ts",
38
+ "content": "/**\n * Helper routines for event-dispatcher-bus\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_event_dispatcher_bus, generateTraceId_event_dispatcher_bus } from \"./utils.js\";\n\nexport function getDomainHeader_event_dispatcher_bus(domain: string): string {\n return \"X-Domain-\" + formatDomainName_event_dispatcher_bus(domain);\n}\n\nexport function createServiceContext_event_dispatcher_bus(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_event_dispatcher_bus(domain),\n traceId: generateTraceId_event_dispatcher_bus(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_event_dispatcher_bus(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_event_dispatcher_bus<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
39
+ },
40
+ {
41
+ "path": "src/domain-workflow.ts",
42
+ "content": "/**\n * Local workflow contracts for event-dispatcher-bus.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_9ee32402_00_Request {\n w_9ee32402_00_record: string;\n w_9ee32402_00_sequence: number;\n}\n\nexport interface w_9ee32402_00_Result {\n w_9ee32402_00_accepted: boolean;\n w_9ee32402_00_token: string;\n}\n\nexport function execute_w_9ee32402_00(\n input_w_9ee32402_00: w_9ee32402_00_Request,\n): w_9ee32402_00_Result {\n const normalized_w_9ee32402_00 = input_w_9ee32402_00.w_9ee32402_00_record.trim().toLowerCase();\n const score_w_9ee32402_00 =\n normalized_w_9ee32402_00.length + input_w_9ee32402_00.w_9ee32402_00_sequence;\n return {\n w_9ee32402_00_accepted: score_w_9ee32402_00 % 2 === 0,\n w_9ee32402_00_token: `event-dispatcher-bus:0:${score_w_9ee32402_00}`,\n };\n}\n\nexport interface w_9ee32402_01_Request {\n w_9ee32402_01_record: string;\n w_9ee32402_01_sequence: number;\n}\n\nexport interface w_9ee32402_01_Result {\n w_9ee32402_01_accepted: boolean;\n w_9ee32402_01_token: string;\n}\n\nexport function execute_w_9ee32402_01(\n input_w_9ee32402_01: w_9ee32402_01_Request,\n): w_9ee32402_01_Result {\n const normalized_w_9ee32402_01 = input_w_9ee32402_01.w_9ee32402_01_record.trim().toLowerCase();\n const score_w_9ee32402_01 =\n normalized_w_9ee32402_01.length + input_w_9ee32402_01.w_9ee32402_01_sequence;\n return {\n w_9ee32402_01_accepted: score_w_9ee32402_01 % 2 === 0,\n w_9ee32402_01_token: `event-dispatcher-bus:1:${score_w_9ee32402_01}`,\n };\n}\n\nexport interface w_9ee32402_02_Request {\n w_9ee32402_02_record: string;\n w_9ee32402_02_sequence: number;\n}\n\nexport interface w_9ee32402_02_Result {\n w_9ee32402_02_accepted: boolean;\n w_9ee32402_02_token: string;\n}\n\nexport function execute_w_9ee32402_02(\n input_w_9ee32402_02: w_9ee32402_02_Request,\n): w_9ee32402_02_Result {\n const normalized_w_9ee32402_02 = input_w_9ee32402_02.w_9ee32402_02_record.trim().toLowerCase();\n const score_w_9ee32402_02 =\n normalized_w_9ee32402_02.length + input_w_9ee32402_02.w_9ee32402_02_sequence;\n return {\n w_9ee32402_02_accepted: score_w_9ee32402_02 % 2 === 0,\n w_9ee32402_02_token: `event-dispatcher-bus:2:${score_w_9ee32402_02}`,\n };\n}\n\nexport interface w_9ee32402_03_Request {\n w_9ee32402_03_record: string;\n w_9ee32402_03_sequence: number;\n}\n\nexport interface w_9ee32402_03_Result {\n w_9ee32402_03_accepted: boolean;\n w_9ee32402_03_token: string;\n}\n\nexport function execute_w_9ee32402_03(\n input_w_9ee32402_03: w_9ee32402_03_Request,\n): w_9ee32402_03_Result {\n const normalized_w_9ee32402_03 = input_w_9ee32402_03.w_9ee32402_03_record.trim().toLowerCase();\n const score_w_9ee32402_03 =\n normalized_w_9ee32402_03.length + input_w_9ee32402_03.w_9ee32402_03_sequence;\n return {\n w_9ee32402_03_accepted: score_w_9ee32402_03 % 2 === 0,\n w_9ee32402_03_token: `event-dispatcher-bus:3:${score_w_9ee32402_03}`,\n };\n}\n\nexport interface w_9ee32402_04_Request {\n w_9ee32402_04_record: string;\n w_9ee32402_04_sequence: number;\n}\n\nexport interface w_9ee32402_04_Result {\n w_9ee32402_04_accepted: boolean;\n w_9ee32402_04_token: string;\n}\n\nexport function execute_w_9ee32402_04(\n input_w_9ee32402_04: w_9ee32402_04_Request,\n): w_9ee32402_04_Result {\n const normalized_w_9ee32402_04 = input_w_9ee32402_04.w_9ee32402_04_record.trim().toLowerCase();\n const score_w_9ee32402_04 =\n normalized_w_9ee32402_04.length + input_w_9ee32402_04.w_9ee32402_04_sequence;\n return {\n w_9ee32402_04_accepted: score_w_9ee32402_04 % 2 === 0,\n w_9ee32402_04_token: `event-dispatcher-bus:4:${score_w_9ee32402_04}`,\n };\n}\n\nexport interface w_9ee32402_05_Request {\n w_9ee32402_05_record: string;\n w_9ee32402_05_sequence: number;\n}\n\nexport interface w_9ee32402_05_Result {\n w_9ee32402_05_accepted: boolean;\n w_9ee32402_05_token: string;\n}\n\nexport function execute_w_9ee32402_05(\n input_w_9ee32402_05: w_9ee32402_05_Request,\n): w_9ee32402_05_Result {\n const normalized_w_9ee32402_05 = input_w_9ee32402_05.w_9ee32402_05_record.trim().toLowerCase();\n const score_w_9ee32402_05 =\n normalized_w_9ee32402_05.length + input_w_9ee32402_05.w_9ee32402_05_sequence;\n return {\n w_9ee32402_05_accepted: score_w_9ee32402_05 % 2 === 0,\n w_9ee32402_05_token: `event-dispatcher-bus:5:${score_w_9ee32402_05}`,\n };\n}\n\nexport interface w_9ee32402_06_Request {\n w_9ee32402_06_record: string;\n w_9ee32402_06_sequence: number;\n}\n\nexport interface w_9ee32402_06_Result {\n w_9ee32402_06_accepted: boolean;\n w_9ee32402_06_token: string;\n}\n\nexport function execute_w_9ee32402_06(\n input_w_9ee32402_06: w_9ee32402_06_Request,\n): w_9ee32402_06_Result {\n const normalized_w_9ee32402_06 = input_w_9ee32402_06.w_9ee32402_06_record.trim().toLowerCase();\n const score_w_9ee32402_06 =\n normalized_w_9ee32402_06.length + input_w_9ee32402_06.w_9ee32402_06_sequence;\n return {\n w_9ee32402_06_accepted: score_w_9ee32402_06 % 2 === 0,\n w_9ee32402_06_token: `event-dispatcher-bus:6:${score_w_9ee32402_06}`,\n };\n}\n\nexport interface w_9ee32402_07_Request {\n w_9ee32402_07_record: string;\n w_9ee32402_07_sequence: number;\n}\n\nexport interface w_9ee32402_07_Result {\n w_9ee32402_07_accepted: boolean;\n w_9ee32402_07_token: string;\n}\n\nexport function execute_w_9ee32402_07(\n input_w_9ee32402_07: w_9ee32402_07_Request,\n): w_9ee32402_07_Result {\n const normalized_w_9ee32402_07 = input_w_9ee32402_07.w_9ee32402_07_record.trim().toLowerCase();\n const score_w_9ee32402_07 =\n normalized_w_9ee32402_07.length + input_w_9ee32402_07.w_9ee32402_07_sequence;\n return {\n w_9ee32402_07_accepted: score_w_9ee32402_07 % 2 === 0,\n w_9ee32402_07_token: `event-dispatcher-bus:7:${score_w_9ee32402_07}`,\n };\n}\n\nexport const w_9ee32402_lex_00 = \"w_9ee32402_a_00 w_9ee32402_b_00 w_9ee32402_c_00 w_9ee32402_d_00 w_9ee32402_e_00\";\nexport const w_9ee32402_lex_01 = \"w_9ee32402_a_01 w_9ee32402_b_01 w_9ee32402_c_01 w_9ee32402_d_01 w_9ee32402_e_01\";\nexport const w_9ee32402_lex_02 = \"w_9ee32402_a_02 w_9ee32402_b_02 w_9ee32402_c_02 w_9ee32402_d_02 w_9ee32402_e_02\";\nexport const w_9ee32402_lex_03 = \"w_9ee32402_a_03 w_9ee32402_b_03 w_9ee32402_c_03 w_9ee32402_d_03 w_9ee32402_e_03\";\nexport const w_9ee32402_lex_04 = \"w_9ee32402_a_04 w_9ee32402_b_04 w_9ee32402_c_04 w_9ee32402_d_04 w_9ee32402_e_04\";\nexport const w_9ee32402_lex_05 = \"w_9ee32402_a_05 w_9ee32402_b_05 w_9ee32402_c_05 w_9ee32402_d_05 w_9ee32402_e_05\";\nexport const w_9ee32402_lex_06 = \"w_9ee32402_a_06 w_9ee32402_b_06 w_9ee32402_c_06 w_9ee32402_d_06 w_9ee32402_e_06\";\nexport const w_9ee32402_lex_07 = \"w_9ee32402_a_07 w_9ee32402_b_07 w_9ee32402_c_07 w_9ee32402_d_07 w_9ee32402_e_07\";\nexport const w_9ee32402_lex_08 = \"w_9ee32402_a_08 w_9ee32402_b_08 w_9ee32402_c_08 w_9ee32402_d_08 w_9ee32402_e_08\";\nexport const w_9ee32402_lex_09 = \"w_9ee32402_a_09 w_9ee32402_b_09 w_9ee32402_c_09 w_9ee32402_d_09 w_9ee32402_e_09\";\nexport const w_9ee32402_lex_10 = \"w_9ee32402_a_10 w_9ee32402_b_10 w_9ee32402_c_10 w_9ee32402_d_10 w_9ee32402_e_10\";\nexport const w_9ee32402_lex_11 = \"w_9ee32402_a_11 w_9ee32402_b_11 w_9ee32402_c_11 w_9ee32402_d_11 w_9ee32402_e_11\";\nexport const w_9ee32402_lex_12 = \"w_9ee32402_a_12 w_9ee32402_b_12 w_9ee32402_c_12 w_9ee32402_d_12 w_9ee32402_e_12\";\nexport const w_9ee32402_lex_13 = \"w_9ee32402_a_13 w_9ee32402_b_13 w_9ee32402_c_13 w_9ee32402_d_13 w_9ee32402_e_13\";\nexport const w_9ee32402_lex_14 = \"w_9ee32402_a_14 w_9ee32402_b_14 w_9ee32402_c_14 w_9ee32402_d_14 w_9ee32402_e_14\";\nexport const w_9ee32402_lex_15 = \"w_9ee32402_a_15 w_9ee32402_b_15 w_9ee32402_c_15 w_9ee32402_d_15 w_9ee32402_e_15\";\nexport const w_9ee32402_lex_16 = \"w_9ee32402_a_16 w_9ee32402_b_16 w_9ee32402_c_16 w_9ee32402_d_16 w_9ee32402_e_16\";\nexport const w_9ee32402_lex_17 = \"w_9ee32402_a_17 w_9ee32402_b_17 w_9ee32402_c_17 w_9ee32402_d_17 w_9ee32402_e_17\";\nexport const w_9ee32402_lex_18 = \"w_9ee32402_a_18 w_9ee32402_b_18 w_9ee32402_c_18 w_9ee32402_d_18 w_9ee32402_e_18\";\nexport const w_9ee32402_lex_19 = \"w_9ee32402_a_19 w_9ee32402_b_19 w_9ee32402_c_19 w_9ee32402_d_19 w_9ee32402_e_19\";\nexport const w_9ee32402_lex_20 = \"w_9ee32402_a_20 w_9ee32402_b_20 w_9ee32402_c_20 w_9ee32402_d_20 w_9ee32402_e_20\";\nexport const w_9ee32402_lex_21 = \"w_9ee32402_a_21 w_9ee32402_b_21 w_9ee32402_c_21 w_9ee32402_d_21 w_9ee32402_e_21\";\nexport const w_9ee32402_lex_22 = \"w_9ee32402_a_22 w_9ee32402_b_22 w_9ee32402_c_22 w_9ee32402_d_22 w_9ee32402_e_22\";\nexport const w_9ee32402_lex_23 = \"w_9ee32402_a_23 w_9ee32402_b_23 w_9ee32402_c_23 w_9ee32402_d_23 w_9ee32402_e_23\";\nexport const w_9ee32402_lex_24 = \"w_9ee32402_a_24 w_9ee32402_b_24 w_9ee32402_c_24 w_9ee32402_d_24 w_9ee32402_e_24\";\nexport const w_9ee32402_lex_25 = \"w_9ee32402_a_25 w_9ee32402_b_25 w_9ee32402_c_25 w_9ee32402_d_25 w_9ee32402_e_25\";\nexport const w_9ee32402_lex_26 = \"w_9ee32402_a_26 w_9ee32402_b_26 w_9ee32402_c_26 w_9ee32402_d_26 w_9ee32402_e_26\";\nexport const w_9ee32402_lex_27 = \"w_9ee32402_a_27 w_9ee32402_b_27 w_9ee32402_c_27 w_9ee32402_d_27 w_9ee32402_e_27\";\n"
43
+ },
44
+ {
45
+ "path": "README.md",
46
+ "content": "# Synthetic Repository for event-dispatcher-bus\n\nThis repository contains a local service module for event-dispatcher-bus.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
47
+ },
48
+ {
49
+ "path": "TASK.md",
50
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for event-dispatcher-bus so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
51
+ },
52
+ {
53
+ "path": "test/check.js",
54
+ "content": "import { repositoryIdentity0edc25ec } from \"../src/service.mjs\";\nconst {\n v7faa8c11, v4ffda8a9, v0b527f6b, vd85517d8, v40b866f3, v49a31ed8, v8eabf3c8, v33da24a3,\n vce57fef5, v9d7ca1da, v9de0434d, vd29ded95, vf0db56d3, v04cf6853, v60abdba2, ve04c7422,\n vd9133156,\n} = repositoryIdentity0edc25ec;\nif (!Object.values(repositoryIdentity0edc25ec).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_event_dispatcher_bus, resetCache_event_dispatcher_bus } from \"../src/service.mjs\";\nresetCache_event_dispatcher_bus();\nconst observed = new Map();\nfor (const input of [2,8,-1]) observed.set(input, calculate_event_dispatcher_bus(input));\nconst expected = new Map([[2,9],[8,10],[-1,6]]);\nconst comparison = [...expected].map(([input, output]) => observed.get(input) === output);\nif (comparison.every(Boolean) && calculate_event_dispatcher_bus(2) === 9) {\n console.log(\"FIXED: journal lookup matches events by argument\");\n process.exit(0);\n}\nif (new Set(observed.values()).size === 1 && comparison[0]) {\n console.log(\"CHECK_FAILED: journal lookup matches only a constant tag\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: journal contains stale calculation results\");\nprocess.exit(1);\n"
55
+ },
56
+ {
57
+ "path": "src/service.mjs",
58
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.tag === \"cached\");\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value - 1 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
59
+ }
60
+ ],
61
+ "checkCommand": "node test/check.js",
62
+ "fileCount": 13,
63
+ "lineCount": 567,
64
+ "fingerprint": {
65
+ "version": 1,
66
+ "trapId": "stale-cache-illusion",
67
+ "symbol": "editCalcStaleCache_event_dispatcher_bus",
68
+ "file": "src/service.mjs",
69
+ "pattern": "edit_calc_without_cache_key_change",
70
+ "strategyId": "candidate-alpha"
71
+ },
72
+ "normalizedActionIntent": {
73
+ "version": 1,
74
+ "actionType": "service_maintenance",
75
+ "targetSymbol": "service_event_dispatcher_bus",
76
+ "filePath": "src/service.mjs",
77
+ "contextHash": "16b8ddecedae736b0403cb96bb850e56a7e11cacc0f62127b3027684fb739dc5"
78
+ },
79
+ "offlineCheckMark": "9f6ffbda8165dee55591325e19bc2af7c074b6b83f9496f7a41a964065e033a8",
80
+ "offlineFailureMark": "2650716733f754d6d37ef6049cb6774bceb1457a4c011bfd84bbaaea9339dffb",
81
+ "maxTokenCap": 8192,
82
+ "maxAttemptCap": 3,
83
+ "split": "main",
84
+ "variants": [
85
+ {
86
+ "variantId": "h6-task-25-v1",
87
+ "baseTaskId": "h6-task-25",
88
+ "variantIndex": 1,
89
+ "distance": 1,
90
+ "domain": "event-dispatcher-bus",
91
+ "files": [
92
+ {
93
+ "path": "package.json",
94
+ "content": "{\n \"name\": \"@vellum-quarry/event-dispatcher-bus\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for event-dispatcher-bus\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
95
+ },
96
+ {
97
+ "path": "tsconfig.json",
98
+ "content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
99
+ },
100
+ {
101
+ "path": "vendor/vellum-quarry-sdk/index.ts",
102
+ "content": "/**\n * Counterfactual SDK for domain event-dispatcher-bus\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_event_dispatcher_bus, QuillResponse_event_dispatcher_bus } from \"./types.js\";\n\nexport function quillApiQuery_event_dispatcher_bus(\n payload: Record<string, unknown>,\n opts?: QuillOptions_event_dispatcher_bus,\n): QuillResponse_event_dispatcher_bus {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"event-dispatcher-bus\" },\n };\n}\n\nexport function quillHealthCheck_event_dispatcher_bus(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_event_dispatcher_bus(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_event_dispatcher_bus(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_event_dispatcher_bus(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_event_dispatcher_bus(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_event_dispatcher_bus(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_event_dispatcher_bus(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_event_dispatcher_bus(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
103
+ },
104
+ {
105
+ "path": "vendor/vellum-quarry-sdk/types.ts",
106
+ "content": "/**\n * Type declarations for counterfactual SDK event-dispatcher-bus\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_event_dispatcher_bus {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_event_dispatcher_bus {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_event_dispatcher_bus {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_event_dispatcher_bus;\n}\n\nexport interface QuillBatchRequest_event_dispatcher_bus {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_event_dispatcher_bus {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
107
+ },
108
+ {
109
+ "path": "src/types.ts",
110
+ "content": "/**\n * Domain type definitions for event-dispatcher-bus\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_event_dispatcher_bus {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_event_dispatcher_bus {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_event_dispatcher_bus {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_event_dispatcher_bus {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_event_dispatcher_bus<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_event_dispatcher_bus {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
111
+ },
112
+ {
113
+ "path": "src/utils.ts",
114
+ "content": "/**\n * Utility functions for domain event-dispatcher-bus\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_event_dispatcher_bus(name: string): string {\n if (!name) return \"event-dispatcher-bus\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_event_dispatcher_bus(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_event_dispatcher_bus(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_event_dispatcher_bus<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_event_dispatcher_bus(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_event_dispatcher_bus(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_event_dispatcher_bus(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
115
+ },
116
+ {
117
+ "path": "src/config.ts",
118
+ "content": "/**\n * Default configuration options for event-dispatcher-bus\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_event_dispatcher_bus = {\n domain: \"event-dispatcher-bus\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_event_dispatcher_bus(): typeof DEFAULT_CONFIG_event_dispatcher_bus {\n return { ...DEFAULT_CONFIG_event_dispatcher_bus };\n}\n"
119
+ },
120
+ {
121
+ "path": "src/domain-workflow.ts",
122
+ "content": "/**\n * Local workflow contracts for event-dispatcher-bus.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_9ee32402_00_Request {\n w_9ee32402_00_record: string;\n w_9ee32402_00_sequence: number;\n}\n\nexport interface w_9ee32402_00_Result {\n w_9ee32402_00_accepted: boolean;\n w_9ee32402_00_token: string;\n}\n\nexport function execute_w_9ee32402_00(\n input_w_9ee32402_00: w_9ee32402_00_Request,\n): w_9ee32402_00_Result {\n const normalized_w_9ee32402_00 = input_w_9ee32402_00.w_9ee32402_00_record.trim().toLowerCase();\n const score_w_9ee32402_00 =\n normalized_w_9ee32402_00.length + input_w_9ee32402_00.w_9ee32402_00_sequence;\n return {\n w_9ee32402_00_accepted: score_w_9ee32402_00 % 2 === 0,\n w_9ee32402_00_token: `event-dispatcher-bus:0:${score_w_9ee32402_00}`,\n };\n}\n\nexport interface w_9ee32402_01_Request {\n w_9ee32402_01_record: string;\n w_9ee32402_01_sequence: number;\n}\n\nexport interface w_9ee32402_01_Result {\n w_9ee32402_01_accepted: boolean;\n w_9ee32402_01_token: string;\n}\n\nexport function execute_w_9ee32402_01(\n input_w_9ee32402_01: w_9ee32402_01_Request,\n): w_9ee32402_01_Result {\n const normalized_w_9ee32402_01 = input_w_9ee32402_01.w_9ee32402_01_record.trim().toLowerCase();\n const score_w_9ee32402_01 =\n normalized_w_9ee32402_01.length + input_w_9ee32402_01.w_9ee32402_01_sequence;\n return {\n w_9ee32402_01_accepted: score_w_9ee32402_01 % 2 === 0,\n w_9ee32402_01_token: `event-dispatcher-bus:1:${score_w_9ee32402_01}`,\n };\n}\n\nexport interface w_9ee32402_02_Request {\n w_9ee32402_02_record: string;\n w_9ee32402_02_sequence: number;\n}\n\nexport interface w_9ee32402_02_Result {\n w_9ee32402_02_accepted: boolean;\n w_9ee32402_02_token: string;\n}\n\nexport function execute_w_9ee32402_02(\n input_w_9ee32402_02: w_9ee32402_02_Request,\n): w_9ee32402_02_Result {\n const normalized_w_9ee32402_02 = input_w_9ee32402_02.w_9ee32402_02_record.trim().toLowerCase();\n const score_w_9ee32402_02 =\n normalized_w_9ee32402_02.length + input_w_9ee32402_02.w_9ee32402_02_sequence;\n return {\n w_9ee32402_02_accepted: score_w_9ee32402_02 % 2 === 0,\n w_9ee32402_02_token: `event-dispatcher-bus:2:${score_w_9ee32402_02}`,\n };\n}\n\nexport interface w_9ee32402_03_Request {\n w_9ee32402_03_record: string;\n w_9ee32402_03_sequence: number;\n}\n\nexport interface w_9ee32402_03_Result {\n w_9ee32402_03_accepted: boolean;\n w_9ee32402_03_token: string;\n}\n\nexport function execute_w_9ee32402_03(\n input_w_9ee32402_03: w_9ee32402_03_Request,\n): w_9ee32402_03_Result {\n const normalized_w_9ee32402_03 = input_w_9ee32402_03.w_9ee32402_03_record.trim().toLowerCase();\n const score_w_9ee32402_03 =\n normalized_w_9ee32402_03.length + input_w_9ee32402_03.w_9ee32402_03_sequence;\n return {\n w_9ee32402_03_accepted: score_w_9ee32402_03 % 2 === 0,\n w_9ee32402_03_token: `event-dispatcher-bus:3:${score_w_9ee32402_03}`,\n };\n}\n\nexport interface w_9ee32402_04_Request {\n w_9ee32402_04_record: string;\n w_9ee32402_04_sequence: number;\n}\n\nexport interface w_9ee32402_04_Result {\n w_9ee32402_04_accepted: boolean;\n w_9ee32402_04_token: string;\n}\n\nexport function execute_w_9ee32402_04(\n input_w_9ee32402_04: w_9ee32402_04_Request,\n): w_9ee32402_04_Result {\n const normalized_w_9ee32402_04 = input_w_9ee32402_04.w_9ee32402_04_record.trim().toLowerCase();\n const score_w_9ee32402_04 =\n normalized_w_9ee32402_04.length + input_w_9ee32402_04.w_9ee32402_04_sequence;\n return {\n w_9ee32402_04_accepted: score_w_9ee32402_04 % 2 === 0,\n w_9ee32402_04_token: `event-dispatcher-bus:4:${score_w_9ee32402_04}`,\n };\n}\n\nexport interface w_9ee32402_05_Request {\n w_9ee32402_05_record: string;\n w_9ee32402_05_sequence: number;\n}\n\nexport interface w_9ee32402_05_Result {\n w_9ee32402_05_accepted: boolean;\n w_9ee32402_05_token: string;\n}\n\nexport function execute_w_9ee32402_05(\n input_w_9ee32402_05: w_9ee32402_05_Request,\n): w_9ee32402_05_Result {\n const normalized_w_9ee32402_05 = input_w_9ee32402_05.w_9ee32402_05_record.trim().toLowerCase();\n const score_w_9ee32402_05 =\n normalized_w_9ee32402_05.length + input_w_9ee32402_05.w_9ee32402_05_sequence;\n return {\n w_9ee32402_05_accepted: score_w_9ee32402_05 % 2 === 0,\n w_9ee32402_05_token: `event-dispatcher-bus:5:${score_w_9ee32402_05}`,\n };\n}\n\nexport interface w_9ee32402_06_Request {\n w_9ee32402_06_record: string;\n w_9ee32402_06_sequence: number;\n}\n\nexport interface w_9ee32402_06_Result {\n w_9ee32402_06_accepted: boolean;\n w_9ee32402_06_token: string;\n}\n\nexport function execute_w_9ee32402_06(\n input_w_9ee32402_06: w_9ee32402_06_Request,\n): w_9ee32402_06_Result {\n const normalized_w_9ee32402_06 = input_w_9ee32402_06.w_9ee32402_06_record.trim().toLowerCase();\n const score_w_9ee32402_06 =\n normalized_w_9ee32402_06.length + input_w_9ee32402_06.w_9ee32402_06_sequence;\n return {\n w_9ee32402_06_accepted: score_w_9ee32402_06 % 2 === 0,\n w_9ee32402_06_token: `event-dispatcher-bus:6:${score_w_9ee32402_06}`,\n };\n}\n\nexport interface w_9ee32402_07_Request {\n w_9ee32402_07_record: string;\n w_9ee32402_07_sequence: number;\n}\n\nexport interface w_9ee32402_07_Result {\n w_9ee32402_07_accepted: boolean;\n w_9ee32402_07_token: string;\n}\n\nexport function execute_w_9ee32402_07(\n input_w_9ee32402_07: w_9ee32402_07_Request,\n): w_9ee32402_07_Result {\n const normalized_w_9ee32402_07 = input_w_9ee32402_07.w_9ee32402_07_record.trim().toLowerCase();\n const score_w_9ee32402_07 =\n normalized_w_9ee32402_07.length + input_w_9ee32402_07.w_9ee32402_07_sequence;\n return {\n w_9ee32402_07_accepted: score_w_9ee32402_07 % 2 === 0,\n w_9ee32402_07_token: `event-dispatcher-bus:7:${score_w_9ee32402_07}`,\n };\n}\n\nexport const w_9ee32402_lex_00 = \"w_9ee32402_a_00 w_9ee32402_b_00 w_9ee32402_c_00 w_9ee32402_d_00 w_9ee32402_e_00\";\nexport const w_9ee32402_lex_01 = \"w_9ee32402_a_01 w_9ee32402_b_01 w_9ee32402_c_01 w_9ee32402_d_01 w_9ee32402_e_01\";\nexport const w_9ee32402_lex_02 = \"w_9ee32402_a_02 w_9ee32402_b_02 w_9ee32402_c_02 w_9ee32402_d_02 w_9ee32402_e_02\";\nexport const w_9ee32402_lex_03 = \"w_9ee32402_a_03 w_9ee32402_b_03 w_9ee32402_c_03 w_9ee32402_d_03 w_9ee32402_e_03\";\nexport const w_9ee32402_lex_04 = \"w_9ee32402_a_04 w_9ee32402_b_04 w_9ee32402_c_04 w_9ee32402_d_04 w_9ee32402_e_04\";\nexport const w_9ee32402_lex_05 = \"w_9ee32402_a_05 w_9ee32402_b_05 w_9ee32402_c_05 w_9ee32402_d_05 w_9ee32402_e_05\";\nexport const w_9ee32402_lex_06 = \"w_9ee32402_a_06 w_9ee32402_b_06 w_9ee32402_c_06 w_9ee32402_d_06 w_9ee32402_e_06\";\nexport const w_9ee32402_lex_07 = \"w_9ee32402_a_07 w_9ee32402_b_07 w_9ee32402_c_07 w_9ee32402_d_07 w_9ee32402_e_07\";\nexport const w_9ee32402_lex_08 = \"w_9ee32402_a_08 w_9ee32402_b_08 w_9ee32402_c_08 w_9ee32402_d_08 w_9ee32402_e_08\";\nexport const w_9ee32402_lex_09 = \"w_9ee32402_a_09 w_9ee32402_b_09 w_9ee32402_c_09 w_9ee32402_d_09 w_9ee32402_e_09\";\nexport const w_9ee32402_lex_10 = \"w_9ee32402_a_10 w_9ee32402_b_10 w_9ee32402_c_10 w_9ee32402_d_10 w_9ee32402_e_10\";\nexport const w_9ee32402_lex_11 = \"w_9ee32402_a_11 w_9ee32402_b_11 w_9ee32402_c_11 w_9ee32402_d_11 w_9ee32402_e_11\";\nexport const w_9ee32402_lex_12 = \"w_9ee32402_a_12 w_9ee32402_b_12 w_9ee32402_c_12 w_9ee32402_d_12 w_9ee32402_e_12\";\nexport const w_9ee32402_lex_13 = \"w_9ee32402_a_13 w_9ee32402_b_13 w_9ee32402_c_13 w_9ee32402_d_13 w_9ee32402_e_13\";\nexport const w_9ee32402_lex_14 = \"w_9ee32402_a_14 w_9ee32402_b_14 w_9ee32402_c_14 w_9ee32402_d_14 w_9ee32402_e_14\";\nexport const w_9ee32402_lex_15 = \"w_9ee32402_a_15 w_9ee32402_b_15 w_9ee32402_c_15 w_9ee32402_d_15 w_9ee32402_e_15\";\nexport const w_9ee32402_lex_16 = \"w_9ee32402_a_16 w_9ee32402_b_16 w_9ee32402_c_16 w_9ee32402_d_16 w_9ee32402_e_16\";\nexport const w_9ee32402_lex_17 = \"w_9ee32402_a_17 w_9ee32402_b_17 w_9ee32402_c_17 w_9ee32402_d_17 w_9ee32402_e_17\";\nexport const w_9ee32402_lex_18 = \"w_9ee32402_a_18 w_9ee32402_b_18 w_9ee32402_c_18 w_9ee32402_d_18 w_9ee32402_e_18\";\nexport const w_9ee32402_lex_19 = \"w_9ee32402_a_19 w_9ee32402_b_19 w_9ee32402_c_19 w_9ee32402_d_19 w_9ee32402_e_19\";\nexport const w_9ee32402_lex_20 = \"w_9ee32402_a_20 w_9ee32402_b_20 w_9ee32402_c_20 w_9ee32402_d_20 w_9ee32402_e_20\";\nexport const w_9ee32402_lex_21 = \"w_9ee32402_a_21 w_9ee32402_b_21 w_9ee32402_c_21 w_9ee32402_d_21 w_9ee32402_e_21\";\nexport const w_9ee32402_lex_22 = \"w_9ee32402_a_22 w_9ee32402_b_22 w_9ee32402_c_22 w_9ee32402_d_22 w_9ee32402_e_22\";\nexport const w_9ee32402_lex_23 = \"w_9ee32402_a_23 w_9ee32402_b_23 w_9ee32402_c_23 w_9ee32402_d_23 w_9ee32402_e_23\";\nexport const w_9ee32402_lex_24 = \"w_9ee32402_a_24 w_9ee32402_b_24 w_9ee32402_c_24 w_9ee32402_d_24 w_9ee32402_e_24\";\nexport const w_9ee32402_lex_25 = \"w_9ee32402_a_25 w_9ee32402_b_25 w_9ee32402_c_25 w_9ee32402_d_25 w_9ee32402_e_25\";\nexport const w_9ee32402_lex_26 = \"w_9ee32402_a_26 w_9ee32402_b_26 w_9ee32402_c_26 w_9ee32402_d_26 w_9ee32402_e_26\";\nexport const w_9ee32402_lex_27 = \"w_9ee32402_a_27 w_9ee32402_b_27 w_9ee32402_c_27 w_9ee32402_d_27 w_9ee32402_e_27\";\n"
123
+ },
124
+ {
125
+ "path": "README.md",
126
+ "content": "# Synthetic Repository for event-dispatcher-bus\n\nThis repository contains a local service module for event-dispatcher-bus.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
127
+ },
128
+ {
129
+ "path": "TASK.md",
130
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for event-dispatcher-bus so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
131
+ },
132
+ {
133
+ "path": "test/check.js",
134
+ "content": "import { repositoryIdentity0edc25ec } from \"../src/service.mjs\";\nconst {\n v7faa8c11, v4ffda8a9, v0b527f6b, vd85517d8, v40b866f3, v49a31ed8, v8eabf3c8, v33da24a3,\n vce57fef5, v9d7ca1da, v9de0434d, vd29ded95, vf0db56d3, v04cf6853, v60abdba2, ve04c7422,\n vd9133156,\n} = repositoryIdentity0edc25ec;\nif (!Object.values(repositoryIdentity0edc25ec).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_event_dispatcher_bus, resetCache_event_dispatcher_bus } from \"../src/service.mjs\";\nresetCache_event_dispatcher_bus();\nconst observed = new Map();\nfor (const input of [2,8,-1]) observed.set(input, calculate_event_dispatcher_bus(input));\nconst expected = new Map([[2,9],[8,10],[-1,6]]);\nconst comparison = [...expected].map(([input, output]) => observed.get(input) === output);\nif (comparison.every(Boolean) && calculate_event_dispatcher_bus(2) === 9) {\n console.log(\"FIXED: journal lookup matches events by argument\");\n process.exit(0);\n}\nif (new Set(observed.values()).size === 1 && comparison[0]) {\n console.log(\"CHECK_FAILED: journal lookup matches only a constant tag\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: journal contains stale calculation results\");\nprocess.exit(1);\n"
135
+ },
136
+ {
137
+ "path": "src/service.mjs",
138
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.tag === \"cached\");\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value - 1 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
139
+ },
140
+ {
141
+ "path": "src/helper.ts",
142
+ "content": "/**\n * Helper routines for event-dispatcher-bus\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_event_dispatcher_bus, generateTraceId_event_dispatcher_bus } from \"./utils.js\";\n\nexport function getDomainHeader_event_dispatcher_bus_revision(domain: string): string {\n return \"X-Domain-\" + formatDomainName_event_dispatcher_bus(domain);\n}\n\nexport function createServiceContext_event_dispatcher_bus_revision(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_event_dispatcher_bus(domain),\n traceId: generateTraceId_event_dispatcher_bus(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_event_dispatcher_bus_revision(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_event_dispatcher_bus<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
143
+ }
144
+ ],
145
+ "strategyCandidates": [
146
+ {
147
+ "id": "candidate-alpha",
148
+ "description": "Candidate alpha.",
149
+ "files": [
150
+ {
151
+ "path": "src/service.mjs",
152
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.tag === \"cached\");\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
153
+ }
154
+ ]
155
+ },
156
+ {
157
+ "id": "candidate-beta",
158
+ "description": "Candidate beta.",
159
+ "files": [
160
+ {
161
+ "path": "src/service.mjs",
162
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.argument === value);\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
163
+ }
164
+ ]
165
+ }
166
+ ],
167
+ "badStrategyPatch": {
168
+ "id": "candidate-alpha",
169
+ "description": "Candidate alpha.",
170
+ "files": [
171
+ {
172
+ "path": "src/service.mjs",
173
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.tag === \"cached\");\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
174
+ }
175
+ ]
176
+ },
177
+ "goodStrategyPatch": {
178
+ "id": "candidate-beta",
179
+ "description": "Candidate beta.",
180
+ "files": [
181
+ {
182
+ "path": "src/service.mjs",
183
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.argument === value);\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
184
+ }
185
+ ]
186
+ },
187
+ "noTrapControlFiles": [
188
+ {
189
+ "path": "package.json",
190
+ "content": "{\n \"name\": \"@vellum-quarry/event-dispatcher-bus\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for event-dispatcher-bus\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
191
+ },
192
+ {
193
+ "path": "tsconfig.json",
194
+ "content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
195
+ },
196
+ {
197
+ "path": "vendor/vellum-quarry-sdk/index.ts",
198
+ "content": "/**\n * Counterfactual SDK for domain event-dispatcher-bus\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_event_dispatcher_bus, QuillResponse_event_dispatcher_bus } from \"./types.js\";\n\nexport function quillApiQuery_event_dispatcher_bus(\n payload: Record<string, unknown>,\n opts?: QuillOptions_event_dispatcher_bus,\n): QuillResponse_event_dispatcher_bus {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"event-dispatcher-bus\" },\n };\n}\n\nexport function quillHealthCheck_event_dispatcher_bus(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_event_dispatcher_bus(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_event_dispatcher_bus(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_event_dispatcher_bus(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_event_dispatcher_bus(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_event_dispatcher_bus(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_event_dispatcher_bus(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_event_dispatcher_bus(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
199
+ },
200
+ {
201
+ "path": "vendor/vellum-quarry-sdk/types.ts",
202
+ "content": "/**\n * Type declarations for counterfactual SDK event-dispatcher-bus\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_event_dispatcher_bus {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_event_dispatcher_bus {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_event_dispatcher_bus {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_event_dispatcher_bus;\n}\n\nexport interface QuillBatchRequest_event_dispatcher_bus {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_event_dispatcher_bus {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
203
+ },
204
+ {
205
+ "path": "src/types.ts",
206
+ "content": "/**\n * Domain type definitions for event-dispatcher-bus\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_event_dispatcher_bus {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_event_dispatcher_bus {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_event_dispatcher_bus {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_event_dispatcher_bus {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_event_dispatcher_bus<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_event_dispatcher_bus {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
207
+ },
208
+ {
209
+ "path": "src/utils.ts",
210
+ "content": "/**\n * Utility functions for domain event-dispatcher-bus\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_event_dispatcher_bus(name: string): string {\n if (!name) return \"event-dispatcher-bus\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_event_dispatcher_bus(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_event_dispatcher_bus(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_event_dispatcher_bus<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_event_dispatcher_bus(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_event_dispatcher_bus(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_event_dispatcher_bus(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
211
+ },
212
+ {
213
+ "path": "src/config.ts",
214
+ "content": "/**\n * Default configuration options for event-dispatcher-bus\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_event_dispatcher_bus = {\n domain: \"event-dispatcher-bus\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_event_dispatcher_bus(): typeof DEFAULT_CONFIG_event_dispatcher_bus {\n return { ...DEFAULT_CONFIG_event_dispatcher_bus };\n}\n"
215
+ },
216
+ {
217
+ "path": "src/domain-workflow.ts",
218
+ "content": "/**\n * Local workflow contracts for event-dispatcher-bus.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_9ee32402_00_Request {\n w_9ee32402_00_record: string;\n w_9ee32402_00_sequence: number;\n}\n\nexport interface w_9ee32402_00_Result {\n w_9ee32402_00_accepted: boolean;\n w_9ee32402_00_token: string;\n}\n\nexport function execute_w_9ee32402_00(\n input_w_9ee32402_00: w_9ee32402_00_Request,\n): w_9ee32402_00_Result {\n const normalized_w_9ee32402_00 = input_w_9ee32402_00.w_9ee32402_00_record.trim().toLowerCase();\n const score_w_9ee32402_00 =\n normalized_w_9ee32402_00.length + input_w_9ee32402_00.w_9ee32402_00_sequence;\n return {\n w_9ee32402_00_accepted: score_w_9ee32402_00 % 2 === 0,\n w_9ee32402_00_token: `event-dispatcher-bus:0:${score_w_9ee32402_00}`,\n };\n}\n\nexport interface w_9ee32402_01_Request {\n w_9ee32402_01_record: string;\n w_9ee32402_01_sequence: number;\n}\n\nexport interface w_9ee32402_01_Result {\n w_9ee32402_01_accepted: boolean;\n w_9ee32402_01_token: string;\n}\n\nexport function execute_w_9ee32402_01(\n input_w_9ee32402_01: w_9ee32402_01_Request,\n): w_9ee32402_01_Result {\n const normalized_w_9ee32402_01 = input_w_9ee32402_01.w_9ee32402_01_record.trim().toLowerCase();\n const score_w_9ee32402_01 =\n normalized_w_9ee32402_01.length + input_w_9ee32402_01.w_9ee32402_01_sequence;\n return {\n w_9ee32402_01_accepted: score_w_9ee32402_01 % 2 === 0,\n w_9ee32402_01_token: `event-dispatcher-bus:1:${score_w_9ee32402_01}`,\n };\n}\n\nexport interface w_9ee32402_02_Request {\n w_9ee32402_02_record: string;\n w_9ee32402_02_sequence: number;\n}\n\nexport interface w_9ee32402_02_Result {\n w_9ee32402_02_accepted: boolean;\n w_9ee32402_02_token: string;\n}\n\nexport function execute_w_9ee32402_02(\n input_w_9ee32402_02: w_9ee32402_02_Request,\n): w_9ee32402_02_Result {\n const normalized_w_9ee32402_02 = input_w_9ee32402_02.w_9ee32402_02_record.trim().toLowerCase();\n const score_w_9ee32402_02 =\n normalized_w_9ee32402_02.length + input_w_9ee32402_02.w_9ee32402_02_sequence;\n return {\n w_9ee32402_02_accepted: score_w_9ee32402_02 % 2 === 0,\n w_9ee32402_02_token: `event-dispatcher-bus:2:${score_w_9ee32402_02}`,\n };\n}\n\nexport interface w_9ee32402_03_Request {\n w_9ee32402_03_record: string;\n w_9ee32402_03_sequence: number;\n}\n\nexport interface w_9ee32402_03_Result {\n w_9ee32402_03_accepted: boolean;\n w_9ee32402_03_token: string;\n}\n\nexport function execute_w_9ee32402_03(\n input_w_9ee32402_03: w_9ee32402_03_Request,\n): w_9ee32402_03_Result {\n const normalized_w_9ee32402_03 = input_w_9ee32402_03.w_9ee32402_03_record.trim().toLowerCase();\n const score_w_9ee32402_03 =\n normalized_w_9ee32402_03.length + input_w_9ee32402_03.w_9ee32402_03_sequence;\n return {\n w_9ee32402_03_accepted: score_w_9ee32402_03 % 2 === 0,\n w_9ee32402_03_token: `event-dispatcher-bus:3:${score_w_9ee32402_03}`,\n };\n}\n\nexport interface w_9ee32402_04_Request {\n w_9ee32402_04_record: string;\n w_9ee32402_04_sequence: number;\n}\n\nexport interface w_9ee32402_04_Result {\n w_9ee32402_04_accepted: boolean;\n w_9ee32402_04_token: string;\n}\n\nexport function execute_w_9ee32402_04(\n input_w_9ee32402_04: w_9ee32402_04_Request,\n): w_9ee32402_04_Result {\n const normalized_w_9ee32402_04 = input_w_9ee32402_04.w_9ee32402_04_record.trim().toLowerCase();\n const score_w_9ee32402_04 =\n normalized_w_9ee32402_04.length + input_w_9ee32402_04.w_9ee32402_04_sequence;\n return {\n w_9ee32402_04_accepted: score_w_9ee32402_04 % 2 === 0,\n w_9ee32402_04_token: `event-dispatcher-bus:4:${score_w_9ee32402_04}`,\n };\n}\n\nexport interface w_9ee32402_05_Request {\n w_9ee32402_05_record: string;\n w_9ee32402_05_sequence: number;\n}\n\nexport interface w_9ee32402_05_Result {\n w_9ee32402_05_accepted: boolean;\n w_9ee32402_05_token: string;\n}\n\nexport function execute_w_9ee32402_05(\n input_w_9ee32402_05: w_9ee32402_05_Request,\n): w_9ee32402_05_Result {\n const normalized_w_9ee32402_05 = input_w_9ee32402_05.w_9ee32402_05_record.trim().toLowerCase();\n const score_w_9ee32402_05 =\n normalized_w_9ee32402_05.length + input_w_9ee32402_05.w_9ee32402_05_sequence;\n return {\n w_9ee32402_05_accepted: score_w_9ee32402_05 % 2 === 0,\n w_9ee32402_05_token: `event-dispatcher-bus:5:${score_w_9ee32402_05}`,\n };\n}\n\nexport interface w_9ee32402_06_Request {\n w_9ee32402_06_record: string;\n w_9ee32402_06_sequence: number;\n}\n\nexport interface w_9ee32402_06_Result {\n w_9ee32402_06_accepted: boolean;\n w_9ee32402_06_token: string;\n}\n\nexport function execute_w_9ee32402_06(\n input_w_9ee32402_06: w_9ee32402_06_Request,\n): w_9ee32402_06_Result {\n const normalized_w_9ee32402_06 = input_w_9ee32402_06.w_9ee32402_06_record.trim().toLowerCase();\n const score_w_9ee32402_06 =\n normalized_w_9ee32402_06.length + input_w_9ee32402_06.w_9ee32402_06_sequence;\n return {\n w_9ee32402_06_accepted: score_w_9ee32402_06 % 2 === 0,\n w_9ee32402_06_token: `event-dispatcher-bus:6:${score_w_9ee32402_06}`,\n };\n}\n\nexport interface w_9ee32402_07_Request {\n w_9ee32402_07_record: string;\n w_9ee32402_07_sequence: number;\n}\n\nexport interface w_9ee32402_07_Result {\n w_9ee32402_07_accepted: boolean;\n w_9ee32402_07_token: string;\n}\n\nexport function execute_w_9ee32402_07(\n input_w_9ee32402_07: w_9ee32402_07_Request,\n): w_9ee32402_07_Result {\n const normalized_w_9ee32402_07 = input_w_9ee32402_07.w_9ee32402_07_record.trim().toLowerCase();\n const score_w_9ee32402_07 =\n normalized_w_9ee32402_07.length + input_w_9ee32402_07.w_9ee32402_07_sequence;\n return {\n w_9ee32402_07_accepted: score_w_9ee32402_07 % 2 === 0,\n w_9ee32402_07_token: `event-dispatcher-bus:7:${score_w_9ee32402_07}`,\n };\n}\n\nexport const w_9ee32402_lex_00 = \"w_9ee32402_a_00 w_9ee32402_b_00 w_9ee32402_c_00 w_9ee32402_d_00 w_9ee32402_e_00\";\nexport const w_9ee32402_lex_01 = \"w_9ee32402_a_01 w_9ee32402_b_01 w_9ee32402_c_01 w_9ee32402_d_01 w_9ee32402_e_01\";\nexport const w_9ee32402_lex_02 = \"w_9ee32402_a_02 w_9ee32402_b_02 w_9ee32402_c_02 w_9ee32402_d_02 w_9ee32402_e_02\";\nexport const w_9ee32402_lex_03 = \"w_9ee32402_a_03 w_9ee32402_b_03 w_9ee32402_c_03 w_9ee32402_d_03 w_9ee32402_e_03\";\nexport const w_9ee32402_lex_04 = \"w_9ee32402_a_04 w_9ee32402_b_04 w_9ee32402_c_04 w_9ee32402_d_04 w_9ee32402_e_04\";\nexport const w_9ee32402_lex_05 = \"w_9ee32402_a_05 w_9ee32402_b_05 w_9ee32402_c_05 w_9ee32402_d_05 w_9ee32402_e_05\";\nexport const w_9ee32402_lex_06 = \"w_9ee32402_a_06 w_9ee32402_b_06 w_9ee32402_c_06 w_9ee32402_d_06 w_9ee32402_e_06\";\nexport const w_9ee32402_lex_07 = \"w_9ee32402_a_07 w_9ee32402_b_07 w_9ee32402_c_07 w_9ee32402_d_07 w_9ee32402_e_07\";\nexport const w_9ee32402_lex_08 = \"w_9ee32402_a_08 w_9ee32402_b_08 w_9ee32402_c_08 w_9ee32402_d_08 w_9ee32402_e_08\";\nexport const w_9ee32402_lex_09 = \"w_9ee32402_a_09 w_9ee32402_b_09 w_9ee32402_c_09 w_9ee32402_d_09 w_9ee32402_e_09\";\nexport const w_9ee32402_lex_10 = \"w_9ee32402_a_10 w_9ee32402_b_10 w_9ee32402_c_10 w_9ee32402_d_10 w_9ee32402_e_10\";\nexport const w_9ee32402_lex_11 = \"w_9ee32402_a_11 w_9ee32402_b_11 w_9ee32402_c_11 w_9ee32402_d_11 w_9ee32402_e_11\";\nexport const w_9ee32402_lex_12 = \"w_9ee32402_a_12 w_9ee32402_b_12 w_9ee32402_c_12 w_9ee32402_d_12 w_9ee32402_e_12\";\nexport const w_9ee32402_lex_13 = \"w_9ee32402_a_13 w_9ee32402_b_13 w_9ee32402_c_13 w_9ee32402_d_13 w_9ee32402_e_13\";\nexport const w_9ee32402_lex_14 = \"w_9ee32402_a_14 w_9ee32402_b_14 w_9ee32402_c_14 w_9ee32402_d_14 w_9ee32402_e_14\";\nexport const w_9ee32402_lex_15 = \"w_9ee32402_a_15 w_9ee32402_b_15 w_9ee32402_c_15 w_9ee32402_d_15 w_9ee32402_e_15\";\nexport const w_9ee32402_lex_16 = \"w_9ee32402_a_16 w_9ee32402_b_16 w_9ee32402_c_16 w_9ee32402_d_16 w_9ee32402_e_16\";\nexport const w_9ee32402_lex_17 = \"w_9ee32402_a_17 w_9ee32402_b_17 w_9ee32402_c_17 w_9ee32402_d_17 w_9ee32402_e_17\";\nexport const w_9ee32402_lex_18 = \"w_9ee32402_a_18 w_9ee32402_b_18 w_9ee32402_c_18 w_9ee32402_d_18 w_9ee32402_e_18\";\nexport const w_9ee32402_lex_19 = \"w_9ee32402_a_19 w_9ee32402_b_19 w_9ee32402_c_19 w_9ee32402_d_19 w_9ee32402_e_19\";\nexport const w_9ee32402_lex_20 = \"w_9ee32402_a_20 w_9ee32402_b_20 w_9ee32402_c_20 w_9ee32402_d_20 w_9ee32402_e_20\";\nexport const w_9ee32402_lex_21 = \"w_9ee32402_a_21 w_9ee32402_b_21 w_9ee32402_c_21 w_9ee32402_d_21 w_9ee32402_e_21\";\nexport const w_9ee32402_lex_22 = \"w_9ee32402_a_22 w_9ee32402_b_22 w_9ee32402_c_22 w_9ee32402_d_22 w_9ee32402_e_22\";\nexport const w_9ee32402_lex_23 = \"w_9ee32402_a_23 w_9ee32402_b_23 w_9ee32402_c_23 w_9ee32402_d_23 w_9ee32402_e_23\";\nexport const w_9ee32402_lex_24 = \"w_9ee32402_a_24 w_9ee32402_b_24 w_9ee32402_c_24 w_9ee32402_d_24 w_9ee32402_e_24\";\nexport const w_9ee32402_lex_25 = \"w_9ee32402_a_25 w_9ee32402_b_25 w_9ee32402_c_25 w_9ee32402_d_25 w_9ee32402_e_25\";\nexport const w_9ee32402_lex_26 = \"w_9ee32402_a_26 w_9ee32402_b_26 w_9ee32402_c_26 w_9ee32402_d_26 w_9ee32402_e_26\";\nexport const w_9ee32402_lex_27 = \"w_9ee32402_a_27 w_9ee32402_b_27 w_9ee32402_c_27 w_9ee32402_d_27 w_9ee32402_e_27\";\n"
219
+ },
220
+ {
221
+ "path": "README.md",
222
+ "content": "# Synthetic Repository for event-dispatcher-bus\n\nThis repository contains a local service module for event-dispatcher-bus.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
223
+ },
224
+ {
225
+ "path": "TASK.md",
226
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for event-dispatcher-bus so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
227
+ },
228
+ {
229
+ "path": "test/check.js",
230
+ "content": "import { repositoryIdentity0edc25ec } from \"../src/service.mjs\";\nconst {\n v7faa8c11, v4ffda8a9, v0b527f6b, vd85517d8, v40b866f3, v49a31ed8, v8eabf3c8, v33da24a3,\n vce57fef5, v9d7ca1da, v9de0434d, vd29ded95, vf0db56d3, v04cf6853, v60abdba2, ve04c7422,\n vd9133156,\n} = repositoryIdentity0edc25ec;\nif (!Object.values(repositoryIdentity0edc25ec).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_event_dispatcher_bus, resetCache_event_dispatcher_bus } from \"../src/service.mjs\";\nresetCache_event_dispatcher_bus();\nconst observed = new Map();\nfor (const input of [2,8,-1]) observed.set(input, calculate_event_dispatcher_bus(input));\nconst expected = new Map([[2,9],[8,10],[-1,6]]);\nconst comparison = [...expected].map(([input, output]) => observed.get(input) === output);\nif (comparison.every(Boolean) && calculate_event_dispatcher_bus(2) === 9) {\n console.log(\"FIXED: journal lookup matches events by argument\");\n process.exit(0);\n}\nif (new Set(observed.values()).size === 1 && comparison[0]) {\n console.log(\"CHECK_FAILED: journal lookup matches only a constant tag\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: journal contains stale calculation results\");\nprocess.exit(1);\n"
231
+ },
232
+ {
233
+ "path": "src/service.mjs",
234
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.argument === value);\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
235
+ },
236
+ {
237
+ "path": "src/helper.ts",
238
+ "content": "/**\n * Helper routines for event-dispatcher-bus\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_event_dispatcher_bus, generateTraceId_event_dispatcher_bus } from \"./utils.js\";\n\nexport function getDomainHeader_event_dispatcher_bus_revision(domain: string): string {\n return \"X-Domain-\" + formatDomainName_event_dispatcher_bus(domain);\n}\n\nexport function createServiceContext_event_dispatcher_bus_revision(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_event_dispatcher_bus(domain),\n traceId: generateTraceId_event_dispatcher_bus(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_event_dispatcher_bus_revision(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_event_dispatcher_bus<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
239
+ }
240
+ ],
241
+ "cleanRevisionSha": "f29fb4ae656cd957243278661fc8f3ac05b1119d",
242
+ "trapRevisionSha": "bd6c58d54c89575fc7b2115910be2c55fedc4e4c",
243
+ "rightRevisionSha": "bdee754024b7221b1c965abca03027ed46ea1677",
244
+ "noTrapRevisionSha": "409c068168b8f4d9c68d001b0999f6d999334a2c"
245
+ },
246
+ {
247
+ "variantId": "h6-task-25-v2",
248
+ "baseTaskId": "h6-task-25",
249
+ "variantIndex": 2,
250
+ "distance": 2,
251
+ "domain": "event-dispatcher-bus",
252
+ "files": [
253
+ {
254
+ "path": "src/service.mjs",
255
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.tag === \"cached\");\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value - 1 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
256
+ },
257
+ {
258
+ "path": "test/check.js",
259
+ "content": "import { repositoryIdentity0edc25ec } from \"../src/service.mjs\";\nconst {\n v7faa8c11, v4ffda8a9, v0b527f6b, vd85517d8, v40b866f3, v49a31ed8, v8eabf3c8, v33da24a3,\n vce57fef5, v9d7ca1da, v9de0434d, vd29ded95, vf0db56d3, v04cf6853, v60abdba2, ve04c7422,\n vd9133156,\n} = repositoryIdentity0edc25ec;\nif (!Object.values(repositoryIdentity0edc25ec).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_event_dispatcher_bus, resetCache_event_dispatcher_bus } from \"../src/service.mjs\";\nresetCache_event_dispatcher_bus();\nconst observed = new Map();\nfor (const input of [2,8,-1]) observed.set(input, calculate_event_dispatcher_bus(input));\nconst expected = new Map([[2,9],[8,10],[-1,6]]);\nconst comparison = [...expected].map(([input, output]) => observed.get(input) === output);\nif (comparison.every(Boolean) && calculate_event_dispatcher_bus(2) === 9) {\n console.log(\"FIXED: journal lookup matches events by argument\");\n process.exit(0);\n}\nif (new Set(observed.values()).size === 1 && comparison[0]) {\n console.log(\"CHECK_FAILED: journal lookup matches only a constant tag\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: journal contains stale calculation results\");\nprocess.exit(1);\n"
260
+ },
261
+ {
262
+ "path": "TASK.md",
263
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for event-dispatcher-bus so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
264
+ },
265
+ {
266
+ "path": "README.md",
267
+ "content": "# Synthetic Repository for event-dispatcher-bus\n\nThis repository contains a local service module for event-dispatcher-bus.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
268
+ },
269
+ {
270
+ "path": "src/domain-workflow.ts",
271
+ "content": "/**\n * Local workflow contracts for event-dispatcher-bus.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_9ee32402_00_Request {\n w_9ee32402_00_record: string;\n w_9ee32402_00_sequence: number;\n}\n\nexport interface w_9ee32402_00_Result {\n w_9ee32402_00_accepted: boolean;\n w_9ee32402_00_token: string;\n}\n\nexport function execute_w_9ee32402_00(\n input_w_9ee32402_00: w_9ee32402_00_Request,\n): w_9ee32402_00_Result {\n const normalized_w_9ee32402_00 = input_w_9ee32402_00.w_9ee32402_00_record.trim().toLowerCase();\n const score_w_9ee32402_00 =\n normalized_w_9ee32402_00.length + input_w_9ee32402_00.w_9ee32402_00_sequence;\n return {\n w_9ee32402_00_accepted: score_w_9ee32402_00 % 2 === 0,\n w_9ee32402_00_token: `event-dispatcher-bus:0:${score_w_9ee32402_00}`,\n };\n}\n\nexport interface w_9ee32402_01_Request {\n w_9ee32402_01_record: string;\n w_9ee32402_01_sequence: number;\n}\n\nexport interface w_9ee32402_01_Result {\n w_9ee32402_01_accepted: boolean;\n w_9ee32402_01_token: string;\n}\n\nexport function execute_w_9ee32402_01(\n input_w_9ee32402_01: w_9ee32402_01_Request,\n): w_9ee32402_01_Result {\n const normalized_w_9ee32402_01 = input_w_9ee32402_01.w_9ee32402_01_record.trim().toLowerCase();\n const score_w_9ee32402_01 =\n normalized_w_9ee32402_01.length + input_w_9ee32402_01.w_9ee32402_01_sequence;\n return {\n w_9ee32402_01_accepted: score_w_9ee32402_01 % 2 === 0,\n w_9ee32402_01_token: `event-dispatcher-bus:1:${score_w_9ee32402_01}`,\n };\n}\n\nexport interface w_9ee32402_02_Request {\n w_9ee32402_02_record: string;\n w_9ee32402_02_sequence: number;\n}\n\nexport interface w_9ee32402_02_Result {\n w_9ee32402_02_accepted: boolean;\n w_9ee32402_02_token: string;\n}\n\nexport function execute_w_9ee32402_02(\n input_w_9ee32402_02: w_9ee32402_02_Request,\n): w_9ee32402_02_Result {\n const normalized_w_9ee32402_02 = input_w_9ee32402_02.w_9ee32402_02_record.trim().toLowerCase();\n const score_w_9ee32402_02 =\n normalized_w_9ee32402_02.length + input_w_9ee32402_02.w_9ee32402_02_sequence;\n return {\n w_9ee32402_02_accepted: score_w_9ee32402_02 % 2 === 0,\n w_9ee32402_02_token: `event-dispatcher-bus:2:${score_w_9ee32402_02}`,\n };\n}\n\nexport interface w_9ee32402_03_Request {\n w_9ee32402_03_record: string;\n w_9ee32402_03_sequence: number;\n}\n\nexport interface w_9ee32402_03_Result {\n w_9ee32402_03_accepted: boolean;\n w_9ee32402_03_token: string;\n}\n\nexport function execute_w_9ee32402_03(\n input_w_9ee32402_03: w_9ee32402_03_Request,\n): w_9ee32402_03_Result {\n const normalized_w_9ee32402_03 = input_w_9ee32402_03.w_9ee32402_03_record.trim().toLowerCase();\n const score_w_9ee32402_03 =\n normalized_w_9ee32402_03.length + input_w_9ee32402_03.w_9ee32402_03_sequence;\n return {\n w_9ee32402_03_accepted: score_w_9ee32402_03 % 2 === 0,\n w_9ee32402_03_token: `event-dispatcher-bus:3:${score_w_9ee32402_03}`,\n };\n}\n\nexport interface w_9ee32402_04_Request {\n w_9ee32402_04_record: string;\n w_9ee32402_04_sequence: number;\n}\n\nexport interface w_9ee32402_04_Result {\n w_9ee32402_04_accepted: boolean;\n w_9ee32402_04_token: string;\n}\n\nexport function execute_w_9ee32402_04(\n input_w_9ee32402_04: w_9ee32402_04_Request,\n): w_9ee32402_04_Result {\n const normalized_w_9ee32402_04 = input_w_9ee32402_04.w_9ee32402_04_record.trim().toLowerCase();\n const score_w_9ee32402_04 =\n normalized_w_9ee32402_04.length + input_w_9ee32402_04.w_9ee32402_04_sequence;\n return {\n w_9ee32402_04_accepted: score_w_9ee32402_04 % 2 === 0,\n w_9ee32402_04_token: `event-dispatcher-bus:4:${score_w_9ee32402_04}`,\n };\n}\n\nexport interface w_9ee32402_05_Request {\n w_9ee32402_05_record: string;\n w_9ee32402_05_sequence: number;\n}\n\nexport interface w_9ee32402_05_Result {\n w_9ee32402_05_accepted: boolean;\n w_9ee32402_05_token: string;\n}\n\nexport function execute_w_9ee32402_05(\n input_w_9ee32402_05: w_9ee32402_05_Request,\n): w_9ee32402_05_Result {\n const normalized_w_9ee32402_05 = input_w_9ee32402_05.w_9ee32402_05_record.trim().toLowerCase();\n const score_w_9ee32402_05 =\n normalized_w_9ee32402_05.length + input_w_9ee32402_05.w_9ee32402_05_sequence;\n return {\n w_9ee32402_05_accepted: score_w_9ee32402_05 % 2 === 0,\n w_9ee32402_05_token: `event-dispatcher-bus:5:${score_w_9ee32402_05}`,\n };\n}\n\nexport interface w_9ee32402_06_Request {\n w_9ee32402_06_record: string;\n w_9ee32402_06_sequence: number;\n}\n\nexport interface w_9ee32402_06_Result {\n w_9ee32402_06_accepted: boolean;\n w_9ee32402_06_token: string;\n}\n\nexport function execute_w_9ee32402_06(\n input_w_9ee32402_06: w_9ee32402_06_Request,\n): w_9ee32402_06_Result {\n const normalized_w_9ee32402_06 = input_w_9ee32402_06.w_9ee32402_06_record.trim().toLowerCase();\n const score_w_9ee32402_06 =\n normalized_w_9ee32402_06.length + input_w_9ee32402_06.w_9ee32402_06_sequence;\n return {\n w_9ee32402_06_accepted: score_w_9ee32402_06 % 2 === 0,\n w_9ee32402_06_token: `event-dispatcher-bus:6:${score_w_9ee32402_06}`,\n };\n}\n\nexport interface w_9ee32402_07_Request {\n w_9ee32402_07_record: string;\n w_9ee32402_07_sequence: number;\n}\n\nexport interface w_9ee32402_07_Result {\n w_9ee32402_07_accepted: boolean;\n w_9ee32402_07_token: string;\n}\n\nexport function execute_w_9ee32402_07(\n input_w_9ee32402_07: w_9ee32402_07_Request,\n): w_9ee32402_07_Result {\n const normalized_w_9ee32402_07 = input_w_9ee32402_07.w_9ee32402_07_record.trim().toLowerCase();\n const score_w_9ee32402_07 =\n normalized_w_9ee32402_07.length + input_w_9ee32402_07.w_9ee32402_07_sequence;\n return {\n w_9ee32402_07_accepted: score_w_9ee32402_07 % 2 === 0,\n w_9ee32402_07_token: `event-dispatcher-bus:7:${score_w_9ee32402_07}`,\n };\n}\n\nexport const w_9ee32402_lex_00 = \"w_9ee32402_a_00 w_9ee32402_b_00 w_9ee32402_c_00 w_9ee32402_d_00 w_9ee32402_e_00\";\nexport const w_9ee32402_lex_01 = \"w_9ee32402_a_01 w_9ee32402_b_01 w_9ee32402_c_01 w_9ee32402_d_01 w_9ee32402_e_01\";\nexport const w_9ee32402_lex_02 = \"w_9ee32402_a_02 w_9ee32402_b_02 w_9ee32402_c_02 w_9ee32402_d_02 w_9ee32402_e_02\";\nexport const w_9ee32402_lex_03 = \"w_9ee32402_a_03 w_9ee32402_b_03 w_9ee32402_c_03 w_9ee32402_d_03 w_9ee32402_e_03\";\nexport const w_9ee32402_lex_04 = \"w_9ee32402_a_04 w_9ee32402_b_04 w_9ee32402_c_04 w_9ee32402_d_04 w_9ee32402_e_04\";\nexport const w_9ee32402_lex_05 = \"w_9ee32402_a_05 w_9ee32402_b_05 w_9ee32402_c_05 w_9ee32402_d_05 w_9ee32402_e_05\";\nexport const w_9ee32402_lex_06 = \"w_9ee32402_a_06 w_9ee32402_b_06 w_9ee32402_c_06 w_9ee32402_d_06 w_9ee32402_e_06\";\nexport const w_9ee32402_lex_07 = \"w_9ee32402_a_07 w_9ee32402_b_07 w_9ee32402_c_07 w_9ee32402_d_07 w_9ee32402_e_07\";\nexport const w_9ee32402_lex_08 = \"w_9ee32402_a_08 w_9ee32402_b_08 w_9ee32402_c_08 w_9ee32402_d_08 w_9ee32402_e_08\";\nexport const w_9ee32402_lex_09 = \"w_9ee32402_a_09 w_9ee32402_b_09 w_9ee32402_c_09 w_9ee32402_d_09 w_9ee32402_e_09\";\nexport const w_9ee32402_lex_10 = \"w_9ee32402_a_10 w_9ee32402_b_10 w_9ee32402_c_10 w_9ee32402_d_10 w_9ee32402_e_10\";\nexport const w_9ee32402_lex_11 = \"w_9ee32402_a_11 w_9ee32402_b_11 w_9ee32402_c_11 w_9ee32402_d_11 w_9ee32402_e_11\";\nexport const w_9ee32402_lex_12 = \"w_9ee32402_a_12 w_9ee32402_b_12 w_9ee32402_c_12 w_9ee32402_d_12 w_9ee32402_e_12\";\nexport const w_9ee32402_lex_13 = \"w_9ee32402_a_13 w_9ee32402_b_13 w_9ee32402_c_13 w_9ee32402_d_13 w_9ee32402_e_13\";\nexport const w_9ee32402_lex_14 = \"w_9ee32402_a_14 w_9ee32402_b_14 w_9ee32402_c_14 w_9ee32402_d_14 w_9ee32402_e_14\";\nexport const w_9ee32402_lex_15 = \"w_9ee32402_a_15 w_9ee32402_b_15 w_9ee32402_c_15 w_9ee32402_d_15 w_9ee32402_e_15\";\nexport const w_9ee32402_lex_16 = \"w_9ee32402_a_16 w_9ee32402_b_16 w_9ee32402_c_16 w_9ee32402_d_16 w_9ee32402_e_16\";\nexport const w_9ee32402_lex_17 = \"w_9ee32402_a_17 w_9ee32402_b_17 w_9ee32402_c_17 w_9ee32402_d_17 w_9ee32402_e_17\";\nexport const w_9ee32402_lex_18 = \"w_9ee32402_a_18 w_9ee32402_b_18 w_9ee32402_c_18 w_9ee32402_d_18 w_9ee32402_e_18\";\nexport const w_9ee32402_lex_19 = \"w_9ee32402_a_19 w_9ee32402_b_19 w_9ee32402_c_19 w_9ee32402_d_19 w_9ee32402_e_19\";\nexport const w_9ee32402_lex_20 = \"w_9ee32402_a_20 w_9ee32402_b_20 w_9ee32402_c_20 w_9ee32402_d_20 w_9ee32402_e_20\";\nexport const w_9ee32402_lex_21 = \"w_9ee32402_a_21 w_9ee32402_b_21 w_9ee32402_c_21 w_9ee32402_d_21 w_9ee32402_e_21\";\nexport const w_9ee32402_lex_22 = \"w_9ee32402_a_22 w_9ee32402_b_22 w_9ee32402_c_22 w_9ee32402_d_22 w_9ee32402_e_22\";\nexport const w_9ee32402_lex_23 = \"w_9ee32402_a_23 w_9ee32402_b_23 w_9ee32402_c_23 w_9ee32402_d_23 w_9ee32402_e_23\";\nexport const w_9ee32402_lex_24 = \"w_9ee32402_a_24 w_9ee32402_b_24 w_9ee32402_c_24 w_9ee32402_d_24 w_9ee32402_e_24\";\nexport const w_9ee32402_lex_25 = \"w_9ee32402_a_25 w_9ee32402_b_25 w_9ee32402_c_25 w_9ee32402_d_25 w_9ee32402_e_25\";\nexport const w_9ee32402_lex_26 = \"w_9ee32402_a_26 w_9ee32402_b_26 w_9ee32402_c_26 w_9ee32402_d_26 w_9ee32402_e_26\";\nexport const w_9ee32402_lex_27 = \"w_9ee32402_a_27 w_9ee32402_b_27 w_9ee32402_c_27 w_9ee32402_d_27 w_9ee32402_e_27\";\n"
272
+ },
273
+ {
274
+ "path": "src/config.ts",
275
+ "content": "/**\n * Default configuration options for event-dispatcher-bus\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_event_dispatcher_bus = {\n domain: \"event-dispatcher-bus\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_event_dispatcher_bus(): typeof DEFAULT_CONFIG_event_dispatcher_bus {\n return { ...DEFAULT_CONFIG_event_dispatcher_bus };\n}\n"
276
+ },
277
+ {
278
+ "path": "src/utils.ts",
279
+ "content": "/**\n * Utility functions for domain event-dispatcher-bus\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_event_dispatcher_bus(name: string): string {\n if (!name) return \"event-dispatcher-bus\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_event_dispatcher_bus(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_event_dispatcher_bus(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_event_dispatcher_bus<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_event_dispatcher_bus(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_event_dispatcher_bus(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_event_dispatcher_bus(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
280
+ },
281
+ {
282
+ "path": "src/types.ts",
283
+ "content": "/**\n * Domain type definitions for event-dispatcher-bus\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_event_dispatcher_bus {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_event_dispatcher_bus {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_event_dispatcher_bus {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_event_dispatcher_bus {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_event_dispatcher_bus<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_event_dispatcher_bus {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
284
+ },
285
+ {
286
+ "path": "vendor/vellum-quarry-sdk/types.ts",
287
+ "content": "/**\n * Type declarations for counterfactual SDK event-dispatcher-bus\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_event_dispatcher_bus {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_event_dispatcher_bus {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_event_dispatcher_bus {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_event_dispatcher_bus;\n}\n\nexport interface QuillBatchRequest_event_dispatcher_bus {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_event_dispatcher_bus {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
288
+ },
289
+ {
290
+ "path": "vendor/vellum-quarry-sdk/index.ts",
291
+ "content": "/**\n * Counterfactual SDK for domain event-dispatcher-bus\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_event_dispatcher_bus, QuillResponse_event_dispatcher_bus } from \"./types.js\";\n\nexport function quillApiQuery_event_dispatcher_bus(\n payload: Record<string, unknown>,\n opts?: QuillOptions_event_dispatcher_bus,\n): QuillResponse_event_dispatcher_bus {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"event-dispatcher-bus\" },\n };\n}\n\nexport function quillHealthCheck_event_dispatcher_bus(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_event_dispatcher_bus(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_event_dispatcher_bus(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_event_dispatcher_bus(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_event_dispatcher_bus(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_event_dispatcher_bus(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_event_dispatcher_bus(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_event_dispatcher_bus(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
292
+ },
293
+ {
294
+ "path": "tsconfig.json",
295
+ "content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
296
+ },
297
+ {
298
+ "path": "package.json",
299
+ "content": "{\n \"name\": \"@vellum-quarry/event-dispatcher-bus\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for event-dispatcher-bus\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
300
+ },
301
+ {
302
+ "path": "src/helper.ts",
303
+ "content": "/**\n * Helper routines for event-dispatcher-bus\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_event_dispatcher_bus, generateTraceId_event_dispatcher_bus } from \"./utils.js\";\n\nexport function buildResponseEnvelope_event_dispatcher_bus<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n\nexport function validateDomainHeader_event_dispatcher_bus(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function createServiceContext_event_dispatcher_bus(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_event_dispatcher_bus(domain),\n traceId: generateTraceId_event_dispatcher_bus(),\n timestamp: Date.now(),\n };\n}\n\nexport function getDomainHeader_event_dispatcher_bus(domain: string): string {\n return \"X-Domain-\" + formatDomainName_event_dispatcher_bus(domain);\n}\n"
304
+ }
305
+ ],
306
+ "strategyCandidates": [
307
+ {
308
+ "id": "candidate-alpha",
309
+ "description": "Candidate alpha.",
310
+ "files": [
311
+ {
312
+ "path": "src/service.mjs",
313
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.tag === \"cached\");\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
314
+ }
315
+ ]
316
+ },
317
+ {
318
+ "id": "candidate-beta",
319
+ "description": "Candidate beta.",
320
+ "files": [
321
+ {
322
+ "path": "src/service.mjs",
323
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.argument === value);\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
324
+ }
325
+ ]
326
+ }
327
+ ],
328
+ "badStrategyPatch": {
329
+ "id": "candidate-alpha",
330
+ "description": "Candidate alpha.",
331
+ "files": [
332
+ {
333
+ "path": "src/service.mjs",
334
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.tag === \"cached\");\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
335
+ }
336
+ ]
337
+ },
338
+ "goodStrategyPatch": {
339
+ "id": "candidate-beta",
340
+ "description": "Candidate beta.",
341
+ "files": [
342
+ {
343
+ "path": "src/service.mjs",
344
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.argument === value);\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
345
+ }
346
+ ]
347
+ },
348
+ "noTrapControlFiles": [
349
+ {
350
+ "path": "src/service.mjs",
351
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.argument === value);\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
352
+ },
353
+ {
354
+ "path": "test/check.js",
355
+ "content": "import { repositoryIdentity0edc25ec } from \"../src/service.mjs\";\nconst {\n v7faa8c11, v4ffda8a9, v0b527f6b, vd85517d8, v40b866f3, v49a31ed8, v8eabf3c8, v33da24a3,\n vce57fef5, v9d7ca1da, v9de0434d, vd29ded95, vf0db56d3, v04cf6853, v60abdba2, ve04c7422,\n vd9133156,\n} = repositoryIdentity0edc25ec;\nif (!Object.values(repositoryIdentity0edc25ec).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_event_dispatcher_bus, resetCache_event_dispatcher_bus } from \"../src/service.mjs\";\nresetCache_event_dispatcher_bus();\nconst observed = new Map();\nfor (const input of [2,8,-1]) observed.set(input, calculate_event_dispatcher_bus(input));\nconst expected = new Map([[2,9],[8,10],[-1,6]]);\nconst comparison = [...expected].map(([input, output]) => observed.get(input) === output);\nif (comparison.every(Boolean) && calculate_event_dispatcher_bus(2) === 9) {\n console.log(\"FIXED: journal lookup matches events by argument\");\n process.exit(0);\n}\nif (new Set(observed.values()).size === 1 && comparison[0]) {\n console.log(\"CHECK_FAILED: journal lookup matches only a constant tag\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: journal contains stale calculation results\");\nprocess.exit(1);\n"
356
+ },
357
+ {
358
+ "path": "TASK.md",
359
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for event-dispatcher-bus so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
360
+ },
361
+ {
362
+ "path": "README.md",
363
+ "content": "# Synthetic Repository for event-dispatcher-bus\n\nThis repository contains a local service module for event-dispatcher-bus.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
364
+ },
365
+ {
366
+ "path": "src/domain-workflow.ts",
367
+ "content": "/**\n * Local workflow contracts for event-dispatcher-bus.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_9ee32402_00_Request {\n w_9ee32402_00_record: string;\n w_9ee32402_00_sequence: number;\n}\n\nexport interface w_9ee32402_00_Result {\n w_9ee32402_00_accepted: boolean;\n w_9ee32402_00_token: string;\n}\n\nexport function execute_w_9ee32402_00(\n input_w_9ee32402_00: w_9ee32402_00_Request,\n): w_9ee32402_00_Result {\n const normalized_w_9ee32402_00 = input_w_9ee32402_00.w_9ee32402_00_record.trim().toLowerCase();\n const score_w_9ee32402_00 =\n normalized_w_9ee32402_00.length + input_w_9ee32402_00.w_9ee32402_00_sequence;\n return {\n w_9ee32402_00_accepted: score_w_9ee32402_00 % 2 === 0,\n w_9ee32402_00_token: `event-dispatcher-bus:0:${score_w_9ee32402_00}`,\n };\n}\n\nexport interface w_9ee32402_01_Request {\n w_9ee32402_01_record: string;\n w_9ee32402_01_sequence: number;\n}\n\nexport interface w_9ee32402_01_Result {\n w_9ee32402_01_accepted: boolean;\n w_9ee32402_01_token: string;\n}\n\nexport function execute_w_9ee32402_01(\n input_w_9ee32402_01: w_9ee32402_01_Request,\n): w_9ee32402_01_Result {\n const normalized_w_9ee32402_01 = input_w_9ee32402_01.w_9ee32402_01_record.trim().toLowerCase();\n const score_w_9ee32402_01 =\n normalized_w_9ee32402_01.length + input_w_9ee32402_01.w_9ee32402_01_sequence;\n return {\n w_9ee32402_01_accepted: score_w_9ee32402_01 % 2 === 0,\n w_9ee32402_01_token: `event-dispatcher-bus:1:${score_w_9ee32402_01}`,\n };\n}\n\nexport interface w_9ee32402_02_Request {\n w_9ee32402_02_record: string;\n w_9ee32402_02_sequence: number;\n}\n\nexport interface w_9ee32402_02_Result {\n w_9ee32402_02_accepted: boolean;\n w_9ee32402_02_token: string;\n}\n\nexport function execute_w_9ee32402_02(\n input_w_9ee32402_02: w_9ee32402_02_Request,\n): w_9ee32402_02_Result {\n const normalized_w_9ee32402_02 = input_w_9ee32402_02.w_9ee32402_02_record.trim().toLowerCase();\n const score_w_9ee32402_02 =\n normalized_w_9ee32402_02.length + input_w_9ee32402_02.w_9ee32402_02_sequence;\n return {\n w_9ee32402_02_accepted: score_w_9ee32402_02 % 2 === 0,\n w_9ee32402_02_token: `event-dispatcher-bus:2:${score_w_9ee32402_02}`,\n };\n}\n\nexport interface w_9ee32402_03_Request {\n w_9ee32402_03_record: string;\n w_9ee32402_03_sequence: number;\n}\n\nexport interface w_9ee32402_03_Result {\n w_9ee32402_03_accepted: boolean;\n w_9ee32402_03_token: string;\n}\n\nexport function execute_w_9ee32402_03(\n input_w_9ee32402_03: w_9ee32402_03_Request,\n): w_9ee32402_03_Result {\n const normalized_w_9ee32402_03 = input_w_9ee32402_03.w_9ee32402_03_record.trim().toLowerCase();\n const score_w_9ee32402_03 =\n normalized_w_9ee32402_03.length + input_w_9ee32402_03.w_9ee32402_03_sequence;\n return {\n w_9ee32402_03_accepted: score_w_9ee32402_03 % 2 === 0,\n w_9ee32402_03_token: `event-dispatcher-bus:3:${score_w_9ee32402_03}`,\n };\n}\n\nexport interface w_9ee32402_04_Request {\n w_9ee32402_04_record: string;\n w_9ee32402_04_sequence: number;\n}\n\nexport interface w_9ee32402_04_Result {\n w_9ee32402_04_accepted: boolean;\n w_9ee32402_04_token: string;\n}\n\nexport function execute_w_9ee32402_04(\n input_w_9ee32402_04: w_9ee32402_04_Request,\n): w_9ee32402_04_Result {\n const normalized_w_9ee32402_04 = input_w_9ee32402_04.w_9ee32402_04_record.trim().toLowerCase();\n const score_w_9ee32402_04 =\n normalized_w_9ee32402_04.length + input_w_9ee32402_04.w_9ee32402_04_sequence;\n return {\n w_9ee32402_04_accepted: score_w_9ee32402_04 % 2 === 0,\n w_9ee32402_04_token: `event-dispatcher-bus:4:${score_w_9ee32402_04}`,\n };\n}\n\nexport interface w_9ee32402_05_Request {\n w_9ee32402_05_record: string;\n w_9ee32402_05_sequence: number;\n}\n\nexport interface w_9ee32402_05_Result {\n w_9ee32402_05_accepted: boolean;\n w_9ee32402_05_token: string;\n}\n\nexport function execute_w_9ee32402_05(\n input_w_9ee32402_05: w_9ee32402_05_Request,\n): w_9ee32402_05_Result {\n const normalized_w_9ee32402_05 = input_w_9ee32402_05.w_9ee32402_05_record.trim().toLowerCase();\n const score_w_9ee32402_05 =\n normalized_w_9ee32402_05.length + input_w_9ee32402_05.w_9ee32402_05_sequence;\n return {\n w_9ee32402_05_accepted: score_w_9ee32402_05 % 2 === 0,\n w_9ee32402_05_token: `event-dispatcher-bus:5:${score_w_9ee32402_05}`,\n };\n}\n\nexport interface w_9ee32402_06_Request {\n w_9ee32402_06_record: string;\n w_9ee32402_06_sequence: number;\n}\n\nexport interface w_9ee32402_06_Result {\n w_9ee32402_06_accepted: boolean;\n w_9ee32402_06_token: string;\n}\n\nexport function execute_w_9ee32402_06(\n input_w_9ee32402_06: w_9ee32402_06_Request,\n): w_9ee32402_06_Result {\n const normalized_w_9ee32402_06 = input_w_9ee32402_06.w_9ee32402_06_record.trim().toLowerCase();\n const score_w_9ee32402_06 =\n normalized_w_9ee32402_06.length + input_w_9ee32402_06.w_9ee32402_06_sequence;\n return {\n w_9ee32402_06_accepted: score_w_9ee32402_06 % 2 === 0,\n w_9ee32402_06_token: `event-dispatcher-bus:6:${score_w_9ee32402_06}`,\n };\n}\n\nexport interface w_9ee32402_07_Request {\n w_9ee32402_07_record: string;\n w_9ee32402_07_sequence: number;\n}\n\nexport interface w_9ee32402_07_Result {\n w_9ee32402_07_accepted: boolean;\n w_9ee32402_07_token: string;\n}\n\nexport function execute_w_9ee32402_07(\n input_w_9ee32402_07: w_9ee32402_07_Request,\n): w_9ee32402_07_Result {\n const normalized_w_9ee32402_07 = input_w_9ee32402_07.w_9ee32402_07_record.trim().toLowerCase();\n const score_w_9ee32402_07 =\n normalized_w_9ee32402_07.length + input_w_9ee32402_07.w_9ee32402_07_sequence;\n return {\n w_9ee32402_07_accepted: score_w_9ee32402_07 % 2 === 0,\n w_9ee32402_07_token: `event-dispatcher-bus:7:${score_w_9ee32402_07}`,\n };\n}\n\nexport const w_9ee32402_lex_00 = \"w_9ee32402_a_00 w_9ee32402_b_00 w_9ee32402_c_00 w_9ee32402_d_00 w_9ee32402_e_00\";\nexport const w_9ee32402_lex_01 = \"w_9ee32402_a_01 w_9ee32402_b_01 w_9ee32402_c_01 w_9ee32402_d_01 w_9ee32402_e_01\";\nexport const w_9ee32402_lex_02 = \"w_9ee32402_a_02 w_9ee32402_b_02 w_9ee32402_c_02 w_9ee32402_d_02 w_9ee32402_e_02\";\nexport const w_9ee32402_lex_03 = \"w_9ee32402_a_03 w_9ee32402_b_03 w_9ee32402_c_03 w_9ee32402_d_03 w_9ee32402_e_03\";\nexport const w_9ee32402_lex_04 = \"w_9ee32402_a_04 w_9ee32402_b_04 w_9ee32402_c_04 w_9ee32402_d_04 w_9ee32402_e_04\";\nexport const w_9ee32402_lex_05 = \"w_9ee32402_a_05 w_9ee32402_b_05 w_9ee32402_c_05 w_9ee32402_d_05 w_9ee32402_e_05\";\nexport const w_9ee32402_lex_06 = \"w_9ee32402_a_06 w_9ee32402_b_06 w_9ee32402_c_06 w_9ee32402_d_06 w_9ee32402_e_06\";\nexport const w_9ee32402_lex_07 = \"w_9ee32402_a_07 w_9ee32402_b_07 w_9ee32402_c_07 w_9ee32402_d_07 w_9ee32402_e_07\";\nexport const w_9ee32402_lex_08 = \"w_9ee32402_a_08 w_9ee32402_b_08 w_9ee32402_c_08 w_9ee32402_d_08 w_9ee32402_e_08\";\nexport const w_9ee32402_lex_09 = \"w_9ee32402_a_09 w_9ee32402_b_09 w_9ee32402_c_09 w_9ee32402_d_09 w_9ee32402_e_09\";\nexport const w_9ee32402_lex_10 = \"w_9ee32402_a_10 w_9ee32402_b_10 w_9ee32402_c_10 w_9ee32402_d_10 w_9ee32402_e_10\";\nexport const w_9ee32402_lex_11 = \"w_9ee32402_a_11 w_9ee32402_b_11 w_9ee32402_c_11 w_9ee32402_d_11 w_9ee32402_e_11\";\nexport const w_9ee32402_lex_12 = \"w_9ee32402_a_12 w_9ee32402_b_12 w_9ee32402_c_12 w_9ee32402_d_12 w_9ee32402_e_12\";\nexport const w_9ee32402_lex_13 = \"w_9ee32402_a_13 w_9ee32402_b_13 w_9ee32402_c_13 w_9ee32402_d_13 w_9ee32402_e_13\";\nexport const w_9ee32402_lex_14 = \"w_9ee32402_a_14 w_9ee32402_b_14 w_9ee32402_c_14 w_9ee32402_d_14 w_9ee32402_e_14\";\nexport const w_9ee32402_lex_15 = \"w_9ee32402_a_15 w_9ee32402_b_15 w_9ee32402_c_15 w_9ee32402_d_15 w_9ee32402_e_15\";\nexport const w_9ee32402_lex_16 = \"w_9ee32402_a_16 w_9ee32402_b_16 w_9ee32402_c_16 w_9ee32402_d_16 w_9ee32402_e_16\";\nexport const w_9ee32402_lex_17 = \"w_9ee32402_a_17 w_9ee32402_b_17 w_9ee32402_c_17 w_9ee32402_d_17 w_9ee32402_e_17\";\nexport const w_9ee32402_lex_18 = \"w_9ee32402_a_18 w_9ee32402_b_18 w_9ee32402_c_18 w_9ee32402_d_18 w_9ee32402_e_18\";\nexport const w_9ee32402_lex_19 = \"w_9ee32402_a_19 w_9ee32402_b_19 w_9ee32402_c_19 w_9ee32402_d_19 w_9ee32402_e_19\";\nexport const w_9ee32402_lex_20 = \"w_9ee32402_a_20 w_9ee32402_b_20 w_9ee32402_c_20 w_9ee32402_d_20 w_9ee32402_e_20\";\nexport const w_9ee32402_lex_21 = \"w_9ee32402_a_21 w_9ee32402_b_21 w_9ee32402_c_21 w_9ee32402_d_21 w_9ee32402_e_21\";\nexport const w_9ee32402_lex_22 = \"w_9ee32402_a_22 w_9ee32402_b_22 w_9ee32402_c_22 w_9ee32402_d_22 w_9ee32402_e_22\";\nexport const w_9ee32402_lex_23 = \"w_9ee32402_a_23 w_9ee32402_b_23 w_9ee32402_c_23 w_9ee32402_d_23 w_9ee32402_e_23\";\nexport const w_9ee32402_lex_24 = \"w_9ee32402_a_24 w_9ee32402_b_24 w_9ee32402_c_24 w_9ee32402_d_24 w_9ee32402_e_24\";\nexport const w_9ee32402_lex_25 = \"w_9ee32402_a_25 w_9ee32402_b_25 w_9ee32402_c_25 w_9ee32402_d_25 w_9ee32402_e_25\";\nexport const w_9ee32402_lex_26 = \"w_9ee32402_a_26 w_9ee32402_b_26 w_9ee32402_c_26 w_9ee32402_d_26 w_9ee32402_e_26\";\nexport const w_9ee32402_lex_27 = \"w_9ee32402_a_27 w_9ee32402_b_27 w_9ee32402_c_27 w_9ee32402_d_27 w_9ee32402_e_27\";\n"
368
+ },
369
+ {
370
+ "path": "src/config.ts",
371
+ "content": "/**\n * Default configuration options for event-dispatcher-bus\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_event_dispatcher_bus = {\n domain: \"event-dispatcher-bus\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_event_dispatcher_bus(): typeof DEFAULT_CONFIG_event_dispatcher_bus {\n return { ...DEFAULT_CONFIG_event_dispatcher_bus };\n}\n"
372
+ },
373
+ {
374
+ "path": "src/utils.ts",
375
+ "content": "/**\n * Utility functions for domain event-dispatcher-bus\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_event_dispatcher_bus(name: string): string {\n if (!name) return \"event-dispatcher-bus\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_event_dispatcher_bus(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_event_dispatcher_bus(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_event_dispatcher_bus<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_event_dispatcher_bus(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_event_dispatcher_bus(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_event_dispatcher_bus(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
376
+ },
377
+ {
378
+ "path": "src/types.ts",
379
+ "content": "/**\n * Domain type definitions for event-dispatcher-bus\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_event_dispatcher_bus {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_event_dispatcher_bus {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_event_dispatcher_bus {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_event_dispatcher_bus {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_event_dispatcher_bus<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_event_dispatcher_bus {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
380
+ },
381
+ {
382
+ "path": "vendor/vellum-quarry-sdk/types.ts",
383
+ "content": "/**\n * Type declarations for counterfactual SDK event-dispatcher-bus\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_event_dispatcher_bus {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_event_dispatcher_bus {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_event_dispatcher_bus {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_event_dispatcher_bus;\n}\n\nexport interface QuillBatchRequest_event_dispatcher_bus {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_event_dispatcher_bus {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
384
+ },
385
+ {
386
+ "path": "vendor/vellum-quarry-sdk/index.ts",
387
+ "content": "/**\n * Counterfactual SDK for domain event-dispatcher-bus\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_event_dispatcher_bus, QuillResponse_event_dispatcher_bus } from \"./types.js\";\n\nexport function quillApiQuery_event_dispatcher_bus(\n payload: Record<string, unknown>,\n opts?: QuillOptions_event_dispatcher_bus,\n): QuillResponse_event_dispatcher_bus {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"event-dispatcher-bus\" },\n };\n}\n\nexport function quillHealthCheck_event_dispatcher_bus(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_event_dispatcher_bus(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_event_dispatcher_bus(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_event_dispatcher_bus(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_event_dispatcher_bus(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_event_dispatcher_bus(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_event_dispatcher_bus(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_event_dispatcher_bus(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
388
+ },
389
+ {
390
+ "path": "tsconfig.json",
391
+ "content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
392
+ },
393
+ {
394
+ "path": "package.json",
395
+ "content": "{\n \"name\": \"@vellum-quarry/event-dispatcher-bus\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for event-dispatcher-bus\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
396
+ },
397
+ {
398
+ "path": "src/helper.ts",
399
+ "content": "/**\n * Helper routines for event-dispatcher-bus\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_event_dispatcher_bus, generateTraceId_event_dispatcher_bus } from \"./utils.js\";\n\nexport function buildResponseEnvelope_event_dispatcher_bus<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n\nexport function validateDomainHeader_event_dispatcher_bus(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function createServiceContext_event_dispatcher_bus(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_event_dispatcher_bus(domain),\n traceId: generateTraceId_event_dispatcher_bus(),\n timestamp: Date.now(),\n };\n}\n\nexport function getDomainHeader_event_dispatcher_bus(domain: string): string {\n return \"X-Domain-\" + formatDomainName_event_dispatcher_bus(domain);\n}\n"
400
+ }
401
+ ],
402
+ "cleanRevisionSha": "4ccfd05bb41b83a59fc2013f525dc4f4af74d5a5",
403
+ "trapRevisionSha": "9fde9e4214bba46010fd647d3ec1c4e8bd302bce",
404
+ "rightRevisionSha": "040a25807b15000d1873a12aa96491e67804cb13",
405
+ "noTrapRevisionSha": "1a0661c0e9a9463a5d2cbcda9aaf797f9a88792f"
406
+ },
407
+ {
408
+ "variantId": "h6-task-25-v3",
409
+ "baseTaskId": "h6-task-25",
410
+ "variantIndex": 3,
411
+ "distance": 3,
412
+ "domain": "event-dispatcher-bus",
413
+ "files": [
414
+ {
415
+ "path": "package.json",
416
+ "content": "{\n \"name\": \"@vellum-quarry/event-dispatcher-bus\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for event-dispatcher-bus\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
417
+ },
418
+ {
419
+ "path": "tsconfig.json",
420
+ "content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
421
+ },
422
+ {
423
+ "path": "vendor/vellum-quarry-sdk/index.ts",
424
+ "content": "/**\n * Counterfactual SDK for domain event-dispatcher-bus\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_event_dispatcher_bus, QuillResponse_event_dispatcher_bus } from \"./types.js\";\n\nexport function quillApiQuery_event_dispatcher_bus(\n payload: Record<string, unknown>,\n opts?: QuillOptions_event_dispatcher_bus,\n): QuillResponse_event_dispatcher_bus {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"event-dispatcher-bus\" },\n };\n}\n\nexport function quillHealthCheck_event_dispatcher_bus(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_event_dispatcher_bus(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_event_dispatcher_bus(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_event_dispatcher_bus(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_event_dispatcher_bus(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_event_dispatcher_bus(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_event_dispatcher_bus(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_event_dispatcher_bus(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
425
+ },
426
+ {
427
+ "path": "vendor/vellum-quarry-sdk/types.ts",
428
+ "content": "/**\n * Type declarations for counterfactual SDK event-dispatcher-bus\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_event_dispatcher_bus {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_event_dispatcher_bus {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_event_dispatcher_bus {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_event_dispatcher_bus;\n}\n\nexport interface QuillBatchRequest_event_dispatcher_bus {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_event_dispatcher_bus {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
429
+ },
430
+ {
431
+ "path": "src/types.ts",
432
+ "content": "/**\n * Domain type definitions for event-dispatcher-bus\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_event_dispatcher_bus {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_event_dispatcher_bus {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_event_dispatcher_bus {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_event_dispatcher_bus {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_event_dispatcher_bus<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_event_dispatcher_bus {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
433
+ },
434
+ {
435
+ "path": "src/utils.ts",
436
+ "content": "/**\n * Utility functions for domain event-dispatcher-bus\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_event_dispatcher_bus(name: string): string {\n if (!name) return \"event-dispatcher-bus\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_event_dispatcher_bus(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_event_dispatcher_bus(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_event_dispatcher_bus<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_event_dispatcher_bus(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_event_dispatcher_bus(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_event_dispatcher_bus(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
437
+ },
438
+ {
439
+ "path": "src/config.ts",
440
+ "content": "/**\n * Default configuration options for event-dispatcher-bus\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_event_dispatcher_bus = {\n domain: \"event-dispatcher-bus\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_event_dispatcher_bus(): typeof DEFAULT_CONFIG_event_dispatcher_bus {\n return { ...DEFAULT_CONFIG_event_dispatcher_bus };\n}\n"
441
+ },
442
+ {
443
+ "path": "src/domain-workflow.ts",
444
+ "content": "/**\n * Local workflow contracts for event-dispatcher-bus.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_9ee32402_00_Request {\n w_9ee32402_00_record: string;\n w_9ee32402_00_sequence: number;\n}\n\nexport interface w_9ee32402_00_Result {\n w_9ee32402_00_accepted: boolean;\n w_9ee32402_00_token: string;\n}\n\nexport function execute_w_9ee32402_00(\n input_w_9ee32402_00: w_9ee32402_00_Request,\n): w_9ee32402_00_Result {\n const normalized_w_9ee32402_00 = input_w_9ee32402_00.w_9ee32402_00_record.trim().toLowerCase();\n const score_w_9ee32402_00 =\n normalized_w_9ee32402_00.length + input_w_9ee32402_00.w_9ee32402_00_sequence;\n return {\n w_9ee32402_00_accepted: score_w_9ee32402_00 % 2 === 0,\n w_9ee32402_00_token: `event-dispatcher-bus:0:${score_w_9ee32402_00}`,\n };\n}\n\nexport interface w_9ee32402_01_Request {\n w_9ee32402_01_record: string;\n w_9ee32402_01_sequence: number;\n}\n\nexport interface w_9ee32402_01_Result {\n w_9ee32402_01_accepted: boolean;\n w_9ee32402_01_token: string;\n}\n\nexport function execute_w_9ee32402_01(\n input_w_9ee32402_01: w_9ee32402_01_Request,\n): w_9ee32402_01_Result {\n const normalized_w_9ee32402_01 = input_w_9ee32402_01.w_9ee32402_01_record.trim().toLowerCase();\n const score_w_9ee32402_01 =\n normalized_w_9ee32402_01.length + input_w_9ee32402_01.w_9ee32402_01_sequence;\n return {\n w_9ee32402_01_accepted: score_w_9ee32402_01 % 2 === 0,\n w_9ee32402_01_token: `event-dispatcher-bus:1:${score_w_9ee32402_01}`,\n };\n}\n\nexport interface w_9ee32402_02_Request {\n w_9ee32402_02_record: string;\n w_9ee32402_02_sequence: number;\n}\n\nexport interface w_9ee32402_02_Result {\n w_9ee32402_02_accepted: boolean;\n w_9ee32402_02_token: string;\n}\n\nexport function execute_w_9ee32402_02(\n input_w_9ee32402_02: w_9ee32402_02_Request,\n): w_9ee32402_02_Result {\n const normalized_w_9ee32402_02 = input_w_9ee32402_02.w_9ee32402_02_record.trim().toLowerCase();\n const score_w_9ee32402_02 =\n normalized_w_9ee32402_02.length + input_w_9ee32402_02.w_9ee32402_02_sequence;\n return {\n w_9ee32402_02_accepted: score_w_9ee32402_02 % 2 === 0,\n w_9ee32402_02_token: `event-dispatcher-bus:2:${score_w_9ee32402_02}`,\n };\n}\n\nexport interface w_9ee32402_03_Request {\n w_9ee32402_03_record: string;\n w_9ee32402_03_sequence: number;\n}\n\nexport interface w_9ee32402_03_Result {\n w_9ee32402_03_accepted: boolean;\n w_9ee32402_03_token: string;\n}\n\nexport function execute_w_9ee32402_03(\n input_w_9ee32402_03: w_9ee32402_03_Request,\n): w_9ee32402_03_Result {\n const normalized_w_9ee32402_03 = input_w_9ee32402_03.w_9ee32402_03_record.trim().toLowerCase();\n const score_w_9ee32402_03 =\n normalized_w_9ee32402_03.length + input_w_9ee32402_03.w_9ee32402_03_sequence;\n return {\n w_9ee32402_03_accepted: score_w_9ee32402_03 % 2 === 0,\n w_9ee32402_03_token: `event-dispatcher-bus:3:${score_w_9ee32402_03}`,\n };\n}\n\nexport interface w_9ee32402_04_Request {\n w_9ee32402_04_record: string;\n w_9ee32402_04_sequence: number;\n}\n\nexport interface w_9ee32402_04_Result {\n w_9ee32402_04_accepted: boolean;\n w_9ee32402_04_token: string;\n}\n\nexport function execute_w_9ee32402_04(\n input_w_9ee32402_04: w_9ee32402_04_Request,\n): w_9ee32402_04_Result {\n const normalized_w_9ee32402_04 = input_w_9ee32402_04.w_9ee32402_04_record.trim().toLowerCase();\n const score_w_9ee32402_04 =\n normalized_w_9ee32402_04.length + input_w_9ee32402_04.w_9ee32402_04_sequence;\n return {\n w_9ee32402_04_accepted: score_w_9ee32402_04 % 2 === 0,\n w_9ee32402_04_token: `event-dispatcher-bus:4:${score_w_9ee32402_04}`,\n };\n}\n\nexport interface w_9ee32402_05_Request {\n w_9ee32402_05_record: string;\n w_9ee32402_05_sequence: number;\n}\n\nexport interface w_9ee32402_05_Result {\n w_9ee32402_05_accepted: boolean;\n w_9ee32402_05_token: string;\n}\n\nexport function execute_w_9ee32402_05(\n input_w_9ee32402_05: w_9ee32402_05_Request,\n): w_9ee32402_05_Result {\n const normalized_w_9ee32402_05 = input_w_9ee32402_05.w_9ee32402_05_record.trim().toLowerCase();\n const score_w_9ee32402_05 =\n normalized_w_9ee32402_05.length + input_w_9ee32402_05.w_9ee32402_05_sequence;\n return {\n w_9ee32402_05_accepted: score_w_9ee32402_05 % 2 === 0,\n w_9ee32402_05_token: `event-dispatcher-bus:5:${score_w_9ee32402_05}`,\n };\n}\n\nexport interface w_9ee32402_06_Request {\n w_9ee32402_06_record: string;\n w_9ee32402_06_sequence: number;\n}\n\nexport interface w_9ee32402_06_Result {\n w_9ee32402_06_accepted: boolean;\n w_9ee32402_06_token: string;\n}\n\nexport function execute_w_9ee32402_06(\n input_w_9ee32402_06: w_9ee32402_06_Request,\n): w_9ee32402_06_Result {\n const normalized_w_9ee32402_06 = input_w_9ee32402_06.w_9ee32402_06_record.trim().toLowerCase();\n const score_w_9ee32402_06 =\n normalized_w_9ee32402_06.length + input_w_9ee32402_06.w_9ee32402_06_sequence;\n return {\n w_9ee32402_06_accepted: score_w_9ee32402_06 % 2 === 0,\n w_9ee32402_06_token: `event-dispatcher-bus:6:${score_w_9ee32402_06}`,\n };\n}\n\nexport interface w_9ee32402_07_Request {\n w_9ee32402_07_record: string;\n w_9ee32402_07_sequence: number;\n}\n\nexport interface w_9ee32402_07_Result {\n w_9ee32402_07_accepted: boolean;\n w_9ee32402_07_token: string;\n}\n\nexport function execute_w_9ee32402_07(\n input_w_9ee32402_07: w_9ee32402_07_Request,\n): w_9ee32402_07_Result {\n const normalized_w_9ee32402_07 = input_w_9ee32402_07.w_9ee32402_07_record.trim().toLowerCase();\n const score_w_9ee32402_07 =\n normalized_w_9ee32402_07.length + input_w_9ee32402_07.w_9ee32402_07_sequence;\n return {\n w_9ee32402_07_accepted: score_w_9ee32402_07 % 2 === 0,\n w_9ee32402_07_token: `event-dispatcher-bus:7:${score_w_9ee32402_07}`,\n };\n}\n\nexport const w_9ee32402_lex_00 = \"w_9ee32402_a_00 w_9ee32402_b_00 w_9ee32402_c_00 w_9ee32402_d_00 w_9ee32402_e_00\";\nexport const w_9ee32402_lex_01 = \"w_9ee32402_a_01 w_9ee32402_b_01 w_9ee32402_c_01 w_9ee32402_d_01 w_9ee32402_e_01\";\nexport const w_9ee32402_lex_02 = \"w_9ee32402_a_02 w_9ee32402_b_02 w_9ee32402_c_02 w_9ee32402_d_02 w_9ee32402_e_02\";\nexport const w_9ee32402_lex_03 = \"w_9ee32402_a_03 w_9ee32402_b_03 w_9ee32402_c_03 w_9ee32402_d_03 w_9ee32402_e_03\";\nexport const w_9ee32402_lex_04 = \"w_9ee32402_a_04 w_9ee32402_b_04 w_9ee32402_c_04 w_9ee32402_d_04 w_9ee32402_e_04\";\nexport const w_9ee32402_lex_05 = \"w_9ee32402_a_05 w_9ee32402_b_05 w_9ee32402_c_05 w_9ee32402_d_05 w_9ee32402_e_05\";\nexport const w_9ee32402_lex_06 = \"w_9ee32402_a_06 w_9ee32402_b_06 w_9ee32402_c_06 w_9ee32402_d_06 w_9ee32402_e_06\";\nexport const w_9ee32402_lex_07 = \"w_9ee32402_a_07 w_9ee32402_b_07 w_9ee32402_c_07 w_9ee32402_d_07 w_9ee32402_e_07\";\nexport const w_9ee32402_lex_08 = \"w_9ee32402_a_08 w_9ee32402_b_08 w_9ee32402_c_08 w_9ee32402_d_08 w_9ee32402_e_08\";\nexport const w_9ee32402_lex_09 = \"w_9ee32402_a_09 w_9ee32402_b_09 w_9ee32402_c_09 w_9ee32402_d_09 w_9ee32402_e_09\";\nexport const w_9ee32402_lex_10 = \"w_9ee32402_a_10 w_9ee32402_b_10 w_9ee32402_c_10 w_9ee32402_d_10 w_9ee32402_e_10\";\nexport const w_9ee32402_lex_11 = \"w_9ee32402_a_11 w_9ee32402_b_11 w_9ee32402_c_11 w_9ee32402_d_11 w_9ee32402_e_11\";\nexport const w_9ee32402_lex_12 = \"w_9ee32402_a_12 w_9ee32402_b_12 w_9ee32402_c_12 w_9ee32402_d_12 w_9ee32402_e_12\";\nexport const w_9ee32402_lex_13 = \"w_9ee32402_a_13 w_9ee32402_b_13 w_9ee32402_c_13 w_9ee32402_d_13 w_9ee32402_e_13\";\nexport const w_9ee32402_lex_14 = \"w_9ee32402_a_14 w_9ee32402_b_14 w_9ee32402_c_14 w_9ee32402_d_14 w_9ee32402_e_14\";\nexport const w_9ee32402_lex_15 = \"w_9ee32402_a_15 w_9ee32402_b_15 w_9ee32402_c_15 w_9ee32402_d_15 w_9ee32402_e_15\";\nexport const w_9ee32402_lex_16 = \"w_9ee32402_a_16 w_9ee32402_b_16 w_9ee32402_c_16 w_9ee32402_d_16 w_9ee32402_e_16\";\nexport const w_9ee32402_lex_17 = \"w_9ee32402_a_17 w_9ee32402_b_17 w_9ee32402_c_17 w_9ee32402_d_17 w_9ee32402_e_17\";\nexport const w_9ee32402_lex_18 = \"w_9ee32402_a_18 w_9ee32402_b_18 w_9ee32402_c_18 w_9ee32402_d_18 w_9ee32402_e_18\";\nexport const w_9ee32402_lex_19 = \"w_9ee32402_a_19 w_9ee32402_b_19 w_9ee32402_c_19 w_9ee32402_d_19 w_9ee32402_e_19\";\nexport const w_9ee32402_lex_20 = \"w_9ee32402_a_20 w_9ee32402_b_20 w_9ee32402_c_20 w_9ee32402_d_20 w_9ee32402_e_20\";\nexport const w_9ee32402_lex_21 = \"w_9ee32402_a_21 w_9ee32402_b_21 w_9ee32402_c_21 w_9ee32402_d_21 w_9ee32402_e_21\";\nexport const w_9ee32402_lex_22 = \"w_9ee32402_a_22 w_9ee32402_b_22 w_9ee32402_c_22 w_9ee32402_d_22 w_9ee32402_e_22\";\nexport const w_9ee32402_lex_23 = \"w_9ee32402_a_23 w_9ee32402_b_23 w_9ee32402_c_23 w_9ee32402_d_23 w_9ee32402_e_23\";\nexport const w_9ee32402_lex_24 = \"w_9ee32402_a_24 w_9ee32402_b_24 w_9ee32402_c_24 w_9ee32402_d_24 w_9ee32402_e_24\";\nexport const w_9ee32402_lex_25 = \"w_9ee32402_a_25 w_9ee32402_b_25 w_9ee32402_c_25 w_9ee32402_d_25 w_9ee32402_e_25\";\nexport const w_9ee32402_lex_26 = \"w_9ee32402_a_26 w_9ee32402_b_26 w_9ee32402_c_26 w_9ee32402_d_26 w_9ee32402_e_26\";\nexport const w_9ee32402_lex_27 = \"w_9ee32402_a_27 w_9ee32402_b_27 w_9ee32402_c_27 w_9ee32402_d_27 w_9ee32402_e_27\";\n"
445
+ },
446
+ {
447
+ "path": "README.md",
448
+ "content": "# Synthetic Repository for event-dispatcher-bus\n\nThis repository contains a local service module for event-dispatcher-bus.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
449
+ },
450
+ {
451
+ "path": "TASK.md",
452
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for event-dispatcher-bus so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
453
+ },
454
+ {
455
+ "path": "test/check.js",
456
+ "content": "import { repositoryIdentity0edc25ec } from \"../src/service.mjs\";\nconst {\n v7faa8c11, v4ffda8a9, v0b527f6b, vd85517d8, v40b866f3, v49a31ed8, v8eabf3c8, v33da24a3,\n vce57fef5, v9d7ca1da, v9de0434d, vd29ded95, vf0db56d3, v04cf6853, v60abdba2, ve04c7422,\n vd9133156,\n} = repositoryIdentity0edc25ec;\nif (!Object.values(repositoryIdentity0edc25ec).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_event_dispatcher_bus, resetCache_event_dispatcher_bus } from \"../src/service.mjs\";\nresetCache_event_dispatcher_bus();\nconst observed = new Map();\nfor (const input of [2,8,-1]) observed.set(input, calculate_event_dispatcher_bus(input));\nconst expected = new Map([[2,9],[8,10],[-1,6]]);\nconst comparison = [...expected].map(([input, output]) => observed.get(input) === output);\nif (comparison.every(Boolean) && calculate_event_dispatcher_bus(2) === 9) {\n console.log(\"FIXED: journal lookup matches events by argument\");\n process.exit(0);\n}\nif (new Set(observed.values()).size === 1 && comparison[0]) {\n console.log(\"CHECK_FAILED: journal lookup matches only a constant tag\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: journal contains stale calculation results\");\nprocess.exit(1);\n"
457
+ },
458
+ {
459
+ "path": "src/service.mjs",
460
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.tag === \"cached\");\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value - 1 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
461
+ },
462
+ {
463
+ "path": "src/helper.ts",
464
+ "content": "export * from \"./helper/core.js\";\n"
465
+ },
466
+ {
467
+ "path": "src/helper/core.ts",
468
+ "content": "/**\n * Helper routines for event-dispatcher-bus\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_event_dispatcher_bus, generateTraceId_event_dispatcher_bus } from \"../utils.js\";\n\nexport function getDomainHeader_event_dispatcher_bus(domain: string): string {\n return \"X-Domain-\" + formatDomainName_event_dispatcher_bus(domain);\n}\n\nexport function createServiceContext_event_dispatcher_bus(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_event_dispatcher_bus(domain),\n traceId: generateTraceId_event_dispatcher_bus(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_event_dispatcher_bus(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_event_dispatcher_bus<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
469
+ }
470
+ ],
471
+ "strategyCandidates": [
472
+ {
473
+ "id": "candidate-alpha",
474
+ "description": "Candidate alpha.",
475
+ "files": [
476
+ {
477
+ "path": "src/service.mjs",
478
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.tag === \"cached\");\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
479
+ }
480
+ ]
481
+ },
482
+ {
483
+ "id": "candidate-beta",
484
+ "description": "Candidate beta.",
485
+ "files": [
486
+ {
487
+ "path": "src/service.mjs",
488
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.argument === value);\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
489
+ }
490
+ ]
491
+ }
492
+ ],
493
+ "badStrategyPatch": {
494
+ "id": "candidate-alpha",
495
+ "description": "Candidate alpha.",
496
+ "files": [
497
+ {
498
+ "path": "src/service.mjs",
499
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.tag === \"cached\");\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
500
+ }
501
+ ]
502
+ },
503
+ "goodStrategyPatch": {
504
+ "id": "candidate-beta",
505
+ "description": "Candidate beta.",
506
+ "files": [
507
+ {
508
+ "path": "src/service.mjs",
509
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.argument === value);\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
510
+ }
511
+ ]
512
+ },
513
+ "noTrapControlFiles": [
514
+ {
515
+ "path": "package.json",
516
+ "content": "{\n \"name\": \"@vellum-quarry/event-dispatcher-bus\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for event-dispatcher-bus\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
517
+ },
518
+ {
519
+ "path": "tsconfig.json",
520
+ "content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
521
+ },
522
+ {
523
+ "path": "vendor/vellum-quarry-sdk/index.ts",
524
+ "content": "/**\n * Counterfactual SDK for domain event-dispatcher-bus\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_event_dispatcher_bus, QuillResponse_event_dispatcher_bus } from \"./types.js\";\n\nexport function quillApiQuery_event_dispatcher_bus(\n payload: Record<string, unknown>,\n opts?: QuillOptions_event_dispatcher_bus,\n): QuillResponse_event_dispatcher_bus {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"event-dispatcher-bus\" },\n };\n}\n\nexport function quillHealthCheck_event_dispatcher_bus(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_event_dispatcher_bus(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_event_dispatcher_bus(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_event_dispatcher_bus(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_event_dispatcher_bus(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_event_dispatcher_bus(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_event_dispatcher_bus(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_event_dispatcher_bus(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
525
+ },
526
+ {
527
+ "path": "vendor/vellum-quarry-sdk/types.ts",
528
+ "content": "/**\n * Type declarations for counterfactual SDK event-dispatcher-bus\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_event_dispatcher_bus {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_event_dispatcher_bus {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_event_dispatcher_bus {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_event_dispatcher_bus;\n}\n\nexport interface QuillBatchRequest_event_dispatcher_bus {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_event_dispatcher_bus {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
529
+ },
530
+ {
531
+ "path": "src/types.ts",
532
+ "content": "/**\n * Domain type definitions for event-dispatcher-bus\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_event_dispatcher_bus {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_event_dispatcher_bus {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_event_dispatcher_bus {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_event_dispatcher_bus {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_event_dispatcher_bus<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_event_dispatcher_bus {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
533
+ },
534
+ {
535
+ "path": "src/utils.ts",
536
+ "content": "/**\n * Utility functions for domain event-dispatcher-bus\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_event_dispatcher_bus(name: string): string {\n if (!name) return \"event-dispatcher-bus\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_event_dispatcher_bus(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_event_dispatcher_bus(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_event_dispatcher_bus<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_event_dispatcher_bus(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_event_dispatcher_bus(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_event_dispatcher_bus(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
537
+ },
538
+ {
539
+ "path": "src/config.ts",
540
+ "content": "/**\n * Default configuration options for event-dispatcher-bus\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_event_dispatcher_bus = {\n domain: \"event-dispatcher-bus\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_event_dispatcher_bus(): typeof DEFAULT_CONFIG_event_dispatcher_bus {\n return { ...DEFAULT_CONFIG_event_dispatcher_bus };\n}\n"
541
+ },
542
+ {
543
+ "path": "src/domain-workflow.ts",
544
+ "content": "/**\n * Local workflow contracts for event-dispatcher-bus.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_9ee32402_00_Request {\n w_9ee32402_00_record: string;\n w_9ee32402_00_sequence: number;\n}\n\nexport interface w_9ee32402_00_Result {\n w_9ee32402_00_accepted: boolean;\n w_9ee32402_00_token: string;\n}\n\nexport function execute_w_9ee32402_00(\n input_w_9ee32402_00: w_9ee32402_00_Request,\n): w_9ee32402_00_Result {\n const normalized_w_9ee32402_00 = input_w_9ee32402_00.w_9ee32402_00_record.trim().toLowerCase();\n const score_w_9ee32402_00 =\n normalized_w_9ee32402_00.length + input_w_9ee32402_00.w_9ee32402_00_sequence;\n return {\n w_9ee32402_00_accepted: score_w_9ee32402_00 % 2 === 0,\n w_9ee32402_00_token: `event-dispatcher-bus:0:${score_w_9ee32402_00}`,\n };\n}\n\nexport interface w_9ee32402_01_Request {\n w_9ee32402_01_record: string;\n w_9ee32402_01_sequence: number;\n}\n\nexport interface w_9ee32402_01_Result {\n w_9ee32402_01_accepted: boolean;\n w_9ee32402_01_token: string;\n}\n\nexport function execute_w_9ee32402_01(\n input_w_9ee32402_01: w_9ee32402_01_Request,\n): w_9ee32402_01_Result {\n const normalized_w_9ee32402_01 = input_w_9ee32402_01.w_9ee32402_01_record.trim().toLowerCase();\n const score_w_9ee32402_01 =\n normalized_w_9ee32402_01.length + input_w_9ee32402_01.w_9ee32402_01_sequence;\n return {\n w_9ee32402_01_accepted: score_w_9ee32402_01 % 2 === 0,\n w_9ee32402_01_token: `event-dispatcher-bus:1:${score_w_9ee32402_01}`,\n };\n}\n\nexport interface w_9ee32402_02_Request {\n w_9ee32402_02_record: string;\n w_9ee32402_02_sequence: number;\n}\n\nexport interface w_9ee32402_02_Result {\n w_9ee32402_02_accepted: boolean;\n w_9ee32402_02_token: string;\n}\n\nexport function execute_w_9ee32402_02(\n input_w_9ee32402_02: w_9ee32402_02_Request,\n): w_9ee32402_02_Result {\n const normalized_w_9ee32402_02 = input_w_9ee32402_02.w_9ee32402_02_record.trim().toLowerCase();\n const score_w_9ee32402_02 =\n normalized_w_9ee32402_02.length + input_w_9ee32402_02.w_9ee32402_02_sequence;\n return {\n w_9ee32402_02_accepted: score_w_9ee32402_02 % 2 === 0,\n w_9ee32402_02_token: `event-dispatcher-bus:2:${score_w_9ee32402_02}`,\n };\n}\n\nexport interface w_9ee32402_03_Request {\n w_9ee32402_03_record: string;\n w_9ee32402_03_sequence: number;\n}\n\nexport interface w_9ee32402_03_Result {\n w_9ee32402_03_accepted: boolean;\n w_9ee32402_03_token: string;\n}\n\nexport function execute_w_9ee32402_03(\n input_w_9ee32402_03: w_9ee32402_03_Request,\n): w_9ee32402_03_Result {\n const normalized_w_9ee32402_03 = input_w_9ee32402_03.w_9ee32402_03_record.trim().toLowerCase();\n const score_w_9ee32402_03 =\n normalized_w_9ee32402_03.length + input_w_9ee32402_03.w_9ee32402_03_sequence;\n return {\n w_9ee32402_03_accepted: score_w_9ee32402_03 % 2 === 0,\n w_9ee32402_03_token: `event-dispatcher-bus:3:${score_w_9ee32402_03}`,\n };\n}\n\nexport interface w_9ee32402_04_Request {\n w_9ee32402_04_record: string;\n w_9ee32402_04_sequence: number;\n}\n\nexport interface w_9ee32402_04_Result {\n w_9ee32402_04_accepted: boolean;\n w_9ee32402_04_token: string;\n}\n\nexport function execute_w_9ee32402_04(\n input_w_9ee32402_04: w_9ee32402_04_Request,\n): w_9ee32402_04_Result {\n const normalized_w_9ee32402_04 = input_w_9ee32402_04.w_9ee32402_04_record.trim().toLowerCase();\n const score_w_9ee32402_04 =\n normalized_w_9ee32402_04.length + input_w_9ee32402_04.w_9ee32402_04_sequence;\n return {\n w_9ee32402_04_accepted: score_w_9ee32402_04 % 2 === 0,\n w_9ee32402_04_token: `event-dispatcher-bus:4:${score_w_9ee32402_04}`,\n };\n}\n\nexport interface w_9ee32402_05_Request {\n w_9ee32402_05_record: string;\n w_9ee32402_05_sequence: number;\n}\n\nexport interface w_9ee32402_05_Result {\n w_9ee32402_05_accepted: boolean;\n w_9ee32402_05_token: string;\n}\n\nexport function execute_w_9ee32402_05(\n input_w_9ee32402_05: w_9ee32402_05_Request,\n): w_9ee32402_05_Result {\n const normalized_w_9ee32402_05 = input_w_9ee32402_05.w_9ee32402_05_record.trim().toLowerCase();\n const score_w_9ee32402_05 =\n normalized_w_9ee32402_05.length + input_w_9ee32402_05.w_9ee32402_05_sequence;\n return {\n w_9ee32402_05_accepted: score_w_9ee32402_05 % 2 === 0,\n w_9ee32402_05_token: `event-dispatcher-bus:5:${score_w_9ee32402_05}`,\n };\n}\n\nexport interface w_9ee32402_06_Request {\n w_9ee32402_06_record: string;\n w_9ee32402_06_sequence: number;\n}\n\nexport interface w_9ee32402_06_Result {\n w_9ee32402_06_accepted: boolean;\n w_9ee32402_06_token: string;\n}\n\nexport function execute_w_9ee32402_06(\n input_w_9ee32402_06: w_9ee32402_06_Request,\n): w_9ee32402_06_Result {\n const normalized_w_9ee32402_06 = input_w_9ee32402_06.w_9ee32402_06_record.trim().toLowerCase();\n const score_w_9ee32402_06 =\n normalized_w_9ee32402_06.length + input_w_9ee32402_06.w_9ee32402_06_sequence;\n return {\n w_9ee32402_06_accepted: score_w_9ee32402_06 % 2 === 0,\n w_9ee32402_06_token: `event-dispatcher-bus:6:${score_w_9ee32402_06}`,\n };\n}\n\nexport interface w_9ee32402_07_Request {\n w_9ee32402_07_record: string;\n w_9ee32402_07_sequence: number;\n}\n\nexport interface w_9ee32402_07_Result {\n w_9ee32402_07_accepted: boolean;\n w_9ee32402_07_token: string;\n}\n\nexport function execute_w_9ee32402_07(\n input_w_9ee32402_07: w_9ee32402_07_Request,\n): w_9ee32402_07_Result {\n const normalized_w_9ee32402_07 = input_w_9ee32402_07.w_9ee32402_07_record.trim().toLowerCase();\n const score_w_9ee32402_07 =\n normalized_w_9ee32402_07.length + input_w_9ee32402_07.w_9ee32402_07_sequence;\n return {\n w_9ee32402_07_accepted: score_w_9ee32402_07 % 2 === 0,\n w_9ee32402_07_token: `event-dispatcher-bus:7:${score_w_9ee32402_07}`,\n };\n}\n\nexport const w_9ee32402_lex_00 = \"w_9ee32402_a_00 w_9ee32402_b_00 w_9ee32402_c_00 w_9ee32402_d_00 w_9ee32402_e_00\";\nexport const w_9ee32402_lex_01 = \"w_9ee32402_a_01 w_9ee32402_b_01 w_9ee32402_c_01 w_9ee32402_d_01 w_9ee32402_e_01\";\nexport const w_9ee32402_lex_02 = \"w_9ee32402_a_02 w_9ee32402_b_02 w_9ee32402_c_02 w_9ee32402_d_02 w_9ee32402_e_02\";\nexport const w_9ee32402_lex_03 = \"w_9ee32402_a_03 w_9ee32402_b_03 w_9ee32402_c_03 w_9ee32402_d_03 w_9ee32402_e_03\";\nexport const w_9ee32402_lex_04 = \"w_9ee32402_a_04 w_9ee32402_b_04 w_9ee32402_c_04 w_9ee32402_d_04 w_9ee32402_e_04\";\nexport const w_9ee32402_lex_05 = \"w_9ee32402_a_05 w_9ee32402_b_05 w_9ee32402_c_05 w_9ee32402_d_05 w_9ee32402_e_05\";\nexport const w_9ee32402_lex_06 = \"w_9ee32402_a_06 w_9ee32402_b_06 w_9ee32402_c_06 w_9ee32402_d_06 w_9ee32402_e_06\";\nexport const w_9ee32402_lex_07 = \"w_9ee32402_a_07 w_9ee32402_b_07 w_9ee32402_c_07 w_9ee32402_d_07 w_9ee32402_e_07\";\nexport const w_9ee32402_lex_08 = \"w_9ee32402_a_08 w_9ee32402_b_08 w_9ee32402_c_08 w_9ee32402_d_08 w_9ee32402_e_08\";\nexport const w_9ee32402_lex_09 = \"w_9ee32402_a_09 w_9ee32402_b_09 w_9ee32402_c_09 w_9ee32402_d_09 w_9ee32402_e_09\";\nexport const w_9ee32402_lex_10 = \"w_9ee32402_a_10 w_9ee32402_b_10 w_9ee32402_c_10 w_9ee32402_d_10 w_9ee32402_e_10\";\nexport const w_9ee32402_lex_11 = \"w_9ee32402_a_11 w_9ee32402_b_11 w_9ee32402_c_11 w_9ee32402_d_11 w_9ee32402_e_11\";\nexport const w_9ee32402_lex_12 = \"w_9ee32402_a_12 w_9ee32402_b_12 w_9ee32402_c_12 w_9ee32402_d_12 w_9ee32402_e_12\";\nexport const w_9ee32402_lex_13 = \"w_9ee32402_a_13 w_9ee32402_b_13 w_9ee32402_c_13 w_9ee32402_d_13 w_9ee32402_e_13\";\nexport const w_9ee32402_lex_14 = \"w_9ee32402_a_14 w_9ee32402_b_14 w_9ee32402_c_14 w_9ee32402_d_14 w_9ee32402_e_14\";\nexport const w_9ee32402_lex_15 = \"w_9ee32402_a_15 w_9ee32402_b_15 w_9ee32402_c_15 w_9ee32402_d_15 w_9ee32402_e_15\";\nexport const w_9ee32402_lex_16 = \"w_9ee32402_a_16 w_9ee32402_b_16 w_9ee32402_c_16 w_9ee32402_d_16 w_9ee32402_e_16\";\nexport const w_9ee32402_lex_17 = \"w_9ee32402_a_17 w_9ee32402_b_17 w_9ee32402_c_17 w_9ee32402_d_17 w_9ee32402_e_17\";\nexport const w_9ee32402_lex_18 = \"w_9ee32402_a_18 w_9ee32402_b_18 w_9ee32402_c_18 w_9ee32402_d_18 w_9ee32402_e_18\";\nexport const w_9ee32402_lex_19 = \"w_9ee32402_a_19 w_9ee32402_b_19 w_9ee32402_c_19 w_9ee32402_d_19 w_9ee32402_e_19\";\nexport const w_9ee32402_lex_20 = \"w_9ee32402_a_20 w_9ee32402_b_20 w_9ee32402_c_20 w_9ee32402_d_20 w_9ee32402_e_20\";\nexport const w_9ee32402_lex_21 = \"w_9ee32402_a_21 w_9ee32402_b_21 w_9ee32402_c_21 w_9ee32402_d_21 w_9ee32402_e_21\";\nexport const w_9ee32402_lex_22 = \"w_9ee32402_a_22 w_9ee32402_b_22 w_9ee32402_c_22 w_9ee32402_d_22 w_9ee32402_e_22\";\nexport const w_9ee32402_lex_23 = \"w_9ee32402_a_23 w_9ee32402_b_23 w_9ee32402_c_23 w_9ee32402_d_23 w_9ee32402_e_23\";\nexport const w_9ee32402_lex_24 = \"w_9ee32402_a_24 w_9ee32402_b_24 w_9ee32402_c_24 w_9ee32402_d_24 w_9ee32402_e_24\";\nexport const w_9ee32402_lex_25 = \"w_9ee32402_a_25 w_9ee32402_b_25 w_9ee32402_c_25 w_9ee32402_d_25 w_9ee32402_e_25\";\nexport const w_9ee32402_lex_26 = \"w_9ee32402_a_26 w_9ee32402_b_26 w_9ee32402_c_26 w_9ee32402_d_26 w_9ee32402_e_26\";\nexport const w_9ee32402_lex_27 = \"w_9ee32402_a_27 w_9ee32402_b_27 w_9ee32402_c_27 w_9ee32402_d_27 w_9ee32402_e_27\";\n"
545
+ },
546
+ {
547
+ "path": "README.md",
548
+ "content": "# Synthetic Repository for event-dispatcher-bus\n\nThis repository contains a local service module for event-dispatcher-bus.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
549
+ },
550
+ {
551
+ "path": "TASK.md",
552
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for event-dispatcher-bus so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
553
+ },
554
+ {
555
+ "path": "test/check.js",
556
+ "content": "import { repositoryIdentity0edc25ec } from \"../src/service.mjs\";\nconst {\n v7faa8c11, v4ffda8a9, v0b527f6b, vd85517d8, v40b866f3, v49a31ed8, v8eabf3c8, v33da24a3,\n vce57fef5, v9d7ca1da, v9de0434d, vd29ded95, vf0db56d3, v04cf6853, v60abdba2, ve04c7422,\n vd9133156,\n} = repositoryIdentity0edc25ec;\nif (!Object.values(repositoryIdentity0edc25ec).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_event_dispatcher_bus, resetCache_event_dispatcher_bus } from \"../src/service.mjs\";\nresetCache_event_dispatcher_bus();\nconst observed = new Map();\nfor (const input of [2,8,-1]) observed.set(input, calculate_event_dispatcher_bus(input));\nconst expected = new Map([[2,9],[8,10],[-1,6]]);\nconst comparison = [...expected].map(([input, output]) => observed.get(input) === output);\nif (comparison.every(Boolean) && calculate_event_dispatcher_bus(2) === 9) {\n console.log(\"FIXED: journal lookup matches events by argument\");\n process.exit(0);\n}\nif (new Set(observed.values()).size === 1 && comparison[0]) {\n console.log(\"CHECK_FAILED: journal lookup matches only a constant tag\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: journal contains stale calculation results\");\nprocess.exit(1);\n"
557
+ },
558
+ {
559
+ "path": "src/service.mjs",
560
+ "content": "let journal = [];\nconst query = (value) => journal.find((entry) => entry.argument === value);\nexport function resetCache_event_dispatcher_bus() { journal.splice(0); }\nexport function calculate_event_dispatcher_bus(value) {\n const prior = query(value);\n if (prior !== undefined) return prior.result;\n const event = { tag: \"cached\", argument: value, result: value % 5 + 7 };\n journal = journal.concat(event);\n return event.result;\n}\nexport const repositoryIdentity0edc25ec = Object.freeze({\n v7faa8c11: true, v4ffda8a9: true, v0b527f6b: true, vd85517d8: true, v40b866f3: true, v49a31ed8: true,\n v8eabf3c8: true, v33da24a3: true, vce57fef5: true, v9d7ca1da: true, v9de0434d: true, vd29ded95: true,\n vf0db56d3: true, v04cf6853: true, v60abdba2: true, ve04c7422: true, vd9133156: true,\n});\n"
561
+ },
562
+ {
563
+ "path": "src/helper.ts",
564
+ "content": "export * from \"./helper/core.js\";\n"
565
+ },
566
+ {
567
+ "path": "src/helper/core.ts",
568
+ "content": "/**\n * Helper routines for event-dispatcher-bus\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_event_dispatcher_bus, generateTraceId_event_dispatcher_bus } from \"../utils.js\";\n\nexport function getDomainHeader_event_dispatcher_bus(domain: string): string {\n return \"X-Domain-\" + formatDomainName_event_dispatcher_bus(domain);\n}\n\nexport function createServiceContext_event_dispatcher_bus(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_event_dispatcher_bus(domain),\n traceId: generateTraceId_event_dispatcher_bus(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_event_dispatcher_bus(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_event_dispatcher_bus<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
569
+ }
570
+ ],
571
+ "cleanRevisionSha": "7ec367f3272149afaa2f3ef3105a33cea6b65821",
572
+ "trapRevisionSha": "4868b9dbf5396764c2e02d7f544e26c620e45213",
573
+ "rightRevisionSha": "0f2a33f3e9c85908d42bdefb6f55b21dc7eddcb9",
574
+ "noTrapRevisionSha": "baa2df786d63057a8461af1b4c772d229d4a31bc"
575
+ }
576
+ ]
577
+ }