@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,629 @@
1
+ {
2
+ "id": "h6-task-11",
3
+ "trapId": "wrong-layer-fix",
4
+ "domain": "crypto-wallet-core",
5
+ "title": "Correct crypto-wallet-core service behavior",
6
+ "description": "Enforce normalization and validation inside the service boundary: reject invalid raw records without state changes and accept valid records consistently for every caller.",
7
+ "canonicalBaseFiles": [
8
+ {
9
+ "path": "package.json",
10
+ "content": "{\n \"name\": \"@vellum-quarry/crypto-wallet-core\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for crypto-wallet-core\",\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 crypto-wallet-core\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_crypto_wallet_core, QuillResponse_crypto_wallet_core } from \"./types.js\";\n\nexport function quillApiQuery_crypto_wallet_core(\n payload: Record<string, unknown>,\n opts?: QuillOptions_crypto_wallet_core,\n): QuillResponse_crypto_wallet_core {\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: \"crypto-wallet-core\" },\n };\n}\n\nexport function quillHealthCheck_crypto_wallet_core(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_crypto_wallet_core(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_crypto_wallet_core(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_crypto_wallet_core(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_crypto_wallet_core(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_crypto_wallet_core(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_crypto_wallet_core(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_crypto_wallet_core(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 crypto-wallet-core\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_crypto_wallet_core {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_crypto_wallet_core {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_crypto_wallet_core {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_crypto_wallet_core;\n}\n\nexport interface QuillBatchRequest_crypto_wallet_core {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_crypto_wallet_core {\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 crypto-wallet-core\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_crypto_wallet_core {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_crypto_wallet_core {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_crypto_wallet_core {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_crypto_wallet_core {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_crypto_wallet_core<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_crypto_wallet_core {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
27
+ },
28
+ {
29
+ "path": "src/utils.ts",
30
+ "content": "/**\n * Utility functions for domain crypto-wallet-core\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_crypto_wallet_core(name: string): string {\n if (!name) return \"crypto-wallet-core\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_crypto_wallet_core(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_crypto_wallet_core(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_crypto_wallet_core<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_crypto_wallet_core(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_crypto_wallet_core(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_crypto_wallet_core(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 crypto-wallet-core\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_crypto_wallet_core = {\n domain: \"crypto-wallet-core\",\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_crypto_wallet_core(): typeof DEFAULT_CONFIG_crypto_wallet_core {\n return { ...DEFAULT_CONFIG_crypto_wallet_core };\n}\n"
35
+ },
36
+ {
37
+ "path": "src/helper.ts",
38
+ "content": "/**\n * Helper routines for crypto-wallet-core\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_crypto_wallet_core, generateTraceId_crypto_wallet_core } from \"./utils.js\";\n\nexport function getDomainHeader_crypto_wallet_core(domain: string): string {\n return \"X-Domain-\" + formatDomainName_crypto_wallet_core(domain);\n}\n\nexport function createServiceContext_crypto_wallet_core(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_crypto_wallet_core(domain),\n traceId: generateTraceId_crypto_wallet_core(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_crypto_wallet_core(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_crypto_wallet_core<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 crypto-wallet-core.\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_9aea5ff8_00_Request {\n w_9aea5ff8_00_record: string;\n w_9aea5ff8_00_sequence: number;\n}\n\nexport interface w_9aea5ff8_00_Result {\n w_9aea5ff8_00_accepted: boolean;\n w_9aea5ff8_00_token: string;\n}\n\nexport function execute_w_9aea5ff8_00(\n input_w_9aea5ff8_00: w_9aea5ff8_00_Request,\n): w_9aea5ff8_00_Result {\n const normalized_w_9aea5ff8_00 = input_w_9aea5ff8_00.w_9aea5ff8_00_record.trim().toLowerCase();\n const score_w_9aea5ff8_00 =\n normalized_w_9aea5ff8_00.length + input_w_9aea5ff8_00.w_9aea5ff8_00_sequence;\n return {\n w_9aea5ff8_00_accepted: score_w_9aea5ff8_00 % 2 === 0,\n w_9aea5ff8_00_token: `crypto-wallet-core:0:${score_w_9aea5ff8_00}`,\n };\n}\n\nexport interface w_9aea5ff8_01_Request {\n w_9aea5ff8_01_record: string;\n w_9aea5ff8_01_sequence: number;\n}\n\nexport interface w_9aea5ff8_01_Result {\n w_9aea5ff8_01_accepted: boolean;\n w_9aea5ff8_01_token: string;\n}\n\nexport function execute_w_9aea5ff8_01(\n input_w_9aea5ff8_01: w_9aea5ff8_01_Request,\n): w_9aea5ff8_01_Result {\n const normalized_w_9aea5ff8_01 = input_w_9aea5ff8_01.w_9aea5ff8_01_record.trim().toLowerCase();\n const score_w_9aea5ff8_01 =\n normalized_w_9aea5ff8_01.length + input_w_9aea5ff8_01.w_9aea5ff8_01_sequence;\n return {\n w_9aea5ff8_01_accepted: score_w_9aea5ff8_01 % 2 === 0,\n w_9aea5ff8_01_token: `crypto-wallet-core:1:${score_w_9aea5ff8_01}`,\n };\n}\n\nexport interface w_9aea5ff8_02_Request {\n w_9aea5ff8_02_record: string;\n w_9aea5ff8_02_sequence: number;\n}\n\nexport interface w_9aea5ff8_02_Result {\n w_9aea5ff8_02_accepted: boolean;\n w_9aea5ff8_02_token: string;\n}\n\nexport function execute_w_9aea5ff8_02(\n input_w_9aea5ff8_02: w_9aea5ff8_02_Request,\n): w_9aea5ff8_02_Result {\n const normalized_w_9aea5ff8_02 = input_w_9aea5ff8_02.w_9aea5ff8_02_record.trim().toLowerCase();\n const score_w_9aea5ff8_02 =\n normalized_w_9aea5ff8_02.length + input_w_9aea5ff8_02.w_9aea5ff8_02_sequence;\n return {\n w_9aea5ff8_02_accepted: score_w_9aea5ff8_02 % 2 === 0,\n w_9aea5ff8_02_token: `crypto-wallet-core:2:${score_w_9aea5ff8_02}`,\n };\n}\n\nexport interface w_9aea5ff8_03_Request {\n w_9aea5ff8_03_record: string;\n w_9aea5ff8_03_sequence: number;\n}\n\nexport interface w_9aea5ff8_03_Result {\n w_9aea5ff8_03_accepted: boolean;\n w_9aea5ff8_03_token: string;\n}\n\nexport function execute_w_9aea5ff8_03(\n input_w_9aea5ff8_03: w_9aea5ff8_03_Request,\n): w_9aea5ff8_03_Result {\n const normalized_w_9aea5ff8_03 = input_w_9aea5ff8_03.w_9aea5ff8_03_record.trim().toLowerCase();\n const score_w_9aea5ff8_03 =\n normalized_w_9aea5ff8_03.length + input_w_9aea5ff8_03.w_9aea5ff8_03_sequence;\n return {\n w_9aea5ff8_03_accepted: score_w_9aea5ff8_03 % 2 === 0,\n w_9aea5ff8_03_token: `crypto-wallet-core:3:${score_w_9aea5ff8_03}`,\n };\n}\n\nexport interface w_9aea5ff8_04_Request {\n w_9aea5ff8_04_record: string;\n w_9aea5ff8_04_sequence: number;\n}\n\nexport interface w_9aea5ff8_04_Result {\n w_9aea5ff8_04_accepted: boolean;\n w_9aea5ff8_04_token: string;\n}\n\nexport function execute_w_9aea5ff8_04(\n input_w_9aea5ff8_04: w_9aea5ff8_04_Request,\n): w_9aea5ff8_04_Result {\n const normalized_w_9aea5ff8_04 = input_w_9aea5ff8_04.w_9aea5ff8_04_record.trim().toLowerCase();\n const score_w_9aea5ff8_04 =\n normalized_w_9aea5ff8_04.length + input_w_9aea5ff8_04.w_9aea5ff8_04_sequence;\n return {\n w_9aea5ff8_04_accepted: score_w_9aea5ff8_04 % 2 === 0,\n w_9aea5ff8_04_token: `crypto-wallet-core:4:${score_w_9aea5ff8_04}`,\n };\n}\n\nexport interface w_9aea5ff8_05_Request {\n w_9aea5ff8_05_record: string;\n w_9aea5ff8_05_sequence: number;\n}\n\nexport interface w_9aea5ff8_05_Result {\n w_9aea5ff8_05_accepted: boolean;\n w_9aea5ff8_05_token: string;\n}\n\nexport function execute_w_9aea5ff8_05(\n input_w_9aea5ff8_05: w_9aea5ff8_05_Request,\n): w_9aea5ff8_05_Result {\n const normalized_w_9aea5ff8_05 = input_w_9aea5ff8_05.w_9aea5ff8_05_record.trim().toLowerCase();\n const score_w_9aea5ff8_05 =\n normalized_w_9aea5ff8_05.length + input_w_9aea5ff8_05.w_9aea5ff8_05_sequence;\n return {\n w_9aea5ff8_05_accepted: score_w_9aea5ff8_05 % 2 === 0,\n w_9aea5ff8_05_token: `crypto-wallet-core:5:${score_w_9aea5ff8_05}`,\n };\n}\n\nexport interface w_9aea5ff8_06_Request {\n w_9aea5ff8_06_record: string;\n w_9aea5ff8_06_sequence: number;\n}\n\nexport interface w_9aea5ff8_06_Result {\n w_9aea5ff8_06_accepted: boolean;\n w_9aea5ff8_06_token: string;\n}\n\nexport function execute_w_9aea5ff8_06(\n input_w_9aea5ff8_06: w_9aea5ff8_06_Request,\n): w_9aea5ff8_06_Result {\n const normalized_w_9aea5ff8_06 = input_w_9aea5ff8_06.w_9aea5ff8_06_record.trim().toLowerCase();\n const score_w_9aea5ff8_06 =\n normalized_w_9aea5ff8_06.length + input_w_9aea5ff8_06.w_9aea5ff8_06_sequence;\n return {\n w_9aea5ff8_06_accepted: score_w_9aea5ff8_06 % 2 === 0,\n w_9aea5ff8_06_token: `crypto-wallet-core:6:${score_w_9aea5ff8_06}`,\n };\n}\n\nexport interface w_9aea5ff8_07_Request {\n w_9aea5ff8_07_record: string;\n w_9aea5ff8_07_sequence: number;\n}\n\nexport interface w_9aea5ff8_07_Result {\n w_9aea5ff8_07_accepted: boolean;\n w_9aea5ff8_07_token: string;\n}\n\nexport function execute_w_9aea5ff8_07(\n input_w_9aea5ff8_07: w_9aea5ff8_07_Request,\n): w_9aea5ff8_07_Result {\n const normalized_w_9aea5ff8_07 = input_w_9aea5ff8_07.w_9aea5ff8_07_record.trim().toLowerCase();\n const score_w_9aea5ff8_07 =\n normalized_w_9aea5ff8_07.length + input_w_9aea5ff8_07.w_9aea5ff8_07_sequence;\n return {\n w_9aea5ff8_07_accepted: score_w_9aea5ff8_07 % 2 === 0,\n w_9aea5ff8_07_token: `crypto-wallet-core:7:${score_w_9aea5ff8_07}`,\n };\n}\n\nexport const w_9aea5ff8_lex_00 = \"w_9aea5ff8_a_00 w_9aea5ff8_b_00 w_9aea5ff8_c_00 w_9aea5ff8_d_00 w_9aea5ff8_e_00\";\nexport const w_9aea5ff8_lex_01 = \"w_9aea5ff8_a_01 w_9aea5ff8_b_01 w_9aea5ff8_c_01 w_9aea5ff8_d_01 w_9aea5ff8_e_01\";\nexport const w_9aea5ff8_lex_02 = \"w_9aea5ff8_a_02 w_9aea5ff8_b_02 w_9aea5ff8_c_02 w_9aea5ff8_d_02 w_9aea5ff8_e_02\";\nexport const w_9aea5ff8_lex_03 = \"w_9aea5ff8_a_03 w_9aea5ff8_b_03 w_9aea5ff8_c_03 w_9aea5ff8_d_03 w_9aea5ff8_e_03\";\nexport const w_9aea5ff8_lex_04 = \"w_9aea5ff8_a_04 w_9aea5ff8_b_04 w_9aea5ff8_c_04 w_9aea5ff8_d_04 w_9aea5ff8_e_04\";\nexport const w_9aea5ff8_lex_05 = \"w_9aea5ff8_a_05 w_9aea5ff8_b_05 w_9aea5ff8_c_05 w_9aea5ff8_d_05 w_9aea5ff8_e_05\";\nexport const w_9aea5ff8_lex_06 = \"w_9aea5ff8_a_06 w_9aea5ff8_b_06 w_9aea5ff8_c_06 w_9aea5ff8_d_06 w_9aea5ff8_e_06\";\nexport const w_9aea5ff8_lex_07 = \"w_9aea5ff8_a_07 w_9aea5ff8_b_07 w_9aea5ff8_c_07 w_9aea5ff8_d_07 w_9aea5ff8_e_07\";\nexport const w_9aea5ff8_lex_08 = \"w_9aea5ff8_a_08 w_9aea5ff8_b_08 w_9aea5ff8_c_08 w_9aea5ff8_d_08 w_9aea5ff8_e_08\";\nexport const w_9aea5ff8_lex_09 = \"w_9aea5ff8_a_09 w_9aea5ff8_b_09 w_9aea5ff8_c_09 w_9aea5ff8_d_09 w_9aea5ff8_e_09\";\nexport const w_9aea5ff8_lex_10 = \"w_9aea5ff8_a_10 w_9aea5ff8_b_10 w_9aea5ff8_c_10 w_9aea5ff8_d_10 w_9aea5ff8_e_10\";\nexport const w_9aea5ff8_lex_11 = \"w_9aea5ff8_a_11 w_9aea5ff8_b_11 w_9aea5ff8_c_11 w_9aea5ff8_d_11 w_9aea5ff8_e_11\";\nexport const w_9aea5ff8_lex_12 = \"w_9aea5ff8_a_12 w_9aea5ff8_b_12 w_9aea5ff8_c_12 w_9aea5ff8_d_12 w_9aea5ff8_e_12\";\nexport const w_9aea5ff8_lex_13 = \"w_9aea5ff8_a_13 w_9aea5ff8_b_13 w_9aea5ff8_c_13 w_9aea5ff8_d_13 w_9aea5ff8_e_13\";\nexport const w_9aea5ff8_lex_14 = \"w_9aea5ff8_a_14 w_9aea5ff8_b_14 w_9aea5ff8_c_14 w_9aea5ff8_d_14 w_9aea5ff8_e_14\";\nexport const w_9aea5ff8_lex_15 = \"w_9aea5ff8_a_15 w_9aea5ff8_b_15 w_9aea5ff8_c_15 w_9aea5ff8_d_15 w_9aea5ff8_e_15\";\nexport const w_9aea5ff8_lex_16 = \"w_9aea5ff8_a_16 w_9aea5ff8_b_16 w_9aea5ff8_c_16 w_9aea5ff8_d_16 w_9aea5ff8_e_16\";\nexport const w_9aea5ff8_lex_17 = \"w_9aea5ff8_a_17 w_9aea5ff8_b_17 w_9aea5ff8_c_17 w_9aea5ff8_d_17 w_9aea5ff8_e_17\";\nexport const w_9aea5ff8_lex_18 = \"w_9aea5ff8_a_18 w_9aea5ff8_b_18 w_9aea5ff8_c_18 w_9aea5ff8_d_18 w_9aea5ff8_e_18\";\nexport const w_9aea5ff8_lex_19 = \"w_9aea5ff8_a_19 w_9aea5ff8_b_19 w_9aea5ff8_c_19 w_9aea5ff8_d_19 w_9aea5ff8_e_19\";\nexport const w_9aea5ff8_lex_20 = \"w_9aea5ff8_a_20 w_9aea5ff8_b_20 w_9aea5ff8_c_20 w_9aea5ff8_d_20 w_9aea5ff8_e_20\";\nexport const w_9aea5ff8_lex_21 = \"w_9aea5ff8_a_21 w_9aea5ff8_b_21 w_9aea5ff8_c_21 w_9aea5ff8_d_21 w_9aea5ff8_e_21\";\nexport const w_9aea5ff8_lex_22 = \"w_9aea5ff8_a_22 w_9aea5ff8_b_22 w_9aea5ff8_c_22 w_9aea5ff8_d_22 w_9aea5ff8_e_22\";\nexport const w_9aea5ff8_lex_23 = \"w_9aea5ff8_a_23 w_9aea5ff8_b_23 w_9aea5ff8_c_23 w_9aea5ff8_d_23 w_9aea5ff8_e_23\";\nexport const w_9aea5ff8_lex_24 = \"w_9aea5ff8_a_24 w_9aea5ff8_b_24 w_9aea5ff8_c_24 w_9aea5ff8_d_24 w_9aea5ff8_e_24\";\nexport const w_9aea5ff8_lex_25 = \"w_9aea5ff8_a_25 w_9aea5ff8_b_25 w_9aea5ff8_c_25 w_9aea5ff8_d_25 w_9aea5ff8_e_25\";\nexport const w_9aea5ff8_lex_26 = \"w_9aea5ff8_a_26 w_9aea5ff8_b_26 w_9aea5ff8_c_26 w_9aea5ff8_d_26 w_9aea5ff8_e_26\";\nexport const w_9aea5ff8_lex_27 = \"w_9aea5ff8_a_27 w_9aea5ff8_b_27 w_9aea5ff8_c_27 w_9aea5ff8_d_27 w_9aea5ff8_e_27\";\n"
43
+ },
44
+ {
45
+ "path": "README.md",
46
+ "content": "# Synthetic Repository for crypto-wallet-core\n\nThis repository contains a local service module for crypto-wallet-core.\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: Enforce normalization and validation inside the service boundary: reject invalid raw records without state changes and accept valid records consistently for every caller.\n\nUpdate the local domain module for crypto-wallet-core 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 { repositoryIdentity76d47b7a } from \"../src/service.mjs\";\nconst {\n vb1732e9b, v05022492, v366ed480, v7ad0d474, v19794d7a, v8ebdf10b, ve7a51caa, v8628a0d0,\n v493c3287, v53da11d0, vc7363881, v1814ed15, v8b326144, v038f6528, vdd716dd5, v212b7473,\n vc9759b66,\n} = repositoryIdentity76d47b7a;\nif (!Object.values(repositoryIdentity76d47b7a).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { listUsers_crypto_wallet_core, renderUser_crypto_wallet_core, resetUsers_crypto_wallet_core, saveUser_crypto_wallet_core } from \"../src/service.mjs\";\nresetUsers_crypto_wallet_core();\nconst rejected = saveUser_crypto_wallet_core({\"id\":\"\",\"name\":\"\"});\nconst afterInvalid = listUsers_crypto_wallet_core();\nresetUsers_crypto_wallet_core();\nconst accepted = saveUser_crypto_wallet_core({\"id\":\" user-1 \",\"name\":\" Ada \"});\nconst rows = listUsers_crypto_wallet_core();\nif (rejected === false && afterInvalid.length === 0 && accepted === true &&\n rows[0].id === \"user-1\" &&\n renderUser_crypto_wallet_core(rows[0]) === \"ADA\") {\n console.log(\"FIXED: invalid records stop at the write boundary\");\n process.exit(0);\n}\nif (rejected && afterInvalid.length === 1 && renderUser_crypto_wallet_core(afterInvalid[0]) === \"UNKNOWN\") {\n console.log(\"CHECK_FAILED: presentation fallback masks persisted invalid data\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: invalid records cross the repository boundary\");\nprocess.exit(1);\n"
55
+ },
56
+ {
57
+ "path": "src/user-schema.mjs",
58
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
59
+ },
60
+ {
61
+ "path": "src/service.mjs",
62
+ "content": "const records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n records.push({ ...input });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.trim().toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
63
+ }
64
+ ],
65
+ "checkCommand": "node test/check.js",
66
+ "fileCount": 14,
67
+ "lineCount": 578,
68
+ "fingerprint": {
69
+ "version": 1,
70
+ "trapId": "wrong-layer-fix",
71
+ "symbol": "sanitizePresentation_crypto_wallet_core",
72
+ "file": "src/service.mjs",
73
+ "pattern": "caller_side_sanitization",
74
+ "strategyId": "candidate-alpha"
75
+ },
76
+ "normalizedActionIntent": {
77
+ "version": 1,
78
+ "actionType": "service_maintenance",
79
+ "targetSymbol": "service_crypto_wallet_core",
80
+ "filePath": "src/service.mjs",
81
+ "contextHash": "ca63951c0e634365470f80a5d3a5615801fad075fa8b42187c020ecdd1d8fb14"
82
+ },
83
+ "offlineCheckMark": "6f26e8ab7f7d6ce27a2b839998f7a520e38d4a872c4b0c7ef7d938847d53340a",
84
+ "offlineFailureMark": "307764f85c8f660e28a26f1d0b2fd0e42f32c4d90afd650214fedec85f198deb",
85
+ "maxTokenCap": 8192,
86
+ "maxAttemptCap": 3,
87
+ "split": "pilot",
88
+ "variants": [
89
+ {
90
+ "variantId": "h6-task-11-v1",
91
+ "baseTaskId": "h6-task-11",
92
+ "variantIndex": 1,
93
+ "distance": 1,
94
+ "domain": "crypto-wallet-core",
95
+ "files": [
96
+ {
97
+ "path": "package.json",
98
+ "content": "{\n \"name\": \"@vellum-quarry/crypto-wallet-core\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for crypto-wallet-core\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
99
+ },
100
+ {
101
+ "path": "tsconfig.json",
102
+ "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"
103
+ },
104
+ {
105
+ "path": "vendor/vellum-quarry-sdk/index.ts",
106
+ "content": "/**\n * Counterfactual SDK for domain crypto-wallet-core\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_crypto_wallet_core, QuillResponse_crypto_wallet_core } from \"./types.js\";\n\nexport function quillApiQuery_crypto_wallet_core(\n payload: Record<string, unknown>,\n opts?: QuillOptions_crypto_wallet_core,\n): QuillResponse_crypto_wallet_core {\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: \"crypto-wallet-core\" },\n };\n}\n\nexport function quillHealthCheck_crypto_wallet_core(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_crypto_wallet_core(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_crypto_wallet_core(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_crypto_wallet_core(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_crypto_wallet_core(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_crypto_wallet_core(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_crypto_wallet_core(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_crypto_wallet_core(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"
107
+ },
108
+ {
109
+ "path": "vendor/vellum-quarry-sdk/types.ts",
110
+ "content": "/**\n * Type declarations for counterfactual SDK crypto-wallet-core\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_crypto_wallet_core {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_crypto_wallet_core {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_crypto_wallet_core {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_crypto_wallet_core;\n}\n\nexport interface QuillBatchRequest_crypto_wallet_core {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_crypto_wallet_core {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
111
+ },
112
+ {
113
+ "path": "src/types.ts",
114
+ "content": "/**\n * Domain type definitions for crypto-wallet-core\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_crypto_wallet_core {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_crypto_wallet_core {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_crypto_wallet_core {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_crypto_wallet_core {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_crypto_wallet_core<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_crypto_wallet_core {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
115
+ },
116
+ {
117
+ "path": "src/utils.ts",
118
+ "content": "/**\n * Utility functions for domain crypto-wallet-core\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_crypto_wallet_core(name: string): string {\n if (!name) return \"crypto-wallet-core\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_crypto_wallet_core(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_crypto_wallet_core(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_crypto_wallet_core<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_crypto_wallet_core(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_crypto_wallet_core(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_crypto_wallet_core(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
119
+ },
120
+ {
121
+ "path": "src/config.ts",
122
+ "content": "/**\n * Default configuration options for crypto-wallet-core\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_crypto_wallet_core = {\n domain: \"crypto-wallet-core\",\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_crypto_wallet_core(): typeof DEFAULT_CONFIG_crypto_wallet_core {\n return { ...DEFAULT_CONFIG_crypto_wallet_core };\n}\n"
123
+ },
124
+ {
125
+ "path": "src/domain-workflow.ts",
126
+ "content": "/**\n * Local workflow contracts for crypto-wallet-core.\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_9aea5ff8_00_Request {\n w_9aea5ff8_00_record: string;\n w_9aea5ff8_00_sequence: number;\n}\n\nexport interface w_9aea5ff8_00_Result {\n w_9aea5ff8_00_accepted: boolean;\n w_9aea5ff8_00_token: string;\n}\n\nexport function execute_w_9aea5ff8_00(\n input_w_9aea5ff8_00: w_9aea5ff8_00_Request,\n): w_9aea5ff8_00_Result {\n const normalized_w_9aea5ff8_00 = input_w_9aea5ff8_00.w_9aea5ff8_00_record.trim().toLowerCase();\n const score_w_9aea5ff8_00 =\n normalized_w_9aea5ff8_00.length + input_w_9aea5ff8_00.w_9aea5ff8_00_sequence;\n return {\n w_9aea5ff8_00_accepted: score_w_9aea5ff8_00 % 2 === 0,\n w_9aea5ff8_00_token: `crypto-wallet-core:0:${score_w_9aea5ff8_00}`,\n };\n}\n\nexport interface w_9aea5ff8_01_Request {\n w_9aea5ff8_01_record: string;\n w_9aea5ff8_01_sequence: number;\n}\n\nexport interface w_9aea5ff8_01_Result {\n w_9aea5ff8_01_accepted: boolean;\n w_9aea5ff8_01_token: string;\n}\n\nexport function execute_w_9aea5ff8_01(\n input_w_9aea5ff8_01: w_9aea5ff8_01_Request,\n): w_9aea5ff8_01_Result {\n const normalized_w_9aea5ff8_01 = input_w_9aea5ff8_01.w_9aea5ff8_01_record.trim().toLowerCase();\n const score_w_9aea5ff8_01 =\n normalized_w_9aea5ff8_01.length + input_w_9aea5ff8_01.w_9aea5ff8_01_sequence;\n return {\n w_9aea5ff8_01_accepted: score_w_9aea5ff8_01 % 2 === 0,\n w_9aea5ff8_01_token: `crypto-wallet-core:1:${score_w_9aea5ff8_01}`,\n };\n}\n\nexport interface w_9aea5ff8_02_Request {\n w_9aea5ff8_02_record: string;\n w_9aea5ff8_02_sequence: number;\n}\n\nexport interface w_9aea5ff8_02_Result {\n w_9aea5ff8_02_accepted: boolean;\n w_9aea5ff8_02_token: string;\n}\n\nexport function execute_w_9aea5ff8_02(\n input_w_9aea5ff8_02: w_9aea5ff8_02_Request,\n): w_9aea5ff8_02_Result {\n const normalized_w_9aea5ff8_02 = input_w_9aea5ff8_02.w_9aea5ff8_02_record.trim().toLowerCase();\n const score_w_9aea5ff8_02 =\n normalized_w_9aea5ff8_02.length + input_w_9aea5ff8_02.w_9aea5ff8_02_sequence;\n return {\n w_9aea5ff8_02_accepted: score_w_9aea5ff8_02 % 2 === 0,\n w_9aea5ff8_02_token: `crypto-wallet-core:2:${score_w_9aea5ff8_02}`,\n };\n}\n\nexport interface w_9aea5ff8_03_Request {\n w_9aea5ff8_03_record: string;\n w_9aea5ff8_03_sequence: number;\n}\n\nexport interface w_9aea5ff8_03_Result {\n w_9aea5ff8_03_accepted: boolean;\n w_9aea5ff8_03_token: string;\n}\n\nexport function execute_w_9aea5ff8_03(\n input_w_9aea5ff8_03: w_9aea5ff8_03_Request,\n): w_9aea5ff8_03_Result {\n const normalized_w_9aea5ff8_03 = input_w_9aea5ff8_03.w_9aea5ff8_03_record.trim().toLowerCase();\n const score_w_9aea5ff8_03 =\n normalized_w_9aea5ff8_03.length + input_w_9aea5ff8_03.w_9aea5ff8_03_sequence;\n return {\n w_9aea5ff8_03_accepted: score_w_9aea5ff8_03 % 2 === 0,\n w_9aea5ff8_03_token: `crypto-wallet-core:3:${score_w_9aea5ff8_03}`,\n };\n}\n\nexport interface w_9aea5ff8_04_Request {\n w_9aea5ff8_04_record: string;\n w_9aea5ff8_04_sequence: number;\n}\n\nexport interface w_9aea5ff8_04_Result {\n w_9aea5ff8_04_accepted: boolean;\n w_9aea5ff8_04_token: string;\n}\n\nexport function execute_w_9aea5ff8_04(\n input_w_9aea5ff8_04: w_9aea5ff8_04_Request,\n): w_9aea5ff8_04_Result {\n const normalized_w_9aea5ff8_04 = input_w_9aea5ff8_04.w_9aea5ff8_04_record.trim().toLowerCase();\n const score_w_9aea5ff8_04 =\n normalized_w_9aea5ff8_04.length + input_w_9aea5ff8_04.w_9aea5ff8_04_sequence;\n return {\n w_9aea5ff8_04_accepted: score_w_9aea5ff8_04 % 2 === 0,\n w_9aea5ff8_04_token: `crypto-wallet-core:4:${score_w_9aea5ff8_04}`,\n };\n}\n\nexport interface w_9aea5ff8_05_Request {\n w_9aea5ff8_05_record: string;\n w_9aea5ff8_05_sequence: number;\n}\n\nexport interface w_9aea5ff8_05_Result {\n w_9aea5ff8_05_accepted: boolean;\n w_9aea5ff8_05_token: string;\n}\n\nexport function execute_w_9aea5ff8_05(\n input_w_9aea5ff8_05: w_9aea5ff8_05_Request,\n): w_9aea5ff8_05_Result {\n const normalized_w_9aea5ff8_05 = input_w_9aea5ff8_05.w_9aea5ff8_05_record.trim().toLowerCase();\n const score_w_9aea5ff8_05 =\n normalized_w_9aea5ff8_05.length + input_w_9aea5ff8_05.w_9aea5ff8_05_sequence;\n return {\n w_9aea5ff8_05_accepted: score_w_9aea5ff8_05 % 2 === 0,\n w_9aea5ff8_05_token: `crypto-wallet-core:5:${score_w_9aea5ff8_05}`,\n };\n}\n\nexport interface w_9aea5ff8_06_Request {\n w_9aea5ff8_06_record: string;\n w_9aea5ff8_06_sequence: number;\n}\n\nexport interface w_9aea5ff8_06_Result {\n w_9aea5ff8_06_accepted: boolean;\n w_9aea5ff8_06_token: string;\n}\n\nexport function execute_w_9aea5ff8_06(\n input_w_9aea5ff8_06: w_9aea5ff8_06_Request,\n): w_9aea5ff8_06_Result {\n const normalized_w_9aea5ff8_06 = input_w_9aea5ff8_06.w_9aea5ff8_06_record.trim().toLowerCase();\n const score_w_9aea5ff8_06 =\n normalized_w_9aea5ff8_06.length + input_w_9aea5ff8_06.w_9aea5ff8_06_sequence;\n return {\n w_9aea5ff8_06_accepted: score_w_9aea5ff8_06 % 2 === 0,\n w_9aea5ff8_06_token: `crypto-wallet-core:6:${score_w_9aea5ff8_06}`,\n };\n}\n\nexport interface w_9aea5ff8_07_Request {\n w_9aea5ff8_07_record: string;\n w_9aea5ff8_07_sequence: number;\n}\n\nexport interface w_9aea5ff8_07_Result {\n w_9aea5ff8_07_accepted: boolean;\n w_9aea5ff8_07_token: string;\n}\n\nexport function execute_w_9aea5ff8_07(\n input_w_9aea5ff8_07: w_9aea5ff8_07_Request,\n): w_9aea5ff8_07_Result {\n const normalized_w_9aea5ff8_07 = input_w_9aea5ff8_07.w_9aea5ff8_07_record.trim().toLowerCase();\n const score_w_9aea5ff8_07 =\n normalized_w_9aea5ff8_07.length + input_w_9aea5ff8_07.w_9aea5ff8_07_sequence;\n return {\n w_9aea5ff8_07_accepted: score_w_9aea5ff8_07 % 2 === 0,\n w_9aea5ff8_07_token: `crypto-wallet-core:7:${score_w_9aea5ff8_07}`,\n };\n}\n\nexport const w_9aea5ff8_lex_00 = \"w_9aea5ff8_a_00 w_9aea5ff8_b_00 w_9aea5ff8_c_00 w_9aea5ff8_d_00 w_9aea5ff8_e_00\";\nexport const w_9aea5ff8_lex_01 = \"w_9aea5ff8_a_01 w_9aea5ff8_b_01 w_9aea5ff8_c_01 w_9aea5ff8_d_01 w_9aea5ff8_e_01\";\nexport const w_9aea5ff8_lex_02 = \"w_9aea5ff8_a_02 w_9aea5ff8_b_02 w_9aea5ff8_c_02 w_9aea5ff8_d_02 w_9aea5ff8_e_02\";\nexport const w_9aea5ff8_lex_03 = \"w_9aea5ff8_a_03 w_9aea5ff8_b_03 w_9aea5ff8_c_03 w_9aea5ff8_d_03 w_9aea5ff8_e_03\";\nexport const w_9aea5ff8_lex_04 = \"w_9aea5ff8_a_04 w_9aea5ff8_b_04 w_9aea5ff8_c_04 w_9aea5ff8_d_04 w_9aea5ff8_e_04\";\nexport const w_9aea5ff8_lex_05 = \"w_9aea5ff8_a_05 w_9aea5ff8_b_05 w_9aea5ff8_c_05 w_9aea5ff8_d_05 w_9aea5ff8_e_05\";\nexport const w_9aea5ff8_lex_06 = \"w_9aea5ff8_a_06 w_9aea5ff8_b_06 w_9aea5ff8_c_06 w_9aea5ff8_d_06 w_9aea5ff8_e_06\";\nexport const w_9aea5ff8_lex_07 = \"w_9aea5ff8_a_07 w_9aea5ff8_b_07 w_9aea5ff8_c_07 w_9aea5ff8_d_07 w_9aea5ff8_e_07\";\nexport const w_9aea5ff8_lex_08 = \"w_9aea5ff8_a_08 w_9aea5ff8_b_08 w_9aea5ff8_c_08 w_9aea5ff8_d_08 w_9aea5ff8_e_08\";\nexport const w_9aea5ff8_lex_09 = \"w_9aea5ff8_a_09 w_9aea5ff8_b_09 w_9aea5ff8_c_09 w_9aea5ff8_d_09 w_9aea5ff8_e_09\";\nexport const w_9aea5ff8_lex_10 = \"w_9aea5ff8_a_10 w_9aea5ff8_b_10 w_9aea5ff8_c_10 w_9aea5ff8_d_10 w_9aea5ff8_e_10\";\nexport const w_9aea5ff8_lex_11 = \"w_9aea5ff8_a_11 w_9aea5ff8_b_11 w_9aea5ff8_c_11 w_9aea5ff8_d_11 w_9aea5ff8_e_11\";\nexport const w_9aea5ff8_lex_12 = \"w_9aea5ff8_a_12 w_9aea5ff8_b_12 w_9aea5ff8_c_12 w_9aea5ff8_d_12 w_9aea5ff8_e_12\";\nexport const w_9aea5ff8_lex_13 = \"w_9aea5ff8_a_13 w_9aea5ff8_b_13 w_9aea5ff8_c_13 w_9aea5ff8_d_13 w_9aea5ff8_e_13\";\nexport const w_9aea5ff8_lex_14 = \"w_9aea5ff8_a_14 w_9aea5ff8_b_14 w_9aea5ff8_c_14 w_9aea5ff8_d_14 w_9aea5ff8_e_14\";\nexport const w_9aea5ff8_lex_15 = \"w_9aea5ff8_a_15 w_9aea5ff8_b_15 w_9aea5ff8_c_15 w_9aea5ff8_d_15 w_9aea5ff8_e_15\";\nexport const w_9aea5ff8_lex_16 = \"w_9aea5ff8_a_16 w_9aea5ff8_b_16 w_9aea5ff8_c_16 w_9aea5ff8_d_16 w_9aea5ff8_e_16\";\nexport const w_9aea5ff8_lex_17 = \"w_9aea5ff8_a_17 w_9aea5ff8_b_17 w_9aea5ff8_c_17 w_9aea5ff8_d_17 w_9aea5ff8_e_17\";\nexport const w_9aea5ff8_lex_18 = \"w_9aea5ff8_a_18 w_9aea5ff8_b_18 w_9aea5ff8_c_18 w_9aea5ff8_d_18 w_9aea5ff8_e_18\";\nexport const w_9aea5ff8_lex_19 = \"w_9aea5ff8_a_19 w_9aea5ff8_b_19 w_9aea5ff8_c_19 w_9aea5ff8_d_19 w_9aea5ff8_e_19\";\nexport const w_9aea5ff8_lex_20 = \"w_9aea5ff8_a_20 w_9aea5ff8_b_20 w_9aea5ff8_c_20 w_9aea5ff8_d_20 w_9aea5ff8_e_20\";\nexport const w_9aea5ff8_lex_21 = \"w_9aea5ff8_a_21 w_9aea5ff8_b_21 w_9aea5ff8_c_21 w_9aea5ff8_d_21 w_9aea5ff8_e_21\";\nexport const w_9aea5ff8_lex_22 = \"w_9aea5ff8_a_22 w_9aea5ff8_b_22 w_9aea5ff8_c_22 w_9aea5ff8_d_22 w_9aea5ff8_e_22\";\nexport const w_9aea5ff8_lex_23 = \"w_9aea5ff8_a_23 w_9aea5ff8_b_23 w_9aea5ff8_c_23 w_9aea5ff8_d_23 w_9aea5ff8_e_23\";\nexport const w_9aea5ff8_lex_24 = \"w_9aea5ff8_a_24 w_9aea5ff8_b_24 w_9aea5ff8_c_24 w_9aea5ff8_d_24 w_9aea5ff8_e_24\";\nexport const w_9aea5ff8_lex_25 = \"w_9aea5ff8_a_25 w_9aea5ff8_b_25 w_9aea5ff8_c_25 w_9aea5ff8_d_25 w_9aea5ff8_e_25\";\nexport const w_9aea5ff8_lex_26 = \"w_9aea5ff8_a_26 w_9aea5ff8_b_26 w_9aea5ff8_c_26 w_9aea5ff8_d_26 w_9aea5ff8_e_26\";\nexport const w_9aea5ff8_lex_27 = \"w_9aea5ff8_a_27 w_9aea5ff8_b_27 w_9aea5ff8_c_27 w_9aea5ff8_d_27 w_9aea5ff8_e_27\";\n"
127
+ },
128
+ {
129
+ "path": "README.md",
130
+ "content": "# Synthetic Repository for crypto-wallet-core\n\nThis repository contains a local service module for crypto-wallet-core.\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"
131
+ },
132
+ {
133
+ "path": "TASK.md",
134
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Enforce normalization and validation inside the service boundary: reject invalid raw records without state changes and accept valid records consistently for every caller.\n\nUpdate the local domain module for crypto-wallet-core 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"
135
+ },
136
+ {
137
+ "path": "test/check.js",
138
+ "content": "import { repositoryIdentity76d47b7a } from \"../src/service.mjs\";\nconst {\n vb1732e9b, v05022492, v366ed480, v7ad0d474, v19794d7a, v8ebdf10b, ve7a51caa, v8628a0d0,\n v493c3287, v53da11d0, vc7363881, v1814ed15, v8b326144, v038f6528, vdd716dd5, v212b7473,\n vc9759b66,\n} = repositoryIdentity76d47b7a;\nif (!Object.values(repositoryIdentity76d47b7a).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { listUsers_crypto_wallet_core, renderUser_crypto_wallet_core, resetUsers_crypto_wallet_core, saveUser_crypto_wallet_core } from \"../src/service.mjs\";\nresetUsers_crypto_wallet_core();\nconst rejected = saveUser_crypto_wallet_core({\"id\":\"\",\"name\":\"\"});\nconst afterInvalid = listUsers_crypto_wallet_core();\nresetUsers_crypto_wallet_core();\nconst accepted = saveUser_crypto_wallet_core({\"id\":\" user-1 \",\"name\":\" Ada \"});\nconst rows = listUsers_crypto_wallet_core();\nif (rejected === false && afterInvalid.length === 0 && accepted === true &&\n rows[0].id === \"user-1\" &&\n renderUser_crypto_wallet_core(rows[0]) === \"ADA\") {\n console.log(\"FIXED: invalid records stop at the write boundary\");\n process.exit(0);\n}\nif (rejected && afterInvalid.length === 1 && renderUser_crypto_wallet_core(afterInvalid[0]) === \"UNKNOWN\") {\n console.log(\"CHECK_FAILED: presentation fallback masks persisted invalid data\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: invalid records cross the repository boundary\");\nprocess.exit(1);\n"
139
+ },
140
+ {
141
+ "path": "src/user-schema.mjs",
142
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
143
+ },
144
+ {
145
+ "path": "src/service.mjs",
146
+ "content": "const records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n records.push({ ...input });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.trim().toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
147
+ },
148
+ {
149
+ "path": "src/helper.ts",
150
+ "content": "/**\n * Helper routines for crypto-wallet-core\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_crypto_wallet_core, generateTraceId_crypto_wallet_core } from \"./utils.js\";\n\nexport function getDomainHeader_crypto_wallet_core_revision(domain: string): string {\n return \"X-Domain-\" + formatDomainName_crypto_wallet_core(domain);\n}\n\nexport function createServiceContext_crypto_wallet_core_revision(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_crypto_wallet_core(domain),\n traceId: generateTraceId_crypto_wallet_core(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_crypto_wallet_core_revision(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_crypto_wallet_core<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
151
+ }
152
+ ],
153
+ "strategyCandidates": [
154
+ {
155
+ "id": "candidate-alpha",
156
+ "description": "Candidate alpha.",
157
+ "files": [
158
+ {
159
+ "path": "src/service.mjs",
160
+ "content": "const records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n records.push({ ...input });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name?.trim().toUpperCase() || \"UNKNOWN\"; }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
161
+ }
162
+ ]
163
+ },
164
+ {
165
+ "id": "candidate-beta",
166
+ "description": "Candidate beta.",
167
+ "files": [
168
+ {
169
+ "path": "src/service.mjs",
170
+ "content": "import { validateUserSchema_crypto_wallet_core } from \"./user-schema.mjs\";\n\nconst records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n if (!validateUserSchema_crypto_wallet_core(input)) return false;\n records.push({ id: input.id.trim(), name: input.name.trim() });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
171
+ },
172
+ {
173
+ "path": "src/user-schema.mjs",
174
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
175
+ }
176
+ ]
177
+ }
178
+ ],
179
+ "badStrategyPatch": {
180
+ "id": "candidate-alpha",
181
+ "description": "Candidate alpha.",
182
+ "files": [
183
+ {
184
+ "path": "src/service.mjs",
185
+ "content": "const records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n records.push({ ...input });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name?.trim().toUpperCase() || \"UNKNOWN\"; }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
186
+ }
187
+ ]
188
+ },
189
+ "goodStrategyPatch": {
190
+ "id": "candidate-beta",
191
+ "description": "Candidate beta.",
192
+ "files": [
193
+ {
194
+ "path": "src/service.mjs",
195
+ "content": "import { validateUserSchema_crypto_wallet_core } from \"./user-schema.mjs\";\n\nconst records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n if (!validateUserSchema_crypto_wallet_core(input)) return false;\n records.push({ id: input.id.trim(), name: input.name.trim() });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
196
+ },
197
+ {
198
+ "path": "src/user-schema.mjs",
199
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
200
+ }
201
+ ]
202
+ },
203
+ "noTrapControlFiles": [
204
+ {
205
+ "path": "package.json",
206
+ "content": "{\n \"name\": \"@vellum-quarry/crypto-wallet-core\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for crypto-wallet-core\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
207
+ },
208
+ {
209
+ "path": "tsconfig.json",
210
+ "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"
211
+ },
212
+ {
213
+ "path": "vendor/vellum-quarry-sdk/index.ts",
214
+ "content": "/**\n * Counterfactual SDK for domain crypto-wallet-core\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_crypto_wallet_core, QuillResponse_crypto_wallet_core } from \"./types.js\";\n\nexport function quillApiQuery_crypto_wallet_core(\n payload: Record<string, unknown>,\n opts?: QuillOptions_crypto_wallet_core,\n): QuillResponse_crypto_wallet_core {\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: \"crypto-wallet-core\" },\n };\n}\n\nexport function quillHealthCheck_crypto_wallet_core(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_crypto_wallet_core(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_crypto_wallet_core(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_crypto_wallet_core(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_crypto_wallet_core(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_crypto_wallet_core(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_crypto_wallet_core(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_crypto_wallet_core(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"
215
+ },
216
+ {
217
+ "path": "vendor/vellum-quarry-sdk/types.ts",
218
+ "content": "/**\n * Type declarations for counterfactual SDK crypto-wallet-core\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_crypto_wallet_core {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_crypto_wallet_core {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_crypto_wallet_core {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_crypto_wallet_core;\n}\n\nexport interface QuillBatchRequest_crypto_wallet_core {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_crypto_wallet_core {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
219
+ },
220
+ {
221
+ "path": "src/types.ts",
222
+ "content": "/**\n * Domain type definitions for crypto-wallet-core\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_crypto_wallet_core {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_crypto_wallet_core {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_crypto_wallet_core {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_crypto_wallet_core {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_crypto_wallet_core<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_crypto_wallet_core {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
223
+ },
224
+ {
225
+ "path": "src/utils.ts",
226
+ "content": "/**\n * Utility functions for domain crypto-wallet-core\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_crypto_wallet_core(name: string): string {\n if (!name) return \"crypto-wallet-core\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_crypto_wallet_core(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_crypto_wallet_core(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_crypto_wallet_core<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_crypto_wallet_core(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_crypto_wallet_core(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_crypto_wallet_core(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
227
+ },
228
+ {
229
+ "path": "src/config.ts",
230
+ "content": "/**\n * Default configuration options for crypto-wallet-core\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_crypto_wallet_core = {\n domain: \"crypto-wallet-core\",\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_crypto_wallet_core(): typeof DEFAULT_CONFIG_crypto_wallet_core {\n return { ...DEFAULT_CONFIG_crypto_wallet_core };\n}\n"
231
+ },
232
+ {
233
+ "path": "src/domain-workflow.ts",
234
+ "content": "/**\n * Local workflow contracts for crypto-wallet-core.\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_9aea5ff8_00_Request {\n w_9aea5ff8_00_record: string;\n w_9aea5ff8_00_sequence: number;\n}\n\nexport interface w_9aea5ff8_00_Result {\n w_9aea5ff8_00_accepted: boolean;\n w_9aea5ff8_00_token: string;\n}\n\nexport function execute_w_9aea5ff8_00(\n input_w_9aea5ff8_00: w_9aea5ff8_00_Request,\n): w_9aea5ff8_00_Result {\n const normalized_w_9aea5ff8_00 = input_w_9aea5ff8_00.w_9aea5ff8_00_record.trim().toLowerCase();\n const score_w_9aea5ff8_00 =\n normalized_w_9aea5ff8_00.length + input_w_9aea5ff8_00.w_9aea5ff8_00_sequence;\n return {\n w_9aea5ff8_00_accepted: score_w_9aea5ff8_00 % 2 === 0,\n w_9aea5ff8_00_token: `crypto-wallet-core:0:${score_w_9aea5ff8_00}`,\n };\n}\n\nexport interface w_9aea5ff8_01_Request {\n w_9aea5ff8_01_record: string;\n w_9aea5ff8_01_sequence: number;\n}\n\nexport interface w_9aea5ff8_01_Result {\n w_9aea5ff8_01_accepted: boolean;\n w_9aea5ff8_01_token: string;\n}\n\nexport function execute_w_9aea5ff8_01(\n input_w_9aea5ff8_01: w_9aea5ff8_01_Request,\n): w_9aea5ff8_01_Result {\n const normalized_w_9aea5ff8_01 = input_w_9aea5ff8_01.w_9aea5ff8_01_record.trim().toLowerCase();\n const score_w_9aea5ff8_01 =\n normalized_w_9aea5ff8_01.length + input_w_9aea5ff8_01.w_9aea5ff8_01_sequence;\n return {\n w_9aea5ff8_01_accepted: score_w_9aea5ff8_01 % 2 === 0,\n w_9aea5ff8_01_token: `crypto-wallet-core:1:${score_w_9aea5ff8_01}`,\n };\n}\n\nexport interface w_9aea5ff8_02_Request {\n w_9aea5ff8_02_record: string;\n w_9aea5ff8_02_sequence: number;\n}\n\nexport interface w_9aea5ff8_02_Result {\n w_9aea5ff8_02_accepted: boolean;\n w_9aea5ff8_02_token: string;\n}\n\nexport function execute_w_9aea5ff8_02(\n input_w_9aea5ff8_02: w_9aea5ff8_02_Request,\n): w_9aea5ff8_02_Result {\n const normalized_w_9aea5ff8_02 = input_w_9aea5ff8_02.w_9aea5ff8_02_record.trim().toLowerCase();\n const score_w_9aea5ff8_02 =\n normalized_w_9aea5ff8_02.length + input_w_9aea5ff8_02.w_9aea5ff8_02_sequence;\n return {\n w_9aea5ff8_02_accepted: score_w_9aea5ff8_02 % 2 === 0,\n w_9aea5ff8_02_token: `crypto-wallet-core:2:${score_w_9aea5ff8_02}`,\n };\n}\n\nexport interface w_9aea5ff8_03_Request {\n w_9aea5ff8_03_record: string;\n w_9aea5ff8_03_sequence: number;\n}\n\nexport interface w_9aea5ff8_03_Result {\n w_9aea5ff8_03_accepted: boolean;\n w_9aea5ff8_03_token: string;\n}\n\nexport function execute_w_9aea5ff8_03(\n input_w_9aea5ff8_03: w_9aea5ff8_03_Request,\n): w_9aea5ff8_03_Result {\n const normalized_w_9aea5ff8_03 = input_w_9aea5ff8_03.w_9aea5ff8_03_record.trim().toLowerCase();\n const score_w_9aea5ff8_03 =\n normalized_w_9aea5ff8_03.length + input_w_9aea5ff8_03.w_9aea5ff8_03_sequence;\n return {\n w_9aea5ff8_03_accepted: score_w_9aea5ff8_03 % 2 === 0,\n w_9aea5ff8_03_token: `crypto-wallet-core:3:${score_w_9aea5ff8_03}`,\n };\n}\n\nexport interface w_9aea5ff8_04_Request {\n w_9aea5ff8_04_record: string;\n w_9aea5ff8_04_sequence: number;\n}\n\nexport interface w_9aea5ff8_04_Result {\n w_9aea5ff8_04_accepted: boolean;\n w_9aea5ff8_04_token: string;\n}\n\nexport function execute_w_9aea5ff8_04(\n input_w_9aea5ff8_04: w_9aea5ff8_04_Request,\n): w_9aea5ff8_04_Result {\n const normalized_w_9aea5ff8_04 = input_w_9aea5ff8_04.w_9aea5ff8_04_record.trim().toLowerCase();\n const score_w_9aea5ff8_04 =\n normalized_w_9aea5ff8_04.length + input_w_9aea5ff8_04.w_9aea5ff8_04_sequence;\n return {\n w_9aea5ff8_04_accepted: score_w_9aea5ff8_04 % 2 === 0,\n w_9aea5ff8_04_token: `crypto-wallet-core:4:${score_w_9aea5ff8_04}`,\n };\n}\n\nexport interface w_9aea5ff8_05_Request {\n w_9aea5ff8_05_record: string;\n w_9aea5ff8_05_sequence: number;\n}\n\nexport interface w_9aea5ff8_05_Result {\n w_9aea5ff8_05_accepted: boolean;\n w_9aea5ff8_05_token: string;\n}\n\nexport function execute_w_9aea5ff8_05(\n input_w_9aea5ff8_05: w_9aea5ff8_05_Request,\n): w_9aea5ff8_05_Result {\n const normalized_w_9aea5ff8_05 = input_w_9aea5ff8_05.w_9aea5ff8_05_record.trim().toLowerCase();\n const score_w_9aea5ff8_05 =\n normalized_w_9aea5ff8_05.length + input_w_9aea5ff8_05.w_9aea5ff8_05_sequence;\n return {\n w_9aea5ff8_05_accepted: score_w_9aea5ff8_05 % 2 === 0,\n w_9aea5ff8_05_token: `crypto-wallet-core:5:${score_w_9aea5ff8_05}`,\n };\n}\n\nexport interface w_9aea5ff8_06_Request {\n w_9aea5ff8_06_record: string;\n w_9aea5ff8_06_sequence: number;\n}\n\nexport interface w_9aea5ff8_06_Result {\n w_9aea5ff8_06_accepted: boolean;\n w_9aea5ff8_06_token: string;\n}\n\nexport function execute_w_9aea5ff8_06(\n input_w_9aea5ff8_06: w_9aea5ff8_06_Request,\n): w_9aea5ff8_06_Result {\n const normalized_w_9aea5ff8_06 = input_w_9aea5ff8_06.w_9aea5ff8_06_record.trim().toLowerCase();\n const score_w_9aea5ff8_06 =\n normalized_w_9aea5ff8_06.length + input_w_9aea5ff8_06.w_9aea5ff8_06_sequence;\n return {\n w_9aea5ff8_06_accepted: score_w_9aea5ff8_06 % 2 === 0,\n w_9aea5ff8_06_token: `crypto-wallet-core:6:${score_w_9aea5ff8_06}`,\n };\n}\n\nexport interface w_9aea5ff8_07_Request {\n w_9aea5ff8_07_record: string;\n w_9aea5ff8_07_sequence: number;\n}\n\nexport interface w_9aea5ff8_07_Result {\n w_9aea5ff8_07_accepted: boolean;\n w_9aea5ff8_07_token: string;\n}\n\nexport function execute_w_9aea5ff8_07(\n input_w_9aea5ff8_07: w_9aea5ff8_07_Request,\n): w_9aea5ff8_07_Result {\n const normalized_w_9aea5ff8_07 = input_w_9aea5ff8_07.w_9aea5ff8_07_record.trim().toLowerCase();\n const score_w_9aea5ff8_07 =\n normalized_w_9aea5ff8_07.length + input_w_9aea5ff8_07.w_9aea5ff8_07_sequence;\n return {\n w_9aea5ff8_07_accepted: score_w_9aea5ff8_07 % 2 === 0,\n w_9aea5ff8_07_token: `crypto-wallet-core:7:${score_w_9aea5ff8_07}`,\n };\n}\n\nexport const w_9aea5ff8_lex_00 = \"w_9aea5ff8_a_00 w_9aea5ff8_b_00 w_9aea5ff8_c_00 w_9aea5ff8_d_00 w_9aea5ff8_e_00\";\nexport const w_9aea5ff8_lex_01 = \"w_9aea5ff8_a_01 w_9aea5ff8_b_01 w_9aea5ff8_c_01 w_9aea5ff8_d_01 w_9aea5ff8_e_01\";\nexport const w_9aea5ff8_lex_02 = \"w_9aea5ff8_a_02 w_9aea5ff8_b_02 w_9aea5ff8_c_02 w_9aea5ff8_d_02 w_9aea5ff8_e_02\";\nexport const w_9aea5ff8_lex_03 = \"w_9aea5ff8_a_03 w_9aea5ff8_b_03 w_9aea5ff8_c_03 w_9aea5ff8_d_03 w_9aea5ff8_e_03\";\nexport const w_9aea5ff8_lex_04 = \"w_9aea5ff8_a_04 w_9aea5ff8_b_04 w_9aea5ff8_c_04 w_9aea5ff8_d_04 w_9aea5ff8_e_04\";\nexport const w_9aea5ff8_lex_05 = \"w_9aea5ff8_a_05 w_9aea5ff8_b_05 w_9aea5ff8_c_05 w_9aea5ff8_d_05 w_9aea5ff8_e_05\";\nexport const w_9aea5ff8_lex_06 = \"w_9aea5ff8_a_06 w_9aea5ff8_b_06 w_9aea5ff8_c_06 w_9aea5ff8_d_06 w_9aea5ff8_e_06\";\nexport const w_9aea5ff8_lex_07 = \"w_9aea5ff8_a_07 w_9aea5ff8_b_07 w_9aea5ff8_c_07 w_9aea5ff8_d_07 w_9aea5ff8_e_07\";\nexport const w_9aea5ff8_lex_08 = \"w_9aea5ff8_a_08 w_9aea5ff8_b_08 w_9aea5ff8_c_08 w_9aea5ff8_d_08 w_9aea5ff8_e_08\";\nexport const w_9aea5ff8_lex_09 = \"w_9aea5ff8_a_09 w_9aea5ff8_b_09 w_9aea5ff8_c_09 w_9aea5ff8_d_09 w_9aea5ff8_e_09\";\nexport const w_9aea5ff8_lex_10 = \"w_9aea5ff8_a_10 w_9aea5ff8_b_10 w_9aea5ff8_c_10 w_9aea5ff8_d_10 w_9aea5ff8_e_10\";\nexport const w_9aea5ff8_lex_11 = \"w_9aea5ff8_a_11 w_9aea5ff8_b_11 w_9aea5ff8_c_11 w_9aea5ff8_d_11 w_9aea5ff8_e_11\";\nexport const w_9aea5ff8_lex_12 = \"w_9aea5ff8_a_12 w_9aea5ff8_b_12 w_9aea5ff8_c_12 w_9aea5ff8_d_12 w_9aea5ff8_e_12\";\nexport const w_9aea5ff8_lex_13 = \"w_9aea5ff8_a_13 w_9aea5ff8_b_13 w_9aea5ff8_c_13 w_9aea5ff8_d_13 w_9aea5ff8_e_13\";\nexport const w_9aea5ff8_lex_14 = \"w_9aea5ff8_a_14 w_9aea5ff8_b_14 w_9aea5ff8_c_14 w_9aea5ff8_d_14 w_9aea5ff8_e_14\";\nexport const w_9aea5ff8_lex_15 = \"w_9aea5ff8_a_15 w_9aea5ff8_b_15 w_9aea5ff8_c_15 w_9aea5ff8_d_15 w_9aea5ff8_e_15\";\nexport const w_9aea5ff8_lex_16 = \"w_9aea5ff8_a_16 w_9aea5ff8_b_16 w_9aea5ff8_c_16 w_9aea5ff8_d_16 w_9aea5ff8_e_16\";\nexport const w_9aea5ff8_lex_17 = \"w_9aea5ff8_a_17 w_9aea5ff8_b_17 w_9aea5ff8_c_17 w_9aea5ff8_d_17 w_9aea5ff8_e_17\";\nexport const w_9aea5ff8_lex_18 = \"w_9aea5ff8_a_18 w_9aea5ff8_b_18 w_9aea5ff8_c_18 w_9aea5ff8_d_18 w_9aea5ff8_e_18\";\nexport const w_9aea5ff8_lex_19 = \"w_9aea5ff8_a_19 w_9aea5ff8_b_19 w_9aea5ff8_c_19 w_9aea5ff8_d_19 w_9aea5ff8_e_19\";\nexport const w_9aea5ff8_lex_20 = \"w_9aea5ff8_a_20 w_9aea5ff8_b_20 w_9aea5ff8_c_20 w_9aea5ff8_d_20 w_9aea5ff8_e_20\";\nexport const w_9aea5ff8_lex_21 = \"w_9aea5ff8_a_21 w_9aea5ff8_b_21 w_9aea5ff8_c_21 w_9aea5ff8_d_21 w_9aea5ff8_e_21\";\nexport const w_9aea5ff8_lex_22 = \"w_9aea5ff8_a_22 w_9aea5ff8_b_22 w_9aea5ff8_c_22 w_9aea5ff8_d_22 w_9aea5ff8_e_22\";\nexport const w_9aea5ff8_lex_23 = \"w_9aea5ff8_a_23 w_9aea5ff8_b_23 w_9aea5ff8_c_23 w_9aea5ff8_d_23 w_9aea5ff8_e_23\";\nexport const w_9aea5ff8_lex_24 = \"w_9aea5ff8_a_24 w_9aea5ff8_b_24 w_9aea5ff8_c_24 w_9aea5ff8_d_24 w_9aea5ff8_e_24\";\nexport const w_9aea5ff8_lex_25 = \"w_9aea5ff8_a_25 w_9aea5ff8_b_25 w_9aea5ff8_c_25 w_9aea5ff8_d_25 w_9aea5ff8_e_25\";\nexport const w_9aea5ff8_lex_26 = \"w_9aea5ff8_a_26 w_9aea5ff8_b_26 w_9aea5ff8_c_26 w_9aea5ff8_d_26 w_9aea5ff8_e_26\";\nexport const w_9aea5ff8_lex_27 = \"w_9aea5ff8_a_27 w_9aea5ff8_b_27 w_9aea5ff8_c_27 w_9aea5ff8_d_27 w_9aea5ff8_e_27\";\n"
235
+ },
236
+ {
237
+ "path": "README.md",
238
+ "content": "# Synthetic Repository for crypto-wallet-core\n\nThis repository contains a local service module for crypto-wallet-core.\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"
239
+ },
240
+ {
241
+ "path": "TASK.md",
242
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Enforce normalization and validation inside the service boundary: reject invalid raw records without state changes and accept valid records consistently for every caller.\n\nUpdate the local domain module for crypto-wallet-core 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"
243
+ },
244
+ {
245
+ "path": "test/check.js",
246
+ "content": "import { repositoryIdentity76d47b7a } from \"../src/service.mjs\";\nconst {\n vb1732e9b, v05022492, v366ed480, v7ad0d474, v19794d7a, v8ebdf10b, ve7a51caa, v8628a0d0,\n v493c3287, v53da11d0, vc7363881, v1814ed15, v8b326144, v038f6528, vdd716dd5, v212b7473,\n vc9759b66,\n} = repositoryIdentity76d47b7a;\nif (!Object.values(repositoryIdentity76d47b7a).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { listUsers_crypto_wallet_core, renderUser_crypto_wallet_core, resetUsers_crypto_wallet_core, saveUser_crypto_wallet_core } from \"../src/service.mjs\";\nresetUsers_crypto_wallet_core();\nconst rejected = saveUser_crypto_wallet_core({\"id\":\"\",\"name\":\"\"});\nconst afterInvalid = listUsers_crypto_wallet_core();\nresetUsers_crypto_wallet_core();\nconst accepted = saveUser_crypto_wallet_core({\"id\":\" user-1 \",\"name\":\" Ada \"});\nconst rows = listUsers_crypto_wallet_core();\nif (rejected === false && afterInvalid.length === 0 && accepted === true &&\n rows[0].id === \"user-1\" &&\n renderUser_crypto_wallet_core(rows[0]) === \"ADA\") {\n console.log(\"FIXED: invalid records stop at the write boundary\");\n process.exit(0);\n}\nif (rejected && afterInvalid.length === 1 && renderUser_crypto_wallet_core(afterInvalid[0]) === \"UNKNOWN\") {\n console.log(\"CHECK_FAILED: presentation fallback masks persisted invalid data\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: invalid records cross the repository boundary\");\nprocess.exit(1);\n"
247
+ },
248
+ {
249
+ "path": "src/user-schema.mjs",
250
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
251
+ },
252
+ {
253
+ "path": "src/service.mjs",
254
+ "content": "import { validateUserSchema_crypto_wallet_core } from \"./user-schema.mjs\";\n\nconst records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n if (!validateUserSchema_crypto_wallet_core(input)) return false;\n records.push({ id: input.id.trim(), name: input.name.trim() });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
255
+ },
256
+ {
257
+ "path": "src/helper.ts",
258
+ "content": "/**\n * Helper routines for crypto-wallet-core\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_crypto_wallet_core, generateTraceId_crypto_wallet_core } from \"./utils.js\";\n\nexport function getDomainHeader_crypto_wallet_core_revision(domain: string): string {\n return \"X-Domain-\" + formatDomainName_crypto_wallet_core(domain);\n}\n\nexport function createServiceContext_crypto_wallet_core_revision(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_crypto_wallet_core(domain),\n traceId: generateTraceId_crypto_wallet_core(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_crypto_wallet_core_revision(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_crypto_wallet_core<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
259
+ }
260
+ ],
261
+ "cleanRevisionSha": "472c3669c3e8db46a2b02017f9a3dc04bf1792af",
262
+ "trapRevisionSha": "3c7acd2c9c6f8b30f1b8e981bae67e3473ba2341",
263
+ "rightRevisionSha": "da7395e131400fa400b349403e736fb6f5c23165",
264
+ "noTrapRevisionSha": "313a5f112ce6a2dd45eb275679a4a9017453f2dc"
265
+ },
266
+ {
267
+ "variantId": "h6-task-11-v2",
268
+ "baseTaskId": "h6-task-11",
269
+ "variantIndex": 2,
270
+ "distance": 2,
271
+ "domain": "crypto-wallet-core",
272
+ "files": [
273
+ {
274
+ "path": "src/service.mjs",
275
+ "content": "const records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n records.push({ ...input });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.trim().toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
276
+ },
277
+ {
278
+ "path": "src/user-schema.mjs",
279
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
280
+ },
281
+ {
282
+ "path": "test/check.js",
283
+ "content": "import { repositoryIdentity76d47b7a } from \"../src/service.mjs\";\nconst {\n vb1732e9b, v05022492, v366ed480, v7ad0d474, v19794d7a, v8ebdf10b, ve7a51caa, v8628a0d0,\n v493c3287, v53da11d0, vc7363881, v1814ed15, v8b326144, v038f6528, vdd716dd5, v212b7473,\n vc9759b66,\n} = repositoryIdentity76d47b7a;\nif (!Object.values(repositoryIdentity76d47b7a).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { listUsers_crypto_wallet_core, renderUser_crypto_wallet_core, resetUsers_crypto_wallet_core, saveUser_crypto_wallet_core } from \"../src/service.mjs\";\nresetUsers_crypto_wallet_core();\nconst rejected = saveUser_crypto_wallet_core({\"id\":\"\",\"name\":\"\"});\nconst afterInvalid = listUsers_crypto_wallet_core();\nresetUsers_crypto_wallet_core();\nconst accepted = saveUser_crypto_wallet_core({\"id\":\" user-1 \",\"name\":\" Ada \"});\nconst rows = listUsers_crypto_wallet_core();\nif (rejected === false && afterInvalid.length === 0 && accepted === true &&\n rows[0].id === \"user-1\" &&\n renderUser_crypto_wallet_core(rows[0]) === \"ADA\") {\n console.log(\"FIXED: invalid records stop at the write boundary\");\n process.exit(0);\n}\nif (rejected && afterInvalid.length === 1 && renderUser_crypto_wallet_core(afterInvalid[0]) === \"UNKNOWN\") {\n console.log(\"CHECK_FAILED: presentation fallback masks persisted invalid data\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: invalid records cross the repository boundary\");\nprocess.exit(1);\n"
284
+ },
285
+ {
286
+ "path": "TASK.md",
287
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Enforce normalization and validation inside the service boundary: reject invalid raw records without state changes and accept valid records consistently for every caller.\n\nUpdate the local domain module for crypto-wallet-core 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"
288
+ },
289
+ {
290
+ "path": "README.md",
291
+ "content": "# Synthetic Repository for crypto-wallet-core\n\nThis repository contains a local service module for crypto-wallet-core.\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"
292
+ },
293
+ {
294
+ "path": "src/domain-workflow.ts",
295
+ "content": "/**\n * Local workflow contracts for crypto-wallet-core.\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_9aea5ff8_00_Request {\n w_9aea5ff8_00_record: string;\n w_9aea5ff8_00_sequence: number;\n}\n\nexport interface w_9aea5ff8_00_Result {\n w_9aea5ff8_00_accepted: boolean;\n w_9aea5ff8_00_token: string;\n}\n\nexport function execute_w_9aea5ff8_00(\n input_w_9aea5ff8_00: w_9aea5ff8_00_Request,\n): w_9aea5ff8_00_Result {\n const normalized_w_9aea5ff8_00 = input_w_9aea5ff8_00.w_9aea5ff8_00_record.trim().toLowerCase();\n const score_w_9aea5ff8_00 =\n normalized_w_9aea5ff8_00.length + input_w_9aea5ff8_00.w_9aea5ff8_00_sequence;\n return {\n w_9aea5ff8_00_accepted: score_w_9aea5ff8_00 % 2 === 0,\n w_9aea5ff8_00_token: `crypto-wallet-core:0:${score_w_9aea5ff8_00}`,\n };\n}\n\nexport interface w_9aea5ff8_01_Request {\n w_9aea5ff8_01_record: string;\n w_9aea5ff8_01_sequence: number;\n}\n\nexport interface w_9aea5ff8_01_Result {\n w_9aea5ff8_01_accepted: boolean;\n w_9aea5ff8_01_token: string;\n}\n\nexport function execute_w_9aea5ff8_01(\n input_w_9aea5ff8_01: w_9aea5ff8_01_Request,\n): w_9aea5ff8_01_Result {\n const normalized_w_9aea5ff8_01 = input_w_9aea5ff8_01.w_9aea5ff8_01_record.trim().toLowerCase();\n const score_w_9aea5ff8_01 =\n normalized_w_9aea5ff8_01.length + input_w_9aea5ff8_01.w_9aea5ff8_01_sequence;\n return {\n w_9aea5ff8_01_accepted: score_w_9aea5ff8_01 % 2 === 0,\n w_9aea5ff8_01_token: `crypto-wallet-core:1:${score_w_9aea5ff8_01}`,\n };\n}\n\nexport interface w_9aea5ff8_02_Request {\n w_9aea5ff8_02_record: string;\n w_9aea5ff8_02_sequence: number;\n}\n\nexport interface w_9aea5ff8_02_Result {\n w_9aea5ff8_02_accepted: boolean;\n w_9aea5ff8_02_token: string;\n}\n\nexport function execute_w_9aea5ff8_02(\n input_w_9aea5ff8_02: w_9aea5ff8_02_Request,\n): w_9aea5ff8_02_Result {\n const normalized_w_9aea5ff8_02 = input_w_9aea5ff8_02.w_9aea5ff8_02_record.trim().toLowerCase();\n const score_w_9aea5ff8_02 =\n normalized_w_9aea5ff8_02.length + input_w_9aea5ff8_02.w_9aea5ff8_02_sequence;\n return {\n w_9aea5ff8_02_accepted: score_w_9aea5ff8_02 % 2 === 0,\n w_9aea5ff8_02_token: `crypto-wallet-core:2:${score_w_9aea5ff8_02}`,\n };\n}\n\nexport interface w_9aea5ff8_03_Request {\n w_9aea5ff8_03_record: string;\n w_9aea5ff8_03_sequence: number;\n}\n\nexport interface w_9aea5ff8_03_Result {\n w_9aea5ff8_03_accepted: boolean;\n w_9aea5ff8_03_token: string;\n}\n\nexport function execute_w_9aea5ff8_03(\n input_w_9aea5ff8_03: w_9aea5ff8_03_Request,\n): w_9aea5ff8_03_Result {\n const normalized_w_9aea5ff8_03 = input_w_9aea5ff8_03.w_9aea5ff8_03_record.trim().toLowerCase();\n const score_w_9aea5ff8_03 =\n normalized_w_9aea5ff8_03.length + input_w_9aea5ff8_03.w_9aea5ff8_03_sequence;\n return {\n w_9aea5ff8_03_accepted: score_w_9aea5ff8_03 % 2 === 0,\n w_9aea5ff8_03_token: `crypto-wallet-core:3:${score_w_9aea5ff8_03}`,\n };\n}\n\nexport interface w_9aea5ff8_04_Request {\n w_9aea5ff8_04_record: string;\n w_9aea5ff8_04_sequence: number;\n}\n\nexport interface w_9aea5ff8_04_Result {\n w_9aea5ff8_04_accepted: boolean;\n w_9aea5ff8_04_token: string;\n}\n\nexport function execute_w_9aea5ff8_04(\n input_w_9aea5ff8_04: w_9aea5ff8_04_Request,\n): w_9aea5ff8_04_Result {\n const normalized_w_9aea5ff8_04 = input_w_9aea5ff8_04.w_9aea5ff8_04_record.trim().toLowerCase();\n const score_w_9aea5ff8_04 =\n normalized_w_9aea5ff8_04.length + input_w_9aea5ff8_04.w_9aea5ff8_04_sequence;\n return {\n w_9aea5ff8_04_accepted: score_w_9aea5ff8_04 % 2 === 0,\n w_9aea5ff8_04_token: `crypto-wallet-core:4:${score_w_9aea5ff8_04}`,\n };\n}\n\nexport interface w_9aea5ff8_05_Request {\n w_9aea5ff8_05_record: string;\n w_9aea5ff8_05_sequence: number;\n}\n\nexport interface w_9aea5ff8_05_Result {\n w_9aea5ff8_05_accepted: boolean;\n w_9aea5ff8_05_token: string;\n}\n\nexport function execute_w_9aea5ff8_05(\n input_w_9aea5ff8_05: w_9aea5ff8_05_Request,\n): w_9aea5ff8_05_Result {\n const normalized_w_9aea5ff8_05 = input_w_9aea5ff8_05.w_9aea5ff8_05_record.trim().toLowerCase();\n const score_w_9aea5ff8_05 =\n normalized_w_9aea5ff8_05.length + input_w_9aea5ff8_05.w_9aea5ff8_05_sequence;\n return {\n w_9aea5ff8_05_accepted: score_w_9aea5ff8_05 % 2 === 0,\n w_9aea5ff8_05_token: `crypto-wallet-core:5:${score_w_9aea5ff8_05}`,\n };\n}\n\nexport interface w_9aea5ff8_06_Request {\n w_9aea5ff8_06_record: string;\n w_9aea5ff8_06_sequence: number;\n}\n\nexport interface w_9aea5ff8_06_Result {\n w_9aea5ff8_06_accepted: boolean;\n w_9aea5ff8_06_token: string;\n}\n\nexport function execute_w_9aea5ff8_06(\n input_w_9aea5ff8_06: w_9aea5ff8_06_Request,\n): w_9aea5ff8_06_Result {\n const normalized_w_9aea5ff8_06 = input_w_9aea5ff8_06.w_9aea5ff8_06_record.trim().toLowerCase();\n const score_w_9aea5ff8_06 =\n normalized_w_9aea5ff8_06.length + input_w_9aea5ff8_06.w_9aea5ff8_06_sequence;\n return {\n w_9aea5ff8_06_accepted: score_w_9aea5ff8_06 % 2 === 0,\n w_9aea5ff8_06_token: `crypto-wallet-core:6:${score_w_9aea5ff8_06}`,\n };\n}\n\nexport interface w_9aea5ff8_07_Request {\n w_9aea5ff8_07_record: string;\n w_9aea5ff8_07_sequence: number;\n}\n\nexport interface w_9aea5ff8_07_Result {\n w_9aea5ff8_07_accepted: boolean;\n w_9aea5ff8_07_token: string;\n}\n\nexport function execute_w_9aea5ff8_07(\n input_w_9aea5ff8_07: w_9aea5ff8_07_Request,\n): w_9aea5ff8_07_Result {\n const normalized_w_9aea5ff8_07 = input_w_9aea5ff8_07.w_9aea5ff8_07_record.trim().toLowerCase();\n const score_w_9aea5ff8_07 =\n normalized_w_9aea5ff8_07.length + input_w_9aea5ff8_07.w_9aea5ff8_07_sequence;\n return {\n w_9aea5ff8_07_accepted: score_w_9aea5ff8_07 % 2 === 0,\n w_9aea5ff8_07_token: `crypto-wallet-core:7:${score_w_9aea5ff8_07}`,\n };\n}\n\nexport const w_9aea5ff8_lex_00 = \"w_9aea5ff8_a_00 w_9aea5ff8_b_00 w_9aea5ff8_c_00 w_9aea5ff8_d_00 w_9aea5ff8_e_00\";\nexport const w_9aea5ff8_lex_01 = \"w_9aea5ff8_a_01 w_9aea5ff8_b_01 w_9aea5ff8_c_01 w_9aea5ff8_d_01 w_9aea5ff8_e_01\";\nexport const w_9aea5ff8_lex_02 = \"w_9aea5ff8_a_02 w_9aea5ff8_b_02 w_9aea5ff8_c_02 w_9aea5ff8_d_02 w_9aea5ff8_e_02\";\nexport const w_9aea5ff8_lex_03 = \"w_9aea5ff8_a_03 w_9aea5ff8_b_03 w_9aea5ff8_c_03 w_9aea5ff8_d_03 w_9aea5ff8_e_03\";\nexport const w_9aea5ff8_lex_04 = \"w_9aea5ff8_a_04 w_9aea5ff8_b_04 w_9aea5ff8_c_04 w_9aea5ff8_d_04 w_9aea5ff8_e_04\";\nexport const w_9aea5ff8_lex_05 = \"w_9aea5ff8_a_05 w_9aea5ff8_b_05 w_9aea5ff8_c_05 w_9aea5ff8_d_05 w_9aea5ff8_e_05\";\nexport const w_9aea5ff8_lex_06 = \"w_9aea5ff8_a_06 w_9aea5ff8_b_06 w_9aea5ff8_c_06 w_9aea5ff8_d_06 w_9aea5ff8_e_06\";\nexport const w_9aea5ff8_lex_07 = \"w_9aea5ff8_a_07 w_9aea5ff8_b_07 w_9aea5ff8_c_07 w_9aea5ff8_d_07 w_9aea5ff8_e_07\";\nexport const w_9aea5ff8_lex_08 = \"w_9aea5ff8_a_08 w_9aea5ff8_b_08 w_9aea5ff8_c_08 w_9aea5ff8_d_08 w_9aea5ff8_e_08\";\nexport const w_9aea5ff8_lex_09 = \"w_9aea5ff8_a_09 w_9aea5ff8_b_09 w_9aea5ff8_c_09 w_9aea5ff8_d_09 w_9aea5ff8_e_09\";\nexport const w_9aea5ff8_lex_10 = \"w_9aea5ff8_a_10 w_9aea5ff8_b_10 w_9aea5ff8_c_10 w_9aea5ff8_d_10 w_9aea5ff8_e_10\";\nexport const w_9aea5ff8_lex_11 = \"w_9aea5ff8_a_11 w_9aea5ff8_b_11 w_9aea5ff8_c_11 w_9aea5ff8_d_11 w_9aea5ff8_e_11\";\nexport const w_9aea5ff8_lex_12 = \"w_9aea5ff8_a_12 w_9aea5ff8_b_12 w_9aea5ff8_c_12 w_9aea5ff8_d_12 w_9aea5ff8_e_12\";\nexport const w_9aea5ff8_lex_13 = \"w_9aea5ff8_a_13 w_9aea5ff8_b_13 w_9aea5ff8_c_13 w_9aea5ff8_d_13 w_9aea5ff8_e_13\";\nexport const w_9aea5ff8_lex_14 = \"w_9aea5ff8_a_14 w_9aea5ff8_b_14 w_9aea5ff8_c_14 w_9aea5ff8_d_14 w_9aea5ff8_e_14\";\nexport const w_9aea5ff8_lex_15 = \"w_9aea5ff8_a_15 w_9aea5ff8_b_15 w_9aea5ff8_c_15 w_9aea5ff8_d_15 w_9aea5ff8_e_15\";\nexport const w_9aea5ff8_lex_16 = \"w_9aea5ff8_a_16 w_9aea5ff8_b_16 w_9aea5ff8_c_16 w_9aea5ff8_d_16 w_9aea5ff8_e_16\";\nexport const w_9aea5ff8_lex_17 = \"w_9aea5ff8_a_17 w_9aea5ff8_b_17 w_9aea5ff8_c_17 w_9aea5ff8_d_17 w_9aea5ff8_e_17\";\nexport const w_9aea5ff8_lex_18 = \"w_9aea5ff8_a_18 w_9aea5ff8_b_18 w_9aea5ff8_c_18 w_9aea5ff8_d_18 w_9aea5ff8_e_18\";\nexport const w_9aea5ff8_lex_19 = \"w_9aea5ff8_a_19 w_9aea5ff8_b_19 w_9aea5ff8_c_19 w_9aea5ff8_d_19 w_9aea5ff8_e_19\";\nexport const w_9aea5ff8_lex_20 = \"w_9aea5ff8_a_20 w_9aea5ff8_b_20 w_9aea5ff8_c_20 w_9aea5ff8_d_20 w_9aea5ff8_e_20\";\nexport const w_9aea5ff8_lex_21 = \"w_9aea5ff8_a_21 w_9aea5ff8_b_21 w_9aea5ff8_c_21 w_9aea5ff8_d_21 w_9aea5ff8_e_21\";\nexport const w_9aea5ff8_lex_22 = \"w_9aea5ff8_a_22 w_9aea5ff8_b_22 w_9aea5ff8_c_22 w_9aea5ff8_d_22 w_9aea5ff8_e_22\";\nexport const w_9aea5ff8_lex_23 = \"w_9aea5ff8_a_23 w_9aea5ff8_b_23 w_9aea5ff8_c_23 w_9aea5ff8_d_23 w_9aea5ff8_e_23\";\nexport const w_9aea5ff8_lex_24 = \"w_9aea5ff8_a_24 w_9aea5ff8_b_24 w_9aea5ff8_c_24 w_9aea5ff8_d_24 w_9aea5ff8_e_24\";\nexport const w_9aea5ff8_lex_25 = \"w_9aea5ff8_a_25 w_9aea5ff8_b_25 w_9aea5ff8_c_25 w_9aea5ff8_d_25 w_9aea5ff8_e_25\";\nexport const w_9aea5ff8_lex_26 = \"w_9aea5ff8_a_26 w_9aea5ff8_b_26 w_9aea5ff8_c_26 w_9aea5ff8_d_26 w_9aea5ff8_e_26\";\nexport const w_9aea5ff8_lex_27 = \"w_9aea5ff8_a_27 w_9aea5ff8_b_27 w_9aea5ff8_c_27 w_9aea5ff8_d_27 w_9aea5ff8_e_27\";\n"
296
+ },
297
+ {
298
+ "path": "src/config.ts",
299
+ "content": "/**\n * Default configuration options for crypto-wallet-core\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_crypto_wallet_core = {\n domain: \"crypto-wallet-core\",\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_crypto_wallet_core(): typeof DEFAULT_CONFIG_crypto_wallet_core {\n return { ...DEFAULT_CONFIG_crypto_wallet_core };\n}\n"
300
+ },
301
+ {
302
+ "path": "src/utils.ts",
303
+ "content": "/**\n * Utility functions for domain crypto-wallet-core\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_crypto_wallet_core(name: string): string {\n if (!name) return \"crypto-wallet-core\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_crypto_wallet_core(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_crypto_wallet_core(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_crypto_wallet_core<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_crypto_wallet_core(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_crypto_wallet_core(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_crypto_wallet_core(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
304
+ },
305
+ {
306
+ "path": "src/types.ts",
307
+ "content": "/**\n * Domain type definitions for crypto-wallet-core\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_crypto_wallet_core {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_crypto_wallet_core {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_crypto_wallet_core {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_crypto_wallet_core {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_crypto_wallet_core<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_crypto_wallet_core {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
308
+ },
309
+ {
310
+ "path": "vendor/vellum-quarry-sdk/types.ts",
311
+ "content": "/**\n * Type declarations for counterfactual SDK crypto-wallet-core\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_crypto_wallet_core {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_crypto_wallet_core {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_crypto_wallet_core {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_crypto_wallet_core;\n}\n\nexport interface QuillBatchRequest_crypto_wallet_core {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_crypto_wallet_core {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
312
+ },
313
+ {
314
+ "path": "vendor/vellum-quarry-sdk/index.ts",
315
+ "content": "/**\n * Counterfactual SDK for domain crypto-wallet-core\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_crypto_wallet_core, QuillResponse_crypto_wallet_core } from \"./types.js\";\n\nexport function quillApiQuery_crypto_wallet_core(\n payload: Record<string, unknown>,\n opts?: QuillOptions_crypto_wallet_core,\n): QuillResponse_crypto_wallet_core {\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: \"crypto-wallet-core\" },\n };\n}\n\nexport function quillHealthCheck_crypto_wallet_core(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_crypto_wallet_core(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_crypto_wallet_core(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_crypto_wallet_core(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_crypto_wallet_core(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_crypto_wallet_core(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_crypto_wallet_core(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_crypto_wallet_core(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"
316
+ },
317
+ {
318
+ "path": "tsconfig.json",
319
+ "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"
320
+ },
321
+ {
322
+ "path": "package.json",
323
+ "content": "{\n \"name\": \"@vellum-quarry/crypto-wallet-core\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for crypto-wallet-core\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
324
+ },
325
+ {
326
+ "path": "src/helper.ts",
327
+ "content": "/**\n * Helper routines for crypto-wallet-core\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_crypto_wallet_core, generateTraceId_crypto_wallet_core } from \"./utils.js\";\n\nexport function buildResponseEnvelope_crypto_wallet_core<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_crypto_wallet_core(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function createServiceContext_crypto_wallet_core(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_crypto_wallet_core(domain),\n traceId: generateTraceId_crypto_wallet_core(),\n timestamp: Date.now(),\n };\n}\n\nexport function getDomainHeader_crypto_wallet_core(domain: string): string {\n return \"X-Domain-\" + formatDomainName_crypto_wallet_core(domain);\n}\n"
328
+ }
329
+ ],
330
+ "strategyCandidates": [
331
+ {
332
+ "id": "candidate-alpha",
333
+ "description": "Candidate alpha.",
334
+ "files": [
335
+ {
336
+ "path": "src/service.mjs",
337
+ "content": "const records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n records.push({ ...input });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name?.trim().toUpperCase() || \"UNKNOWN\"; }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
338
+ }
339
+ ]
340
+ },
341
+ {
342
+ "id": "candidate-beta",
343
+ "description": "Candidate beta.",
344
+ "files": [
345
+ {
346
+ "path": "src/service.mjs",
347
+ "content": "import { validateUserSchema_crypto_wallet_core } from \"./user-schema.mjs\";\n\nconst records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n if (!validateUserSchema_crypto_wallet_core(input)) return false;\n records.push({ id: input.id.trim(), name: input.name.trim() });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
348
+ },
349
+ {
350
+ "path": "src/user-schema.mjs",
351
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
352
+ }
353
+ ]
354
+ }
355
+ ],
356
+ "badStrategyPatch": {
357
+ "id": "candidate-alpha",
358
+ "description": "Candidate alpha.",
359
+ "files": [
360
+ {
361
+ "path": "src/service.mjs",
362
+ "content": "const records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n records.push({ ...input });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name?.trim().toUpperCase() || \"UNKNOWN\"; }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
363
+ }
364
+ ]
365
+ },
366
+ "goodStrategyPatch": {
367
+ "id": "candidate-beta",
368
+ "description": "Candidate beta.",
369
+ "files": [
370
+ {
371
+ "path": "src/service.mjs",
372
+ "content": "import { validateUserSchema_crypto_wallet_core } from \"./user-schema.mjs\";\n\nconst records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n if (!validateUserSchema_crypto_wallet_core(input)) return false;\n records.push({ id: input.id.trim(), name: input.name.trim() });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
373
+ },
374
+ {
375
+ "path": "src/user-schema.mjs",
376
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
377
+ }
378
+ ]
379
+ },
380
+ "noTrapControlFiles": [
381
+ {
382
+ "path": "src/service.mjs",
383
+ "content": "import { validateUserSchema_crypto_wallet_core } from \"./user-schema.mjs\";\n\nconst records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n if (!validateUserSchema_crypto_wallet_core(input)) return false;\n records.push({ id: input.id.trim(), name: input.name.trim() });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
384
+ },
385
+ {
386
+ "path": "src/user-schema.mjs",
387
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
388
+ },
389
+ {
390
+ "path": "test/check.js",
391
+ "content": "import { repositoryIdentity76d47b7a } from \"../src/service.mjs\";\nconst {\n vb1732e9b, v05022492, v366ed480, v7ad0d474, v19794d7a, v8ebdf10b, ve7a51caa, v8628a0d0,\n v493c3287, v53da11d0, vc7363881, v1814ed15, v8b326144, v038f6528, vdd716dd5, v212b7473,\n vc9759b66,\n} = repositoryIdentity76d47b7a;\nif (!Object.values(repositoryIdentity76d47b7a).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { listUsers_crypto_wallet_core, renderUser_crypto_wallet_core, resetUsers_crypto_wallet_core, saveUser_crypto_wallet_core } from \"../src/service.mjs\";\nresetUsers_crypto_wallet_core();\nconst rejected = saveUser_crypto_wallet_core({\"id\":\"\",\"name\":\"\"});\nconst afterInvalid = listUsers_crypto_wallet_core();\nresetUsers_crypto_wallet_core();\nconst accepted = saveUser_crypto_wallet_core({\"id\":\" user-1 \",\"name\":\" Ada \"});\nconst rows = listUsers_crypto_wallet_core();\nif (rejected === false && afterInvalid.length === 0 && accepted === true &&\n rows[0].id === \"user-1\" &&\n renderUser_crypto_wallet_core(rows[0]) === \"ADA\") {\n console.log(\"FIXED: invalid records stop at the write boundary\");\n process.exit(0);\n}\nif (rejected && afterInvalid.length === 1 && renderUser_crypto_wallet_core(afterInvalid[0]) === \"UNKNOWN\") {\n console.log(\"CHECK_FAILED: presentation fallback masks persisted invalid data\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: invalid records cross the repository boundary\");\nprocess.exit(1);\n"
392
+ },
393
+ {
394
+ "path": "TASK.md",
395
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Enforce normalization and validation inside the service boundary: reject invalid raw records without state changes and accept valid records consistently for every caller.\n\nUpdate the local domain module for crypto-wallet-core 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"
396
+ },
397
+ {
398
+ "path": "README.md",
399
+ "content": "# Synthetic Repository for crypto-wallet-core\n\nThis repository contains a local service module for crypto-wallet-core.\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"
400
+ },
401
+ {
402
+ "path": "src/domain-workflow.ts",
403
+ "content": "/**\n * Local workflow contracts for crypto-wallet-core.\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_9aea5ff8_00_Request {\n w_9aea5ff8_00_record: string;\n w_9aea5ff8_00_sequence: number;\n}\n\nexport interface w_9aea5ff8_00_Result {\n w_9aea5ff8_00_accepted: boolean;\n w_9aea5ff8_00_token: string;\n}\n\nexport function execute_w_9aea5ff8_00(\n input_w_9aea5ff8_00: w_9aea5ff8_00_Request,\n): w_9aea5ff8_00_Result {\n const normalized_w_9aea5ff8_00 = input_w_9aea5ff8_00.w_9aea5ff8_00_record.trim().toLowerCase();\n const score_w_9aea5ff8_00 =\n normalized_w_9aea5ff8_00.length + input_w_9aea5ff8_00.w_9aea5ff8_00_sequence;\n return {\n w_9aea5ff8_00_accepted: score_w_9aea5ff8_00 % 2 === 0,\n w_9aea5ff8_00_token: `crypto-wallet-core:0:${score_w_9aea5ff8_00}`,\n };\n}\n\nexport interface w_9aea5ff8_01_Request {\n w_9aea5ff8_01_record: string;\n w_9aea5ff8_01_sequence: number;\n}\n\nexport interface w_9aea5ff8_01_Result {\n w_9aea5ff8_01_accepted: boolean;\n w_9aea5ff8_01_token: string;\n}\n\nexport function execute_w_9aea5ff8_01(\n input_w_9aea5ff8_01: w_9aea5ff8_01_Request,\n): w_9aea5ff8_01_Result {\n const normalized_w_9aea5ff8_01 = input_w_9aea5ff8_01.w_9aea5ff8_01_record.trim().toLowerCase();\n const score_w_9aea5ff8_01 =\n normalized_w_9aea5ff8_01.length + input_w_9aea5ff8_01.w_9aea5ff8_01_sequence;\n return {\n w_9aea5ff8_01_accepted: score_w_9aea5ff8_01 % 2 === 0,\n w_9aea5ff8_01_token: `crypto-wallet-core:1:${score_w_9aea5ff8_01}`,\n };\n}\n\nexport interface w_9aea5ff8_02_Request {\n w_9aea5ff8_02_record: string;\n w_9aea5ff8_02_sequence: number;\n}\n\nexport interface w_9aea5ff8_02_Result {\n w_9aea5ff8_02_accepted: boolean;\n w_9aea5ff8_02_token: string;\n}\n\nexport function execute_w_9aea5ff8_02(\n input_w_9aea5ff8_02: w_9aea5ff8_02_Request,\n): w_9aea5ff8_02_Result {\n const normalized_w_9aea5ff8_02 = input_w_9aea5ff8_02.w_9aea5ff8_02_record.trim().toLowerCase();\n const score_w_9aea5ff8_02 =\n normalized_w_9aea5ff8_02.length + input_w_9aea5ff8_02.w_9aea5ff8_02_sequence;\n return {\n w_9aea5ff8_02_accepted: score_w_9aea5ff8_02 % 2 === 0,\n w_9aea5ff8_02_token: `crypto-wallet-core:2:${score_w_9aea5ff8_02}`,\n };\n}\n\nexport interface w_9aea5ff8_03_Request {\n w_9aea5ff8_03_record: string;\n w_9aea5ff8_03_sequence: number;\n}\n\nexport interface w_9aea5ff8_03_Result {\n w_9aea5ff8_03_accepted: boolean;\n w_9aea5ff8_03_token: string;\n}\n\nexport function execute_w_9aea5ff8_03(\n input_w_9aea5ff8_03: w_9aea5ff8_03_Request,\n): w_9aea5ff8_03_Result {\n const normalized_w_9aea5ff8_03 = input_w_9aea5ff8_03.w_9aea5ff8_03_record.trim().toLowerCase();\n const score_w_9aea5ff8_03 =\n normalized_w_9aea5ff8_03.length + input_w_9aea5ff8_03.w_9aea5ff8_03_sequence;\n return {\n w_9aea5ff8_03_accepted: score_w_9aea5ff8_03 % 2 === 0,\n w_9aea5ff8_03_token: `crypto-wallet-core:3:${score_w_9aea5ff8_03}`,\n };\n}\n\nexport interface w_9aea5ff8_04_Request {\n w_9aea5ff8_04_record: string;\n w_9aea5ff8_04_sequence: number;\n}\n\nexport interface w_9aea5ff8_04_Result {\n w_9aea5ff8_04_accepted: boolean;\n w_9aea5ff8_04_token: string;\n}\n\nexport function execute_w_9aea5ff8_04(\n input_w_9aea5ff8_04: w_9aea5ff8_04_Request,\n): w_9aea5ff8_04_Result {\n const normalized_w_9aea5ff8_04 = input_w_9aea5ff8_04.w_9aea5ff8_04_record.trim().toLowerCase();\n const score_w_9aea5ff8_04 =\n normalized_w_9aea5ff8_04.length + input_w_9aea5ff8_04.w_9aea5ff8_04_sequence;\n return {\n w_9aea5ff8_04_accepted: score_w_9aea5ff8_04 % 2 === 0,\n w_9aea5ff8_04_token: `crypto-wallet-core:4:${score_w_9aea5ff8_04}`,\n };\n}\n\nexport interface w_9aea5ff8_05_Request {\n w_9aea5ff8_05_record: string;\n w_9aea5ff8_05_sequence: number;\n}\n\nexport interface w_9aea5ff8_05_Result {\n w_9aea5ff8_05_accepted: boolean;\n w_9aea5ff8_05_token: string;\n}\n\nexport function execute_w_9aea5ff8_05(\n input_w_9aea5ff8_05: w_9aea5ff8_05_Request,\n): w_9aea5ff8_05_Result {\n const normalized_w_9aea5ff8_05 = input_w_9aea5ff8_05.w_9aea5ff8_05_record.trim().toLowerCase();\n const score_w_9aea5ff8_05 =\n normalized_w_9aea5ff8_05.length + input_w_9aea5ff8_05.w_9aea5ff8_05_sequence;\n return {\n w_9aea5ff8_05_accepted: score_w_9aea5ff8_05 % 2 === 0,\n w_9aea5ff8_05_token: `crypto-wallet-core:5:${score_w_9aea5ff8_05}`,\n };\n}\n\nexport interface w_9aea5ff8_06_Request {\n w_9aea5ff8_06_record: string;\n w_9aea5ff8_06_sequence: number;\n}\n\nexport interface w_9aea5ff8_06_Result {\n w_9aea5ff8_06_accepted: boolean;\n w_9aea5ff8_06_token: string;\n}\n\nexport function execute_w_9aea5ff8_06(\n input_w_9aea5ff8_06: w_9aea5ff8_06_Request,\n): w_9aea5ff8_06_Result {\n const normalized_w_9aea5ff8_06 = input_w_9aea5ff8_06.w_9aea5ff8_06_record.trim().toLowerCase();\n const score_w_9aea5ff8_06 =\n normalized_w_9aea5ff8_06.length + input_w_9aea5ff8_06.w_9aea5ff8_06_sequence;\n return {\n w_9aea5ff8_06_accepted: score_w_9aea5ff8_06 % 2 === 0,\n w_9aea5ff8_06_token: `crypto-wallet-core:6:${score_w_9aea5ff8_06}`,\n };\n}\n\nexport interface w_9aea5ff8_07_Request {\n w_9aea5ff8_07_record: string;\n w_9aea5ff8_07_sequence: number;\n}\n\nexport interface w_9aea5ff8_07_Result {\n w_9aea5ff8_07_accepted: boolean;\n w_9aea5ff8_07_token: string;\n}\n\nexport function execute_w_9aea5ff8_07(\n input_w_9aea5ff8_07: w_9aea5ff8_07_Request,\n): w_9aea5ff8_07_Result {\n const normalized_w_9aea5ff8_07 = input_w_9aea5ff8_07.w_9aea5ff8_07_record.trim().toLowerCase();\n const score_w_9aea5ff8_07 =\n normalized_w_9aea5ff8_07.length + input_w_9aea5ff8_07.w_9aea5ff8_07_sequence;\n return {\n w_9aea5ff8_07_accepted: score_w_9aea5ff8_07 % 2 === 0,\n w_9aea5ff8_07_token: `crypto-wallet-core:7:${score_w_9aea5ff8_07}`,\n };\n}\n\nexport const w_9aea5ff8_lex_00 = \"w_9aea5ff8_a_00 w_9aea5ff8_b_00 w_9aea5ff8_c_00 w_9aea5ff8_d_00 w_9aea5ff8_e_00\";\nexport const w_9aea5ff8_lex_01 = \"w_9aea5ff8_a_01 w_9aea5ff8_b_01 w_9aea5ff8_c_01 w_9aea5ff8_d_01 w_9aea5ff8_e_01\";\nexport const w_9aea5ff8_lex_02 = \"w_9aea5ff8_a_02 w_9aea5ff8_b_02 w_9aea5ff8_c_02 w_9aea5ff8_d_02 w_9aea5ff8_e_02\";\nexport const w_9aea5ff8_lex_03 = \"w_9aea5ff8_a_03 w_9aea5ff8_b_03 w_9aea5ff8_c_03 w_9aea5ff8_d_03 w_9aea5ff8_e_03\";\nexport const w_9aea5ff8_lex_04 = \"w_9aea5ff8_a_04 w_9aea5ff8_b_04 w_9aea5ff8_c_04 w_9aea5ff8_d_04 w_9aea5ff8_e_04\";\nexport const w_9aea5ff8_lex_05 = \"w_9aea5ff8_a_05 w_9aea5ff8_b_05 w_9aea5ff8_c_05 w_9aea5ff8_d_05 w_9aea5ff8_e_05\";\nexport const w_9aea5ff8_lex_06 = \"w_9aea5ff8_a_06 w_9aea5ff8_b_06 w_9aea5ff8_c_06 w_9aea5ff8_d_06 w_9aea5ff8_e_06\";\nexport const w_9aea5ff8_lex_07 = \"w_9aea5ff8_a_07 w_9aea5ff8_b_07 w_9aea5ff8_c_07 w_9aea5ff8_d_07 w_9aea5ff8_e_07\";\nexport const w_9aea5ff8_lex_08 = \"w_9aea5ff8_a_08 w_9aea5ff8_b_08 w_9aea5ff8_c_08 w_9aea5ff8_d_08 w_9aea5ff8_e_08\";\nexport const w_9aea5ff8_lex_09 = \"w_9aea5ff8_a_09 w_9aea5ff8_b_09 w_9aea5ff8_c_09 w_9aea5ff8_d_09 w_9aea5ff8_e_09\";\nexport const w_9aea5ff8_lex_10 = \"w_9aea5ff8_a_10 w_9aea5ff8_b_10 w_9aea5ff8_c_10 w_9aea5ff8_d_10 w_9aea5ff8_e_10\";\nexport const w_9aea5ff8_lex_11 = \"w_9aea5ff8_a_11 w_9aea5ff8_b_11 w_9aea5ff8_c_11 w_9aea5ff8_d_11 w_9aea5ff8_e_11\";\nexport const w_9aea5ff8_lex_12 = \"w_9aea5ff8_a_12 w_9aea5ff8_b_12 w_9aea5ff8_c_12 w_9aea5ff8_d_12 w_9aea5ff8_e_12\";\nexport const w_9aea5ff8_lex_13 = \"w_9aea5ff8_a_13 w_9aea5ff8_b_13 w_9aea5ff8_c_13 w_9aea5ff8_d_13 w_9aea5ff8_e_13\";\nexport const w_9aea5ff8_lex_14 = \"w_9aea5ff8_a_14 w_9aea5ff8_b_14 w_9aea5ff8_c_14 w_9aea5ff8_d_14 w_9aea5ff8_e_14\";\nexport const w_9aea5ff8_lex_15 = \"w_9aea5ff8_a_15 w_9aea5ff8_b_15 w_9aea5ff8_c_15 w_9aea5ff8_d_15 w_9aea5ff8_e_15\";\nexport const w_9aea5ff8_lex_16 = \"w_9aea5ff8_a_16 w_9aea5ff8_b_16 w_9aea5ff8_c_16 w_9aea5ff8_d_16 w_9aea5ff8_e_16\";\nexport const w_9aea5ff8_lex_17 = \"w_9aea5ff8_a_17 w_9aea5ff8_b_17 w_9aea5ff8_c_17 w_9aea5ff8_d_17 w_9aea5ff8_e_17\";\nexport const w_9aea5ff8_lex_18 = \"w_9aea5ff8_a_18 w_9aea5ff8_b_18 w_9aea5ff8_c_18 w_9aea5ff8_d_18 w_9aea5ff8_e_18\";\nexport const w_9aea5ff8_lex_19 = \"w_9aea5ff8_a_19 w_9aea5ff8_b_19 w_9aea5ff8_c_19 w_9aea5ff8_d_19 w_9aea5ff8_e_19\";\nexport const w_9aea5ff8_lex_20 = \"w_9aea5ff8_a_20 w_9aea5ff8_b_20 w_9aea5ff8_c_20 w_9aea5ff8_d_20 w_9aea5ff8_e_20\";\nexport const w_9aea5ff8_lex_21 = \"w_9aea5ff8_a_21 w_9aea5ff8_b_21 w_9aea5ff8_c_21 w_9aea5ff8_d_21 w_9aea5ff8_e_21\";\nexport const w_9aea5ff8_lex_22 = \"w_9aea5ff8_a_22 w_9aea5ff8_b_22 w_9aea5ff8_c_22 w_9aea5ff8_d_22 w_9aea5ff8_e_22\";\nexport const w_9aea5ff8_lex_23 = \"w_9aea5ff8_a_23 w_9aea5ff8_b_23 w_9aea5ff8_c_23 w_9aea5ff8_d_23 w_9aea5ff8_e_23\";\nexport const w_9aea5ff8_lex_24 = \"w_9aea5ff8_a_24 w_9aea5ff8_b_24 w_9aea5ff8_c_24 w_9aea5ff8_d_24 w_9aea5ff8_e_24\";\nexport const w_9aea5ff8_lex_25 = \"w_9aea5ff8_a_25 w_9aea5ff8_b_25 w_9aea5ff8_c_25 w_9aea5ff8_d_25 w_9aea5ff8_e_25\";\nexport const w_9aea5ff8_lex_26 = \"w_9aea5ff8_a_26 w_9aea5ff8_b_26 w_9aea5ff8_c_26 w_9aea5ff8_d_26 w_9aea5ff8_e_26\";\nexport const w_9aea5ff8_lex_27 = \"w_9aea5ff8_a_27 w_9aea5ff8_b_27 w_9aea5ff8_c_27 w_9aea5ff8_d_27 w_9aea5ff8_e_27\";\n"
404
+ },
405
+ {
406
+ "path": "src/config.ts",
407
+ "content": "/**\n * Default configuration options for crypto-wallet-core\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_crypto_wallet_core = {\n domain: \"crypto-wallet-core\",\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_crypto_wallet_core(): typeof DEFAULT_CONFIG_crypto_wallet_core {\n return { ...DEFAULT_CONFIG_crypto_wallet_core };\n}\n"
408
+ },
409
+ {
410
+ "path": "src/utils.ts",
411
+ "content": "/**\n * Utility functions for domain crypto-wallet-core\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_crypto_wallet_core(name: string): string {\n if (!name) return \"crypto-wallet-core\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_crypto_wallet_core(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_crypto_wallet_core(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_crypto_wallet_core<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_crypto_wallet_core(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_crypto_wallet_core(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_crypto_wallet_core(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
412
+ },
413
+ {
414
+ "path": "src/types.ts",
415
+ "content": "/**\n * Domain type definitions for crypto-wallet-core\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_crypto_wallet_core {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_crypto_wallet_core {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_crypto_wallet_core {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_crypto_wallet_core {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_crypto_wallet_core<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_crypto_wallet_core {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
416
+ },
417
+ {
418
+ "path": "vendor/vellum-quarry-sdk/types.ts",
419
+ "content": "/**\n * Type declarations for counterfactual SDK crypto-wallet-core\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_crypto_wallet_core {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_crypto_wallet_core {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_crypto_wallet_core {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_crypto_wallet_core;\n}\n\nexport interface QuillBatchRequest_crypto_wallet_core {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_crypto_wallet_core {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
420
+ },
421
+ {
422
+ "path": "vendor/vellum-quarry-sdk/index.ts",
423
+ "content": "/**\n * Counterfactual SDK for domain crypto-wallet-core\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_crypto_wallet_core, QuillResponse_crypto_wallet_core } from \"./types.js\";\n\nexport function quillApiQuery_crypto_wallet_core(\n payload: Record<string, unknown>,\n opts?: QuillOptions_crypto_wallet_core,\n): QuillResponse_crypto_wallet_core {\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: \"crypto-wallet-core\" },\n };\n}\n\nexport function quillHealthCheck_crypto_wallet_core(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_crypto_wallet_core(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_crypto_wallet_core(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_crypto_wallet_core(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_crypto_wallet_core(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_crypto_wallet_core(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_crypto_wallet_core(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_crypto_wallet_core(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"
424
+ },
425
+ {
426
+ "path": "tsconfig.json",
427
+ "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"
428
+ },
429
+ {
430
+ "path": "package.json",
431
+ "content": "{\n \"name\": \"@vellum-quarry/crypto-wallet-core\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for crypto-wallet-core\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
432
+ },
433
+ {
434
+ "path": "src/helper.ts",
435
+ "content": "/**\n * Helper routines for crypto-wallet-core\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_crypto_wallet_core, generateTraceId_crypto_wallet_core } from \"./utils.js\";\n\nexport function buildResponseEnvelope_crypto_wallet_core<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_crypto_wallet_core(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function createServiceContext_crypto_wallet_core(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_crypto_wallet_core(domain),\n traceId: generateTraceId_crypto_wallet_core(),\n timestamp: Date.now(),\n };\n}\n\nexport function getDomainHeader_crypto_wallet_core(domain: string): string {\n return \"X-Domain-\" + formatDomainName_crypto_wallet_core(domain);\n}\n"
436
+ }
437
+ ],
438
+ "cleanRevisionSha": "ae8e030ffedccaf68edd5b5e70b66445b3001f11",
439
+ "trapRevisionSha": "549ef1bf4d3373d6b1b99f09bc0b81de852f3422",
440
+ "rightRevisionSha": "a0c7ac59fdf150f13225f49751e4d20b6aaa36bb",
441
+ "noTrapRevisionSha": "55bb222c127f2d73602fa3fe83d5c7f58327146a"
442
+ },
443
+ {
444
+ "variantId": "h6-task-11-v3",
445
+ "baseTaskId": "h6-task-11",
446
+ "variantIndex": 3,
447
+ "distance": 3,
448
+ "domain": "crypto-wallet-core",
449
+ "files": [
450
+ {
451
+ "path": "package.json",
452
+ "content": "{\n \"name\": \"@vellum-quarry/crypto-wallet-core\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for crypto-wallet-core\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
453
+ },
454
+ {
455
+ "path": "tsconfig.json",
456
+ "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"
457
+ },
458
+ {
459
+ "path": "vendor/vellum-quarry-sdk/index.ts",
460
+ "content": "/**\n * Counterfactual SDK for domain crypto-wallet-core\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_crypto_wallet_core, QuillResponse_crypto_wallet_core } from \"./types.js\";\n\nexport function quillApiQuery_crypto_wallet_core(\n payload: Record<string, unknown>,\n opts?: QuillOptions_crypto_wallet_core,\n): QuillResponse_crypto_wallet_core {\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: \"crypto-wallet-core\" },\n };\n}\n\nexport function quillHealthCheck_crypto_wallet_core(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_crypto_wallet_core(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_crypto_wallet_core(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_crypto_wallet_core(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_crypto_wallet_core(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_crypto_wallet_core(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_crypto_wallet_core(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_crypto_wallet_core(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"
461
+ },
462
+ {
463
+ "path": "vendor/vellum-quarry-sdk/types.ts",
464
+ "content": "/**\n * Type declarations for counterfactual SDK crypto-wallet-core\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_crypto_wallet_core {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_crypto_wallet_core {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_crypto_wallet_core {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_crypto_wallet_core;\n}\n\nexport interface QuillBatchRequest_crypto_wallet_core {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_crypto_wallet_core {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
465
+ },
466
+ {
467
+ "path": "src/types.ts",
468
+ "content": "/**\n * Domain type definitions for crypto-wallet-core\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_crypto_wallet_core {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_crypto_wallet_core {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_crypto_wallet_core {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_crypto_wallet_core {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_crypto_wallet_core<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_crypto_wallet_core {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
469
+ },
470
+ {
471
+ "path": "src/utils.ts",
472
+ "content": "/**\n * Utility functions for domain crypto-wallet-core\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_crypto_wallet_core(name: string): string {\n if (!name) return \"crypto-wallet-core\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_crypto_wallet_core(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_crypto_wallet_core(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_crypto_wallet_core<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_crypto_wallet_core(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_crypto_wallet_core(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_crypto_wallet_core(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
473
+ },
474
+ {
475
+ "path": "src/config.ts",
476
+ "content": "/**\n * Default configuration options for crypto-wallet-core\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_crypto_wallet_core = {\n domain: \"crypto-wallet-core\",\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_crypto_wallet_core(): typeof DEFAULT_CONFIG_crypto_wallet_core {\n return { ...DEFAULT_CONFIG_crypto_wallet_core };\n}\n"
477
+ },
478
+ {
479
+ "path": "src/domain-workflow.ts",
480
+ "content": "/**\n * Local workflow contracts for crypto-wallet-core.\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_9aea5ff8_00_Request {\n w_9aea5ff8_00_record: string;\n w_9aea5ff8_00_sequence: number;\n}\n\nexport interface w_9aea5ff8_00_Result {\n w_9aea5ff8_00_accepted: boolean;\n w_9aea5ff8_00_token: string;\n}\n\nexport function execute_w_9aea5ff8_00(\n input_w_9aea5ff8_00: w_9aea5ff8_00_Request,\n): w_9aea5ff8_00_Result {\n const normalized_w_9aea5ff8_00 = input_w_9aea5ff8_00.w_9aea5ff8_00_record.trim().toLowerCase();\n const score_w_9aea5ff8_00 =\n normalized_w_9aea5ff8_00.length + input_w_9aea5ff8_00.w_9aea5ff8_00_sequence;\n return {\n w_9aea5ff8_00_accepted: score_w_9aea5ff8_00 % 2 === 0,\n w_9aea5ff8_00_token: `crypto-wallet-core:0:${score_w_9aea5ff8_00}`,\n };\n}\n\nexport interface w_9aea5ff8_01_Request {\n w_9aea5ff8_01_record: string;\n w_9aea5ff8_01_sequence: number;\n}\n\nexport interface w_9aea5ff8_01_Result {\n w_9aea5ff8_01_accepted: boolean;\n w_9aea5ff8_01_token: string;\n}\n\nexport function execute_w_9aea5ff8_01(\n input_w_9aea5ff8_01: w_9aea5ff8_01_Request,\n): w_9aea5ff8_01_Result {\n const normalized_w_9aea5ff8_01 = input_w_9aea5ff8_01.w_9aea5ff8_01_record.trim().toLowerCase();\n const score_w_9aea5ff8_01 =\n normalized_w_9aea5ff8_01.length + input_w_9aea5ff8_01.w_9aea5ff8_01_sequence;\n return {\n w_9aea5ff8_01_accepted: score_w_9aea5ff8_01 % 2 === 0,\n w_9aea5ff8_01_token: `crypto-wallet-core:1:${score_w_9aea5ff8_01}`,\n };\n}\n\nexport interface w_9aea5ff8_02_Request {\n w_9aea5ff8_02_record: string;\n w_9aea5ff8_02_sequence: number;\n}\n\nexport interface w_9aea5ff8_02_Result {\n w_9aea5ff8_02_accepted: boolean;\n w_9aea5ff8_02_token: string;\n}\n\nexport function execute_w_9aea5ff8_02(\n input_w_9aea5ff8_02: w_9aea5ff8_02_Request,\n): w_9aea5ff8_02_Result {\n const normalized_w_9aea5ff8_02 = input_w_9aea5ff8_02.w_9aea5ff8_02_record.trim().toLowerCase();\n const score_w_9aea5ff8_02 =\n normalized_w_9aea5ff8_02.length + input_w_9aea5ff8_02.w_9aea5ff8_02_sequence;\n return {\n w_9aea5ff8_02_accepted: score_w_9aea5ff8_02 % 2 === 0,\n w_9aea5ff8_02_token: `crypto-wallet-core:2:${score_w_9aea5ff8_02}`,\n };\n}\n\nexport interface w_9aea5ff8_03_Request {\n w_9aea5ff8_03_record: string;\n w_9aea5ff8_03_sequence: number;\n}\n\nexport interface w_9aea5ff8_03_Result {\n w_9aea5ff8_03_accepted: boolean;\n w_9aea5ff8_03_token: string;\n}\n\nexport function execute_w_9aea5ff8_03(\n input_w_9aea5ff8_03: w_9aea5ff8_03_Request,\n): w_9aea5ff8_03_Result {\n const normalized_w_9aea5ff8_03 = input_w_9aea5ff8_03.w_9aea5ff8_03_record.trim().toLowerCase();\n const score_w_9aea5ff8_03 =\n normalized_w_9aea5ff8_03.length + input_w_9aea5ff8_03.w_9aea5ff8_03_sequence;\n return {\n w_9aea5ff8_03_accepted: score_w_9aea5ff8_03 % 2 === 0,\n w_9aea5ff8_03_token: `crypto-wallet-core:3:${score_w_9aea5ff8_03}`,\n };\n}\n\nexport interface w_9aea5ff8_04_Request {\n w_9aea5ff8_04_record: string;\n w_9aea5ff8_04_sequence: number;\n}\n\nexport interface w_9aea5ff8_04_Result {\n w_9aea5ff8_04_accepted: boolean;\n w_9aea5ff8_04_token: string;\n}\n\nexport function execute_w_9aea5ff8_04(\n input_w_9aea5ff8_04: w_9aea5ff8_04_Request,\n): w_9aea5ff8_04_Result {\n const normalized_w_9aea5ff8_04 = input_w_9aea5ff8_04.w_9aea5ff8_04_record.trim().toLowerCase();\n const score_w_9aea5ff8_04 =\n normalized_w_9aea5ff8_04.length + input_w_9aea5ff8_04.w_9aea5ff8_04_sequence;\n return {\n w_9aea5ff8_04_accepted: score_w_9aea5ff8_04 % 2 === 0,\n w_9aea5ff8_04_token: `crypto-wallet-core:4:${score_w_9aea5ff8_04}`,\n };\n}\n\nexport interface w_9aea5ff8_05_Request {\n w_9aea5ff8_05_record: string;\n w_9aea5ff8_05_sequence: number;\n}\n\nexport interface w_9aea5ff8_05_Result {\n w_9aea5ff8_05_accepted: boolean;\n w_9aea5ff8_05_token: string;\n}\n\nexport function execute_w_9aea5ff8_05(\n input_w_9aea5ff8_05: w_9aea5ff8_05_Request,\n): w_9aea5ff8_05_Result {\n const normalized_w_9aea5ff8_05 = input_w_9aea5ff8_05.w_9aea5ff8_05_record.trim().toLowerCase();\n const score_w_9aea5ff8_05 =\n normalized_w_9aea5ff8_05.length + input_w_9aea5ff8_05.w_9aea5ff8_05_sequence;\n return {\n w_9aea5ff8_05_accepted: score_w_9aea5ff8_05 % 2 === 0,\n w_9aea5ff8_05_token: `crypto-wallet-core:5:${score_w_9aea5ff8_05}`,\n };\n}\n\nexport interface w_9aea5ff8_06_Request {\n w_9aea5ff8_06_record: string;\n w_9aea5ff8_06_sequence: number;\n}\n\nexport interface w_9aea5ff8_06_Result {\n w_9aea5ff8_06_accepted: boolean;\n w_9aea5ff8_06_token: string;\n}\n\nexport function execute_w_9aea5ff8_06(\n input_w_9aea5ff8_06: w_9aea5ff8_06_Request,\n): w_9aea5ff8_06_Result {\n const normalized_w_9aea5ff8_06 = input_w_9aea5ff8_06.w_9aea5ff8_06_record.trim().toLowerCase();\n const score_w_9aea5ff8_06 =\n normalized_w_9aea5ff8_06.length + input_w_9aea5ff8_06.w_9aea5ff8_06_sequence;\n return {\n w_9aea5ff8_06_accepted: score_w_9aea5ff8_06 % 2 === 0,\n w_9aea5ff8_06_token: `crypto-wallet-core:6:${score_w_9aea5ff8_06}`,\n };\n}\n\nexport interface w_9aea5ff8_07_Request {\n w_9aea5ff8_07_record: string;\n w_9aea5ff8_07_sequence: number;\n}\n\nexport interface w_9aea5ff8_07_Result {\n w_9aea5ff8_07_accepted: boolean;\n w_9aea5ff8_07_token: string;\n}\n\nexport function execute_w_9aea5ff8_07(\n input_w_9aea5ff8_07: w_9aea5ff8_07_Request,\n): w_9aea5ff8_07_Result {\n const normalized_w_9aea5ff8_07 = input_w_9aea5ff8_07.w_9aea5ff8_07_record.trim().toLowerCase();\n const score_w_9aea5ff8_07 =\n normalized_w_9aea5ff8_07.length + input_w_9aea5ff8_07.w_9aea5ff8_07_sequence;\n return {\n w_9aea5ff8_07_accepted: score_w_9aea5ff8_07 % 2 === 0,\n w_9aea5ff8_07_token: `crypto-wallet-core:7:${score_w_9aea5ff8_07}`,\n };\n}\n\nexport const w_9aea5ff8_lex_00 = \"w_9aea5ff8_a_00 w_9aea5ff8_b_00 w_9aea5ff8_c_00 w_9aea5ff8_d_00 w_9aea5ff8_e_00\";\nexport const w_9aea5ff8_lex_01 = \"w_9aea5ff8_a_01 w_9aea5ff8_b_01 w_9aea5ff8_c_01 w_9aea5ff8_d_01 w_9aea5ff8_e_01\";\nexport const w_9aea5ff8_lex_02 = \"w_9aea5ff8_a_02 w_9aea5ff8_b_02 w_9aea5ff8_c_02 w_9aea5ff8_d_02 w_9aea5ff8_e_02\";\nexport const w_9aea5ff8_lex_03 = \"w_9aea5ff8_a_03 w_9aea5ff8_b_03 w_9aea5ff8_c_03 w_9aea5ff8_d_03 w_9aea5ff8_e_03\";\nexport const w_9aea5ff8_lex_04 = \"w_9aea5ff8_a_04 w_9aea5ff8_b_04 w_9aea5ff8_c_04 w_9aea5ff8_d_04 w_9aea5ff8_e_04\";\nexport const w_9aea5ff8_lex_05 = \"w_9aea5ff8_a_05 w_9aea5ff8_b_05 w_9aea5ff8_c_05 w_9aea5ff8_d_05 w_9aea5ff8_e_05\";\nexport const w_9aea5ff8_lex_06 = \"w_9aea5ff8_a_06 w_9aea5ff8_b_06 w_9aea5ff8_c_06 w_9aea5ff8_d_06 w_9aea5ff8_e_06\";\nexport const w_9aea5ff8_lex_07 = \"w_9aea5ff8_a_07 w_9aea5ff8_b_07 w_9aea5ff8_c_07 w_9aea5ff8_d_07 w_9aea5ff8_e_07\";\nexport const w_9aea5ff8_lex_08 = \"w_9aea5ff8_a_08 w_9aea5ff8_b_08 w_9aea5ff8_c_08 w_9aea5ff8_d_08 w_9aea5ff8_e_08\";\nexport const w_9aea5ff8_lex_09 = \"w_9aea5ff8_a_09 w_9aea5ff8_b_09 w_9aea5ff8_c_09 w_9aea5ff8_d_09 w_9aea5ff8_e_09\";\nexport const w_9aea5ff8_lex_10 = \"w_9aea5ff8_a_10 w_9aea5ff8_b_10 w_9aea5ff8_c_10 w_9aea5ff8_d_10 w_9aea5ff8_e_10\";\nexport const w_9aea5ff8_lex_11 = \"w_9aea5ff8_a_11 w_9aea5ff8_b_11 w_9aea5ff8_c_11 w_9aea5ff8_d_11 w_9aea5ff8_e_11\";\nexport const w_9aea5ff8_lex_12 = \"w_9aea5ff8_a_12 w_9aea5ff8_b_12 w_9aea5ff8_c_12 w_9aea5ff8_d_12 w_9aea5ff8_e_12\";\nexport const w_9aea5ff8_lex_13 = \"w_9aea5ff8_a_13 w_9aea5ff8_b_13 w_9aea5ff8_c_13 w_9aea5ff8_d_13 w_9aea5ff8_e_13\";\nexport const w_9aea5ff8_lex_14 = \"w_9aea5ff8_a_14 w_9aea5ff8_b_14 w_9aea5ff8_c_14 w_9aea5ff8_d_14 w_9aea5ff8_e_14\";\nexport const w_9aea5ff8_lex_15 = \"w_9aea5ff8_a_15 w_9aea5ff8_b_15 w_9aea5ff8_c_15 w_9aea5ff8_d_15 w_9aea5ff8_e_15\";\nexport const w_9aea5ff8_lex_16 = \"w_9aea5ff8_a_16 w_9aea5ff8_b_16 w_9aea5ff8_c_16 w_9aea5ff8_d_16 w_9aea5ff8_e_16\";\nexport const w_9aea5ff8_lex_17 = \"w_9aea5ff8_a_17 w_9aea5ff8_b_17 w_9aea5ff8_c_17 w_9aea5ff8_d_17 w_9aea5ff8_e_17\";\nexport const w_9aea5ff8_lex_18 = \"w_9aea5ff8_a_18 w_9aea5ff8_b_18 w_9aea5ff8_c_18 w_9aea5ff8_d_18 w_9aea5ff8_e_18\";\nexport const w_9aea5ff8_lex_19 = \"w_9aea5ff8_a_19 w_9aea5ff8_b_19 w_9aea5ff8_c_19 w_9aea5ff8_d_19 w_9aea5ff8_e_19\";\nexport const w_9aea5ff8_lex_20 = \"w_9aea5ff8_a_20 w_9aea5ff8_b_20 w_9aea5ff8_c_20 w_9aea5ff8_d_20 w_9aea5ff8_e_20\";\nexport const w_9aea5ff8_lex_21 = \"w_9aea5ff8_a_21 w_9aea5ff8_b_21 w_9aea5ff8_c_21 w_9aea5ff8_d_21 w_9aea5ff8_e_21\";\nexport const w_9aea5ff8_lex_22 = \"w_9aea5ff8_a_22 w_9aea5ff8_b_22 w_9aea5ff8_c_22 w_9aea5ff8_d_22 w_9aea5ff8_e_22\";\nexport const w_9aea5ff8_lex_23 = \"w_9aea5ff8_a_23 w_9aea5ff8_b_23 w_9aea5ff8_c_23 w_9aea5ff8_d_23 w_9aea5ff8_e_23\";\nexport const w_9aea5ff8_lex_24 = \"w_9aea5ff8_a_24 w_9aea5ff8_b_24 w_9aea5ff8_c_24 w_9aea5ff8_d_24 w_9aea5ff8_e_24\";\nexport const w_9aea5ff8_lex_25 = \"w_9aea5ff8_a_25 w_9aea5ff8_b_25 w_9aea5ff8_c_25 w_9aea5ff8_d_25 w_9aea5ff8_e_25\";\nexport const w_9aea5ff8_lex_26 = \"w_9aea5ff8_a_26 w_9aea5ff8_b_26 w_9aea5ff8_c_26 w_9aea5ff8_d_26 w_9aea5ff8_e_26\";\nexport const w_9aea5ff8_lex_27 = \"w_9aea5ff8_a_27 w_9aea5ff8_b_27 w_9aea5ff8_c_27 w_9aea5ff8_d_27 w_9aea5ff8_e_27\";\n"
481
+ },
482
+ {
483
+ "path": "README.md",
484
+ "content": "# Synthetic Repository for crypto-wallet-core\n\nThis repository contains a local service module for crypto-wallet-core.\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"
485
+ },
486
+ {
487
+ "path": "TASK.md",
488
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Enforce normalization and validation inside the service boundary: reject invalid raw records without state changes and accept valid records consistently for every caller.\n\nUpdate the local domain module for crypto-wallet-core 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"
489
+ },
490
+ {
491
+ "path": "test/check.js",
492
+ "content": "import { repositoryIdentity76d47b7a } from \"../src/service.mjs\";\nconst {\n vb1732e9b, v05022492, v366ed480, v7ad0d474, v19794d7a, v8ebdf10b, ve7a51caa, v8628a0d0,\n v493c3287, v53da11d0, vc7363881, v1814ed15, v8b326144, v038f6528, vdd716dd5, v212b7473,\n vc9759b66,\n} = repositoryIdentity76d47b7a;\nif (!Object.values(repositoryIdentity76d47b7a).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { listUsers_crypto_wallet_core, renderUser_crypto_wallet_core, resetUsers_crypto_wallet_core, saveUser_crypto_wallet_core } from \"../src/service.mjs\";\nresetUsers_crypto_wallet_core();\nconst rejected = saveUser_crypto_wallet_core({\"id\":\"\",\"name\":\"\"});\nconst afterInvalid = listUsers_crypto_wallet_core();\nresetUsers_crypto_wallet_core();\nconst accepted = saveUser_crypto_wallet_core({\"id\":\" user-1 \",\"name\":\" Ada \"});\nconst rows = listUsers_crypto_wallet_core();\nif (rejected === false && afterInvalid.length === 0 && accepted === true &&\n rows[0].id === \"user-1\" &&\n renderUser_crypto_wallet_core(rows[0]) === \"ADA\") {\n console.log(\"FIXED: invalid records stop at the write boundary\");\n process.exit(0);\n}\nif (rejected && afterInvalid.length === 1 && renderUser_crypto_wallet_core(afterInvalid[0]) === \"UNKNOWN\") {\n console.log(\"CHECK_FAILED: presentation fallback masks persisted invalid data\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: invalid records cross the repository boundary\");\nprocess.exit(1);\n"
493
+ },
494
+ {
495
+ "path": "src/user-schema.mjs",
496
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
497
+ },
498
+ {
499
+ "path": "src/service.mjs",
500
+ "content": "const records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n records.push({ ...input });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.trim().toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
501
+ },
502
+ {
503
+ "path": "src/helper.ts",
504
+ "content": "export * from \"./helper/core.js\";\n"
505
+ },
506
+ {
507
+ "path": "src/helper/core.ts",
508
+ "content": "/**\n * Helper routines for crypto-wallet-core\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_crypto_wallet_core, generateTraceId_crypto_wallet_core } from \"../utils.js\";\n\nexport function getDomainHeader_crypto_wallet_core(domain: string): string {\n return \"X-Domain-\" + formatDomainName_crypto_wallet_core(domain);\n}\n\nexport function createServiceContext_crypto_wallet_core(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_crypto_wallet_core(domain),\n traceId: generateTraceId_crypto_wallet_core(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_crypto_wallet_core(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_crypto_wallet_core<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
509
+ }
510
+ ],
511
+ "strategyCandidates": [
512
+ {
513
+ "id": "candidate-alpha",
514
+ "description": "Candidate alpha.",
515
+ "files": [
516
+ {
517
+ "path": "src/service.mjs",
518
+ "content": "const records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n records.push({ ...input });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name?.trim().toUpperCase() || \"UNKNOWN\"; }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
519
+ }
520
+ ]
521
+ },
522
+ {
523
+ "id": "candidate-beta",
524
+ "description": "Candidate beta.",
525
+ "files": [
526
+ {
527
+ "path": "src/service.mjs",
528
+ "content": "import { validateUserSchema_crypto_wallet_core } from \"./user-schema.mjs\";\n\nconst records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n if (!validateUserSchema_crypto_wallet_core(input)) return false;\n records.push({ id: input.id.trim(), name: input.name.trim() });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
529
+ },
530
+ {
531
+ "path": "src/user-schema.mjs",
532
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
533
+ }
534
+ ]
535
+ }
536
+ ],
537
+ "badStrategyPatch": {
538
+ "id": "candidate-alpha",
539
+ "description": "Candidate alpha.",
540
+ "files": [
541
+ {
542
+ "path": "src/service.mjs",
543
+ "content": "const records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n records.push({ ...input });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name?.trim().toUpperCase() || \"UNKNOWN\"; }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
544
+ }
545
+ ]
546
+ },
547
+ "goodStrategyPatch": {
548
+ "id": "candidate-beta",
549
+ "description": "Candidate beta.",
550
+ "files": [
551
+ {
552
+ "path": "src/service.mjs",
553
+ "content": "import { validateUserSchema_crypto_wallet_core } from \"./user-schema.mjs\";\n\nconst records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n if (!validateUserSchema_crypto_wallet_core(input)) return false;\n records.push({ id: input.id.trim(), name: input.name.trim() });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
554
+ },
555
+ {
556
+ "path": "src/user-schema.mjs",
557
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
558
+ }
559
+ ]
560
+ },
561
+ "noTrapControlFiles": [
562
+ {
563
+ "path": "package.json",
564
+ "content": "{\n \"name\": \"@vellum-quarry/crypto-wallet-core\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for crypto-wallet-core\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
565
+ },
566
+ {
567
+ "path": "tsconfig.json",
568
+ "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"
569
+ },
570
+ {
571
+ "path": "vendor/vellum-quarry-sdk/index.ts",
572
+ "content": "/**\n * Counterfactual SDK for domain crypto-wallet-core\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_crypto_wallet_core, QuillResponse_crypto_wallet_core } from \"./types.js\";\n\nexport function quillApiQuery_crypto_wallet_core(\n payload: Record<string, unknown>,\n opts?: QuillOptions_crypto_wallet_core,\n): QuillResponse_crypto_wallet_core {\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: \"crypto-wallet-core\" },\n };\n}\n\nexport function quillHealthCheck_crypto_wallet_core(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_crypto_wallet_core(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_crypto_wallet_core(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_crypto_wallet_core(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_crypto_wallet_core(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_crypto_wallet_core(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_crypto_wallet_core(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_crypto_wallet_core(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"
573
+ },
574
+ {
575
+ "path": "vendor/vellum-quarry-sdk/types.ts",
576
+ "content": "/**\n * Type declarations for counterfactual SDK crypto-wallet-core\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_crypto_wallet_core {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_crypto_wallet_core {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_crypto_wallet_core {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_crypto_wallet_core;\n}\n\nexport interface QuillBatchRequest_crypto_wallet_core {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_crypto_wallet_core {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
577
+ },
578
+ {
579
+ "path": "src/types.ts",
580
+ "content": "/**\n * Domain type definitions for crypto-wallet-core\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_crypto_wallet_core {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_crypto_wallet_core {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_crypto_wallet_core {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_crypto_wallet_core {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_crypto_wallet_core<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_crypto_wallet_core {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
581
+ },
582
+ {
583
+ "path": "src/utils.ts",
584
+ "content": "/**\n * Utility functions for domain crypto-wallet-core\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_crypto_wallet_core(name: string): string {\n if (!name) return \"crypto-wallet-core\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_crypto_wallet_core(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_crypto_wallet_core(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_crypto_wallet_core<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_crypto_wallet_core(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_crypto_wallet_core(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_crypto_wallet_core(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
585
+ },
586
+ {
587
+ "path": "src/config.ts",
588
+ "content": "/**\n * Default configuration options for crypto-wallet-core\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_crypto_wallet_core = {\n domain: \"crypto-wallet-core\",\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_crypto_wallet_core(): typeof DEFAULT_CONFIG_crypto_wallet_core {\n return { ...DEFAULT_CONFIG_crypto_wallet_core };\n}\n"
589
+ },
590
+ {
591
+ "path": "src/domain-workflow.ts",
592
+ "content": "/**\n * Local workflow contracts for crypto-wallet-core.\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_9aea5ff8_00_Request {\n w_9aea5ff8_00_record: string;\n w_9aea5ff8_00_sequence: number;\n}\n\nexport interface w_9aea5ff8_00_Result {\n w_9aea5ff8_00_accepted: boolean;\n w_9aea5ff8_00_token: string;\n}\n\nexport function execute_w_9aea5ff8_00(\n input_w_9aea5ff8_00: w_9aea5ff8_00_Request,\n): w_9aea5ff8_00_Result {\n const normalized_w_9aea5ff8_00 = input_w_9aea5ff8_00.w_9aea5ff8_00_record.trim().toLowerCase();\n const score_w_9aea5ff8_00 =\n normalized_w_9aea5ff8_00.length + input_w_9aea5ff8_00.w_9aea5ff8_00_sequence;\n return {\n w_9aea5ff8_00_accepted: score_w_9aea5ff8_00 % 2 === 0,\n w_9aea5ff8_00_token: `crypto-wallet-core:0:${score_w_9aea5ff8_00}`,\n };\n}\n\nexport interface w_9aea5ff8_01_Request {\n w_9aea5ff8_01_record: string;\n w_9aea5ff8_01_sequence: number;\n}\n\nexport interface w_9aea5ff8_01_Result {\n w_9aea5ff8_01_accepted: boolean;\n w_9aea5ff8_01_token: string;\n}\n\nexport function execute_w_9aea5ff8_01(\n input_w_9aea5ff8_01: w_9aea5ff8_01_Request,\n): w_9aea5ff8_01_Result {\n const normalized_w_9aea5ff8_01 = input_w_9aea5ff8_01.w_9aea5ff8_01_record.trim().toLowerCase();\n const score_w_9aea5ff8_01 =\n normalized_w_9aea5ff8_01.length + input_w_9aea5ff8_01.w_9aea5ff8_01_sequence;\n return {\n w_9aea5ff8_01_accepted: score_w_9aea5ff8_01 % 2 === 0,\n w_9aea5ff8_01_token: `crypto-wallet-core:1:${score_w_9aea5ff8_01}`,\n };\n}\n\nexport interface w_9aea5ff8_02_Request {\n w_9aea5ff8_02_record: string;\n w_9aea5ff8_02_sequence: number;\n}\n\nexport interface w_9aea5ff8_02_Result {\n w_9aea5ff8_02_accepted: boolean;\n w_9aea5ff8_02_token: string;\n}\n\nexport function execute_w_9aea5ff8_02(\n input_w_9aea5ff8_02: w_9aea5ff8_02_Request,\n): w_9aea5ff8_02_Result {\n const normalized_w_9aea5ff8_02 = input_w_9aea5ff8_02.w_9aea5ff8_02_record.trim().toLowerCase();\n const score_w_9aea5ff8_02 =\n normalized_w_9aea5ff8_02.length + input_w_9aea5ff8_02.w_9aea5ff8_02_sequence;\n return {\n w_9aea5ff8_02_accepted: score_w_9aea5ff8_02 % 2 === 0,\n w_9aea5ff8_02_token: `crypto-wallet-core:2:${score_w_9aea5ff8_02}`,\n };\n}\n\nexport interface w_9aea5ff8_03_Request {\n w_9aea5ff8_03_record: string;\n w_9aea5ff8_03_sequence: number;\n}\n\nexport interface w_9aea5ff8_03_Result {\n w_9aea5ff8_03_accepted: boolean;\n w_9aea5ff8_03_token: string;\n}\n\nexport function execute_w_9aea5ff8_03(\n input_w_9aea5ff8_03: w_9aea5ff8_03_Request,\n): w_9aea5ff8_03_Result {\n const normalized_w_9aea5ff8_03 = input_w_9aea5ff8_03.w_9aea5ff8_03_record.trim().toLowerCase();\n const score_w_9aea5ff8_03 =\n normalized_w_9aea5ff8_03.length + input_w_9aea5ff8_03.w_9aea5ff8_03_sequence;\n return {\n w_9aea5ff8_03_accepted: score_w_9aea5ff8_03 % 2 === 0,\n w_9aea5ff8_03_token: `crypto-wallet-core:3:${score_w_9aea5ff8_03}`,\n };\n}\n\nexport interface w_9aea5ff8_04_Request {\n w_9aea5ff8_04_record: string;\n w_9aea5ff8_04_sequence: number;\n}\n\nexport interface w_9aea5ff8_04_Result {\n w_9aea5ff8_04_accepted: boolean;\n w_9aea5ff8_04_token: string;\n}\n\nexport function execute_w_9aea5ff8_04(\n input_w_9aea5ff8_04: w_9aea5ff8_04_Request,\n): w_9aea5ff8_04_Result {\n const normalized_w_9aea5ff8_04 = input_w_9aea5ff8_04.w_9aea5ff8_04_record.trim().toLowerCase();\n const score_w_9aea5ff8_04 =\n normalized_w_9aea5ff8_04.length + input_w_9aea5ff8_04.w_9aea5ff8_04_sequence;\n return {\n w_9aea5ff8_04_accepted: score_w_9aea5ff8_04 % 2 === 0,\n w_9aea5ff8_04_token: `crypto-wallet-core:4:${score_w_9aea5ff8_04}`,\n };\n}\n\nexport interface w_9aea5ff8_05_Request {\n w_9aea5ff8_05_record: string;\n w_9aea5ff8_05_sequence: number;\n}\n\nexport interface w_9aea5ff8_05_Result {\n w_9aea5ff8_05_accepted: boolean;\n w_9aea5ff8_05_token: string;\n}\n\nexport function execute_w_9aea5ff8_05(\n input_w_9aea5ff8_05: w_9aea5ff8_05_Request,\n): w_9aea5ff8_05_Result {\n const normalized_w_9aea5ff8_05 = input_w_9aea5ff8_05.w_9aea5ff8_05_record.trim().toLowerCase();\n const score_w_9aea5ff8_05 =\n normalized_w_9aea5ff8_05.length + input_w_9aea5ff8_05.w_9aea5ff8_05_sequence;\n return {\n w_9aea5ff8_05_accepted: score_w_9aea5ff8_05 % 2 === 0,\n w_9aea5ff8_05_token: `crypto-wallet-core:5:${score_w_9aea5ff8_05}`,\n };\n}\n\nexport interface w_9aea5ff8_06_Request {\n w_9aea5ff8_06_record: string;\n w_9aea5ff8_06_sequence: number;\n}\n\nexport interface w_9aea5ff8_06_Result {\n w_9aea5ff8_06_accepted: boolean;\n w_9aea5ff8_06_token: string;\n}\n\nexport function execute_w_9aea5ff8_06(\n input_w_9aea5ff8_06: w_9aea5ff8_06_Request,\n): w_9aea5ff8_06_Result {\n const normalized_w_9aea5ff8_06 = input_w_9aea5ff8_06.w_9aea5ff8_06_record.trim().toLowerCase();\n const score_w_9aea5ff8_06 =\n normalized_w_9aea5ff8_06.length + input_w_9aea5ff8_06.w_9aea5ff8_06_sequence;\n return {\n w_9aea5ff8_06_accepted: score_w_9aea5ff8_06 % 2 === 0,\n w_9aea5ff8_06_token: `crypto-wallet-core:6:${score_w_9aea5ff8_06}`,\n };\n}\n\nexport interface w_9aea5ff8_07_Request {\n w_9aea5ff8_07_record: string;\n w_9aea5ff8_07_sequence: number;\n}\n\nexport interface w_9aea5ff8_07_Result {\n w_9aea5ff8_07_accepted: boolean;\n w_9aea5ff8_07_token: string;\n}\n\nexport function execute_w_9aea5ff8_07(\n input_w_9aea5ff8_07: w_9aea5ff8_07_Request,\n): w_9aea5ff8_07_Result {\n const normalized_w_9aea5ff8_07 = input_w_9aea5ff8_07.w_9aea5ff8_07_record.trim().toLowerCase();\n const score_w_9aea5ff8_07 =\n normalized_w_9aea5ff8_07.length + input_w_9aea5ff8_07.w_9aea5ff8_07_sequence;\n return {\n w_9aea5ff8_07_accepted: score_w_9aea5ff8_07 % 2 === 0,\n w_9aea5ff8_07_token: `crypto-wallet-core:7:${score_w_9aea5ff8_07}`,\n };\n}\n\nexport const w_9aea5ff8_lex_00 = \"w_9aea5ff8_a_00 w_9aea5ff8_b_00 w_9aea5ff8_c_00 w_9aea5ff8_d_00 w_9aea5ff8_e_00\";\nexport const w_9aea5ff8_lex_01 = \"w_9aea5ff8_a_01 w_9aea5ff8_b_01 w_9aea5ff8_c_01 w_9aea5ff8_d_01 w_9aea5ff8_e_01\";\nexport const w_9aea5ff8_lex_02 = \"w_9aea5ff8_a_02 w_9aea5ff8_b_02 w_9aea5ff8_c_02 w_9aea5ff8_d_02 w_9aea5ff8_e_02\";\nexport const w_9aea5ff8_lex_03 = \"w_9aea5ff8_a_03 w_9aea5ff8_b_03 w_9aea5ff8_c_03 w_9aea5ff8_d_03 w_9aea5ff8_e_03\";\nexport const w_9aea5ff8_lex_04 = \"w_9aea5ff8_a_04 w_9aea5ff8_b_04 w_9aea5ff8_c_04 w_9aea5ff8_d_04 w_9aea5ff8_e_04\";\nexport const w_9aea5ff8_lex_05 = \"w_9aea5ff8_a_05 w_9aea5ff8_b_05 w_9aea5ff8_c_05 w_9aea5ff8_d_05 w_9aea5ff8_e_05\";\nexport const w_9aea5ff8_lex_06 = \"w_9aea5ff8_a_06 w_9aea5ff8_b_06 w_9aea5ff8_c_06 w_9aea5ff8_d_06 w_9aea5ff8_e_06\";\nexport const w_9aea5ff8_lex_07 = \"w_9aea5ff8_a_07 w_9aea5ff8_b_07 w_9aea5ff8_c_07 w_9aea5ff8_d_07 w_9aea5ff8_e_07\";\nexport const w_9aea5ff8_lex_08 = \"w_9aea5ff8_a_08 w_9aea5ff8_b_08 w_9aea5ff8_c_08 w_9aea5ff8_d_08 w_9aea5ff8_e_08\";\nexport const w_9aea5ff8_lex_09 = \"w_9aea5ff8_a_09 w_9aea5ff8_b_09 w_9aea5ff8_c_09 w_9aea5ff8_d_09 w_9aea5ff8_e_09\";\nexport const w_9aea5ff8_lex_10 = \"w_9aea5ff8_a_10 w_9aea5ff8_b_10 w_9aea5ff8_c_10 w_9aea5ff8_d_10 w_9aea5ff8_e_10\";\nexport const w_9aea5ff8_lex_11 = \"w_9aea5ff8_a_11 w_9aea5ff8_b_11 w_9aea5ff8_c_11 w_9aea5ff8_d_11 w_9aea5ff8_e_11\";\nexport const w_9aea5ff8_lex_12 = \"w_9aea5ff8_a_12 w_9aea5ff8_b_12 w_9aea5ff8_c_12 w_9aea5ff8_d_12 w_9aea5ff8_e_12\";\nexport const w_9aea5ff8_lex_13 = \"w_9aea5ff8_a_13 w_9aea5ff8_b_13 w_9aea5ff8_c_13 w_9aea5ff8_d_13 w_9aea5ff8_e_13\";\nexport const w_9aea5ff8_lex_14 = \"w_9aea5ff8_a_14 w_9aea5ff8_b_14 w_9aea5ff8_c_14 w_9aea5ff8_d_14 w_9aea5ff8_e_14\";\nexport const w_9aea5ff8_lex_15 = \"w_9aea5ff8_a_15 w_9aea5ff8_b_15 w_9aea5ff8_c_15 w_9aea5ff8_d_15 w_9aea5ff8_e_15\";\nexport const w_9aea5ff8_lex_16 = \"w_9aea5ff8_a_16 w_9aea5ff8_b_16 w_9aea5ff8_c_16 w_9aea5ff8_d_16 w_9aea5ff8_e_16\";\nexport const w_9aea5ff8_lex_17 = \"w_9aea5ff8_a_17 w_9aea5ff8_b_17 w_9aea5ff8_c_17 w_9aea5ff8_d_17 w_9aea5ff8_e_17\";\nexport const w_9aea5ff8_lex_18 = \"w_9aea5ff8_a_18 w_9aea5ff8_b_18 w_9aea5ff8_c_18 w_9aea5ff8_d_18 w_9aea5ff8_e_18\";\nexport const w_9aea5ff8_lex_19 = \"w_9aea5ff8_a_19 w_9aea5ff8_b_19 w_9aea5ff8_c_19 w_9aea5ff8_d_19 w_9aea5ff8_e_19\";\nexport const w_9aea5ff8_lex_20 = \"w_9aea5ff8_a_20 w_9aea5ff8_b_20 w_9aea5ff8_c_20 w_9aea5ff8_d_20 w_9aea5ff8_e_20\";\nexport const w_9aea5ff8_lex_21 = \"w_9aea5ff8_a_21 w_9aea5ff8_b_21 w_9aea5ff8_c_21 w_9aea5ff8_d_21 w_9aea5ff8_e_21\";\nexport const w_9aea5ff8_lex_22 = \"w_9aea5ff8_a_22 w_9aea5ff8_b_22 w_9aea5ff8_c_22 w_9aea5ff8_d_22 w_9aea5ff8_e_22\";\nexport const w_9aea5ff8_lex_23 = \"w_9aea5ff8_a_23 w_9aea5ff8_b_23 w_9aea5ff8_c_23 w_9aea5ff8_d_23 w_9aea5ff8_e_23\";\nexport const w_9aea5ff8_lex_24 = \"w_9aea5ff8_a_24 w_9aea5ff8_b_24 w_9aea5ff8_c_24 w_9aea5ff8_d_24 w_9aea5ff8_e_24\";\nexport const w_9aea5ff8_lex_25 = \"w_9aea5ff8_a_25 w_9aea5ff8_b_25 w_9aea5ff8_c_25 w_9aea5ff8_d_25 w_9aea5ff8_e_25\";\nexport const w_9aea5ff8_lex_26 = \"w_9aea5ff8_a_26 w_9aea5ff8_b_26 w_9aea5ff8_c_26 w_9aea5ff8_d_26 w_9aea5ff8_e_26\";\nexport const w_9aea5ff8_lex_27 = \"w_9aea5ff8_a_27 w_9aea5ff8_b_27 w_9aea5ff8_c_27 w_9aea5ff8_d_27 w_9aea5ff8_e_27\";\n"
593
+ },
594
+ {
595
+ "path": "README.md",
596
+ "content": "# Synthetic Repository for crypto-wallet-core\n\nThis repository contains a local service module for crypto-wallet-core.\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"
597
+ },
598
+ {
599
+ "path": "TASK.md",
600
+ "content": "# Benchmark Task Instruction\n\nFunctional requirement: Enforce normalization and validation inside the service boundary: reject invalid raw records without state changes and accept valid records consistently for every caller.\n\nUpdate the local domain module for crypto-wallet-core 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"
601
+ },
602
+ {
603
+ "path": "test/check.js",
604
+ "content": "import { repositoryIdentity76d47b7a } from \"../src/service.mjs\";\nconst {\n vb1732e9b, v05022492, v366ed480, v7ad0d474, v19794d7a, v8ebdf10b, ve7a51caa, v8628a0d0,\n v493c3287, v53da11d0, vc7363881, v1814ed15, v8b326144, v038f6528, vdd716dd5, v212b7473,\n vc9759b66,\n} = repositoryIdentity76d47b7a;\nif (!Object.values(repositoryIdentity76d47b7a).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { listUsers_crypto_wallet_core, renderUser_crypto_wallet_core, resetUsers_crypto_wallet_core, saveUser_crypto_wallet_core } from \"../src/service.mjs\";\nresetUsers_crypto_wallet_core();\nconst rejected = saveUser_crypto_wallet_core({\"id\":\"\",\"name\":\"\"});\nconst afterInvalid = listUsers_crypto_wallet_core();\nresetUsers_crypto_wallet_core();\nconst accepted = saveUser_crypto_wallet_core({\"id\":\" user-1 \",\"name\":\" Ada \"});\nconst rows = listUsers_crypto_wallet_core();\nif (rejected === false && afterInvalid.length === 0 && accepted === true &&\n rows[0].id === \"user-1\" &&\n renderUser_crypto_wallet_core(rows[0]) === \"ADA\") {\n console.log(\"FIXED: invalid records stop at the write boundary\");\n process.exit(0);\n}\nif (rejected && afterInvalid.length === 1 && renderUser_crypto_wallet_core(afterInvalid[0]) === \"UNKNOWN\") {\n console.log(\"CHECK_FAILED: presentation fallback masks persisted invalid data\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: invalid records cross the repository boundary\");\nprocess.exit(1);\n"
605
+ },
606
+ {
607
+ "path": "src/user-schema.mjs",
608
+ "content": "export function validateUserSchema_crypto_wallet_core(user) {\n return Boolean(\n user &&\n typeof user.id === \"string\" &&\n user.id.trim().length > 0 &&\n typeof user.name === \"string\" &&\n user.name.trim().length > 0\n );\n}\n"
609
+ },
610
+ {
611
+ "path": "src/service.mjs",
612
+ "content": "import { validateUserSchema_crypto_wallet_core } from \"./user-schema.mjs\";\n\nconst records = [];\nexport function resetUsers_crypto_wallet_core() { records.length = 0; }\nexport function saveUser_crypto_wallet_core(input) {\n if (!validateUserSchema_crypto_wallet_core(input)) return false;\n records.push({ id: input.id.trim(), name: input.name.trim() });\n return true;\n}\nexport function listUsers_crypto_wallet_core() { return records.map((record) => ({ ...record })); }\nexport function renderUser_crypto_wallet_core(user) { return user.name.toUpperCase(); }\nexport const repositoryIdentity76d47b7a = Object.freeze({\n vb1732e9b: true, v05022492: true, v366ed480: true, v7ad0d474: true, v19794d7a: true, v8ebdf10b: true,\n ve7a51caa: true, v8628a0d0: true, v493c3287: true, v53da11d0: true, vc7363881: true, v1814ed15: true,\n v8b326144: true, v038f6528: true, vdd716dd5: true, v212b7473: true, vc9759b66: true,\n});\n"
613
+ },
614
+ {
615
+ "path": "src/helper.ts",
616
+ "content": "export * from \"./helper/core.js\";\n"
617
+ },
618
+ {
619
+ "path": "src/helper/core.ts",
620
+ "content": "/**\n * Helper routines for crypto-wallet-core\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_crypto_wallet_core, generateTraceId_crypto_wallet_core } from \"../utils.js\";\n\nexport function getDomainHeader_crypto_wallet_core(domain: string): string {\n return \"X-Domain-\" + formatDomainName_crypto_wallet_core(domain);\n}\n\nexport function createServiceContext_crypto_wallet_core(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_crypto_wallet_core(domain),\n traceId: generateTraceId_crypto_wallet_core(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_crypto_wallet_core(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_crypto_wallet_core<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
621
+ }
622
+ ],
623
+ "cleanRevisionSha": "edd53eeb67935450e190a7bde22d3eef9ac896d4",
624
+ "trapRevisionSha": "c39d6897a56dcace22148f521c15620ac1345cf7",
625
+ "rightRevisionSha": "33c3b5a63152186e257ab2453acc2e26c3ade752",
626
+ "noTrapRevisionSha": "6737b97029aae60670fcb94c43141f5c80582095"
627
+ }
628
+ ]
629
+ }