@remnic/bench 9.49.0 → 9.50.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-S4BYVSDS.js +16839 -0
- package/dist/h6-failure-gate.md +171 -0
- package/dist/index.d.ts +3434 -5
- package/dist/index.js +2116 -5165
- package/dist/repeated-failure-suite-runner-INWDWQKY.js +28 -0
- package/fixtures/h6-failure-gate/arms/arms.json +27 -0
- package/fixtures/h6-failure-gate/dataset.json +18013 -0
- package/fixtures/h6-failure-gate/decision-rule.json +146 -0
- package/fixtures/h6-failure-gate/generator/regenerate.ts +20 -0
- package/fixtures/h6-failure-gate/schema/action-intent.schema.json +36 -0
- package/fixtures/h6-failure-gate/schema/dataset.schema.json +166 -0
- package/fixtures/h6-failure-gate/schema/task.schema.json +245 -0
- package/fixtures/h6-failure-gate/schema/trap-fingerprint.schema.json +48 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/service.mjs +11 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/service.mjs +18 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/service.mjs +18 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/service.mjs +18 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/service.mjs +18 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/service.mjs +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/service.mjs +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/service.mjs +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/service.mjs +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/service.mjs +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/service.mjs +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/service.mjs +36 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/service.mjs +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/service.mjs +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/service.mjs +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/service.mjs +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/service.mjs +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/service.mjs +16 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/patches/candidate-beta.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/task.json +629 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/service.mjs +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/service.mjs +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/patches/candidate-alpha.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/task.json +629 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/service.mjs +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/service.mjs +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/service.mjs +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/service.mjs +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/service.mjs +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/patches/candidate-beta.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/task.json +629 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/service.mjs +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/service.mjs +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/service.mjs +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/service.mjs +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/service.mjs +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/patches/candidate-alpha.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/task.json +629 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/service.mjs +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/service.mjs +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/service.mjs +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/service.mjs +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/patches/candidate-beta.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/task.json +629 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/service.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/service.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/service.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/service.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/service.mjs +16 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/test/check.js +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/test/check.js +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/service.mjs +16 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/test/check.js +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/service.mjs +16 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/test/check.js +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/service.mjs +16 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/test/check.js +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/test/check.js +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/service.mjs +16 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/test/check.js +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/test/check.js +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/test/check.js +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/test/check.js +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/test/check.js +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/test/check.js +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/test/check.js +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/test/check.js +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/test/check.js +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/test/check.js +24 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/test/check.js +24 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/test/check.js +24 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/test/check.js +24 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/test/check.js +24 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/test/check.js +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/test/check.js +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/test/check.js +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/test/check.js +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/test/check.js +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/config/local-override.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/service.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/patches/candidate-alpha.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/task.json +645 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/config/local-override.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/config/local-override.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/config/local-override.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/config/runtime.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/service.mjs +11 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/patches/candidate-beta.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/task.json +645 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/config/runtime.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/config/runtime.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/config/runtime.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/config/deployment.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/patches/candidate-alpha.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/task.json +645 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/config/deployment.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/config/deployment.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/config/deployment.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/config/user.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/service.mjs +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/patches/candidate-beta.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/task.json +645 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/config/user.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/config/user.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/config/user.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/config/session.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/patches/candidate-alpha.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/task.json +645 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/config/session.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/config/session.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/config/session.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/trap-taxonomy.json +50 -0
- package/package.json +6 -4
- package/profiles/README.md +33 -0
- package/profiles/h6-example.json +25 -0
|
@@ -0,0 +1,577 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "h6-task-21",
|
|
3
|
+
"trapId": "stale-cache-illusion",
|
|
4
|
+
"domain": "feature-flag-service",
|
|
5
|
+
"title": "Correct feature-flag-service service behavior",
|
|
6
|
+
"description": "Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.",
|
|
7
|
+
"canonicalBaseFiles": [
|
|
8
|
+
{
|
|
9
|
+
"path": "package.json",
|
|
10
|
+
"content": "{\n \"name\": \"@vellum-quarry/feature-flag-service\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for feature-flag-service\",\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 feature-flag-service\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_feature_flag_service, QuillResponse_feature_flag_service } from \"./types.js\";\n\nexport function quillApiQuery_feature_flag_service(\n payload: Record<string, unknown>,\n opts?: QuillOptions_feature_flag_service,\n): QuillResponse_feature_flag_service {\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: \"feature-flag-service\" },\n };\n}\n\nexport function quillHealthCheck_feature_flag_service(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_feature_flag_service(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_feature_flag_service(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_feature_flag_service(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_feature_flag_service(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_feature_flag_service(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_feature_flag_service(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_feature_flag_service(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 feature-flag-service\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_feature_flag_service {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_feature_flag_service {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_feature_flag_service {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_feature_flag_service;\n}\n\nexport interface QuillBatchRequest_feature_flag_service {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_feature_flag_service {\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 feature-flag-service\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_feature_flag_service {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_feature_flag_service {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_feature_flag_service {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_feature_flag_service {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_feature_flag_service<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_feature_flag_service {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"path": "src/utils.ts",
|
|
30
|
+
"content": "/**\n * Utility functions for domain feature-flag-service\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_feature_flag_service(name: string): string {\n if (!name) return \"feature-flag-service\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_feature_flag_service(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_feature_flag_service(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_feature_flag_service<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_feature_flag_service(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_feature_flag_service(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_feature_flag_service(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 feature-flag-service\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_feature_flag_service = {\n domain: \"feature-flag-service\",\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_feature_flag_service(): typeof DEFAULT_CONFIG_feature_flag_service {\n return { ...DEFAULT_CONFIG_feature_flag_service };\n}\n"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"path": "src/helper.ts",
|
|
38
|
+
"content": "/**\n * Helper routines for feature-flag-service\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_feature_flag_service, generateTraceId_feature_flag_service } from \"./utils.js\";\n\nexport function getDomainHeader_feature_flag_service(domain: string): string {\n return \"X-Domain-\" + formatDomainName_feature_flag_service(domain);\n}\n\nexport function createServiceContext_feature_flag_service(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_feature_flag_service(domain),\n traceId: generateTraceId_feature_flag_service(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_feature_flag_service(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_feature_flag_service<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 feature-flag-service.\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_181e29da_00_Request {\n w_181e29da_00_record: string;\n w_181e29da_00_sequence: number;\n}\n\nexport interface w_181e29da_00_Result {\n w_181e29da_00_accepted: boolean;\n w_181e29da_00_token: string;\n}\n\nexport function execute_w_181e29da_00(\n input_w_181e29da_00: w_181e29da_00_Request,\n): w_181e29da_00_Result {\n const normalized_w_181e29da_00 = input_w_181e29da_00.w_181e29da_00_record.trim().toLowerCase();\n const score_w_181e29da_00 =\n normalized_w_181e29da_00.length + input_w_181e29da_00.w_181e29da_00_sequence;\n return {\n w_181e29da_00_accepted: score_w_181e29da_00 % 2 === 0,\n w_181e29da_00_token: `feature-flag-service:0:${score_w_181e29da_00}`,\n };\n}\n\nexport interface w_181e29da_01_Request {\n w_181e29da_01_record: string;\n w_181e29da_01_sequence: number;\n}\n\nexport interface w_181e29da_01_Result {\n w_181e29da_01_accepted: boolean;\n w_181e29da_01_token: string;\n}\n\nexport function execute_w_181e29da_01(\n input_w_181e29da_01: w_181e29da_01_Request,\n): w_181e29da_01_Result {\n const normalized_w_181e29da_01 = input_w_181e29da_01.w_181e29da_01_record.trim().toLowerCase();\n const score_w_181e29da_01 =\n normalized_w_181e29da_01.length + input_w_181e29da_01.w_181e29da_01_sequence;\n return {\n w_181e29da_01_accepted: score_w_181e29da_01 % 2 === 0,\n w_181e29da_01_token: `feature-flag-service:1:${score_w_181e29da_01}`,\n };\n}\n\nexport interface w_181e29da_02_Request {\n w_181e29da_02_record: string;\n w_181e29da_02_sequence: number;\n}\n\nexport interface w_181e29da_02_Result {\n w_181e29da_02_accepted: boolean;\n w_181e29da_02_token: string;\n}\n\nexport function execute_w_181e29da_02(\n input_w_181e29da_02: w_181e29da_02_Request,\n): w_181e29da_02_Result {\n const normalized_w_181e29da_02 = input_w_181e29da_02.w_181e29da_02_record.trim().toLowerCase();\n const score_w_181e29da_02 =\n normalized_w_181e29da_02.length + input_w_181e29da_02.w_181e29da_02_sequence;\n return {\n w_181e29da_02_accepted: score_w_181e29da_02 % 2 === 0,\n w_181e29da_02_token: `feature-flag-service:2:${score_w_181e29da_02}`,\n };\n}\n\nexport interface w_181e29da_03_Request {\n w_181e29da_03_record: string;\n w_181e29da_03_sequence: number;\n}\n\nexport interface w_181e29da_03_Result {\n w_181e29da_03_accepted: boolean;\n w_181e29da_03_token: string;\n}\n\nexport function execute_w_181e29da_03(\n input_w_181e29da_03: w_181e29da_03_Request,\n): w_181e29da_03_Result {\n const normalized_w_181e29da_03 = input_w_181e29da_03.w_181e29da_03_record.trim().toLowerCase();\n const score_w_181e29da_03 =\n normalized_w_181e29da_03.length + input_w_181e29da_03.w_181e29da_03_sequence;\n return {\n w_181e29da_03_accepted: score_w_181e29da_03 % 2 === 0,\n w_181e29da_03_token: `feature-flag-service:3:${score_w_181e29da_03}`,\n };\n}\n\nexport interface w_181e29da_04_Request {\n w_181e29da_04_record: string;\n w_181e29da_04_sequence: number;\n}\n\nexport interface w_181e29da_04_Result {\n w_181e29da_04_accepted: boolean;\n w_181e29da_04_token: string;\n}\n\nexport function execute_w_181e29da_04(\n input_w_181e29da_04: w_181e29da_04_Request,\n): w_181e29da_04_Result {\n const normalized_w_181e29da_04 = input_w_181e29da_04.w_181e29da_04_record.trim().toLowerCase();\n const score_w_181e29da_04 =\n normalized_w_181e29da_04.length + input_w_181e29da_04.w_181e29da_04_sequence;\n return {\n w_181e29da_04_accepted: score_w_181e29da_04 % 2 === 0,\n w_181e29da_04_token: `feature-flag-service:4:${score_w_181e29da_04}`,\n };\n}\n\nexport interface w_181e29da_05_Request {\n w_181e29da_05_record: string;\n w_181e29da_05_sequence: number;\n}\n\nexport interface w_181e29da_05_Result {\n w_181e29da_05_accepted: boolean;\n w_181e29da_05_token: string;\n}\n\nexport function execute_w_181e29da_05(\n input_w_181e29da_05: w_181e29da_05_Request,\n): w_181e29da_05_Result {\n const normalized_w_181e29da_05 = input_w_181e29da_05.w_181e29da_05_record.trim().toLowerCase();\n const score_w_181e29da_05 =\n normalized_w_181e29da_05.length + input_w_181e29da_05.w_181e29da_05_sequence;\n return {\n w_181e29da_05_accepted: score_w_181e29da_05 % 2 === 0,\n w_181e29da_05_token: `feature-flag-service:5:${score_w_181e29da_05}`,\n };\n}\n\nexport interface w_181e29da_06_Request {\n w_181e29da_06_record: string;\n w_181e29da_06_sequence: number;\n}\n\nexport interface w_181e29da_06_Result {\n w_181e29da_06_accepted: boolean;\n w_181e29da_06_token: string;\n}\n\nexport function execute_w_181e29da_06(\n input_w_181e29da_06: w_181e29da_06_Request,\n): w_181e29da_06_Result {\n const normalized_w_181e29da_06 = input_w_181e29da_06.w_181e29da_06_record.trim().toLowerCase();\n const score_w_181e29da_06 =\n normalized_w_181e29da_06.length + input_w_181e29da_06.w_181e29da_06_sequence;\n return {\n w_181e29da_06_accepted: score_w_181e29da_06 % 2 === 0,\n w_181e29da_06_token: `feature-flag-service:6:${score_w_181e29da_06}`,\n };\n}\n\nexport interface w_181e29da_07_Request {\n w_181e29da_07_record: string;\n w_181e29da_07_sequence: number;\n}\n\nexport interface w_181e29da_07_Result {\n w_181e29da_07_accepted: boolean;\n w_181e29da_07_token: string;\n}\n\nexport function execute_w_181e29da_07(\n input_w_181e29da_07: w_181e29da_07_Request,\n): w_181e29da_07_Result {\n const normalized_w_181e29da_07 = input_w_181e29da_07.w_181e29da_07_record.trim().toLowerCase();\n const score_w_181e29da_07 =\n normalized_w_181e29da_07.length + input_w_181e29da_07.w_181e29da_07_sequence;\n return {\n w_181e29da_07_accepted: score_w_181e29da_07 % 2 === 0,\n w_181e29da_07_token: `feature-flag-service:7:${score_w_181e29da_07}`,\n };\n}\n\nexport const w_181e29da_lex_00 = \"w_181e29da_a_00 w_181e29da_b_00 w_181e29da_c_00 w_181e29da_d_00 w_181e29da_e_00\";\nexport const w_181e29da_lex_01 = \"w_181e29da_a_01 w_181e29da_b_01 w_181e29da_c_01 w_181e29da_d_01 w_181e29da_e_01\";\nexport const w_181e29da_lex_02 = \"w_181e29da_a_02 w_181e29da_b_02 w_181e29da_c_02 w_181e29da_d_02 w_181e29da_e_02\";\nexport const w_181e29da_lex_03 = \"w_181e29da_a_03 w_181e29da_b_03 w_181e29da_c_03 w_181e29da_d_03 w_181e29da_e_03\";\nexport const w_181e29da_lex_04 = \"w_181e29da_a_04 w_181e29da_b_04 w_181e29da_c_04 w_181e29da_d_04 w_181e29da_e_04\";\nexport const w_181e29da_lex_05 = \"w_181e29da_a_05 w_181e29da_b_05 w_181e29da_c_05 w_181e29da_d_05 w_181e29da_e_05\";\nexport const w_181e29da_lex_06 = \"w_181e29da_a_06 w_181e29da_b_06 w_181e29da_c_06 w_181e29da_d_06 w_181e29da_e_06\";\nexport const w_181e29da_lex_07 = \"w_181e29da_a_07 w_181e29da_b_07 w_181e29da_c_07 w_181e29da_d_07 w_181e29da_e_07\";\nexport const w_181e29da_lex_08 = \"w_181e29da_a_08 w_181e29da_b_08 w_181e29da_c_08 w_181e29da_d_08 w_181e29da_e_08\";\nexport const w_181e29da_lex_09 = \"w_181e29da_a_09 w_181e29da_b_09 w_181e29da_c_09 w_181e29da_d_09 w_181e29da_e_09\";\nexport const w_181e29da_lex_10 = \"w_181e29da_a_10 w_181e29da_b_10 w_181e29da_c_10 w_181e29da_d_10 w_181e29da_e_10\";\nexport const w_181e29da_lex_11 = \"w_181e29da_a_11 w_181e29da_b_11 w_181e29da_c_11 w_181e29da_d_11 w_181e29da_e_11\";\nexport const w_181e29da_lex_12 = \"w_181e29da_a_12 w_181e29da_b_12 w_181e29da_c_12 w_181e29da_d_12 w_181e29da_e_12\";\nexport const w_181e29da_lex_13 = \"w_181e29da_a_13 w_181e29da_b_13 w_181e29da_c_13 w_181e29da_d_13 w_181e29da_e_13\";\nexport const w_181e29da_lex_14 = \"w_181e29da_a_14 w_181e29da_b_14 w_181e29da_c_14 w_181e29da_d_14 w_181e29da_e_14\";\nexport const w_181e29da_lex_15 = \"w_181e29da_a_15 w_181e29da_b_15 w_181e29da_c_15 w_181e29da_d_15 w_181e29da_e_15\";\nexport const w_181e29da_lex_16 = \"w_181e29da_a_16 w_181e29da_b_16 w_181e29da_c_16 w_181e29da_d_16 w_181e29da_e_16\";\nexport const w_181e29da_lex_17 = \"w_181e29da_a_17 w_181e29da_b_17 w_181e29da_c_17 w_181e29da_d_17 w_181e29da_e_17\";\nexport const w_181e29da_lex_18 = \"w_181e29da_a_18 w_181e29da_b_18 w_181e29da_c_18 w_181e29da_d_18 w_181e29da_e_18\";\nexport const w_181e29da_lex_19 = \"w_181e29da_a_19 w_181e29da_b_19 w_181e29da_c_19 w_181e29da_d_19 w_181e29da_e_19\";\nexport const w_181e29da_lex_20 = \"w_181e29da_a_20 w_181e29da_b_20 w_181e29da_c_20 w_181e29da_d_20 w_181e29da_e_20\";\nexport const w_181e29da_lex_21 = \"w_181e29da_a_21 w_181e29da_b_21 w_181e29da_c_21 w_181e29da_d_21 w_181e29da_e_21\";\nexport const w_181e29da_lex_22 = \"w_181e29da_a_22 w_181e29da_b_22 w_181e29da_c_22 w_181e29da_d_22 w_181e29da_e_22\";\nexport const w_181e29da_lex_23 = \"w_181e29da_a_23 w_181e29da_b_23 w_181e29da_c_23 w_181e29da_d_23 w_181e29da_e_23\";\nexport const w_181e29da_lex_24 = \"w_181e29da_a_24 w_181e29da_b_24 w_181e29da_c_24 w_181e29da_d_24 w_181e29da_e_24\";\nexport const w_181e29da_lex_25 = \"w_181e29da_a_25 w_181e29da_b_25 w_181e29da_c_25 w_181e29da_d_25 w_181e29da_e_25\";\nexport const w_181e29da_lex_26 = \"w_181e29da_a_26 w_181e29da_b_26 w_181e29da_c_26 w_181e29da_d_26 w_181e29da_e_26\";\nexport const w_181e29da_lex_27 = \"w_181e29da_a_27 w_181e29da_b_27 w_181e29da_c_27 w_181e29da_d_27 w_181e29da_e_27\";\n"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "README.md",
|
|
46
|
+
"content": "# Synthetic Repository for feature-flag-service\n\nThis repository contains a local service module for feature-flag-service.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"path": "TASK.md",
|
|
50
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for feature-flag-service 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 { repositoryIdentity0d9d1564 } from \"../src/service.mjs\";\nconst {\n v0abeb102, v8893624a, vf64bdf33, v96251c92, v2bb0fbd9, vd9b6d6ff, vcc7685f9, v49c5d1e9,\n v08d1cd23, v8dfdd2ef, vc895b829, v75c696f7, v5ab8a88e, v476c9589, vd2ecbcf6, va1462432,\n v580cbdd6,\n} = repositoryIdentity0d9d1564;\nif (!Object.values(repositoryIdentity0d9d1564).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_feature_flag_service, resetCache_feature_flag_service } from \"../src/service.mjs\";\nresetCache_feature_flag_service();\nconst inputs = [2,3,-1];\nconst expected = [7,10,-2];\nconst actual = inputs.map((value) => calculate_feature_flag_service(value));\nconst repeated = calculate_feature_flag_service(inputs[0]);\nif (actual.every((value, index) => value === expected[index]) && repeated === expected[0]) {\n console.log(\"FIXED: map cache keys include calculation input\");\n process.exit(0);\n}\nif (actual[0] === expected[0] && actual.slice(1).every((value) => value === actual[0])) {\n console.log(\"CHECK_FAILED: formula changed without changing map identity\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: formula or cache behavior is stale\");\nprocess.exit(1);\n"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"path": "src/service.mjs",
|
|
58
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = \"calculation\";\n if (cache.has(key)) return cache.get(key);\n const result = value * 2;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"checkCommand": "node test/check.js",
|
|
62
|
+
"fileCount": 13,
|
|
63
|
+
"lineCount": 566,
|
|
64
|
+
"fingerprint": {
|
|
65
|
+
"version": 1,
|
|
66
|
+
"trapId": "stale-cache-illusion",
|
|
67
|
+
"symbol": "editCalcStaleCache_feature_flag_service",
|
|
68
|
+
"file": "src/service.mjs",
|
|
69
|
+
"pattern": "edit_calc_without_cache_key_change",
|
|
70
|
+
"strategyId": "candidate-alpha"
|
|
71
|
+
},
|
|
72
|
+
"normalizedActionIntent": {
|
|
73
|
+
"version": 1,
|
|
74
|
+
"actionType": "service_maintenance",
|
|
75
|
+
"targetSymbol": "service_feature_flag_service",
|
|
76
|
+
"filePath": "src/service.mjs",
|
|
77
|
+
"contextHash": "94de4954a84fa004d6837841bdb5d877a834da27f82999d60e40380bcc289e44"
|
|
78
|
+
},
|
|
79
|
+
"offlineCheckMark": "a75c5ab50bddfef28c453b427718bb300c4d1e9b61f7b9367127a45ecb447184",
|
|
80
|
+
"offlineFailureMark": "3f30bd82e9780859f89cea4653e724932ef32c7d710417891cdaf616708ae17c",
|
|
81
|
+
"maxTokenCap": 8192,
|
|
82
|
+
"maxAttemptCap": 3,
|
|
83
|
+
"split": "pilot",
|
|
84
|
+
"variants": [
|
|
85
|
+
{
|
|
86
|
+
"variantId": "h6-task-21-v1",
|
|
87
|
+
"baseTaskId": "h6-task-21",
|
|
88
|
+
"variantIndex": 1,
|
|
89
|
+
"distance": 1,
|
|
90
|
+
"domain": "feature-flag-service",
|
|
91
|
+
"files": [
|
|
92
|
+
{
|
|
93
|
+
"path": "package.json",
|
|
94
|
+
"content": "{\n \"name\": \"@vellum-quarry/feature-flag-service\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for feature-flag-service\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"path": "tsconfig.json",
|
|
98
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
102
|
+
"content": "/**\n * Counterfactual SDK for domain feature-flag-service\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_feature_flag_service, QuillResponse_feature_flag_service } from \"./types.js\";\n\nexport function quillApiQuery_feature_flag_service(\n payload: Record<string, unknown>,\n opts?: QuillOptions_feature_flag_service,\n): QuillResponse_feature_flag_service {\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: \"feature-flag-service\" },\n };\n}\n\nexport function quillHealthCheck_feature_flag_service(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_feature_flag_service(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_feature_flag_service(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_feature_flag_service(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_feature_flag_service(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_feature_flag_service(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_feature_flag_service(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_feature_flag_service(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
106
|
+
"content": "/**\n * Type declarations for counterfactual SDK feature-flag-service\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_feature_flag_service {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_feature_flag_service {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_feature_flag_service {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_feature_flag_service;\n}\n\nexport interface QuillBatchRequest_feature_flag_service {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_feature_flag_service {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"path": "src/types.ts",
|
|
110
|
+
"content": "/**\n * Domain type definitions for feature-flag-service\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_feature_flag_service {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_feature_flag_service {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_feature_flag_service {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_feature_flag_service {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_feature_flag_service<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_feature_flag_service {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"path": "src/utils.ts",
|
|
114
|
+
"content": "/**\n * Utility functions for domain feature-flag-service\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_feature_flag_service(name: string): string {\n if (!name) return \"feature-flag-service\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_feature_flag_service(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_feature_flag_service(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_feature_flag_service<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_feature_flag_service(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_feature_flag_service(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_feature_flag_service(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"path": "src/config.ts",
|
|
118
|
+
"content": "/**\n * Default configuration options for feature-flag-service\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_feature_flag_service = {\n domain: \"feature-flag-service\",\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_feature_flag_service(): typeof DEFAULT_CONFIG_feature_flag_service {\n return { ...DEFAULT_CONFIG_feature_flag_service };\n}\n"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"path": "src/domain-workflow.ts",
|
|
122
|
+
"content": "/**\n * Local workflow contracts for feature-flag-service.\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_181e29da_00_Request {\n w_181e29da_00_record: string;\n w_181e29da_00_sequence: number;\n}\n\nexport interface w_181e29da_00_Result {\n w_181e29da_00_accepted: boolean;\n w_181e29da_00_token: string;\n}\n\nexport function execute_w_181e29da_00(\n input_w_181e29da_00: w_181e29da_00_Request,\n): w_181e29da_00_Result {\n const normalized_w_181e29da_00 = input_w_181e29da_00.w_181e29da_00_record.trim().toLowerCase();\n const score_w_181e29da_00 =\n normalized_w_181e29da_00.length + input_w_181e29da_00.w_181e29da_00_sequence;\n return {\n w_181e29da_00_accepted: score_w_181e29da_00 % 2 === 0,\n w_181e29da_00_token: `feature-flag-service:0:${score_w_181e29da_00}`,\n };\n}\n\nexport interface w_181e29da_01_Request {\n w_181e29da_01_record: string;\n w_181e29da_01_sequence: number;\n}\n\nexport interface w_181e29da_01_Result {\n w_181e29da_01_accepted: boolean;\n w_181e29da_01_token: string;\n}\n\nexport function execute_w_181e29da_01(\n input_w_181e29da_01: w_181e29da_01_Request,\n): w_181e29da_01_Result {\n const normalized_w_181e29da_01 = input_w_181e29da_01.w_181e29da_01_record.trim().toLowerCase();\n const score_w_181e29da_01 =\n normalized_w_181e29da_01.length + input_w_181e29da_01.w_181e29da_01_sequence;\n return {\n w_181e29da_01_accepted: score_w_181e29da_01 % 2 === 0,\n w_181e29da_01_token: `feature-flag-service:1:${score_w_181e29da_01}`,\n };\n}\n\nexport interface w_181e29da_02_Request {\n w_181e29da_02_record: string;\n w_181e29da_02_sequence: number;\n}\n\nexport interface w_181e29da_02_Result {\n w_181e29da_02_accepted: boolean;\n w_181e29da_02_token: string;\n}\n\nexport function execute_w_181e29da_02(\n input_w_181e29da_02: w_181e29da_02_Request,\n): w_181e29da_02_Result {\n const normalized_w_181e29da_02 = input_w_181e29da_02.w_181e29da_02_record.trim().toLowerCase();\n const score_w_181e29da_02 =\n normalized_w_181e29da_02.length + input_w_181e29da_02.w_181e29da_02_sequence;\n return {\n w_181e29da_02_accepted: score_w_181e29da_02 % 2 === 0,\n w_181e29da_02_token: `feature-flag-service:2:${score_w_181e29da_02}`,\n };\n}\n\nexport interface w_181e29da_03_Request {\n w_181e29da_03_record: string;\n w_181e29da_03_sequence: number;\n}\n\nexport interface w_181e29da_03_Result {\n w_181e29da_03_accepted: boolean;\n w_181e29da_03_token: string;\n}\n\nexport function execute_w_181e29da_03(\n input_w_181e29da_03: w_181e29da_03_Request,\n): w_181e29da_03_Result {\n const normalized_w_181e29da_03 = input_w_181e29da_03.w_181e29da_03_record.trim().toLowerCase();\n const score_w_181e29da_03 =\n normalized_w_181e29da_03.length + input_w_181e29da_03.w_181e29da_03_sequence;\n return {\n w_181e29da_03_accepted: score_w_181e29da_03 % 2 === 0,\n w_181e29da_03_token: `feature-flag-service:3:${score_w_181e29da_03}`,\n };\n}\n\nexport interface w_181e29da_04_Request {\n w_181e29da_04_record: string;\n w_181e29da_04_sequence: number;\n}\n\nexport interface w_181e29da_04_Result {\n w_181e29da_04_accepted: boolean;\n w_181e29da_04_token: string;\n}\n\nexport function execute_w_181e29da_04(\n input_w_181e29da_04: w_181e29da_04_Request,\n): w_181e29da_04_Result {\n const normalized_w_181e29da_04 = input_w_181e29da_04.w_181e29da_04_record.trim().toLowerCase();\n const score_w_181e29da_04 =\n normalized_w_181e29da_04.length + input_w_181e29da_04.w_181e29da_04_sequence;\n return {\n w_181e29da_04_accepted: score_w_181e29da_04 % 2 === 0,\n w_181e29da_04_token: `feature-flag-service:4:${score_w_181e29da_04}`,\n };\n}\n\nexport interface w_181e29da_05_Request {\n w_181e29da_05_record: string;\n w_181e29da_05_sequence: number;\n}\n\nexport interface w_181e29da_05_Result {\n w_181e29da_05_accepted: boolean;\n w_181e29da_05_token: string;\n}\n\nexport function execute_w_181e29da_05(\n input_w_181e29da_05: w_181e29da_05_Request,\n): w_181e29da_05_Result {\n const normalized_w_181e29da_05 = input_w_181e29da_05.w_181e29da_05_record.trim().toLowerCase();\n const score_w_181e29da_05 =\n normalized_w_181e29da_05.length + input_w_181e29da_05.w_181e29da_05_sequence;\n return {\n w_181e29da_05_accepted: score_w_181e29da_05 % 2 === 0,\n w_181e29da_05_token: `feature-flag-service:5:${score_w_181e29da_05}`,\n };\n}\n\nexport interface w_181e29da_06_Request {\n w_181e29da_06_record: string;\n w_181e29da_06_sequence: number;\n}\n\nexport interface w_181e29da_06_Result {\n w_181e29da_06_accepted: boolean;\n w_181e29da_06_token: string;\n}\n\nexport function execute_w_181e29da_06(\n input_w_181e29da_06: w_181e29da_06_Request,\n): w_181e29da_06_Result {\n const normalized_w_181e29da_06 = input_w_181e29da_06.w_181e29da_06_record.trim().toLowerCase();\n const score_w_181e29da_06 =\n normalized_w_181e29da_06.length + input_w_181e29da_06.w_181e29da_06_sequence;\n return {\n w_181e29da_06_accepted: score_w_181e29da_06 % 2 === 0,\n w_181e29da_06_token: `feature-flag-service:6:${score_w_181e29da_06}`,\n };\n}\n\nexport interface w_181e29da_07_Request {\n w_181e29da_07_record: string;\n w_181e29da_07_sequence: number;\n}\n\nexport interface w_181e29da_07_Result {\n w_181e29da_07_accepted: boolean;\n w_181e29da_07_token: string;\n}\n\nexport function execute_w_181e29da_07(\n input_w_181e29da_07: w_181e29da_07_Request,\n): w_181e29da_07_Result {\n const normalized_w_181e29da_07 = input_w_181e29da_07.w_181e29da_07_record.trim().toLowerCase();\n const score_w_181e29da_07 =\n normalized_w_181e29da_07.length + input_w_181e29da_07.w_181e29da_07_sequence;\n return {\n w_181e29da_07_accepted: score_w_181e29da_07 % 2 === 0,\n w_181e29da_07_token: `feature-flag-service:7:${score_w_181e29da_07}`,\n };\n}\n\nexport const w_181e29da_lex_00 = \"w_181e29da_a_00 w_181e29da_b_00 w_181e29da_c_00 w_181e29da_d_00 w_181e29da_e_00\";\nexport const w_181e29da_lex_01 = \"w_181e29da_a_01 w_181e29da_b_01 w_181e29da_c_01 w_181e29da_d_01 w_181e29da_e_01\";\nexport const w_181e29da_lex_02 = \"w_181e29da_a_02 w_181e29da_b_02 w_181e29da_c_02 w_181e29da_d_02 w_181e29da_e_02\";\nexport const w_181e29da_lex_03 = \"w_181e29da_a_03 w_181e29da_b_03 w_181e29da_c_03 w_181e29da_d_03 w_181e29da_e_03\";\nexport const w_181e29da_lex_04 = \"w_181e29da_a_04 w_181e29da_b_04 w_181e29da_c_04 w_181e29da_d_04 w_181e29da_e_04\";\nexport const w_181e29da_lex_05 = \"w_181e29da_a_05 w_181e29da_b_05 w_181e29da_c_05 w_181e29da_d_05 w_181e29da_e_05\";\nexport const w_181e29da_lex_06 = \"w_181e29da_a_06 w_181e29da_b_06 w_181e29da_c_06 w_181e29da_d_06 w_181e29da_e_06\";\nexport const w_181e29da_lex_07 = \"w_181e29da_a_07 w_181e29da_b_07 w_181e29da_c_07 w_181e29da_d_07 w_181e29da_e_07\";\nexport const w_181e29da_lex_08 = \"w_181e29da_a_08 w_181e29da_b_08 w_181e29da_c_08 w_181e29da_d_08 w_181e29da_e_08\";\nexport const w_181e29da_lex_09 = \"w_181e29da_a_09 w_181e29da_b_09 w_181e29da_c_09 w_181e29da_d_09 w_181e29da_e_09\";\nexport const w_181e29da_lex_10 = \"w_181e29da_a_10 w_181e29da_b_10 w_181e29da_c_10 w_181e29da_d_10 w_181e29da_e_10\";\nexport const w_181e29da_lex_11 = \"w_181e29da_a_11 w_181e29da_b_11 w_181e29da_c_11 w_181e29da_d_11 w_181e29da_e_11\";\nexport const w_181e29da_lex_12 = \"w_181e29da_a_12 w_181e29da_b_12 w_181e29da_c_12 w_181e29da_d_12 w_181e29da_e_12\";\nexport const w_181e29da_lex_13 = \"w_181e29da_a_13 w_181e29da_b_13 w_181e29da_c_13 w_181e29da_d_13 w_181e29da_e_13\";\nexport const w_181e29da_lex_14 = \"w_181e29da_a_14 w_181e29da_b_14 w_181e29da_c_14 w_181e29da_d_14 w_181e29da_e_14\";\nexport const w_181e29da_lex_15 = \"w_181e29da_a_15 w_181e29da_b_15 w_181e29da_c_15 w_181e29da_d_15 w_181e29da_e_15\";\nexport const w_181e29da_lex_16 = \"w_181e29da_a_16 w_181e29da_b_16 w_181e29da_c_16 w_181e29da_d_16 w_181e29da_e_16\";\nexport const w_181e29da_lex_17 = \"w_181e29da_a_17 w_181e29da_b_17 w_181e29da_c_17 w_181e29da_d_17 w_181e29da_e_17\";\nexport const w_181e29da_lex_18 = \"w_181e29da_a_18 w_181e29da_b_18 w_181e29da_c_18 w_181e29da_d_18 w_181e29da_e_18\";\nexport const w_181e29da_lex_19 = \"w_181e29da_a_19 w_181e29da_b_19 w_181e29da_c_19 w_181e29da_d_19 w_181e29da_e_19\";\nexport const w_181e29da_lex_20 = \"w_181e29da_a_20 w_181e29da_b_20 w_181e29da_c_20 w_181e29da_d_20 w_181e29da_e_20\";\nexport const w_181e29da_lex_21 = \"w_181e29da_a_21 w_181e29da_b_21 w_181e29da_c_21 w_181e29da_d_21 w_181e29da_e_21\";\nexport const w_181e29da_lex_22 = \"w_181e29da_a_22 w_181e29da_b_22 w_181e29da_c_22 w_181e29da_d_22 w_181e29da_e_22\";\nexport const w_181e29da_lex_23 = \"w_181e29da_a_23 w_181e29da_b_23 w_181e29da_c_23 w_181e29da_d_23 w_181e29da_e_23\";\nexport const w_181e29da_lex_24 = \"w_181e29da_a_24 w_181e29da_b_24 w_181e29da_c_24 w_181e29da_d_24 w_181e29da_e_24\";\nexport const w_181e29da_lex_25 = \"w_181e29da_a_25 w_181e29da_b_25 w_181e29da_c_25 w_181e29da_d_25 w_181e29da_e_25\";\nexport const w_181e29da_lex_26 = \"w_181e29da_a_26 w_181e29da_b_26 w_181e29da_c_26 w_181e29da_d_26 w_181e29da_e_26\";\nexport const w_181e29da_lex_27 = \"w_181e29da_a_27 w_181e29da_b_27 w_181e29da_c_27 w_181e29da_d_27 w_181e29da_e_27\";\n"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"path": "README.md",
|
|
126
|
+
"content": "# Synthetic Repository for feature-flag-service\n\nThis repository contains a local service module for feature-flag-service.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"path": "TASK.md",
|
|
130
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for feature-flag-service so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"path": "test/check.js",
|
|
134
|
+
"content": "import { repositoryIdentity0d9d1564 } from \"../src/service.mjs\";\nconst {\n v0abeb102, v8893624a, vf64bdf33, v96251c92, v2bb0fbd9, vd9b6d6ff, vcc7685f9, v49c5d1e9,\n v08d1cd23, v8dfdd2ef, vc895b829, v75c696f7, v5ab8a88e, v476c9589, vd2ecbcf6, va1462432,\n v580cbdd6,\n} = repositoryIdentity0d9d1564;\nif (!Object.values(repositoryIdentity0d9d1564).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_feature_flag_service, resetCache_feature_flag_service } from \"../src/service.mjs\";\nresetCache_feature_flag_service();\nconst inputs = [2,3,-1];\nconst expected = [7,10,-2];\nconst actual = inputs.map((value) => calculate_feature_flag_service(value));\nconst repeated = calculate_feature_flag_service(inputs[0]);\nif (actual.every((value, index) => value === expected[index]) && repeated === expected[0]) {\n console.log(\"FIXED: map cache keys include calculation input\");\n process.exit(0);\n}\nif (actual[0] === expected[0] && actual.slice(1).every((value) => value === actual[0])) {\n console.log(\"CHECK_FAILED: formula changed without changing map identity\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: formula or cache behavior is stale\");\nprocess.exit(1);\n"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"path": "src/service.mjs",
|
|
138
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = \"calculation\";\n if (cache.has(key)) return cache.get(key);\n const result = value * 2;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"path": "src/helper.ts",
|
|
142
|
+
"content": "/**\n * Helper routines for feature-flag-service\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_feature_flag_service, generateTraceId_feature_flag_service } from \"./utils.js\";\n\nexport function getDomainHeader_feature_flag_service_revision(domain: string): string {\n return \"X-Domain-\" + formatDomainName_feature_flag_service(domain);\n}\n\nexport function createServiceContext_feature_flag_service_revision(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_feature_flag_service(domain),\n traceId: generateTraceId_feature_flag_service(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_feature_flag_service_revision(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_feature_flag_service<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"strategyCandidates": [
|
|
146
|
+
{
|
|
147
|
+
"id": "candidate-alpha",
|
|
148
|
+
"description": "Candidate alpha.",
|
|
149
|
+
"files": [
|
|
150
|
+
{
|
|
151
|
+
"path": "src/service.mjs",
|
|
152
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = \"calculation\";\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"id": "candidate-beta",
|
|
158
|
+
"description": "Candidate beta.",
|
|
159
|
+
"files": [
|
|
160
|
+
{
|
|
161
|
+
"path": "src/service.mjs",
|
|
162
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = `calculation:${value}`;\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
163
|
+
}
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"badStrategyPatch": {
|
|
168
|
+
"id": "candidate-alpha",
|
|
169
|
+
"description": "Candidate alpha.",
|
|
170
|
+
"files": [
|
|
171
|
+
{
|
|
172
|
+
"path": "src/service.mjs",
|
|
173
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = \"calculation\";\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
174
|
+
}
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
"goodStrategyPatch": {
|
|
178
|
+
"id": "candidate-beta",
|
|
179
|
+
"description": "Candidate beta.",
|
|
180
|
+
"files": [
|
|
181
|
+
{
|
|
182
|
+
"path": "src/service.mjs",
|
|
183
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = `calculation:${value}`;\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
184
|
+
}
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
"noTrapControlFiles": [
|
|
188
|
+
{
|
|
189
|
+
"path": "package.json",
|
|
190
|
+
"content": "{\n \"name\": \"@vellum-quarry/feature-flag-service\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for feature-flag-service\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"path": "tsconfig.json",
|
|
194
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
198
|
+
"content": "/**\n * Counterfactual SDK for domain feature-flag-service\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_feature_flag_service, QuillResponse_feature_flag_service } from \"./types.js\";\n\nexport function quillApiQuery_feature_flag_service(\n payload: Record<string, unknown>,\n opts?: QuillOptions_feature_flag_service,\n): QuillResponse_feature_flag_service {\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: \"feature-flag-service\" },\n };\n}\n\nexport function quillHealthCheck_feature_flag_service(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_feature_flag_service(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_feature_flag_service(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_feature_flag_service(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_feature_flag_service(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_feature_flag_service(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_feature_flag_service(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_feature_flag_service(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
202
|
+
"content": "/**\n * Type declarations for counterfactual SDK feature-flag-service\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_feature_flag_service {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_feature_flag_service {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_feature_flag_service {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_feature_flag_service;\n}\n\nexport interface QuillBatchRequest_feature_flag_service {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_feature_flag_service {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"path": "src/types.ts",
|
|
206
|
+
"content": "/**\n * Domain type definitions for feature-flag-service\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_feature_flag_service {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_feature_flag_service {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_feature_flag_service {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_feature_flag_service {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_feature_flag_service<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_feature_flag_service {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"path": "src/utils.ts",
|
|
210
|
+
"content": "/**\n * Utility functions for domain feature-flag-service\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_feature_flag_service(name: string): string {\n if (!name) return \"feature-flag-service\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_feature_flag_service(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_feature_flag_service(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_feature_flag_service<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_feature_flag_service(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_feature_flag_service(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_feature_flag_service(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"path": "src/config.ts",
|
|
214
|
+
"content": "/**\n * Default configuration options for feature-flag-service\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_feature_flag_service = {\n domain: \"feature-flag-service\",\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_feature_flag_service(): typeof DEFAULT_CONFIG_feature_flag_service {\n return { ...DEFAULT_CONFIG_feature_flag_service };\n}\n"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"path": "src/domain-workflow.ts",
|
|
218
|
+
"content": "/**\n * Local workflow contracts for feature-flag-service.\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_181e29da_00_Request {\n w_181e29da_00_record: string;\n w_181e29da_00_sequence: number;\n}\n\nexport interface w_181e29da_00_Result {\n w_181e29da_00_accepted: boolean;\n w_181e29da_00_token: string;\n}\n\nexport function execute_w_181e29da_00(\n input_w_181e29da_00: w_181e29da_00_Request,\n): w_181e29da_00_Result {\n const normalized_w_181e29da_00 = input_w_181e29da_00.w_181e29da_00_record.trim().toLowerCase();\n const score_w_181e29da_00 =\n normalized_w_181e29da_00.length + input_w_181e29da_00.w_181e29da_00_sequence;\n return {\n w_181e29da_00_accepted: score_w_181e29da_00 % 2 === 0,\n w_181e29da_00_token: `feature-flag-service:0:${score_w_181e29da_00}`,\n };\n}\n\nexport interface w_181e29da_01_Request {\n w_181e29da_01_record: string;\n w_181e29da_01_sequence: number;\n}\n\nexport interface w_181e29da_01_Result {\n w_181e29da_01_accepted: boolean;\n w_181e29da_01_token: string;\n}\n\nexport function execute_w_181e29da_01(\n input_w_181e29da_01: w_181e29da_01_Request,\n): w_181e29da_01_Result {\n const normalized_w_181e29da_01 = input_w_181e29da_01.w_181e29da_01_record.trim().toLowerCase();\n const score_w_181e29da_01 =\n normalized_w_181e29da_01.length + input_w_181e29da_01.w_181e29da_01_sequence;\n return {\n w_181e29da_01_accepted: score_w_181e29da_01 % 2 === 0,\n w_181e29da_01_token: `feature-flag-service:1:${score_w_181e29da_01}`,\n };\n}\n\nexport interface w_181e29da_02_Request {\n w_181e29da_02_record: string;\n w_181e29da_02_sequence: number;\n}\n\nexport interface w_181e29da_02_Result {\n w_181e29da_02_accepted: boolean;\n w_181e29da_02_token: string;\n}\n\nexport function execute_w_181e29da_02(\n input_w_181e29da_02: w_181e29da_02_Request,\n): w_181e29da_02_Result {\n const normalized_w_181e29da_02 = input_w_181e29da_02.w_181e29da_02_record.trim().toLowerCase();\n const score_w_181e29da_02 =\n normalized_w_181e29da_02.length + input_w_181e29da_02.w_181e29da_02_sequence;\n return {\n w_181e29da_02_accepted: score_w_181e29da_02 % 2 === 0,\n w_181e29da_02_token: `feature-flag-service:2:${score_w_181e29da_02}`,\n };\n}\n\nexport interface w_181e29da_03_Request {\n w_181e29da_03_record: string;\n w_181e29da_03_sequence: number;\n}\n\nexport interface w_181e29da_03_Result {\n w_181e29da_03_accepted: boolean;\n w_181e29da_03_token: string;\n}\n\nexport function execute_w_181e29da_03(\n input_w_181e29da_03: w_181e29da_03_Request,\n): w_181e29da_03_Result {\n const normalized_w_181e29da_03 = input_w_181e29da_03.w_181e29da_03_record.trim().toLowerCase();\n const score_w_181e29da_03 =\n normalized_w_181e29da_03.length + input_w_181e29da_03.w_181e29da_03_sequence;\n return {\n w_181e29da_03_accepted: score_w_181e29da_03 % 2 === 0,\n w_181e29da_03_token: `feature-flag-service:3:${score_w_181e29da_03}`,\n };\n}\n\nexport interface w_181e29da_04_Request {\n w_181e29da_04_record: string;\n w_181e29da_04_sequence: number;\n}\n\nexport interface w_181e29da_04_Result {\n w_181e29da_04_accepted: boolean;\n w_181e29da_04_token: string;\n}\n\nexport function execute_w_181e29da_04(\n input_w_181e29da_04: w_181e29da_04_Request,\n): w_181e29da_04_Result {\n const normalized_w_181e29da_04 = input_w_181e29da_04.w_181e29da_04_record.trim().toLowerCase();\n const score_w_181e29da_04 =\n normalized_w_181e29da_04.length + input_w_181e29da_04.w_181e29da_04_sequence;\n return {\n w_181e29da_04_accepted: score_w_181e29da_04 % 2 === 0,\n w_181e29da_04_token: `feature-flag-service:4:${score_w_181e29da_04}`,\n };\n}\n\nexport interface w_181e29da_05_Request {\n w_181e29da_05_record: string;\n w_181e29da_05_sequence: number;\n}\n\nexport interface w_181e29da_05_Result {\n w_181e29da_05_accepted: boolean;\n w_181e29da_05_token: string;\n}\n\nexport function execute_w_181e29da_05(\n input_w_181e29da_05: w_181e29da_05_Request,\n): w_181e29da_05_Result {\n const normalized_w_181e29da_05 = input_w_181e29da_05.w_181e29da_05_record.trim().toLowerCase();\n const score_w_181e29da_05 =\n normalized_w_181e29da_05.length + input_w_181e29da_05.w_181e29da_05_sequence;\n return {\n w_181e29da_05_accepted: score_w_181e29da_05 % 2 === 0,\n w_181e29da_05_token: `feature-flag-service:5:${score_w_181e29da_05}`,\n };\n}\n\nexport interface w_181e29da_06_Request {\n w_181e29da_06_record: string;\n w_181e29da_06_sequence: number;\n}\n\nexport interface w_181e29da_06_Result {\n w_181e29da_06_accepted: boolean;\n w_181e29da_06_token: string;\n}\n\nexport function execute_w_181e29da_06(\n input_w_181e29da_06: w_181e29da_06_Request,\n): w_181e29da_06_Result {\n const normalized_w_181e29da_06 = input_w_181e29da_06.w_181e29da_06_record.trim().toLowerCase();\n const score_w_181e29da_06 =\n normalized_w_181e29da_06.length + input_w_181e29da_06.w_181e29da_06_sequence;\n return {\n w_181e29da_06_accepted: score_w_181e29da_06 % 2 === 0,\n w_181e29da_06_token: `feature-flag-service:6:${score_w_181e29da_06}`,\n };\n}\n\nexport interface w_181e29da_07_Request {\n w_181e29da_07_record: string;\n w_181e29da_07_sequence: number;\n}\n\nexport interface w_181e29da_07_Result {\n w_181e29da_07_accepted: boolean;\n w_181e29da_07_token: string;\n}\n\nexport function execute_w_181e29da_07(\n input_w_181e29da_07: w_181e29da_07_Request,\n): w_181e29da_07_Result {\n const normalized_w_181e29da_07 = input_w_181e29da_07.w_181e29da_07_record.trim().toLowerCase();\n const score_w_181e29da_07 =\n normalized_w_181e29da_07.length + input_w_181e29da_07.w_181e29da_07_sequence;\n return {\n w_181e29da_07_accepted: score_w_181e29da_07 % 2 === 0,\n w_181e29da_07_token: `feature-flag-service:7:${score_w_181e29da_07}`,\n };\n}\n\nexport const w_181e29da_lex_00 = \"w_181e29da_a_00 w_181e29da_b_00 w_181e29da_c_00 w_181e29da_d_00 w_181e29da_e_00\";\nexport const w_181e29da_lex_01 = \"w_181e29da_a_01 w_181e29da_b_01 w_181e29da_c_01 w_181e29da_d_01 w_181e29da_e_01\";\nexport const w_181e29da_lex_02 = \"w_181e29da_a_02 w_181e29da_b_02 w_181e29da_c_02 w_181e29da_d_02 w_181e29da_e_02\";\nexport const w_181e29da_lex_03 = \"w_181e29da_a_03 w_181e29da_b_03 w_181e29da_c_03 w_181e29da_d_03 w_181e29da_e_03\";\nexport const w_181e29da_lex_04 = \"w_181e29da_a_04 w_181e29da_b_04 w_181e29da_c_04 w_181e29da_d_04 w_181e29da_e_04\";\nexport const w_181e29da_lex_05 = \"w_181e29da_a_05 w_181e29da_b_05 w_181e29da_c_05 w_181e29da_d_05 w_181e29da_e_05\";\nexport const w_181e29da_lex_06 = \"w_181e29da_a_06 w_181e29da_b_06 w_181e29da_c_06 w_181e29da_d_06 w_181e29da_e_06\";\nexport const w_181e29da_lex_07 = \"w_181e29da_a_07 w_181e29da_b_07 w_181e29da_c_07 w_181e29da_d_07 w_181e29da_e_07\";\nexport const w_181e29da_lex_08 = \"w_181e29da_a_08 w_181e29da_b_08 w_181e29da_c_08 w_181e29da_d_08 w_181e29da_e_08\";\nexport const w_181e29da_lex_09 = \"w_181e29da_a_09 w_181e29da_b_09 w_181e29da_c_09 w_181e29da_d_09 w_181e29da_e_09\";\nexport const w_181e29da_lex_10 = \"w_181e29da_a_10 w_181e29da_b_10 w_181e29da_c_10 w_181e29da_d_10 w_181e29da_e_10\";\nexport const w_181e29da_lex_11 = \"w_181e29da_a_11 w_181e29da_b_11 w_181e29da_c_11 w_181e29da_d_11 w_181e29da_e_11\";\nexport const w_181e29da_lex_12 = \"w_181e29da_a_12 w_181e29da_b_12 w_181e29da_c_12 w_181e29da_d_12 w_181e29da_e_12\";\nexport const w_181e29da_lex_13 = \"w_181e29da_a_13 w_181e29da_b_13 w_181e29da_c_13 w_181e29da_d_13 w_181e29da_e_13\";\nexport const w_181e29da_lex_14 = \"w_181e29da_a_14 w_181e29da_b_14 w_181e29da_c_14 w_181e29da_d_14 w_181e29da_e_14\";\nexport const w_181e29da_lex_15 = \"w_181e29da_a_15 w_181e29da_b_15 w_181e29da_c_15 w_181e29da_d_15 w_181e29da_e_15\";\nexport const w_181e29da_lex_16 = \"w_181e29da_a_16 w_181e29da_b_16 w_181e29da_c_16 w_181e29da_d_16 w_181e29da_e_16\";\nexport const w_181e29da_lex_17 = \"w_181e29da_a_17 w_181e29da_b_17 w_181e29da_c_17 w_181e29da_d_17 w_181e29da_e_17\";\nexport const w_181e29da_lex_18 = \"w_181e29da_a_18 w_181e29da_b_18 w_181e29da_c_18 w_181e29da_d_18 w_181e29da_e_18\";\nexport const w_181e29da_lex_19 = \"w_181e29da_a_19 w_181e29da_b_19 w_181e29da_c_19 w_181e29da_d_19 w_181e29da_e_19\";\nexport const w_181e29da_lex_20 = \"w_181e29da_a_20 w_181e29da_b_20 w_181e29da_c_20 w_181e29da_d_20 w_181e29da_e_20\";\nexport const w_181e29da_lex_21 = \"w_181e29da_a_21 w_181e29da_b_21 w_181e29da_c_21 w_181e29da_d_21 w_181e29da_e_21\";\nexport const w_181e29da_lex_22 = \"w_181e29da_a_22 w_181e29da_b_22 w_181e29da_c_22 w_181e29da_d_22 w_181e29da_e_22\";\nexport const w_181e29da_lex_23 = \"w_181e29da_a_23 w_181e29da_b_23 w_181e29da_c_23 w_181e29da_d_23 w_181e29da_e_23\";\nexport const w_181e29da_lex_24 = \"w_181e29da_a_24 w_181e29da_b_24 w_181e29da_c_24 w_181e29da_d_24 w_181e29da_e_24\";\nexport const w_181e29da_lex_25 = \"w_181e29da_a_25 w_181e29da_b_25 w_181e29da_c_25 w_181e29da_d_25 w_181e29da_e_25\";\nexport const w_181e29da_lex_26 = \"w_181e29da_a_26 w_181e29da_b_26 w_181e29da_c_26 w_181e29da_d_26 w_181e29da_e_26\";\nexport const w_181e29da_lex_27 = \"w_181e29da_a_27 w_181e29da_b_27 w_181e29da_c_27 w_181e29da_d_27 w_181e29da_e_27\";\n"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"path": "README.md",
|
|
222
|
+
"content": "# Synthetic Repository for feature-flag-service\n\nThis repository contains a local service module for feature-flag-service.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"path": "TASK.md",
|
|
226
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for feature-flag-service so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"path": "test/check.js",
|
|
230
|
+
"content": "import { repositoryIdentity0d9d1564 } from \"../src/service.mjs\";\nconst {\n v0abeb102, v8893624a, vf64bdf33, v96251c92, v2bb0fbd9, vd9b6d6ff, vcc7685f9, v49c5d1e9,\n v08d1cd23, v8dfdd2ef, vc895b829, v75c696f7, v5ab8a88e, v476c9589, vd2ecbcf6, va1462432,\n v580cbdd6,\n} = repositoryIdentity0d9d1564;\nif (!Object.values(repositoryIdentity0d9d1564).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_feature_flag_service, resetCache_feature_flag_service } from \"../src/service.mjs\";\nresetCache_feature_flag_service();\nconst inputs = [2,3,-1];\nconst expected = [7,10,-2];\nconst actual = inputs.map((value) => calculate_feature_flag_service(value));\nconst repeated = calculate_feature_flag_service(inputs[0]);\nif (actual.every((value, index) => value === expected[index]) && repeated === expected[0]) {\n console.log(\"FIXED: map cache keys include calculation input\");\n process.exit(0);\n}\nif (actual[0] === expected[0] && actual.slice(1).every((value) => value === actual[0])) {\n console.log(\"CHECK_FAILED: formula changed without changing map identity\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: formula or cache behavior is stale\");\nprocess.exit(1);\n"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"path": "src/service.mjs",
|
|
234
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = `calculation:${value}`;\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"path": "src/helper.ts",
|
|
238
|
+
"content": "/**\n * Helper routines for feature-flag-service\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_feature_flag_service, generateTraceId_feature_flag_service } from \"./utils.js\";\n\nexport function getDomainHeader_feature_flag_service_revision(domain: string): string {\n return \"X-Domain-\" + formatDomainName_feature_flag_service(domain);\n}\n\nexport function createServiceContext_feature_flag_service_revision(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_feature_flag_service(domain),\n traceId: generateTraceId_feature_flag_service(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_feature_flag_service_revision(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_feature_flag_service<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
239
|
+
}
|
|
240
|
+
],
|
|
241
|
+
"cleanRevisionSha": "e432222a83498e8e819d4b045a812cd030de5e91",
|
|
242
|
+
"trapRevisionSha": "912e8a76872e2e4a4b9c05b0ccbad614ae3a79d6",
|
|
243
|
+
"rightRevisionSha": "9ad29e5abb8f894f08f277f5c06e4ba9f7548531",
|
|
244
|
+
"noTrapRevisionSha": "315c0b2e6d07df6231041fe1828852b0a55d4de9"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"variantId": "h6-task-21-v2",
|
|
248
|
+
"baseTaskId": "h6-task-21",
|
|
249
|
+
"variantIndex": 2,
|
|
250
|
+
"distance": 2,
|
|
251
|
+
"domain": "feature-flag-service",
|
|
252
|
+
"files": [
|
|
253
|
+
{
|
|
254
|
+
"path": "src/service.mjs",
|
|
255
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = \"calculation\";\n if (cache.has(key)) return cache.get(key);\n const result = value * 2;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"path": "test/check.js",
|
|
259
|
+
"content": "import { repositoryIdentity0d9d1564 } from \"../src/service.mjs\";\nconst {\n v0abeb102, v8893624a, vf64bdf33, v96251c92, v2bb0fbd9, vd9b6d6ff, vcc7685f9, v49c5d1e9,\n v08d1cd23, v8dfdd2ef, vc895b829, v75c696f7, v5ab8a88e, v476c9589, vd2ecbcf6, va1462432,\n v580cbdd6,\n} = repositoryIdentity0d9d1564;\nif (!Object.values(repositoryIdentity0d9d1564).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_feature_flag_service, resetCache_feature_flag_service } from \"../src/service.mjs\";\nresetCache_feature_flag_service();\nconst inputs = [2,3,-1];\nconst expected = [7,10,-2];\nconst actual = inputs.map((value) => calculate_feature_flag_service(value));\nconst repeated = calculate_feature_flag_service(inputs[0]);\nif (actual.every((value, index) => value === expected[index]) && repeated === expected[0]) {\n console.log(\"FIXED: map cache keys include calculation input\");\n process.exit(0);\n}\nif (actual[0] === expected[0] && actual.slice(1).every((value) => value === actual[0])) {\n console.log(\"CHECK_FAILED: formula changed without changing map identity\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: formula or cache behavior is stale\");\nprocess.exit(1);\n"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"path": "TASK.md",
|
|
263
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for feature-flag-service so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"path": "README.md",
|
|
267
|
+
"content": "# Synthetic Repository for feature-flag-service\n\nThis repository contains a local service module for feature-flag-service.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"path": "src/domain-workflow.ts",
|
|
271
|
+
"content": "/**\n * Local workflow contracts for feature-flag-service.\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_181e29da_00_Request {\n w_181e29da_00_record: string;\n w_181e29da_00_sequence: number;\n}\n\nexport interface w_181e29da_00_Result {\n w_181e29da_00_accepted: boolean;\n w_181e29da_00_token: string;\n}\n\nexport function execute_w_181e29da_00(\n input_w_181e29da_00: w_181e29da_00_Request,\n): w_181e29da_00_Result {\n const normalized_w_181e29da_00 = input_w_181e29da_00.w_181e29da_00_record.trim().toLowerCase();\n const score_w_181e29da_00 =\n normalized_w_181e29da_00.length + input_w_181e29da_00.w_181e29da_00_sequence;\n return {\n w_181e29da_00_accepted: score_w_181e29da_00 % 2 === 0,\n w_181e29da_00_token: `feature-flag-service:0:${score_w_181e29da_00}`,\n };\n}\n\nexport interface w_181e29da_01_Request {\n w_181e29da_01_record: string;\n w_181e29da_01_sequence: number;\n}\n\nexport interface w_181e29da_01_Result {\n w_181e29da_01_accepted: boolean;\n w_181e29da_01_token: string;\n}\n\nexport function execute_w_181e29da_01(\n input_w_181e29da_01: w_181e29da_01_Request,\n): w_181e29da_01_Result {\n const normalized_w_181e29da_01 = input_w_181e29da_01.w_181e29da_01_record.trim().toLowerCase();\n const score_w_181e29da_01 =\n normalized_w_181e29da_01.length + input_w_181e29da_01.w_181e29da_01_sequence;\n return {\n w_181e29da_01_accepted: score_w_181e29da_01 % 2 === 0,\n w_181e29da_01_token: `feature-flag-service:1:${score_w_181e29da_01}`,\n };\n}\n\nexport interface w_181e29da_02_Request {\n w_181e29da_02_record: string;\n w_181e29da_02_sequence: number;\n}\n\nexport interface w_181e29da_02_Result {\n w_181e29da_02_accepted: boolean;\n w_181e29da_02_token: string;\n}\n\nexport function execute_w_181e29da_02(\n input_w_181e29da_02: w_181e29da_02_Request,\n): w_181e29da_02_Result {\n const normalized_w_181e29da_02 = input_w_181e29da_02.w_181e29da_02_record.trim().toLowerCase();\n const score_w_181e29da_02 =\n normalized_w_181e29da_02.length + input_w_181e29da_02.w_181e29da_02_sequence;\n return {\n w_181e29da_02_accepted: score_w_181e29da_02 % 2 === 0,\n w_181e29da_02_token: `feature-flag-service:2:${score_w_181e29da_02}`,\n };\n}\n\nexport interface w_181e29da_03_Request {\n w_181e29da_03_record: string;\n w_181e29da_03_sequence: number;\n}\n\nexport interface w_181e29da_03_Result {\n w_181e29da_03_accepted: boolean;\n w_181e29da_03_token: string;\n}\n\nexport function execute_w_181e29da_03(\n input_w_181e29da_03: w_181e29da_03_Request,\n): w_181e29da_03_Result {\n const normalized_w_181e29da_03 = input_w_181e29da_03.w_181e29da_03_record.trim().toLowerCase();\n const score_w_181e29da_03 =\n normalized_w_181e29da_03.length + input_w_181e29da_03.w_181e29da_03_sequence;\n return {\n w_181e29da_03_accepted: score_w_181e29da_03 % 2 === 0,\n w_181e29da_03_token: `feature-flag-service:3:${score_w_181e29da_03}`,\n };\n}\n\nexport interface w_181e29da_04_Request {\n w_181e29da_04_record: string;\n w_181e29da_04_sequence: number;\n}\n\nexport interface w_181e29da_04_Result {\n w_181e29da_04_accepted: boolean;\n w_181e29da_04_token: string;\n}\n\nexport function execute_w_181e29da_04(\n input_w_181e29da_04: w_181e29da_04_Request,\n): w_181e29da_04_Result {\n const normalized_w_181e29da_04 = input_w_181e29da_04.w_181e29da_04_record.trim().toLowerCase();\n const score_w_181e29da_04 =\n normalized_w_181e29da_04.length + input_w_181e29da_04.w_181e29da_04_sequence;\n return {\n w_181e29da_04_accepted: score_w_181e29da_04 % 2 === 0,\n w_181e29da_04_token: `feature-flag-service:4:${score_w_181e29da_04}`,\n };\n}\n\nexport interface w_181e29da_05_Request {\n w_181e29da_05_record: string;\n w_181e29da_05_sequence: number;\n}\n\nexport interface w_181e29da_05_Result {\n w_181e29da_05_accepted: boolean;\n w_181e29da_05_token: string;\n}\n\nexport function execute_w_181e29da_05(\n input_w_181e29da_05: w_181e29da_05_Request,\n): w_181e29da_05_Result {\n const normalized_w_181e29da_05 = input_w_181e29da_05.w_181e29da_05_record.trim().toLowerCase();\n const score_w_181e29da_05 =\n normalized_w_181e29da_05.length + input_w_181e29da_05.w_181e29da_05_sequence;\n return {\n w_181e29da_05_accepted: score_w_181e29da_05 % 2 === 0,\n w_181e29da_05_token: `feature-flag-service:5:${score_w_181e29da_05}`,\n };\n}\n\nexport interface w_181e29da_06_Request {\n w_181e29da_06_record: string;\n w_181e29da_06_sequence: number;\n}\n\nexport interface w_181e29da_06_Result {\n w_181e29da_06_accepted: boolean;\n w_181e29da_06_token: string;\n}\n\nexport function execute_w_181e29da_06(\n input_w_181e29da_06: w_181e29da_06_Request,\n): w_181e29da_06_Result {\n const normalized_w_181e29da_06 = input_w_181e29da_06.w_181e29da_06_record.trim().toLowerCase();\n const score_w_181e29da_06 =\n normalized_w_181e29da_06.length + input_w_181e29da_06.w_181e29da_06_sequence;\n return {\n w_181e29da_06_accepted: score_w_181e29da_06 % 2 === 0,\n w_181e29da_06_token: `feature-flag-service:6:${score_w_181e29da_06}`,\n };\n}\n\nexport interface w_181e29da_07_Request {\n w_181e29da_07_record: string;\n w_181e29da_07_sequence: number;\n}\n\nexport interface w_181e29da_07_Result {\n w_181e29da_07_accepted: boolean;\n w_181e29da_07_token: string;\n}\n\nexport function execute_w_181e29da_07(\n input_w_181e29da_07: w_181e29da_07_Request,\n): w_181e29da_07_Result {\n const normalized_w_181e29da_07 = input_w_181e29da_07.w_181e29da_07_record.trim().toLowerCase();\n const score_w_181e29da_07 =\n normalized_w_181e29da_07.length + input_w_181e29da_07.w_181e29da_07_sequence;\n return {\n w_181e29da_07_accepted: score_w_181e29da_07 % 2 === 0,\n w_181e29da_07_token: `feature-flag-service:7:${score_w_181e29da_07}`,\n };\n}\n\nexport const w_181e29da_lex_00 = \"w_181e29da_a_00 w_181e29da_b_00 w_181e29da_c_00 w_181e29da_d_00 w_181e29da_e_00\";\nexport const w_181e29da_lex_01 = \"w_181e29da_a_01 w_181e29da_b_01 w_181e29da_c_01 w_181e29da_d_01 w_181e29da_e_01\";\nexport const w_181e29da_lex_02 = \"w_181e29da_a_02 w_181e29da_b_02 w_181e29da_c_02 w_181e29da_d_02 w_181e29da_e_02\";\nexport const w_181e29da_lex_03 = \"w_181e29da_a_03 w_181e29da_b_03 w_181e29da_c_03 w_181e29da_d_03 w_181e29da_e_03\";\nexport const w_181e29da_lex_04 = \"w_181e29da_a_04 w_181e29da_b_04 w_181e29da_c_04 w_181e29da_d_04 w_181e29da_e_04\";\nexport const w_181e29da_lex_05 = \"w_181e29da_a_05 w_181e29da_b_05 w_181e29da_c_05 w_181e29da_d_05 w_181e29da_e_05\";\nexport const w_181e29da_lex_06 = \"w_181e29da_a_06 w_181e29da_b_06 w_181e29da_c_06 w_181e29da_d_06 w_181e29da_e_06\";\nexport const w_181e29da_lex_07 = \"w_181e29da_a_07 w_181e29da_b_07 w_181e29da_c_07 w_181e29da_d_07 w_181e29da_e_07\";\nexport const w_181e29da_lex_08 = \"w_181e29da_a_08 w_181e29da_b_08 w_181e29da_c_08 w_181e29da_d_08 w_181e29da_e_08\";\nexport const w_181e29da_lex_09 = \"w_181e29da_a_09 w_181e29da_b_09 w_181e29da_c_09 w_181e29da_d_09 w_181e29da_e_09\";\nexport const w_181e29da_lex_10 = \"w_181e29da_a_10 w_181e29da_b_10 w_181e29da_c_10 w_181e29da_d_10 w_181e29da_e_10\";\nexport const w_181e29da_lex_11 = \"w_181e29da_a_11 w_181e29da_b_11 w_181e29da_c_11 w_181e29da_d_11 w_181e29da_e_11\";\nexport const w_181e29da_lex_12 = \"w_181e29da_a_12 w_181e29da_b_12 w_181e29da_c_12 w_181e29da_d_12 w_181e29da_e_12\";\nexport const w_181e29da_lex_13 = \"w_181e29da_a_13 w_181e29da_b_13 w_181e29da_c_13 w_181e29da_d_13 w_181e29da_e_13\";\nexport const w_181e29da_lex_14 = \"w_181e29da_a_14 w_181e29da_b_14 w_181e29da_c_14 w_181e29da_d_14 w_181e29da_e_14\";\nexport const w_181e29da_lex_15 = \"w_181e29da_a_15 w_181e29da_b_15 w_181e29da_c_15 w_181e29da_d_15 w_181e29da_e_15\";\nexport const w_181e29da_lex_16 = \"w_181e29da_a_16 w_181e29da_b_16 w_181e29da_c_16 w_181e29da_d_16 w_181e29da_e_16\";\nexport const w_181e29da_lex_17 = \"w_181e29da_a_17 w_181e29da_b_17 w_181e29da_c_17 w_181e29da_d_17 w_181e29da_e_17\";\nexport const w_181e29da_lex_18 = \"w_181e29da_a_18 w_181e29da_b_18 w_181e29da_c_18 w_181e29da_d_18 w_181e29da_e_18\";\nexport const w_181e29da_lex_19 = \"w_181e29da_a_19 w_181e29da_b_19 w_181e29da_c_19 w_181e29da_d_19 w_181e29da_e_19\";\nexport const w_181e29da_lex_20 = \"w_181e29da_a_20 w_181e29da_b_20 w_181e29da_c_20 w_181e29da_d_20 w_181e29da_e_20\";\nexport const w_181e29da_lex_21 = \"w_181e29da_a_21 w_181e29da_b_21 w_181e29da_c_21 w_181e29da_d_21 w_181e29da_e_21\";\nexport const w_181e29da_lex_22 = \"w_181e29da_a_22 w_181e29da_b_22 w_181e29da_c_22 w_181e29da_d_22 w_181e29da_e_22\";\nexport const w_181e29da_lex_23 = \"w_181e29da_a_23 w_181e29da_b_23 w_181e29da_c_23 w_181e29da_d_23 w_181e29da_e_23\";\nexport const w_181e29da_lex_24 = \"w_181e29da_a_24 w_181e29da_b_24 w_181e29da_c_24 w_181e29da_d_24 w_181e29da_e_24\";\nexport const w_181e29da_lex_25 = \"w_181e29da_a_25 w_181e29da_b_25 w_181e29da_c_25 w_181e29da_d_25 w_181e29da_e_25\";\nexport const w_181e29da_lex_26 = \"w_181e29da_a_26 w_181e29da_b_26 w_181e29da_c_26 w_181e29da_d_26 w_181e29da_e_26\";\nexport const w_181e29da_lex_27 = \"w_181e29da_a_27 w_181e29da_b_27 w_181e29da_c_27 w_181e29da_d_27 w_181e29da_e_27\";\n"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"path": "src/config.ts",
|
|
275
|
+
"content": "/**\n * Default configuration options for feature-flag-service\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_feature_flag_service = {\n domain: \"feature-flag-service\",\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_feature_flag_service(): typeof DEFAULT_CONFIG_feature_flag_service {\n return { ...DEFAULT_CONFIG_feature_flag_service };\n}\n"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"path": "src/utils.ts",
|
|
279
|
+
"content": "/**\n * Utility functions for domain feature-flag-service\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_feature_flag_service(name: string): string {\n if (!name) return \"feature-flag-service\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_feature_flag_service(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_feature_flag_service(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_feature_flag_service<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_feature_flag_service(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_feature_flag_service(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_feature_flag_service(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"path": "src/types.ts",
|
|
283
|
+
"content": "/**\n * Domain type definitions for feature-flag-service\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_feature_flag_service {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_feature_flag_service {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_feature_flag_service {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_feature_flag_service {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_feature_flag_service<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_feature_flag_service {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
287
|
+
"content": "/**\n * Type declarations for counterfactual SDK feature-flag-service\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_feature_flag_service {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_feature_flag_service {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_feature_flag_service {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_feature_flag_service;\n}\n\nexport interface QuillBatchRequest_feature_flag_service {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_feature_flag_service {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
291
|
+
"content": "/**\n * Counterfactual SDK for domain feature-flag-service\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_feature_flag_service, QuillResponse_feature_flag_service } from \"./types.js\";\n\nexport function quillApiQuery_feature_flag_service(\n payload: Record<string, unknown>,\n opts?: QuillOptions_feature_flag_service,\n): QuillResponse_feature_flag_service {\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: \"feature-flag-service\" },\n };\n}\n\nexport function quillHealthCheck_feature_flag_service(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_feature_flag_service(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_feature_flag_service(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_feature_flag_service(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_feature_flag_service(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_feature_flag_service(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_feature_flag_service(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_feature_flag_service(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"path": "tsconfig.json",
|
|
295
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"path": "package.json",
|
|
299
|
+
"content": "{\n \"name\": \"@vellum-quarry/feature-flag-service\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for feature-flag-service\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"path": "src/helper.ts",
|
|
303
|
+
"content": "/**\n * Helper routines for feature-flag-service\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_feature_flag_service, generateTraceId_feature_flag_service } from \"./utils.js\";\n\nexport function buildResponseEnvelope_feature_flag_service<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_feature_flag_service(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function createServiceContext_feature_flag_service(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_feature_flag_service(domain),\n traceId: generateTraceId_feature_flag_service(),\n timestamp: Date.now(),\n };\n}\n\nexport function getDomainHeader_feature_flag_service(domain: string): string {\n return \"X-Domain-\" + formatDomainName_feature_flag_service(domain);\n}\n"
|
|
304
|
+
}
|
|
305
|
+
],
|
|
306
|
+
"strategyCandidates": [
|
|
307
|
+
{
|
|
308
|
+
"id": "candidate-alpha",
|
|
309
|
+
"description": "Candidate alpha.",
|
|
310
|
+
"files": [
|
|
311
|
+
{
|
|
312
|
+
"path": "src/service.mjs",
|
|
313
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = \"calculation\";\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
314
|
+
}
|
|
315
|
+
]
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"id": "candidate-beta",
|
|
319
|
+
"description": "Candidate beta.",
|
|
320
|
+
"files": [
|
|
321
|
+
{
|
|
322
|
+
"path": "src/service.mjs",
|
|
323
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = `calculation:${value}`;\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
324
|
+
}
|
|
325
|
+
]
|
|
326
|
+
}
|
|
327
|
+
],
|
|
328
|
+
"badStrategyPatch": {
|
|
329
|
+
"id": "candidate-alpha",
|
|
330
|
+
"description": "Candidate alpha.",
|
|
331
|
+
"files": [
|
|
332
|
+
{
|
|
333
|
+
"path": "src/service.mjs",
|
|
334
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = \"calculation\";\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
335
|
+
}
|
|
336
|
+
]
|
|
337
|
+
},
|
|
338
|
+
"goodStrategyPatch": {
|
|
339
|
+
"id": "candidate-beta",
|
|
340
|
+
"description": "Candidate beta.",
|
|
341
|
+
"files": [
|
|
342
|
+
{
|
|
343
|
+
"path": "src/service.mjs",
|
|
344
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = `calculation:${value}`;\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
345
|
+
}
|
|
346
|
+
]
|
|
347
|
+
},
|
|
348
|
+
"noTrapControlFiles": [
|
|
349
|
+
{
|
|
350
|
+
"path": "src/service.mjs",
|
|
351
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = `calculation:${value}`;\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"path": "test/check.js",
|
|
355
|
+
"content": "import { repositoryIdentity0d9d1564 } from \"../src/service.mjs\";\nconst {\n v0abeb102, v8893624a, vf64bdf33, v96251c92, v2bb0fbd9, vd9b6d6ff, vcc7685f9, v49c5d1e9,\n v08d1cd23, v8dfdd2ef, vc895b829, v75c696f7, v5ab8a88e, v476c9589, vd2ecbcf6, va1462432,\n v580cbdd6,\n} = repositoryIdentity0d9d1564;\nif (!Object.values(repositoryIdentity0d9d1564).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_feature_flag_service, resetCache_feature_flag_service } from \"../src/service.mjs\";\nresetCache_feature_flag_service();\nconst inputs = [2,3,-1];\nconst expected = [7,10,-2];\nconst actual = inputs.map((value) => calculate_feature_flag_service(value));\nconst repeated = calculate_feature_flag_service(inputs[0]);\nif (actual.every((value, index) => value === expected[index]) && repeated === expected[0]) {\n console.log(\"FIXED: map cache keys include calculation input\");\n process.exit(0);\n}\nif (actual[0] === expected[0] && actual.slice(1).every((value) => value === actual[0])) {\n console.log(\"CHECK_FAILED: formula changed without changing map identity\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: formula or cache behavior is stale\");\nprocess.exit(1);\n"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"path": "TASK.md",
|
|
359
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for feature-flag-service so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"path": "README.md",
|
|
363
|
+
"content": "# Synthetic Repository for feature-flag-service\n\nThis repository contains a local service module for feature-flag-service.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"path": "src/domain-workflow.ts",
|
|
367
|
+
"content": "/**\n * Local workflow contracts for feature-flag-service.\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_181e29da_00_Request {\n w_181e29da_00_record: string;\n w_181e29da_00_sequence: number;\n}\n\nexport interface w_181e29da_00_Result {\n w_181e29da_00_accepted: boolean;\n w_181e29da_00_token: string;\n}\n\nexport function execute_w_181e29da_00(\n input_w_181e29da_00: w_181e29da_00_Request,\n): w_181e29da_00_Result {\n const normalized_w_181e29da_00 = input_w_181e29da_00.w_181e29da_00_record.trim().toLowerCase();\n const score_w_181e29da_00 =\n normalized_w_181e29da_00.length + input_w_181e29da_00.w_181e29da_00_sequence;\n return {\n w_181e29da_00_accepted: score_w_181e29da_00 % 2 === 0,\n w_181e29da_00_token: `feature-flag-service:0:${score_w_181e29da_00}`,\n };\n}\n\nexport interface w_181e29da_01_Request {\n w_181e29da_01_record: string;\n w_181e29da_01_sequence: number;\n}\n\nexport interface w_181e29da_01_Result {\n w_181e29da_01_accepted: boolean;\n w_181e29da_01_token: string;\n}\n\nexport function execute_w_181e29da_01(\n input_w_181e29da_01: w_181e29da_01_Request,\n): w_181e29da_01_Result {\n const normalized_w_181e29da_01 = input_w_181e29da_01.w_181e29da_01_record.trim().toLowerCase();\n const score_w_181e29da_01 =\n normalized_w_181e29da_01.length + input_w_181e29da_01.w_181e29da_01_sequence;\n return {\n w_181e29da_01_accepted: score_w_181e29da_01 % 2 === 0,\n w_181e29da_01_token: `feature-flag-service:1:${score_w_181e29da_01}`,\n };\n}\n\nexport interface w_181e29da_02_Request {\n w_181e29da_02_record: string;\n w_181e29da_02_sequence: number;\n}\n\nexport interface w_181e29da_02_Result {\n w_181e29da_02_accepted: boolean;\n w_181e29da_02_token: string;\n}\n\nexport function execute_w_181e29da_02(\n input_w_181e29da_02: w_181e29da_02_Request,\n): w_181e29da_02_Result {\n const normalized_w_181e29da_02 = input_w_181e29da_02.w_181e29da_02_record.trim().toLowerCase();\n const score_w_181e29da_02 =\n normalized_w_181e29da_02.length + input_w_181e29da_02.w_181e29da_02_sequence;\n return {\n w_181e29da_02_accepted: score_w_181e29da_02 % 2 === 0,\n w_181e29da_02_token: `feature-flag-service:2:${score_w_181e29da_02}`,\n };\n}\n\nexport interface w_181e29da_03_Request {\n w_181e29da_03_record: string;\n w_181e29da_03_sequence: number;\n}\n\nexport interface w_181e29da_03_Result {\n w_181e29da_03_accepted: boolean;\n w_181e29da_03_token: string;\n}\n\nexport function execute_w_181e29da_03(\n input_w_181e29da_03: w_181e29da_03_Request,\n): w_181e29da_03_Result {\n const normalized_w_181e29da_03 = input_w_181e29da_03.w_181e29da_03_record.trim().toLowerCase();\n const score_w_181e29da_03 =\n normalized_w_181e29da_03.length + input_w_181e29da_03.w_181e29da_03_sequence;\n return {\n w_181e29da_03_accepted: score_w_181e29da_03 % 2 === 0,\n w_181e29da_03_token: `feature-flag-service:3:${score_w_181e29da_03}`,\n };\n}\n\nexport interface w_181e29da_04_Request {\n w_181e29da_04_record: string;\n w_181e29da_04_sequence: number;\n}\n\nexport interface w_181e29da_04_Result {\n w_181e29da_04_accepted: boolean;\n w_181e29da_04_token: string;\n}\n\nexport function execute_w_181e29da_04(\n input_w_181e29da_04: w_181e29da_04_Request,\n): w_181e29da_04_Result {\n const normalized_w_181e29da_04 = input_w_181e29da_04.w_181e29da_04_record.trim().toLowerCase();\n const score_w_181e29da_04 =\n normalized_w_181e29da_04.length + input_w_181e29da_04.w_181e29da_04_sequence;\n return {\n w_181e29da_04_accepted: score_w_181e29da_04 % 2 === 0,\n w_181e29da_04_token: `feature-flag-service:4:${score_w_181e29da_04}`,\n };\n}\n\nexport interface w_181e29da_05_Request {\n w_181e29da_05_record: string;\n w_181e29da_05_sequence: number;\n}\n\nexport interface w_181e29da_05_Result {\n w_181e29da_05_accepted: boolean;\n w_181e29da_05_token: string;\n}\n\nexport function execute_w_181e29da_05(\n input_w_181e29da_05: w_181e29da_05_Request,\n): w_181e29da_05_Result {\n const normalized_w_181e29da_05 = input_w_181e29da_05.w_181e29da_05_record.trim().toLowerCase();\n const score_w_181e29da_05 =\n normalized_w_181e29da_05.length + input_w_181e29da_05.w_181e29da_05_sequence;\n return {\n w_181e29da_05_accepted: score_w_181e29da_05 % 2 === 0,\n w_181e29da_05_token: `feature-flag-service:5:${score_w_181e29da_05}`,\n };\n}\n\nexport interface w_181e29da_06_Request {\n w_181e29da_06_record: string;\n w_181e29da_06_sequence: number;\n}\n\nexport interface w_181e29da_06_Result {\n w_181e29da_06_accepted: boolean;\n w_181e29da_06_token: string;\n}\n\nexport function execute_w_181e29da_06(\n input_w_181e29da_06: w_181e29da_06_Request,\n): w_181e29da_06_Result {\n const normalized_w_181e29da_06 = input_w_181e29da_06.w_181e29da_06_record.trim().toLowerCase();\n const score_w_181e29da_06 =\n normalized_w_181e29da_06.length + input_w_181e29da_06.w_181e29da_06_sequence;\n return {\n w_181e29da_06_accepted: score_w_181e29da_06 % 2 === 0,\n w_181e29da_06_token: `feature-flag-service:6:${score_w_181e29da_06}`,\n };\n}\n\nexport interface w_181e29da_07_Request {\n w_181e29da_07_record: string;\n w_181e29da_07_sequence: number;\n}\n\nexport interface w_181e29da_07_Result {\n w_181e29da_07_accepted: boolean;\n w_181e29da_07_token: string;\n}\n\nexport function execute_w_181e29da_07(\n input_w_181e29da_07: w_181e29da_07_Request,\n): w_181e29da_07_Result {\n const normalized_w_181e29da_07 = input_w_181e29da_07.w_181e29da_07_record.trim().toLowerCase();\n const score_w_181e29da_07 =\n normalized_w_181e29da_07.length + input_w_181e29da_07.w_181e29da_07_sequence;\n return {\n w_181e29da_07_accepted: score_w_181e29da_07 % 2 === 0,\n w_181e29da_07_token: `feature-flag-service:7:${score_w_181e29da_07}`,\n };\n}\n\nexport const w_181e29da_lex_00 = \"w_181e29da_a_00 w_181e29da_b_00 w_181e29da_c_00 w_181e29da_d_00 w_181e29da_e_00\";\nexport const w_181e29da_lex_01 = \"w_181e29da_a_01 w_181e29da_b_01 w_181e29da_c_01 w_181e29da_d_01 w_181e29da_e_01\";\nexport const w_181e29da_lex_02 = \"w_181e29da_a_02 w_181e29da_b_02 w_181e29da_c_02 w_181e29da_d_02 w_181e29da_e_02\";\nexport const w_181e29da_lex_03 = \"w_181e29da_a_03 w_181e29da_b_03 w_181e29da_c_03 w_181e29da_d_03 w_181e29da_e_03\";\nexport const w_181e29da_lex_04 = \"w_181e29da_a_04 w_181e29da_b_04 w_181e29da_c_04 w_181e29da_d_04 w_181e29da_e_04\";\nexport const w_181e29da_lex_05 = \"w_181e29da_a_05 w_181e29da_b_05 w_181e29da_c_05 w_181e29da_d_05 w_181e29da_e_05\";\nexport const w_181e29da_lex_06 = \"w_181e29da_a_06 w_181e29da_b_06 w_181e29da_c_06 w_181e29da_d_06 w_181e29da_e_06\";\nexport const w_181e29da_lex_07 = \"w_181e29da_a_07 w_181e29da_b_07 w_181e29da_c_07 w_181e29da_d_07 w_181e29da_e_07\";\nexport const w_181e29da_lex_08 = \"w_181e29da_a_08 w_181e29da_b_08 w_181e29da_c_08 w_181e29da_d_08 w_181e29da_e_08\";\nexport const w_181e29da_lex_09 = \"w_181e29da_a_09 w_181e29da_b_09 w_181e29da_c_09 w_181e29da_d_09 w_181e29da_e_09\";\nexport const w_181e29da_lex_10 = \"w_181e29da_a_10 w_181e29da_b_10 w_181e29da_c_10 w_181e29da_d_10 w_181e29da_e_10\";\nexport const w_181e29da_lex_11 = \"w_181e29da_a_11 w_181e29da_b_11 w_181e29da_c_11 w_181e29da_d_11 w_181e29da_e_11\";\nexport const w_181e29da_lex_12 = \"w_181e29da_a_12 w_181e29da_b_12 w_181e29da_c_12 w_181e29da_d_12 w_181e29da_e_12\";\nexport const w_181e29da_lex_13 = \"w_181e29da_a_13 w_181e29da_b_13 w_181e29da_c_13 w_181e29da_d_13 w_181e29da_e_13\";\nexport const w_181e29da_lex_14 = \"w_181e29da_a_14 w_181e29da_b_14 w_181e29da_c_14 w_181e29da_d_14 w_181e29da_e_14\";\nexport const w_181e29da_lex_15 = \"w_181e29da_a_15 w_181e29da_b_15 w_181e29da_c_15 w_181e29da_d_15 w_181e29da_e_15\";\nexport const w_181e29da_lex_16 = \"w_181e29da_a_16 w_181e29da_b_16 w_181e29da_c_16 w_181e29da_d_16 w_181e29da_e_16\";\nexport const w_181e29da_lex_17 = \"w_181e29da_a_17 w_181e29da_b_17 w_181e29da_c_17 w_181e29da_d_17 w_181e29da_e_17\";\nexport const w_181e29da_lex_18 = \"w_181e29da_a_18 w_181e29da_b_18 w_181e29da_c_18 w_181e29da_d_18 w_181e29da_e_18\";\nexport const w_181e29da_lex_19 = \"w_181e29da_a_19 w_181e29da_b_19 w_181e29da_c_19 w_181e29da_d_19 w_181e29da_e_19\";\nexport const w_181e29da_lex_20 = \"w_181e29da_a_20 w_181e29da_b_20 w_181e29da_c_20 w_181e29da_d_20 w_181e29da_e_20\";\nexport const w_181e29da_lex_21 = \"w_181e29da_a_21 w_181e29da_b_21 w_181e29da_c_21 w_181e29da_d_21 w_181e29da_e_21\";\nexport const w_181e29da_lex_22 = \"w_181e29da_a_22 w_181e29da_b_22 w_181e29da_c_22 w_181e29da_d_22 w_181e29da_e_22\";\nexport const w_181e29da_lex_23 = \"w_181e29da_a_23 w_181e29da_b_23 w_181e29da_c_23 w_181e29da_d_23 w_181e29da_e_23\";\nexport const w_181e29da_lex_24 = \"w_181e29da_a_24 w_181e29da_b_24 w_181e29da_c_24 w_181e29da_d_24 w_181e29da_e_24\";\nexport const w_181e29da_lex_25 = \"w_181e29da_a_25 w_181e29da_b_25 w_181e29da_c_25 w_181e29da_d_25 w_181e29da_e_25\";\nexport const w_181e29da_lex_26 = \"w_181e29da_a_26 w_181e29da_b_26 w_181e29da_c_26 w_181e29da_d_26 w_181e29da_e_26\";\nexport const w_181e29da_lex_27 = \"w_181e29da_a_27 w_181e29da_b_27 w_181e29da_c_27 w_181e29da_d_27 w_181e29da_e_27\";\n"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"path": "src/config.ts",
|
|
371
|
+
"content": "/**\n * Default configuration options for feature-flag-service\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_feature_flag_service = {\n domain: \"feature-flag-service\",\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_feature_flag_service(): typeof DEFAULT_CONFIG_feature_flag_service {\n return { ...DEFAULT_CONFIG_feature_flag_service };\n}\n"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"path": "src/utils.ts",
|
|
375
|
+
"content": "/**\n * Utility functions for domain feature-flag-service\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_feature_flag_service(name: string): string {\n if (!name) return \"feature-flag-service\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_feature_flag_service(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_feature_flag_service(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_feature_flag_service<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_feature_flag_service(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_feature_flag_service(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_feature_flag_service(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"path": "src/types.ts",
|
|
379
|
+
"content": "/**\n * Domain type definitions for feature-flag-service\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_feature_flag_service {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_feature_flag_service {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_feature_flag_service {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_feature_flag_service {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_feature_flag_service<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_feature_flag_service {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
383
|
+
"content": "/**\n * Type declarations for counterfactual SDK feature-flag-service\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_feature_flag_service {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_feature_flag_service {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_feature_flag_service {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_feature_flag_service;\n}\n\nexport interface QuillBatchRequest_feature_flag_service {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_feature_flag_service {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
387
|
+
"content": "/**\n * Counterfactual SDK for domain feature-flag-service\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_feature_flag_service, QuillResponse_feature_flag_service } from \"./types.js\";\n\nexport function quillApiQuery_feature_flag_service(\n payload: Record<string, unknown>,\n opts?: QuillOptions_feature_flag_service,\n): QuillResponse_feature_flag_service {\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: \"feature-flag-service\" },\n };\n}\n\nexport function quillHealthCheck_feature_flag_service(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_feature_flag_service(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_feature_flag_service(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_feature_flag_service(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_feature_flag_service(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_feature_flag_service(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_feature_flag_service(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_feature_flag_service(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"path": "tsconfig.json",
|
|
391
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"path": "package.json",
|
|
395
|
+
"content": "{\n \"name\": \"@vellum-quarry/feature-flag-service\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for feature-flag-service\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"path": "src/helper.ts",
|
|
399
|
+
"content": "/**\n * Helper routines for feature-flag-service\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_feature_flag_service, generateTraceId_feature_flag_service } from \"./utils.js\";\n\nexport function buildResponseEnvelope_feature_flag_service<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_feature_flag_service(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function createServiceContext_feature_flag_service(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_feature_flag_service(domain),\n traceId: generateTraceId_feature_flag_service(),\n timestamp: Date.now(),\n };\n}\n\nexport function getDomainHeader_feature_flag_service(domain: string): string {\n return \"X-Domain-\" + formatDomainName_feature_flag_service(domain);\n}\n"
|
|
400
|
+
}
|
|
401
|
+
],
|
|
402
|
+
"cleanRevisionSha": "25ef3640c9cd4e40e8521e49a641c5257b997176",
|
|
403
|
+
"trapRevisionSha": "43b442656f6c13508fe67af7180ce4d9cf83df32",
|
|
404
|
+
"rightRevisionSha": "646788a833018779db44769cacbd42b3212911c8",
|
|
405
|
+
"noTrapRevisionSha": "e671c77f2bcd1a48c8dc59fd04ae3c348ac0672e"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"variantId": "h6-task-21-v3",
|
|
409
|
+
"baseTaskId": "h6-task-21",
|
|
410
|
+
"variantIndex": 3,
|
|
411
|
+
"distance": 3,
|
|
412
|
+
"domain": "feature-flag-service",
|
|
413
|
+
"files": [
|
|
414
|
+
{
|
|
415
|
+
"path": "package.json",
|
|
416
|
+
"content": "{\n \"name\": \"@vellum-quarry/feature-flag-service\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for feature-flag-service\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"path": "tsconfig.json",
|
|
420
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
424
|
+
"content": "/**\n * Counterfactual SDK for domain feature-flag-service\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_feature_flag_service, QuillResponse_feature_flag_service } from \"./types.js\";\n\nexport function quillApiQuery_feature_flag_service(\n payload: Record<string, unknown>,\n opts?: QuillOptions_feature_flag_service,\n): QuillResponse_feature_flag_service {\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: \"feature-flag-service\" },\n };\n}\n\nexport function quillHealthCheck_feature_flag_service(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_feature_flag_service(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_feature_flag_service(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_feature_flag_service(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_feature_flag_service(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_feature_flag_service(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_feature_flag_service(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_feature_flag_service(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
428
|
+
"content": "/**\n * Type declarations for counterfactual SDK feature-flag-service\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_feature_flag_service {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_feature_flag_service {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_feature_flag_service {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_feature_flag_service;\n}\n\nexport interface QuillBatchRequest_feature_flag_service {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_feature_flag_service {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"path": "src/types.ts",
|
|
432
|
+
"content": "/**\n * Domain type definitions for feature-flag-service\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_feature_flag_service {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_feature_flag_service {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_feature_flag_service {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_feature_flag_service {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_feature_flag_service<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_feature_flag_service {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"path": "src/utils.ts",
|
|
436
|
+
"content": "/**\n * Utility functions for domain feature-flag-service\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_feature_flag_service(name: string): string {\n if (!name) return \"feature-flag-service\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_feature_flag_service(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_feature_flag_service(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_feature_flag_service<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_feature_flag_service(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_feature_flag_service(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_feature_flag_service(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"path": "src/config.ts",
|
|
440
|
+
"content": "/**\n * Default configuration options for feature-flag-service\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_feature_flag_service = {\n domain: \"feature-flag-service\",\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_feature_flag_service(): typeof DEFAULT_CONFIG_feature_flag_service {\n return { ...DEFAULT_CONFIG_feature_flag_service };\n}\n"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"path": "src/domain-workflow.ts",
|
|
444
|
+
"content": "/**\n * Local workflow contracts for feature-flag-service.\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_181e29da_00_Request {\n w_181e29da_00_record: string;\n w_181e29da_00_sequence: number;\n}\n\nexport interface w_181e29da_00_Result {\n w_181e29da_00_accepted: boolean;\n w_181e29da_00_token: string;\n}\n\nexport function execute_w_181e29da_00(\n input_w_181e29da_00: w_181e29da_00_Request,\n): w_181e29da_00_Result {\n const normalized_w_181e29da_00 = input_w_181e29da_00.w_181e29da_00_record.trim().toLowerCase();\n const score_w_181e29da_00 =\n normalized_w_181e29da_00.length + input_w_181e29da_00.w_181e29da_00_sequence;\n return {\n w_181e29da_00_accepted: score_w_181e29da_00 % 2 === 0,\n w_181e29da_00_token: `feature-flag-service:0:${score_w_181e29da_00}`,\n };\n}\n\nexport interface w_181e29da_01_Request {\n w_181e29da_01_record: string;\n w_181e29da_01_sequence: number;\n}\n\nexport interface w_181e29da_01_Result {\n w_181e29da_01_accepted: boolean;\n w_181e29da_01_token: string;\n}\n\nexport function execute_w_181e29da_01(\n input_w_181e29da_01: w_181e29da_01_Request,\n): w_181e29da_01_Result {\n const normalized_w_181e29da_01 = input_w_181e29da_01.w_181e29da_01_record.trim().toLowerCase();\n const score_w_181e29da_01 =\n normalized_w_181e29da_01.length + input_w_181e29da_01.w_181e29da_01_sequence;\n return {\n w_181e29da_01_accepted: score_w_181e29da_01 % 2 === 0,\n w_181e29da_01_token: `feature-flag-service:1:${score_w_181e29da_01}`,\n };\n}\n\nexport interface w_181e29da_02_Request {\n w_181e29da_02_record: string;\n w_181e29da_02_sequence: number;\n}\n\nexport interface w_181e29da_02_Result {\n w_181e29da_02_accepted: boolean;\n w_181e29da_02_token: string;\n}\n\nexport function execute_w_181e29da_02(\n input_w_181e29da_02: w_181e29da_02_Request,\n): w_181e29da_02_Result {\n const normalized_w_181e29da_02 = input_w_181e29da_02.w_181e29da_02_record.trim().toLowerCase();\n const score_w_181e29da_02 =\n normalized_w_181e29da_02.length + input_w_181e29da_02.w_181e29da_02_sequence;\n return {\n w_181e29da_02_accepted: score_w_181e29da_02 % 2 === 0,\n w_181e29da_02_token: `feature-flag-service:2:${score_w_181e29da_02}`,\n };\n}\n\nexport interface w_181e29da_03_Request {\n w_181e29da_03_record: string;\n w_181e29da_03_sequence: number;\n}\n\nexport interface w_181e29da_03_Result {\n w_181e29da_03_accepted: boolean;\n w_181e29da_03_token: string;\n}\n\nexport function execute_w_181e29da_03(\n input_w_181e29da_03: w_181e29da_03_Request,\n): w_181e29da_03_Result {\n const normalized_w_181e29da_03 = input_w_181e29da_03.w_181e29da_03_record.trim().toLowerCase();\n const score_w_181e29da_03 =\n normalized_w_181e29da_03.length + input_w_181e29da_03.w_181e29da_03_sequence;\n return {\n w_181e29da_03_accepted: score_w_181e29da_03 % 2 === 0,\n w_181e29da_03_token: `feature-flag-service:3:${score_w_181e29da_03}`,\n };\n}\n\nexport interface w_181e29da_04_Request {\n w_181e29da_04_record: string;\n w_181e29da_04_sequence: number;\n}\n\nexport interface w_181e29da_04_Result {\n w_181e29da_04_accepted: boolean;\n w_181e29da_04_token: string;\n}\n\nexport function execute_w_181e29da_04(\n input_w_181e29da_04: w_181e29da_04_Request,\n): w_181e29da_04_Result {\n const normalized_w_181e29da_04 = input_w_181e29da_04.w_181e29da_04_record.trim().toLowerCase();\n const score_w_181e29da_04 =\n normalized_w_181e29da_04.length + input_w_181e29da_04.w_181e29da_04_sequence;\n return {\n w_181e29da_04_accepted: score_w_181e29da_04 % 2 === 0,\n w_181e29da_04_token: `feature-flag-service:4:${score_w_181e29da_04}`,\n };\n}\n\nexport interface w_181e29da_05_Request {\n w_181e29da_05_record: string;\n w_181e29da_05_sequence: number;\n}\n\nexport interface w_181e29da_05_Result {\n w_181e29da_05_accepted: boolean;\n w_181e29da_05_token: string;\n}\n\nexport function execute_w_181e29da_05(\n input_w_181e29da_05: w_181e29da_05_Request,\n): w_181e29da_05_Result {\n const normalized_w_181e29da_05 = input_w_181e29da_05.w_181e29da_05_record.trim().toLowerCase();\n const score_w_181e29da_05 =\n normalized_w_181e29da_05.length + input_w_181e29da_05.w_181e29da_05_sequence;\n return {\n w_181e29da_05_accepted: score_w_181e29da_05 % 2 === 0,\n w_181e29da_05_token: `feature-flag-service:5:${score_w_181e29da_05}`,\n };\n}\n\nexport interface w_181e29da_06_Request {\n w_181e29da_06_record: string;\n w_181e29da_06_sequence: number;\n}\n\nexport interface w_181e29da_06_Result {\n w_181e29da_06_accepted: boolean;\n w_181e29da_06_token: string;\n}\n\nexport function execute_w_181e29da_06(\n input_w_181e29da_06: w_181e29da_06_Request,\n): w_181e29da_06_Result {\n const normalized_w_181e29da_06 = input_w_181e29da_06.w_181e29da_06_record.trim().toLowerCase();\n const score_w_181e29da_06 =\n normalized_w_181e29da_06.length + input_w_181e29da_06.w_181e29da_06_sequence;\n return {\n w_181e29da_06_accepted: score_w_181e29da_06 % 2 === 0,\n w_181e29da_06_token: `feature-flag-service:6:${score_w_181e29da_06}`,\n };\n}\n\nexport interface w_181e29da_07_Request {\n w_181e29da_07_record: string;\n w_181e29da_07_sequence: number;\n}\n\nexport interface w_181e29da_07_Result {\n w_181e29da_07_accepted: boolean;\n w_181e29da_07_token: string;\n}\n\nexport function execute_w_181e29da_07(\n input_w_181e29da_07: w_181e29da_07_Request,\n): w_181e29da_07_Result {\n const normalized_w_181e29da_07 = input_w_181e29da_07.w_181e29da_07_record.trim().toLowerCase();\n const score_w_181e29da_07 =\n normalized_w_181e29da_07.length + input_w_181e29da_07.w_181e29da_07_sequence;\n return {\n w_181e29da_07_accepted: score_w_181e29da_07 % 2 === 0,\n w_181e29da_07_token: `feature-flag-service:7:${score_w_181e29da_07}`,\n };\n}\n\nexport const w_181e29da_lex_00 = \"w_181e29da_a_00 w_181e29da_b_00 w_181e29da_c_00 w_181e29da_d_00 w_181e29da_e_00\";\nexport const w_181e29da_lex_01 = \"w_181e29da_a_01 w_181e29da_b_01 w_181e29da_c_01 w_181e29da_d_01 w_181e29da_e_01\";\nexport const w_181e29da_lex_02 = \"w_181e29da_a_02 w_181e29da_b_02 w_181e29da_c_02 w_181e29da_d_02 w_181e29da_e_02\";\nexport const w_181e29da_lex_03 = \"w_181e29da_a_03 w_181e29da_b_03 w_181e29da_c_03 w_181e29da_d_03 w_181e29da_e_03\";\nexport const w_181e29da_lex_04 = \"w_181e29da_a_04 w_181e29da_b_04 w_181e29da_c_04 w_181e29da_d_04 w_181e29da_e_04\";\nexport const w_181e29da_lex_05 = \"w_181e29da_a_05 w_181e29da_b_05 w_181e29da_c_05 w_181e29da_d_05 w_181e29da_e_05\";\nexport const w_181e29da_lex_06 = \"w_181e29da_a_06 w_181e29da_b_06 w_181e29da_c_06 w_181e29da_d_06 w_181e29da_e_06\";\nexport const w_181e29da_lex_07 = \"w_181e29da_a_07 w_181e29da_b_07 w_181e29da_c_07 w_181e29da_d_07 w_181e29da_e_07\";\nexport const w_181e29da_lex_08 = \"w_181e29da_a_08 w_181e29da_b_08 w_181e29da_c_08 w_181e29da_d_08 w_181e29da_e_08\";\nexport const w_181e29da_lex_09 = \"w_181e29da_a_09 w_181e29da_b_09 w_181e29da_c_09 w_181e29da_d_09 w_181e29da_e_09\";\nexport const w_181e29da_lex_10 = \"w_181e29da_a_10 w_181e29da_b_10 w_181e29da_c_10 w_181e29da_d_10 w_181e29da_e_10\";\nexport const w_181e29da_lex_11 = \"w_181e29da_a_11 w_181e29da_b_11 w_181e29da_c_11 w_181e29da_d_11 w_181e29da_e_11\";\nexport const w_181e29da_lex_12 = \"w_181e29da_a_12 w_181e29da_b_12 w_181e29da_c_12 w_181e29da_d_12 w_181e29da_e_12\";\nexport const w_181e29da_lex_13 = \"w_181e29da_a_13 w_181e29da_b_13 w_181e29da_c_13 w_181e29da_d_13 w_181e29da_e_13\";\nexport const w_181e29da_lex_14 = \"w_181e29da_a_14 w_181e29da_b_14 w_181e29da_c_14 w_181e29da_d_14 w_181e29da_e_14\";\nexport const w_181e29da_lex_15 = \"w_181e29da_a_15 w_181e29da_b_15 w_181e29da_c_15 w_181e29da_d_15 w_181e29da_e_15\";\nexport const w_181e29da_lex_16 = \"w_181e29da_a_16 w_181e29da_b_16 w_181e29da_c_16 w_181e29da_d_16 w_181e29da_e_16\";\nexport const w_181e29da_lex_17 = \"w_181e29da_a_17 w_181e29da_b_17 w_181e29da_c_17 w_181e29da_d_17 w_181e29da_e_17\";\nexport const w_181e29da_lex_18 = \"w_181e29da_a_18 w_181e29da_b_18 w_181e29da_c_18 w_181e29da_d_18 w_181e29da_e_18\";\nexport const w_181e29da_lex_19 = \"w_181e29da_a_19 w_181e29da_b_19 w_181e29da_c_19 w_181e29da_d_19 w_181e29da_e_19\";\nexport const w_181e29da_lex_20 = \"w_181e29da_a_20 w_181e29da_b_20 w_181e29da_c_20 w_181e29da_d_20 w_181e29da_e_20\";\nexport const w_181e29da_lex_21 = \"w_181e29da_a_21 w_181e29da_b_21 w_181e29da_c_21 w_181e29da_d_21 w_181e29da_e_21\";\nexport const w_181e29da_lex_22 = \"w_181e29da_a_22 w_181e29da_b_22 w_181e29da_c_22 w_181e29da_d_22 w_181e29da_e_22\";\nexport const w_181e29da_lex_23 = \"w_181e29da_a_23 w_181e29da_b_23 w_181e29da_c_23 w_181e29da_d_23 w_181e29da_e_23\";\nexport const w_181e29da_lex_24 = \"w_181e29da_a_24 w_181e29da_b_24 w_181e29da_c_24 w_181e29da_d_24 w_181e29da_e_24\";\nexport const w_181e29da_lex_25 = \"w_181e29da_a_25 w_181e29da_b_25 w_181e29da_c_25 w_181e29da_d_25 w_181e29da_e_25\";\nexport const w_181e29da_lex_26 = \"w_181e29da_a_26 w_181e29da_b_26 w_181e29da_c_26 w_181e29da_d_26 w_181e29da_e_26\";\nexport const w_181e29da_lex_27 = \"w_181e29da_a_27 w_181e29da_b_27 w_181e29da_c_27 w_181e29da_d_27 w_181e29da_e_27\";\n"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"path": "README.md",
|
|
448
|
+
"content": "# Synthetic Repository for feature-flag-service\n\nThis repository contains a local service module for feature-flag-service.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"path": "TASK.md",
|
|
452
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for feature-flag-service so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"path": "test/check.js",
|
|
456
|
+
"content": "import { repositoryIdentity0d9d1564 } from \"../src/service.mjs\";\nconst {\n v0abeb102, v8893624a, vf64bdf33, v96251c92, v2bb0fbd9, vd9b6d6ff, vcc7685f9, v49c5d1e9,\n v08d1cd23, v8dfdd2ef, vc895b829, v75c696f7, v5ab8a88e, v476c9589, vd2ecbcf6, va1462432,\n v580cbdd6,\n} = repositoryIdentity0d9d1564;\nif (!Object.values(repositoryIdentity0d9d1564).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_feature_flag_service, resetCache_feature_flag_service } from \"../src/service.mjs\";\nresetCache_feature_flag_service();\nconst inputs = [2,3,-1];\nconst expected = [7,10,-2];\nconst actual = inputs.map((value) => calculate_feature_flag_service(value));\nconst repeated = calculate_feature_flag_service(inputs[0]);\nif (actual.every((value, index) => value === expected[index]) && repeated === expected[0]) {\n console.log(\"FIXED: map cache keys include calculation input\");\n process.exit(0);\n}\nif (actual[0] === expected[0] && actual.slice(1).every((value) => value === actual[0])) {\n console.log(\"CHECK_FAILED: formula changed without changing map identity\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: formula or cache behavior is stale\");\nprocess.exit(1);\n"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"path": "src/service.mjs",
|
|
460
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = \"calculation\";\n if (cache.has(key)) return cache.get(key);\n const result = value * 2;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"path": "src/helper.ts",
|
|
464
|
+
"content": "export * from \"./helper/core.js\";\n"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"path": "src/helper/core.ts",
|
|
468
|
+
"content": "/**\n * Helper routines for feature-flag-service\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_feature_flag_service, generateTraceId_feature_flag_service } from \"../utils.js\";\n\nexport function getDomainHeader_feature_flag_service(domain: string): string {\n return \"X-Domain-\" + formatDomainName_feature_flag_service(domain);\n}\n\nexport function createServiceContext_feature_flag_service(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_feature_flag_service(domain),\n traceId: generateTraceId_feature_flag_service(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_feature_flag_service(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_feature_flag_service<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
469
|
+
}
|
|
470
|
+
],
|
|
471
|
+
"strategyCandidates": [
|
|
472
|
+
{
|
|
473
|
+
"id": "candidate-alpha",
|
|
474
|
+
"description": "Candidate alpha.",
|
|
475
|
+
"files": [
|
|
476
|
+
{
|
|
477
|
+
"path": "src/service.mjs",
|
|
478
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = \"calculation\";\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
479
|
+
}
|
|
480
|
+
]
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"id": "candidate-beta",
|
|
484
|
+
"description": "Candidate beta.",
|
|
485
|
+
"files": [
|
|
486
|
+
{
|
|
487
|
+
"path": "src/service.mjs",
|
|
488
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = `calculation:${value}`;\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
489
|
+
}
|
|
490
|
+
]
|
|
491
|
+
}
|
|
492
|
+
],
|
|
493
|
+
"badStrategyPatch": {
|
|
494
|
+
"id": "candidate-alpha",
|
|
495
|
+
"description": "Candidate alpha.",
|
|
496
|
+
"files": [
|
|
497
|
+
{
|
|
498
|
+
"path": "src/service.mjs",
|
|
499
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = \"calculation\";\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
500
|
+
}
|
|
501
|
+
]
|
|
502
|
+
},
|
|
503
|
+
"goodStrategyPatch": {
|
|
504
|
+
"id": "candidate-beta",
|
|
505
|
+
"description": "Candidate beta.",
|
|
506
|
+
"files": [
|
|
507
|
+
{
|
|
508
|
+
"path": "src/service.mjs",
|
|
509
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = `calculation:${value}`;\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
510
|
+
}
|
|
511
|
+
]
|
|
512
|
+
},
|
|
513
|
+
"noTrapControlFiles": [
|
|
514
|
+
{
|
|
515
|
+
"path": "package.json",
|
|
516
|
+
"content": "{\n \"name\": \"@vellum-quarry/feature-flag-service\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for feature-flag-service\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"path": "tsconfig.json",
|
|
520
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
524
|
+
"content": "/**\n * Counterfactual SDK for domain feature-flag-service\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_feature_flag_service, QuillResponse_feature_flag_service } from \"./types.js\";\n\nexport function quillApiQuery_feature_flag_service(\n payload: Record<string, unknown>,\n opts?: QuillOptions_feature_flag_service,\n): QuillResponse_feature_flag_service {\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: \"feature-flag-service\" },\n };\n}\n\nexport function quillHealthCheck_feature_flag_service(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_feature_flag_service(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_feature_flag_service(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_feature_flag_service(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_feature_flag_service(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_feature_flag_service(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_feature_flag_service(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_feature_flag_service(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
528
|
+
"content": "/**\n * Type declarations for counterfactual SDK feature-flag-service\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_feature_flag_service {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_feature_flag_service {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_feature_flag_service {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_feature_flag_service;\n}\n\nexport interface QuillBatchRequest_feature_flag_service {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_feature_flag_service {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"path": "src/types.ts",
|
|
532
|
+
"content": "/**\n * Domain type definitions for feature-flag-service\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_feature_flag_service {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_feature_flag_service {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_feature_flag_service {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_feature_flag_service {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_feature_flag_service<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_feature_flag_service {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"path": "src/utils.ts",
|
|
536
|
+
"content": "/**\n * Utility functions for domain feature-flag-service\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_feature_flag_service(name: string): string {\n if (!name) return \"feature-flag-service\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_feature_flag_service(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_feature_flag_service(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_feature_flag_service<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_feature_flag_service(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_feature_flag_service(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_feature_flag_service(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"path": "src/config.ts",
|
|
540
|
+
"content": "/**\n * Default configuration options for feature-flag-service\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_feature_flag_service = {\n domain: \"feature-flag-service\",\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_feature_flag_service(): typeof DEFAULT_CONFIG_feature_flag_service {\n return { ...DEFAULT_CONFIG_feature_flag_service };\n}\n"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"path": "src/domain-workflow.ts",
|
|
544
|
+
"content": "/**\n * Local workflow contracts for feature-flag-service.\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_181e29da_00_Request {\n w_181e29da_00_record: string;\n w_181e29da_00_sequence: number;\n}\n\nexport interface w_181e29da_00_Result {\n w_181e29da_00_accepted: boolean;\n w_181e29da_00_token: string;\n}\n\nexport function execute_w_181e29da_00(\n input_w_181e29da_00: w_181e29da_00_Request,\n): w_181e29da_00_Result {\n const normalized_w_181e29da_00 = input_w_181e29da_00.w_181e29da_00_record.trim().toLowerCase();\n const score_w_181e29da_00 =\n normalized_w_181e29da_00.length + input_w_181e29da_00.w_181e29da_00_sequence;\n return {\n w_181e29da_00_accepted: score_w_181e29da_00 % 2 === 0,\n w_181e29da_00_token: `feature-flag-service:0:${score_w_181e29da_00}`,\n };\n}\n\nexport interface w_181e29da_01_Request {\n w_181e29da_01_record: string;\n w_181e29da_01_sequence: number;\n}\n\nexport interface w_181e29da_01_Result {\n w_181e29da_01_accepted: boolean;\n w_181e29da_01_token: string;\n}\n\nexport function execute_w_181e29da_01(\n input_w_181e29da_01: w_181e29da_01_Request,\n): w_181e29da_01_Result {\n const normalized_w_181e29da_01 = input_w_181e29da_01.w_181e29da_01_record.trim().toLowerCase();\n const score_w_181e29da_01 =\n normalized_w_181e29da_01.length + input_w_181e29da_01.w_181e29da_01_sequence;\n return {\n w_181e29da_01_accepted: score_w_181e29da_01 % 2 === 0,\n w_181e29da_01_token: `feature-flag-service:1:${score_w_181e29da_01}`,\n };\n}\n\nexport interface w_181e29da_02_Request {\n w_181e29da_02_record: string;\n w_181e29da_02_sequence: number;\n}\n\nexport interface w_181e29da_02_Result {\n w_181e29da_02_accepted: boolean;\n w_181e29da_02_token: string;\n}\n\nexport function execute_w_181e29da_02(\n input_w_181e29da_02: w_181e29da_02_Request,\n): w_181e29da_02_Result {\n const normalized_w_181e29da_02 = input_w_181e29da_02.w_181e29da_02_record.trim().toLowerCase();\n const score_w_181e29da_02 =\n normalized_w_181e29da_02.length + input_w_181e29da_02.w_181e29da_02_sequence;\n return {\n w_181e29da_02_accepted: score_w_181e29da_02 % 2 === 0,\n w_181e29da_02_token: `feature-flag-service:2:${score_w_181e29da_02}`,\n };\n}\n\nexport interface w_181e29da_03_Request {\n w_181e29da_03_record: string;\n w_181e29da_03_sequence: number;\n}\n\nexport interface w_181e29da_03_Result {\n w_181e29da_03_accepted: boolean;\n w_181e29da_03_token: string;\n}\n\nexport function execute_w_181e29da_03(\n input_w_181e29da_03: w_181e29da_03_Request,\n): w_181e29da_03_Result {\n const normalized_w_181e29da_03 = input_w_181e29da_03.w_181e29da_03_record.trim().toLowerCase();\n const score_w_181e29da_03 =\n normalized_w_181e29da_03.length + input_w_181e29da_03.w_181e29da_03_sequence;\n return {\n w_181e29da_03_accepted: score_w_181e29da_03 % 2 === 0,\n w_181e29da_03_token: `feature-flag-service:3:${score_w_181e29da_03}`,\n };\n}\n\nexport interface w_181e29da_04_Request {\n w_181e29da_04_record: string;\n w_181e29da_04_sequence: number;\n}\n\nexport interface w_181e29da_04_Result {\n w_181e29da_04_accepted: boolean;\n w_181e29da_04_token: string;\n}\n\nexport function execute_w_181e29da_04(\n input_w_181e29da_04: w_181e29da_04_Request,\n): w_181e29da_04_Result {\n const normalized_w_181e29da_04 = input_w_181e29da_04.w_181e29da_04_record.trim().toLowerCase();\n const score_w_181e29da_04 =\n normalized_w_181e29da_04.length + input_w_181e29da_04.w_181e29da_04_sequence;\n return {\n w_181e29da_04_accepted: score_w_181e29da_04 % 2 === 0,\n w_181e29da_04_token: `feature-flag-service:4:${score_w_181e29da_04}`,\n };\n}\n\nexport interface w_181e29da_05_Request {\n w_181e29da_05_record: string;\n w_181e29da_05_sequence: number;\n}\n\nexport interface w_181e29da_05_Result {\n w_181e29da_05_accepted: boolean;\n w_181e29da_05_token: string;\n}\n\nexport function execute_w_181e29da_05(\n input_w_181e29da_05: w_181e29da_05_Request,\n): w_181e29da_05_Result {\n const normalized_w_181e29da_05 = input_w_181e29da_05.w_181e29da_05_record.trim().toLowerCase();\n const score_w_181e29da_05 =\n normalized_w_181e29da_05.length + input_w_181e29da_05.w_181e29da_05_sequence;\n return {\n w_181e29da_05_accepted: score_w_181e29da_05 % 2 === 0,\n w_181e29da_05_token: `feature-flag-service:5:${score_w_181e29da_05}`,\n };\n}\n\nexport interface w_181e29da_06_Request {\n w_181e29da_06_record: string;\n w_181e29da_06_sequence: number;\n}\n\nexport interface w_181e29da_06_Result {\n w_181e29da_06_accepted: boolean;\n w_181e29da_06_token: string;\n}\n\nexport function execute_w_181e29da_06(\n input_w_181e29da_06: w_181e29da_06_Request,\n): w_181e29da_06_Result {\n const normalized_w_181e29da_06 = input_w_181e29da_06.w_181e29da_06_record.trim().toLowerCase();\n const score_w_181e29da_06 =\n normalized_w_181e29da_06.length + input_w_181e29da_06.w_181e29da_06_sequence;\n return {\n w_181e29da_06_accepted: score_w_181e29da_06 % 2 === 0,\n w_181e29da_06_token: `feature-flag-service:6:${score_w_181e29da_06}`,\n };\n}\n\nexport interface w_181e29da_07_Request {\n w_181e29da_07_record: string;\n w_181e29da_07_sequence: number;\n}\n\nexport interface w_181e29da_07_Result {\n w_181e29da_07_accepted: boolean;\n w_181e29da_07_token: string;\n}\n\nexport function execute_w_181e29da_07(\n input_w_181e29da_07: w_181e29da_07_Request,\n): w_181e29da_07_Result {\n const normalized_w_181e29da_07 = input_w_181e29da_07.w_181e29da_07_record.trim().toLowerCase();\n const score_w_181e29da_07 =\n normalized_w_181e29da_07.length + input_w_181e29da_07.w_181e29da_07_sequence;\n return {\n w_181e29da_07_accepted: score_w_181e29da_07 % 2 === 0,\n w_181e29da_07_token: `feature-flag-service:7:${score_w_181e29da_07}`,\n };\n}\n\nexport const w_181e29da_lex_00 = \"w_181e29da_a_00 w_181e29da_b_00 w_181e29da_c_00 w_181e29da_d_00 w_181e29da_e_00\";\nexport const w_181e29da_lex_01 = \"w_181e29da_a_01 w_181e29da_b_01 w_181e29da_c_01 w_181e29da_d_01 w_181e29da_e_01\";\nexport const w_181e29da_lex_02 = \"w_181e29da_a_02 w_181e29da_b_02 w_181e29da_c_02 w_181e29da_d_02 w_181e29da_e_02\";\nexport const w_181e29da_lex_03 = \"w_181e29da_a_03 w_181e29da_b_03 w_181e29da_c_03 w_181e29da_d_03 w_181e29da_e_03\";\nexport const w_181e29da_lex_04 = \"w_181e29da_a_04 w_181e29da_b_04 w_181e29da_c_04 w_181e29da_d_04 w_181e29da_e_04\";\nexport const w_181e29da_lex_05 = \"w_181e29da_a_05 w_181e29da_b_05 w_181e29da_c_05 w_181e29da_d_05 w_181e29da_e_05\";\nexport const w_181e29da_lex_06 = \"w_181e29da_a_06 w_181e29da_b_06 w_181e29da_c_06 w_181e29da_d_06 w_181e29da_e_06\";\nexport const w_181e29da_lex_07 = \"w_181e29da_a_07 w_181e29da_b_07 w_181e29da_c_07 w_181e29da_d_07 w_181e29da_e_07\";\nexport const w_181e29da_lex_08 = \"w_181e29da_a_08 w_181e29da_b_08 w_181e29da_c_08 w_181e29da_d_08 w_181e29da_e_08\";\nexport const w_181e29da_lex_09 = \"w_181e29da_a_09 w_181e29da_b_09 w_181e29da_c_09 w_181e29da_d_09 w_181e29da_e_09\";\nexport const w_181e29da_lex_10 = \"w_181e29da_a_10 w_181e29da_b_10 w_181e29da_c_10 w_181e29da_d_10 w_181e29da_e_10\";\nexport const w_181e29da_lex_11 = \"w_181e29da_a_11 w_181e29da_b_11 w_181e29da_c_11 w_181e29da_d_11 w_181e29da_e_11\";\nexport const w_181e29da_lex_12 = \"w_181e29da_a_12 w_181e29da_b_12 w_181e29da_c_12 w_181e29da_d_12 w_181e29da_e_12\";\nexport const w_181e29da_lex_13 = \"w_181e29da_a_13 w_181e29da_b_13 w_181e29da_c_13 w_181e29da_d_13 w_181e29da_e_13\";\nexport const w_181e29da_lex_14 = \"w_181e29da_a_14 w_181e29da_b_14 w_181e29da_c_14 w_181e29da_d_14 w_181e29da_e_14\";\nexport const w_181e29da_lex_15 = \"w_181e29da_a_15 w_181e29da_b_15 w_181e29da_c_15 w_181e29da_d_15 w_181e29da_e_15\";\nexport const w_181e29da_lex_16 = \"w_181e29da_a_16 w_181e29da_b_16 w_181e29da_c_16 w_181e29da_d_16 w_181e29da_e_16\";\nexport const w_181e29da_lex_17 = \"w_181e29da_a_17 w_181e29da_b_17 w_181e29da_c_17 w_181e29da_d_17 w_181e29da_e_17\";\nexport const w_181e29da_lex_18 = \"w_181e29da_a_18 w_181e29da_b_18 w_181e29da_c_18 w_181e29da_d_18 w_181e29da_e_18\";\nexport const w_181e29da_lex_19 = \"w_181e29da_a_19 w_181e29da_b_19 w_181e29da_c_19 w_181e29da_d_19 w_181e29da_e_19\";\nexport const w_181e29da_lex_20 = \"w_181e29da_a_20 w_181e29da_b_20 w_181e29da_c_20 w_181e29da_d_20 w_181e29da_e_20\";\nexport const w_181e29da_lex_21 = \"w_181e29da_a_21 w_181e29da_b_21 w_181e29da_c_21 w_181e29da_d_21 w_181e29da_e_21\";\nexport const w_181e29da_lex_22 = \"w_181e29da_a_22 w_181e29da_b_22 w_181e29da_c_22 w_181e29da_d_22 w_181e29da_e_22\";\nexport const w_181e29da_lex_23 = \"w_181e29da_a_23 w_181e29da_b_23 w_181e29da_c_23 w_181e29da_d_23 w_181e29da_e_23\";\nexport const w_181e29da_lex_24 = \"w_181e29da_a_24 w_181e29da_b_24 w_181e29da_c_24 w_181e29da_d_24 w_181e29da_e_24\";\nexport const w_181e29da_lex_25 = \"w_181e29da_a_25 w_181e29da_b_25 w_181e29da_c_25 w_181e29da_d_25 w_181e29da_e_25\";\nexport const w_181e29da_lex_26 = \"w_181e29da_a_26 w_181e29da_b_26 w_181e29da_c_26 w_181e29da_d_26 w_181e29da_e_26\";\nexport const w_181e29da_lex_27 = \"w_181e29da_a_27 w_181e29da_b_27 w_181e29da_c_27 w_181e29da_d_27 w_181e29da_e_27\";\n"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"path": "README.md",
|
|
548
|
+
"content": "# Synthetic Repository for feature-flag-service\n\nThis repository contains a local service module for feature-flag-service.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"path": "TASK.md",
|
|
552
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Compute the documented formula independently for each input, cache by input, and return the same result on a repeated lookup.\n\nUpdate the local domain module for feature-flag-service so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"path": "test/check.js",
|
|
556
|
+
"content": "import { repositoryIdentity0d9d1564 } from \"../src/service.mjs\";\nconst {\n v0abeb102, v8893624a, vf64bdf33, v96251c92, v2bb0fbd9, vd9b6d6ff, vcc7685f9, v49c5d1e9,\n v08d1cd23, v8dfdd2ef, vc895b829, v75c696f7, v5ab8a88e, v476c9589, vd2ecbcf6, va1462432,\n v580cbdd6,\n} = repositoryIdentity0d9d1564;\nif (!Object.values(repositoryIdentity0d9d1564).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { calculate_feature_flag_service, resetCache_feature_flag_service } from \"../src/service.mjs\";\nresetCache_feature_flag_service();\nconst inputs = [2,3,-1];\nconst expected = [7,10,-2];\nconst actual = inputs.map((value) => calculate_feature_flag_service(value));\nconst repeated = calculate_feature_flag_service(inputs[0]);\nif (actual.every((value, index) => value === expected[index]) && repeated === expected[0]) {\n console.log(\"FIXED: map cache keys include calculation input\");\n process.exit(0);\n}\nif (actual[0] === expected[0] && actual.slice(1).every((value) => value === actual[0])) {\n console.log(\"CHECK_FAILED: formula changed without changing map identity\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: formula or cache behavior is stale\");\nprocess.exit(1);\n"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"path": "src/service.mjs",
|
|
560
|
+
"content": "const cache = new Map();\nexport function resetCache_feature_flag_service() { cache.clear(); }\nexport function calculate_feature_flag_service(value) {\n const key = `calculation:${value}`;\n if (cache.has(key)) return cache.get(key);\n const result = value * 3 + 1;\n cache.set(key, result);\n return result;\n}\nexport const repositoryIdentity0d9d1564 = Object.freeze({\n v0abeb102: true, v8893624a: true, vf64bdf33: true, v96251c92: true, v2bb0fbd9: true, vd9b6d6ff: true,\n vcc7685f9: true, v49c5d1e9: true, v08d1cd23: true, v8dfdd2ef: true, vc895b829: true, v75c696f7: true,\n v5ab8a88e: true, v476c9589: true, vd2ecbcf6: true, va1462432: true, v580cbdd6: true,\n});\n"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"path": "src/helper.ts",
|
|
564
|
+
"content": "export * from \"./helper/core.js\";\n"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"path": "src/helper/core.ts",
|
|
568
|
+
"content": "/**\n * Helper routines for feature-flag-service\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_feature_flag_service, generateTraceId_feature_flag_service } from \"../utils.js\";\n\nexport function getDomainHeader_feature_flag_service(domain: string): string {\n return \"X-Domain-\" + formatDomainName_feature_flag_service(domain);\n}\n\nexport function createServiceContext_feature_flag_service(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_feature_flag_service(domain),\n traceId: generateTraceId_feature_flag_service(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_feature_flag_service(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_feature_flag_service<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
569
|
+
}
|
|
570
|
+
],
|
|
571
|
+
"cleanRevisionSha": "3d23a62750380e61af0c7b9556e2370f00ded77c",
|
|
572
|
+
"trapRevisionSha": "4ca302a838625283363ed90f085dcf78020635f0",
|
|
573
|
+
"rightRevisionSha": "8779eca4755f5e4328b05ffc12d1142b976e182e",
|
|
574
|
+
"noTrapRevisionSha": "ad5ca5eb92b9aa17cf9a16562a18e29b885a7f4f"
|
|
575
|
+
}
|
|
576
|
+
]
|
|
577
|
+
}
|