engineeringagent 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (796) hide show
  1. engineeringagent-0.1.0/.github/workflows/ci.yaml +55 -0
  2. engineeringagent-0.1.0/.gitignore +11 -0
  3. engineeringagent-0.1.0/.opencode/.gitignore +4 -0
  4. engineeringagent-0.1.0/.opencode/agents/build.md +7 -0
  5. engineeringagent-0.1.0/.opencode/bun.lock +18 -0
  6. engineeringagent-0.1.0/.opencode/node_modules/@opencode-ai/plugin/package.json +34 -0
  7. engineeringagent-0.1.0/.opencode/node_modules/@opencode-ai/sdk/package.json +51 -0
  8. engineeringagent-0.1.0/.opencode/node_modules/zod/LICENSE +21 -0
  9. engineeringagent-0.1.0/.opencode/node_modules/zod/README.md +208 -0
  10. engineeringagent-0.1.0/.opencode/node_modules/zod/index.cjs +33 -0
  11. engineeringagent-0.1.0/.opencode/node_modules/zod/index.d.cts +4 -0
  12. engineeringagent-0.1.0/.opencode/node_modules/zod/index.d.ts +4 -0
  13. engineeringagent-0.1.0/.opencode/node_modules/zod/index.js +4 -0
  14. engineeringagent-0.1.0/.opencode/node_modules/zod/locales/index.cjs +17 -0
  15. engineeringagent-0.1.0/.opencode/node_modules/zod/locales/index.d.cts +1 -0
  16. engineeringagent-0.1.0/.opencode/node_modules/zod/locales/index.d.ts +1 -0
  17. engineeringagent-0.1.0/.opencode/node_modules/zod/locales/index.js +1 -0
  18. engineeringagent-0.1.0/.opencode/node_modules/zod/locales/package.json +6 -0
  19. engineeringagent-0.1.0/.opencode/node_modules/zod/mini/index.cjs +17 -0
  20. engineeringagent-0.1.0/.opencode/node_modules/zod/mini/index.d.cts +1 -0
  21. engineeringagent-0.1.0/.opencode/node_modules/zod/mini/index.d.ts +1 -0
  22. engineeringagent-0.1.0/.opencode/node_modules/zod/mini/index.js +1 -0
  23. engineeringagent-0.1.0/.opencode/node_modules/zod/mini/package.json +6 -0
  24. engineeringagent-0.1.0/.opencode/node_modules/zod/package.json +135 -0
  25. engineeringagent-0.1.0/.opencode/node_modules/zod/src/index.ts +4 -0
  26. engineeringagent-0.1.0/.opencode/node_modules/zod/src/locales/index.ts +1 -0
  27. engineeringagent-0.1.0/.opencode/node_modules/zod/src/mini/index.ts +1 -0
  28. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/ZodError.ts +330 -0
  29. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  30. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  31. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  32. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  33. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  34. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  35. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  36. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  37. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  38. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/errors.ts +13 -0
  39. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/external.ts +6 -0
  40. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  41. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  42. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  43. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  44. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  45. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/helpers/util.ts +224 -0
  46. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/index.ts +4 -0
  47. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/locales/en.ts +124 -0
  48. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/standard-schema.ts +113 -0
  49. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  50. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  51. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  52. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  53. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  54. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  55. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  56. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  57. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  58. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  59. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  60. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
  61. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  62. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  63. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  64. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  65. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  66. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  67. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  68. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  69. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  70. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  71. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/function.test.ts +257 -0
  72. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  73. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  74. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  75. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  76. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  77. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  78. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  79. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  80. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  81. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
  82. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  83. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  84. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  85. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  86. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  87. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  88. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  89. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  90. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  91. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  92. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  93. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  94. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  95. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  96. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  97. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  98. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  99. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  100. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  101. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  102. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  103. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  104. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  105. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  106. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  107. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  108. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  109. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  110. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v3/types.ts +5138 -0
  111. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/checks.ts +31 -0
  112. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  113. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/compat.ts +70 -0
  114. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/errors.ts +82 -0
  115. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/external.ts +50 -0
  116. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/index.ts +5 -0
  117. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/iso.ts +90 -0
  118. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/parse.ts +82 -0
  119. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/schemas.ts +2205 -0
  120. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  121. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  122. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
  123. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  124. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  125. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  126. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  127. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
  128. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/catch.test.ts +276 -0
  129. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  130. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/codec-examples.test.ts +573 -0
  131. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/codec.test.ts +562 -0
  132. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  133. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
  134. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  135. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
  136. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/datetime.test.ts +302 -0
  137. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/default.test.ts +365 -0
  138. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  139. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +661 -0
  140. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  141. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +595 -0
  142. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  143. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/file.test.ts +96 -0
  144. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +179 -0
  145. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/function.test.ts +308 -0
  146. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  147. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/hash.test.ts +68 -0
  148. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/index.test.ts +844 -0
  149. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
  150. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
  151. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
  152. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  153. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/literal.test.ts +117 -0
  154. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
  155. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  156. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  157. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +101 -0
  158. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  159. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/number.test.ts +270 -0
  160. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/object.test.ts +609 -0
  161. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/optional.test.ts +136 -0
  162. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/partial.test.ts +340 -0
  163. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
  164. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/pipe.test.ts +101 -0
  165. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/prefault.test.ts +74 -0
  166. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +282 -0
  167. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  168. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  169. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  170. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  171. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/record.test.ts +356 -0
  172. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +539 -0
  173. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/refine.test.ts +605 -0
  174. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
  175. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/set.test.ts +181 -0
  176. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
  177. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +125 -0
  178. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/string.test.ts +1080 -0
  179. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +106 -0
  180. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +763 -0
  181. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2622 -0
  182. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/transform.test.ts +361 -0
  183. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
  184. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/union.test.ts +181 -0
  185. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  186. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  187. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/api.ts +1621 -0
  188. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/checks.ts +1287 -0
  189. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/config.ts +15 -0
  190. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/core.ts +115 -0
  191. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/doc.ts +44 -0
  192. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/errors.ts +423 -0
  193. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/index.ts +14 -0
  194. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/json-schema.ts +147 -0
  195. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/parse.ts +195 -0
  196. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/regexes.ts +177 -0
  197. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/registries.ts +97 -0
  198. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/schemas.ts +4303 -0
  199. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
  200. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/tests/extend.test.ts +18 -0
  201. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  202. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  203. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  204. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/tests/locales/es.test.ts +181 -0
  205. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  206. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  207. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/to-json-schema.ts +1044 -0
  208. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/util.ts +910 -0
  209. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/versions.ts +5 -0
  210. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/core/zsf.ts +323 -0
  211. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/index.ts +4 -0
  212. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/ar.ts +125 -0
  213. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/az.ts +121 -0
  214. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/be.ts +184 -0
  215. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/bg.ts +136 -0
  216. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/ca.ts +127 -0
  217. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/cs.ts +142 -0
  218. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/da.ts +141 -0
  219. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/de.ts +124 -0
  220. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/en.ts +127 -0
  221. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/eo.ts +125 -0
  222. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/es.ts +159 -0
  223. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/fa.ts +134 -0
  224. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/fi.ts +131 -0
  225. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
  226. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/fr.ts +124 -0
  227. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/he.ts +125 -0
  228. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/hu.ts +126 -0
  229. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/id.ts +125 -0
  230. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/index.ts +46 -0
  231. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/is.ts +127 -0
  232. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/it.ts +125 -0
  233. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/ja.ts +122 -0
  234. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/ka.ts +138 -0
  235. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/kh.ts +7 -0
  236. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/km.ts +126 -0
  237. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/ko.ts +131 -0
  238. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/lt.ts +265 -0
  239. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/mk.ts +127 -0
  240. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/ms.ts +124 -0
  241. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/nl.ts +126 -0
  242. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/no.ts +124 -0
  243. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/ota.ts +125 -0
  244. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/pl.ts +126 -0
  245. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/ps.ts +133 -0
  246. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/pt.ts +123 -0
  247. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/ru.ts +184 -0
  248. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/sl.ts +126 -0
  249. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/sv.ts +127 -0
  250. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/ta.ts +125 -0
  251. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/th.ts +126 -0
  252. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/tr.ts +121 -0
  253. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/ua.ts +7 -0
  254. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/uk.ts +126 -0
  255. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/ur.ts +126 -0
  256. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/vi.ts +125 -0
  257. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/yo.ts +131 -0
  258. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
  259. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
  260. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/checks.ts +32 -0
  261. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/coerce.ts +22 -0
  262. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/external.ts +40 -0
  263. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/index.ts +3 -0
  264. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/iso.ts +62 -0
  265. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/parse.ts +14 -0
  266. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/schemas.ts +1739 -0
  267. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  268. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
  269. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  270. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/codec.test.ts +529 -0
  271. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  272. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  273. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
  274. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/index.test.ts +899 -0
  275. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  276. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/object.test.ts +200 -0
  277. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  278. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
  279. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4/mini/tests/string.test.ts +315 -0
  280. engineeringagent-0.1.0/.opencode/node_modules/zod/src/v4-mini/index.ts +1 -0
  281. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/ZodError.cjs +138 -0
  282. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/ZodError.d.cts +164 -0
  283. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/ZodError.d.ts +164 -0
  284. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/ZodError.js +133 -0
  285. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/errors.cjs +17 -0
  286. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/errors.d.cts +5 -0
  287. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/errors.d.ts +5 -0
  288. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/errors.js +9 -0
  289. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/external.cjs +22 -0
  290. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/external.d.cts +6 -0
  291. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/external.d.ts +6 -0
  292. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/external.js +6 -0
  293. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  294. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  295. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  296. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  297. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  298. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  299. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  300. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  301. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  302. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  303. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  304. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  305. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  306. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  307. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  308. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  309. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  310. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  311. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  312. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  313. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/util.cjs +137 -0
  314. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/util.d.cts +85 -0
  315. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/util.d.ts +85 -0
  316. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/helpers/util.js +133 -0
  317. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/index.cjs +33 -0
  318. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/index.d.cts +4 -0
  319. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/index.d.ts +4 -0
  320. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/index.js +4 -0
  321. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/locales/en.cjs +112 -0
  322. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/locales/en.d.cts +3 -0
  323. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/locales/en.d.ts +3 -0
  324. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/locales/en.js +109 -0
  325. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/package.json +6 -0
  326. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/standard-schema.cjs +2 -0
  327. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/standard-schema.d.cts +102 -0
  328. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/standard-schema.d.ts +102 -0
  329. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/standard-schema.js +1 -0
  330. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/types.cjs +3777 -0
  331. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/types.d.cts +1034 -0
  332. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/types.d.ts +1034 -0
  333. engineeringagent-0.1.0/.opencode/node_modules/zod/v3/types.js +3695 -0
  334. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/checks.cjs +32 -0
  335. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/checks.d.cts +1 -0
  336. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/checks.d.ts +1 -0
  337. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/checks.js +1 -0
  338. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/coerce.cjs +47 -0
  339. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  340. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  341. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/coerce.js +17 -0
  342. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/compat.cjs +61 -0
  343. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/compat.d.cts +50 -0
  344. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/compat.d.ts +50 -0
  345. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/compat.js +31 -0
  346. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/errors.cjs +74 -0
  347. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/errors.d.cts +30 -0
  348. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/errors.d.ts +30 -0
  349. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/errors.js +48 -0
  350. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/external.cjs +70 -0
  351. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/external.d.cts +13 -0
  352. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/external.d.ts +13 -0
  353. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/external.js +18 -0
  354. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/index.cjs +33 -0
  355. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/index.d.cts +4 -0
  356. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/index.d.ts +4 -0
  357. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/index.js +4 -0
  358. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/iso.cjs +60 -0
  359. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/iso.d.cts +22 -0
  360. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/iso.d.ts +22 -0
  361. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/iso.js +30 -0
  362. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/package.json +6 -0
  363. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/parse.cjs +41 -0
  364. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/parse.d.cts +31 -0
  365. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/parse.d.ts +31 -0
  366. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/parse.js +15 -0
  367. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/schemas.cjs +1161 -0
  368. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/schemas.d.cts +673 -0
  369. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/schemas.d.ts +673 -0
  370. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/classic/schemas.js +1050 -0
  371. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/api.cjs +1060 -0
  372. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/api.d.cts +295 -0
  373. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/api.d.ts +295 -0
  374. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/api.js +925 -0
  375. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/checks.cjs +595 -0
  376. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/checks.d.cts +278 -0
  377. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/checks.d.ts +278 -0
  378. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/checks.js +569 -0
  379. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/core.cjs +74 -0
  380. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/core.d.cts +52 -0
  381. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/core.d.ts +52 -0
  382. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/core.js +67 -0
  383. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/doc.cjs +39 -0
  384. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/doc.d.cts +14 -0
  385. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/doc.d.ts +14 -0
  386. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/doc.js +35 -0
  387. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/errors.cjs +221 -0
  388. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/errors.d.cts +210 -0
  389. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/errors.d.ts +210 -0
  390. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/errors.js +190 -0
  391. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/index.cjs +43 -0
  392. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/index.d.cts +14 -0
  393. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/index.d.ts +14 -0
  394. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/index.js +14 -0
  395. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/json-schema.cjs +2 -0
  396. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/json-schema.d.cts +88 -0
  397. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/json-schema.d.ts +88 -0
  398. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/json-schema.js +1 -0
  399. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/package.json +6 -0
  400. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/parse.cjs +131 -0
  401. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/parse.d.cts +49 -0
  402. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/parse.d.ts +49 -0
  403. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/parse.js +93 -0
  404. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/regexes.cjs +136 -0
  405. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/regexes.d.cts +78 -0
  406. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/regexes.d.ts +78 -0
  407. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/regexes.js +127 -0
  408. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/registries.cjs +57 -0
  409. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/registries.d.cts +35 -0
  410. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/registries.d.ts +35 -0
  411. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/registries.js +52 -0
  412. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/schemas.cjs +1972 -0
  413. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/schemas.d.cts +1113 -0
  414. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/schemas.d.ts +1113 -0
  415. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/schemas.js +1941 -0
  416. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  417. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
  418. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
  419. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/standard-schema.js +1 -0
  420. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/to-json-schema.cjs +920 -0
  421. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/to-json-schema.d.cts +90 -0
  422. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/to-json-schema.d.ts +90 -0
  423. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/to-json-schema.js +915 -0
  424. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/util.cjs +658 -0
  425. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/util.d.cts +197 -0
  426. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/util.d.ts +197 -0
  427. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/util.js +601 -0
  428. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/versions.cjs +8 -0
  429. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/versions.d.cts +5 -0
  430. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/versions.d.ts +5 -0
  431. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/core/versions.js +5 -0
  432. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/index.cjs +22 -0
  433. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/index.d.cts +3 -0
  434. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/index.d.ts +3 -0
  435. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/index.js +3 -0
  436. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ar.cjs +143 -0
  437. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ar.d.cts +5 -0
  438. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ar.d.ts +4 -0
  439. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ar.js +116 -0
  440. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/az.cjs +142 -0
  441. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/az.d.cts +5 -0
  442. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/az.d.ts +4 -0
  443. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/az.js +115 -0
  444. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/be.cjs +191 -0
  445. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/be.d.cts +5 -0
  446. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/be.d.ts +4 -0
  447. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/be.js +164 -0
  448. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/bg.cjs +156 -0
  449. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/bg.d.cts +5 -0
  450. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/bg.d.ts +5 -0
  451. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/bg.js +128 -0
  452. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ca.cjs +145 -0
  453. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ca.d.cts +5 -0
  454. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ca.d.ts +4 -0
  455. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ca.js +118 -0
  456. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/cs.cjs +162 -0
  457. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/cs.d.cts +5 -0
  458. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/cs.d.ts +4 -0
  459. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/cs.js +135 -0
  460. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/da.cjs +158 -0
  461. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/da.d.cts +5 -0
  462. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/da.d.ts +4 -0
  463. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/da.js +131 -0
  464. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/de.cjs +143 -0
  465. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/de.d.cts +5 -0
  466. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/de.d.ts +4 -0
  467. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/de.js +116 -0
  468. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/en.cjs +145 -0
  469. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/en.d.cts +5 -0
  470. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/en.d.ts +5 -0
  471. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/en.js +117 -0
  472. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/eo.cjs +144 -0
  473. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/eo.d.cts +5 -0
  474. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/eo.d.ts +5 -0
  475. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/eo.js +116 -0
  476. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/es.cjs +176 -0
  477. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/es.d.cts +5 -0
  478. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/es.d.ts +4 -0
  479. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/es.js +149 -0
  480. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fa.cjs +149 -0
  481. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fa.d.cts +5 -0
  482. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fa.d.ts +4 -0
  483. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fa.js +122 -0
  484. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fi.cjs +149 -0
  485. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fi.d.cts +5 -0
  486. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fi.d.ts +4 -0
  487. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fi.js +122 -0
  488. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fr-CA.cjs +144 -0
  489. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fr-CA.d.cts +5 -0
  490. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  491. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fr-CA.js +117 -0
  492. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fr.cjs +143 -0
  493. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fr.d.cts +5 -0
  494. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fr.d.ts +4 -0
  495. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/fr.js +116 -0
  496. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/he.cjs +144 -0
  497. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/he.d.cts +5 -0
  498. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/he.d.ts +4 -0
  499. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/he.js +117 -0
  500. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/hu.cjs +144 -0
  501. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/hu.d.cts +5 -0
  502. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/hu.d.ts +4 -0
  503. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/hu.js +117 -0
  504. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/id.cjs +143 -0
  505. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/id.d.cts +5 -0
  506. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/id.d.ts +4 -0
  507. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/id.js +116 -0
  508. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/index.cjs +98 -0
  509. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/index.d.cts +46 -0
  510. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/index.d.ts +46 -0
  511. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/index.js +46 -0
  512. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/is.cjs +145 -0
  513. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/is.d.cts +5 -0
  514. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/is.d.ts +5 -0
  515. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/is.js +117 -0
  516. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/it.cjs +144 -0
  517. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/it.d.cts +5 -0
  518. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/it.d.ts +4 -0
  519. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/it.js +117 -0
  520. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ja.cjs +142 -0
  521. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ja.d.cts +5 -0
  522. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ja.d.ts +4 -0
  523. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ja.js +115 -0
  524. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ka.cjs +153 -0
  525. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ka.d.cts +5 -0
  526. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ka.d.ts +5 -0
  527. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ka.js +125 -0
  528. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/kh.cjs +12 -0
  529. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/kh.d.cts +5 -0
  530. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/kh.d.ts +5 -0
  531. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/kh.js +5 -0
  532. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/km.cjs +144 -0
  533. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/km.d.cts +5 -0
  534. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/km.d.ts +4 -0
  535. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/km.js +117 -0
  536. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ko.cjs +148 -0
  537. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ko.d.cts +5 -0
  538. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ko.d.ts +4 -0
  539. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ko.js +121 -0
  540. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/lt.cjs +258 -0
  541. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/lt.d.cts +5 -0
  542. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/lt.d.ts +5 -0
  543. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/lt.js +230 -0
  544. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/mk.cjs +145 -0
  545. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/mk.d.cts +5 -0
  546. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/mk.d.ts +4 -0
  547. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/mk.js +118 -0
  548. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ms.cjs +143 -0
  549. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ms.d.cts +5 -0
  550. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ms.d.ts +4 -0
  551. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ms.js +116 -0
  552. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/nl.cjs +144 -0
  553. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/nl.d.cts +5 -0
  554. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/nl.d.ts +4 -0
  555. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/nl.js +117 -0
  556. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/no.cjs +143 -0
  557. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/no.d.cts +5 -0
  558. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/no.d.ts +4 -0
  559. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/no.js +116 -0
  560. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ota.cjs +144 -0
  561. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ota.d.cts +5 -0
  562. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ota.d.ts +4 -0
  563. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ota.js +117 -0
  564. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/package.json +6 -0
  565. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/pl.cjs +144 -0
  566. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/pl.d.cts +5 -0
  567. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/pl.d.ts +4 -0
  568. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/pl.js +117 -0
  569. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ps.cjs +149 -0
  570. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ps.d.cts +5 -0
  571. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ps.d.ts +4 -0
  572. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ps.js +122 -0
  573. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/pt.cjs +143 -0
  574. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/pt.d.cts +5 -0
  575. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/pt.d.ts +4 -0
  576. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/pt.js +116 -0
  577. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ru.cjs +191 -0
  578. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ru.d.cts +5 -0
  579. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ru.d.ts +4 -0
  580. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ru.js +164 -0
  581. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/sl.cjs +144 -0
  582. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/sl.d.cts +5 -0
  583. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/sl.d.ts +4 -0
  584. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/sl.js +117 -0
  585. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/sv.cjs +145 -0
  586. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/sv.d.cts +5 -0
  587. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/sv.d.ts +4 -0
  588. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/sv.js +118 -0
  589. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ta.cjs +144 -0
  590. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ta.d.cts +5 -0
  591. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ta.d.ts +4 -0
  592. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ta.js +117 -0
  593. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/th.cjs +144 -0
  594. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/th.d.cts +5 -0
  595. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/th.d.ts +4 -0
  596. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/th.js +117 -0
  597. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/tr.cjs +143 -0
  598. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/tr.d.cts +5 -0
  599. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/tr.d.ts +5 -0
  600. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/tr.js +115 -0
  601. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ua.cjs +12 -0
  602. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ua.d.cts +5 -0
  603. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ua.d.ts +5 -0
  604. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ua.js +5 -0
  605. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/uk.cjs +144 -0
  606. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/uk.d.cts +5 -0
  607. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/uk.d.ts +4 -0
  608. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/uk.js +117 -0
  609. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ur.cjs +144 -0
  610. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ur.d.cts +5 -0
  611. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ur.d.ts +4 -0
  612. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/ur.js +117 -0
  613. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/vi.cjs +143 -0
  614. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/vi.d.cts +5 -0
  615. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/vi.d.ts +4 -0
  616. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/vi.js +116 -0
  617. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/yo.cjs +142 -0
  618. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/yo.d.cts +5 -0
  619. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/yo.d.ts +4 -0
  620. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/yo.js +115 -0
  621. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/zh-CN.cjs +143 -0
  622. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/zh-CN.d.cts +5 -0
  623. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  624. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/zh-CN.js +116 -0
  625. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/zh-TW.cjs +144 -0
  626. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/zh-TW.d.cts +5 -0
  627. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  628. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/locales/zh-TW.js +117 -0
  629. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/checks.cjs +34 -0
  630. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/checks.d.cts +1 -0
  631. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/checks.d.ts +1 -0
  632. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/checks.js +1 -0
  633. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/coerce.cjs +47 -0
  634. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  635. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  636. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/coerce.js +17 -0
  637. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/external.cjs +62 -0
  638. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/external.d.cts +11 -0
  639. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/external.d.ts +11 -0
  640. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/external.js +13 -0
  641. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/index.cjs +32 -0
  642. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/index.d.cts +3 -0
  643. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/index.d.ts +3 -0
  644. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/index.js +3 -0
  645. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/iso.cjs +60 -0
  646. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/iso.d.cts +22 -0
  647. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/iso.d.ts +22 -0
  648. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/iso.js +30 -0
  649. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/package.json +6 -0
  650. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/parse.cjs +16 -0
  651. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/parse.d.cts +1 -0
  652. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/parse.d.ts +1 -0
  653. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/parse.js +1 -0
  654. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/schemas.cjs +906 -0
  655. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/schemas.d.cts +407 -0
  656. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/schemas.d.ts +407 -0
  657. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/mini/schemas.js +789 -0
  658. engineeringagent-0.1.0/.opencode/node_modules/zod/v4/package.json +6 -0
  659. engineeringagent-0.1.0/.opencode/node_modules/zod/v4-mini/index.cjs +17 -0
  660. engineeringagent-0.1.0/.opencode/node_modules/zod/v4-mini/index.d.cts +1 -0
  661. engineeringagent-0.1.0/.opencode/node_modules/zod/v4-mini/index.d.ts +1 -0
  662. engineeringagent-0.1.0/.opencode/node_modules/zod/v4-mini/index.js +1 -0
  663. engineeringagent-0.1.0/.opencode/node_modules/zod/v4-mini/package.json +6 -0
  664. engineeringagent-0.1.0/.opencode/package.json +5 -0
  665. engineeringagent-0.1.0/.pre-commit-config.yaml +13 -0
  666. engineeringagent-0.1.0/AGENTS.md +77 -0
  667. engineeringagent-0.1.0/PKG-INFO +107 -0
  668. engineeringagent-0.1.0/README.md +98 -0
  669. engineeringagent-0.1.0/docs/fitness-functions/README.md +13 -0
  670. engineeringagent-0.1.0/docs/fitness-functions/architecture.md +16 -0
  671. engineeringagent-0.1.0/docs/fitness-functions/rules.md +35 -0
  672. engineeringagent-0.1.0/docs/principles/harness-engineering-principles.md +77 -0
  673. engineeringagent-0.1.0/docs/references/docs-architecture-llms.md +38 -0
  674. engineeringagent-0.1.0/docs/references/python-uv-ruff-llms.md +118 -0
  675. engineeringagent-0.1.0/docs/references/spec-writing-llms.md +89 -0
  676. engineeringagent-0.1.0/docs/references/uv-llms.md +62 -0
  677. engineeringagent-0.1.0/docs/spec/features/.allow-done-active.txt +2 -0
  678. engineeringagent-0.1.0/docs/spec/features/FEAT-037-configurable-docs-root-runtime-support.yaml +104 -0
  679. engineeringagent-0.1.0/docs/spec/features_done/.gitkeep +0 -0
  680. engineeringagent-0.1.0/docs/spec/features_done/FEAT-001-spec-model-and-validator-foundation.yaml +69 -0
  681. engineeringagent-0.1.0/docs/spec/features_done/FEAT-002-human-gated-loop-runner-core.yaml +73 -0
  682. engineeringagent-0.1.0/docs/spec/features_done/FEAT-003-back-pressure-and-verification-pipeline.yaml +82 -0
  683. engineeringagent-0.1.0/docs/spec/features_done/FEAT-004-ralph-loop-opencode-mode.yaml +74 -0
  684. engineeringagent-0.1.0/docs/spec/features_done/FEAT-005-adopt-uv-project-workflow.yaml +75 -0
  685. engineeringagent-0.1.0/docs/spec/features_done/FEAT-006-spec-authoring-interview-workflow.yaml +56 -0
  686. engineeringagent-0.1.0/docs/spec/features_done/FEAT-007-path-first-run-cli-and-engineeringagent-rename.yaml +89 -0
  687. engineeringagent-0.1.0/docs/spec/features_done/FEAT-008-opencode-allow-all-permissions-and-batch-proof.yaml +76 -0
  688. engineeringagent-0.1.0/docs/spec/features_done/FEAT-009-remove-scripts-folder-and-canonical-command-entrypoints.yaml +121 -0
  689. engineeringagent-0.1.0/docs/spec/features_done/FEAT-010-add-ruff-pytest-gates-and-google-docstrings.yaml +122 -0
  690. engineeringagent-0.1.0/docs/spec/features_done/FEAT-011-add-engineeringagent-init-scaffold-command.yaml +128 -0
  691. engineeringagent-0.1.0/docs/spec/features_done/FEAT-012-stop-loop-on-git-add-failure.yaml +66 -0
  692. engineeringagent-0.1.0/docs/spec/features_done/FEAT-013-add-run-all-auto-discovery-for-incomplete-features.yaml +125 -0
  693. engineeringagent-0.1.0/docs/spec/features_done/FEAT-014-auto-archive-done-features-to-features-done.yaml +155 -0
  694. engineeringagent-0.1.0/docs/spec/features_done/FEAT-015-adopt-pydantic-validation-for-engineeringagent-yaml-contracts.yaml +132 -0
  695. engineeringagent-0.1.0/docs/spec/features_done/FEAT-016-enforce-commit-message-policy-and-spec-typing.yaml +165 -0
  696. engineeringagent-0.1.0/docs/spec/features_done/FEAT-017-documentation-audience-split-and-human-first-readme.yaml +141 -0
  697. engineeringagent-0.1.0/docs/spec/features_done/FEAT-018-handle-mid-iteration-feature-archive-without-crash.yaml +114 -0
  698. engineeringagent-0.1.0/docs/spec/features_done/FEAT-019-concise-run-output-and-detailed-progress-logs.yaml +138 -0
  699. engineeringagent-0.1.0/docs/spec/features_done/FEAT-020-feed-failed-gate-output-into-retry-prompts.yaml +118 -0
  700. engineeringagent-0.1.0/docs/spec/features_done/FEAT-021-enforce-per-feature-completion-commit.yaml +130 -0
  701. engineeringagent-0.1.0/docs/spec/features_done/FEAT-022-add-pyright-type-validation-to-precommit-harness.yaml +119 -0
  702. engineeringagent-0.1.0/docs/spec/features_done/FEAT-023-fix-archive-before-gate-validation-order.yaml +120 -0
  703. engineeringagent-0.1.0/docs/spec/features_done/FEAT-024-adopt-same-iteration-archived-done-for-completion-commit.yaml +120 -0
  704. engineeringagent-0.1.0/docs/spec/features_done/FEAT-025-fitness-function-framework-and-rule-catalog.yaml +185 -0
  705. engineeringagent-0.1.0/docs/spec/features_done/FEAT-026-add-pre-run-opencode-permission-precheck.yaml +129 -0
  706. engineeringagent-0.1.0/docs/spec/features_done/FEAT-027-agents-docs-map-integrity-validation.yaml +93 -0
  707. engineeringagent-0.1.0/docs/spec/features_done/FEAT-028-refactor-git-opencode-clients-and-harden-subprocess-fitness.yaml +165 -0
  708. engineeringagent-0.1.0/docs/spec/features_done/FEAT-029-require-explicit-harness-fitness-rule-declarations.yaml +164 -0
  709. engineeringagent-0.1.0/docs/spec/features_done/FEAT-030-maintainability-refactors-for-recent-loop-and-fitness-changes.yaml +187 -0
  710. engineeringagent-0.1.0/docs/spec/features_done/FEAT-031-externalize-loop-prompts-and-enforce-locality.yaml +184 -0
  711. engineeringagent-0.1.0/docs/spec/features_done/FEAT-032-explicit-loop-orchestration-and-signature-guardrails.yaml +176 -0
  712. engineeringagent-0.1.0/docs/spec/features_done/FEAT-033-tty-aware-structured-run-output.yaml +129 -0
  713. engineeringagent-0.1.0/docs/spec/features_done/FEAT-034-loop-facade-extraction-and-size-guardrails.yaml +216 -0
  714. engineeringagent-0.1.0/docs/spec/features_done/FEAT-035-harness-engineering-principles-docs-update.yaml +129 -0
  715. engineeringagent-0.1.0/docs/spec/features_done/FEAT-036-language-agnostic-init-scaffolding-and-reference-first-agents.yaml +140 -0
  716. engineeringagent-0.1.0/docs/spec/potential_features.yaml +78 -0
  717. engineeringagent-0.1.0/docs/spec/schemas/feature.schema.json +255 -0
  718. engineeringagent-0.1.0/harness/fitness-functions/check_loop_facade_line_budget.py +52 -0
  719. engineeringagent-0.1.0/harness/fitness-functions/rules.yaml +20 -0
  720. engineeringagent-0.1.0/harness/gates.yaml +30 -0
  721. engineeringagent-0.1.0/harness/permission_probe.py +38 -0
  722. engineeringagent-0.1.0/harness/validate_commit_messages.py +85 -0
  723. engineeringagent-0.1.0/harness/validate_yaml.py +42 -0
  724. engineeringagent-0.1.0/opencode.json +15 -0
  725. engineeringagent-0.1.0/progress/.gitkeep +0 -0
  726. engineeringagent-0.1.0/pyproject.toml +60 -0
  727. engineeringagent-0.1.0/pyrightconfig.json +9 -0
  728. engineeringagent-0.1.0/src/engineeringagent/__init__.py +3 -0
  729. engineeringagent-0.1.0/src/engineeringagent/cli.py +605 -0
  730. engineeringagent-0.1.0/src/engineeringagent/commit_messages.py +100 -0
  731. engineeringagent-0.1.0/src/engineeringagent/fitness/__init__.py +67 -0
  732. engineeringagent-0.1.0/src/engineeringagent/fitness/adapters.py +125 -0
  733. engineeringagent-0.1.0/src/engineeringagent/fitness/builtin_rules.py +517 -0
  734. engineeringagent-0.1.0/src/engineeringagent/fitness/catalog.py +67 -0
  735. engineeringagent-0.1.0/src/engineeringagent/fitness/contracts.py +107 -0
  736. engineeringagent-0.1.0/src/engineeringagent/fitness/registry.py +274 -0
  737. engineeringagent-0.1.0/src/engineeringagent/fitness/runner.py +73 -0
  738. engineeringagent-0.1.0/src/engineeringagent/gates.py +141 -0
  739. engineeringagent-0.1.0/src/engineeringagent/git/__init__.py +3 -0
  740. engineeringagent-0.1.0/src/engineeringagent/git/client.py +82 -0
  741. engineeringagent-0.1.0/src/engineeringagent/init_scaffold.py +192 -0
  742. engineeringagent-0.1.0/src/engineeringagent/loop.py +523 -0
  743. engineeringagent-0.1.0/src/engineeringagent/loop_runtime/__init__.py +5 -0
  744. engineeringagent-0.1.0/src/engineeringagent/loop_runtime/feature_state.py +404 -0
  745. engineeringagent-0.1.0/src/engineeringagent/loop_runtime/implement.py +123 -0
  746. engineeringagent-0.1.0/src/engineeringagent/loop_runtime/iteration.py +264 -0
  747. engineeringagent-0.1.0/src/engineeringagent/loop_runtime/models.py +96 -0
  748. engineeringagent-0.1.0/src/engineeringagent/loop_runtime/phases.py +134 -0
  749. engineeringagent-0.1.0/src/engineeringagent/loop_runtime/presentation.py +80 -0
  750. engineeringagent-0.1.0/src/engineeringagent/loop_runtime/selection.py +102 -0
  751. engineeringagent-0.1.0/src/engineeringagent/loop_runtime/telemetry.py +144 -0
  752. engineeringagent-0.1.0/src/engineeringagent/opencode/__init__.py +3 -0
  753. engineeringagent-0.1.0/src/engineeringagent/opencode/client.py +59 -0
  754. engineeringagent-0.1.0/src/engineeringagent/opencode_permissions.py +106 -0
  755. engineeringagent-0.1.0/src/engineeringagent/prompts/__init__.py +11 -0
  756. engineeringagent-0.1.0/src/engineeringagent/prompts/renderer.py +86 -0
  757. engineeringagent-0.1.0/src/engineeringagent/prompts/templates/__init__.py +0 -0
  758. engineeringagent-0.1.0/src/engineeringagent/prompts/templates/loop_implementation.md +7 -0
  759. engineeringagent-0.1.0/src/engineeringagent/prompts/templates/loop_retry_feedback.md +2 -0
  760. engineeringagent-0.1.0/src/engineeringagent/prompts/templates/loop_selector.md +2 -0
  761. engineeringagent-0.1.0/src/engineeringagent/scaffold_templates/AGENTS.md +42 -0
  762. engineeringagent-0.1.0/src/engineeringagent/scaffold_templates/__init__.py +0 -0
  763. engineeringagent-0.1.0/src/engineeringagent/scaffold_templates/precommit.core.yaml +8 -0
  764. engineeringagent-0.1.0/src/engineeringagent/scaffold_templates/precommit.python_uv.yaml +13 -0
  765. engineeringagent-0.1.0/src/engineeringagent/scaffold_templates/reference.docs-architecture-llms.md +23 -0
  766. engineeringagent-0.1.0/src/engineeringagent/scaffold_templates/reference.workflow-llms.md +23 -0
  767. engineeringagent-0.1.0/src/engineeringagent/specs.py +465 -0
  768. engineeringagent-0.1.0/src/engineeringagent/validator.py +253 -0
  769. engineeringagent-0.1.0/tests/conftest.py +10 -0
  770. engineeringagent-0.1.0/tests/fixtures/specs/invalid/bad-status.yaml +9 -0
  771. engineeringagent-0.1.0/tests/fixtures/specs/invalid/illegal-transition.yaml +16 -0
  772. engineeringagent-0.1.0/tests/fixtures/specs/invalid/missing-objective.yaml +8 -0
  773. engineeringagent-0.1.0/tests/test_cli.py +281 -0
  774. engineeringagent-0.1.0/tests/test_commit_message_validation.py +87 -0
  775. engineeringagent-0.1.0/tests/test_fitness_adapters.py +102 -0
  776. engineeringagent-0.1.0/tests/test_fitness_catalog_generation.py +60 -0
  777. engineeringagent-0.1.0/tests/test_fitness_contract.py +58 -0
  778. engineeringagent-0.1.0/tests/test_fitness_manifest.py +112 -0
  779. engineeringagent-0.1.0/tests/test_fitness_manifest_contract.py +151 -0
  780. engineeringagent-0.1.0/tests/test_fitness_parallel_runner.py +81 -0
  781. engineeringagent-0.1.0/tests/test_fitness_registry.py +97 -0
  782. engineeringagent-0.1.0/tests/test_fitness_rule_id_collisions.py +125 -0
  783. engineeringagent-0.1.0/tests/test_fitness_rules_directionality.py +71 -0
  784. engineeringagent-0.1.0/tests/test_fitness_rules_loop_subprocess_boundary.py +148 -0
  785. engineeringagent-0.1.0/tests/test_fitness_rules_prompt_locality.py +201 -0
  786. engineeringagent-0.1.0/tests/test_fitness_rules_scaffold_template_locality.py +117 -0
  787. engineeringagent-0.1.0/tests/test_fitness_side_effect_contract.py +40 -0
  788. engineeringagent-0.1.0/tests/test_gates.py +244 -0
  789. engineeringagent-0.1.0/tests/test_git_client.py +91 -0
  790. engineeringagent-0.1.0/tests/test_init_command.py +335 -0
  791. engineeringagent-0.1.0/tests/test_loop_contracts.py +149 -0
  792. engineeringagent-0.1.0/tests/test_loop_opencode_integration.py +496 -0
  793. engineeringagent-0.1.0/tests/test_loop_ralph_mode.py +2164 -0
  794. engineeringagent-0.1.0/tests/test_opencode_client.py +54 -0
  795. engineeringagent-0.1.0/tests/test_validator.py +760 -0
  796. engineeringagent-0.1.0/uv.lock +998 -0
@@ -0,0 +1,55 @@
1
+ name: CI
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
+
9
+ jobs:
10
+ verify:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
+
18
+ - name: Install uv
19
+ uses: astral-sh/setup-uv@v5
20
+
21
+ - name: Set up Python
22
+ uses: actions/setup-python@v5
23
+ with:
24
+ python-version: "3.12"
25
+
26
+ - name: Sync dependencies
27
+ run: uv sync
28
+
29
+ - name: Validate commit subjects
30
+ env:
31
+ EVENT_NAME: ${{ github.event_name }}
32
+ PR_BASE_SHA: ${{ github.event.pull_request.base.sha }}
33
+ PUSH_BEFORE_SHA: ${{ github.event.before }}
34
+ HEAD_SHA: ${{ github.sha }}
35
+ run: |
36
+ if [ "$EVENT_NAME" = "pull_request" ]; then
37
+ COMMIT_RANGE="$PR_BASE_SHA..$HEAD_SHA"
38
+ else
39
+ COMMIT_RANGE="$PUSH_BEFORE_SHA..$HEAD_SHA"
40
+ fi
41
+
42
+ if [ "$PUSH_BEFORE_SHA" = "0000000000000000000000000000000000000000" ]; then
43
+ COMMIT_RANGE="$HEAD_SHA^..$HEAD_SHA"
44
+ fi
45
+
46
+ uv run python harness/validate_commit_messages.py --commit-range "$COMMIT_RANGE"
47
+
48
+ - name: Lint (precommit profile)
49
+ run: uvx --from . engineeringagent gates run --profile precommit
50
+
51
+ - name: Test
52
+ run: pytest -q
53
+
54
+ - name: Spec validation
55
+ run: uvx --from . engineeringagent validate
@@ -0,0 +1,11 @@
1
+ __pycache__/
2
+ *.py[cod]
3
+ .pytest_cache/
4
+ .mypy_cache/
5
+ .ruff_cache/
6
+ .venv/
7
+ dist/
8
+ build/
9
+ *.egg-info/
10
+ progress/runs.jsonl
11
+ progress/run-feature-*.txt
@@ -0,0 +1,4 @@
1
+ node_modules
2
+ package.json
3
+ bun.lock
4
+ .gitignore
@@ -0,0 +1,7 @@
1
+ ---
2
+ description: Build agent override for deterministic repository automation.
3
+ mode: primary
4
+ permission:
5
+ "*": allow
6
+ bash: allow
7
+ ---
@@ -0,0 +1,18 @@
1
+ {
2
+ "lockfileVersion": 1,
3
+ "configVersion": 1,
4
+ "workspaces": {
5
+ "": {
6
+ "dependencies": {
7
+ "@opencode-ai/plugin": "1.1.65",
8
+ },
9
+ },
10
+ },
11
+ "packages": {
12
+ "@opencode-ai/plugin": ["@opencode-ai/plugin@1.1.65", "", { "dependencies": { "@opencode-ai/sdk": "1.1.65", "zod": "4.1.8" } }, "sha512-wG9B4HtD3cOAM36UEeWgrZ0A6BCRr6pYbH2XG7/AWF6wEJVvz8TT256+4TNUuNaIDE3RP9X5Sf7g0hKFviGD0g=="],
13
+
14
+ "@opencode-ai/sdk": ["@opencode-ai/sdk@1.1.65", "", {}, "sha512-XlpgQJQ5WwO4tYgyyHoTT0NAB5/1StXonabVUAYVpW0JdtbwWFSdFEaLkWx6CU7MNW6ELP+SMC4n6wWO6zRW8Q=="],
15
+
16
+ "zod": ["zod@4.1.8", "", {}, "sha512-5R1P+WwQqmmMIEACyzSvo4JXHY5WiAFHRMg+zBZKgKS+Q1viRa0C1hmUKtHltoIFKtIdki3pRxkmpP74jnNYHQ=="],
17
+ }
18
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/package.json",
3
+ "name": "@opencode-ai/plugin",
4
+ "version": "1.1.65",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "scripts": {
8
+ "typecheck": "tsgo --noEmit",
9
+ "build": "tsc"
10
+ },
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ },
16
+ "./tool": {
17
+ "import": "./dist/tool.js",
18
+ "types": "./dist/tool.d.ts"
19
+ }
20
+ },
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "dependencies": {
25
+ "@opencode-ai/sdk": "1.1.65",
26
+ "zod": "4.1.8"
27
+ },
28
+ "devDependencies": {
29
+ "@tsconfig/node22": "22.0.2",
30
+ "@types/node": "22.13.9",
31
+ "typescript": "5.8.2",
32
+ "@typescript/native-preview": "7.0.0-dev.20251207.1"
33
+ }
34
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/package.json",
3
+ "name": "@opencode-ai/sdk",
4
+ "version": "1.1.65",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "scripts": {
8
+ "typecheck": "tsgo --noEmit",
9
+ "build": "./script/build.ts"
10
+ },
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ },
16
+ "./client": {
17
+ "import": "./dist/client.js",
18
+ "types": "./dist/client.d.ts"
19
+ },
20
+ "./server": {
21
+ "import": "./dist/server.js",
22
+ "types": "./dist/server.d.ts"
23
+ },
24
+ "./v2": {
25
+ "import": "./dist/v2/index.js",
26
+ "types": "./dist/v2/index.d.ts"
27
+ },
28
+ "./v2/client": {
29
+ "import": "./dist/v2/client.js",
30
+ "types": "./dist/v2/client.d.ts"
31
+ },
32
+ "./v2/server": {
33
+ "import": "./dist/v2/server.js",
34
+ "types": "./dist/v2/server.d.ts"
35
+ }
36
+ },
37
+ "files": [
38
+ "dist"
39
+ ],
40
+ "devDependencies": {
41
+ "@hey-api/openapi-ts": "0.90.10",
42
+ "@tsconfig/node22": "22.0.2",
43
+ "@types/node": "22.13.9",
44
+ "typescript": "5.8.2",
45
+ "@typescript/native-preview": "7.0.0-dev.20251207.1"
46
+ },
47
+ "dependencies": {},
48
+ "publishConfig": {
49
+ "directory": "dist"
50
+ }
51
+ }
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Colin McDonnell
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,208 @@
1
+ <p align="center">
2
+ <img src="logo.svg" width="200px" align="center" alt="Zod logo" />
3
+ <h1 align="center">Zod</h1>
4
+ <p align="center">
5
+ TypeScript-first schema validation with static type inference
6
+ <br/>
7
+ by <a href="https://x.com/colinhacks">@colinhacks</a>
8
+ </p>
9
+ </p>
10
+ <br/>
11
+
12
+ <p align="center">
13
+ <a href="https://github.com/colinhacks/zod/actions?query=branch%3Amain"><img src="https://github.com/colinhacks/zod/actions/workflows/test.yml/badge.svg?event=push&branch=main" alt="Zod CI status" /></a>
14
+ <a href="https://opensource.org/licenses/MIT" rel="nofollow"><img src="https://img.shields.io/github/license/colinhacks/zod" alt="License"></a>
15
+ <a href="https://www.npmjs.com/package/zod" rel="nofollow"><img src="https://img.shields.io/npm/dw/zod.svg" alt="npm"></a>
16
+ <a href="https://discord.gg/KaSRdyX2vc" rel="nofollow"><img src="https://img.shields.io/discord/893487829802418277?label=Discord&logo=discord&logoColor=white" alt="discord server"></a>
17
+ <a href="https://github.com/colinhacks/zod" rel="nofollow"><img src="https://img.shields.io/github/stars/colinhacks/zod" alt="stars"></a>
18
+ </p>
19
+
20
+ <div align="center">
21
+ <a href="https://zod.dev/api">Docs</a>
22
+ <span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
23
+ <a href="https://discord.gg/RcG33DQJdf">Discord</a>
24
+ <span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
25
+ <a href="https://twitter.com/colinhacks">𝕏</a>
26
+ <span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
27
+ <a href="https://bsky.app/profile/zod.dev">Bluesky</a>
28
+ <br />
29
+ </div>
30
+
31
+ <br/>
32
+ <br/>
33
+
34
+ <h2 align="center">Featured sponsor: Jazz</h2>
35
+
36
+ <div align="center">
37
+ <a href="https://jazz.tools/?utm_source=zod">
38
+ <picture width="85%" >
39
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/garden-co/jazz/938f6767e46cdfded60e50d99bf3b533f4809c68/homepage/homepage/public/Zod%20sponsor%20message.png">
40
+ <img alt="jazz logo" src="https://raw.githubusercontent.com/garden-co/jazz/938f6767e46cdfded60e50d99bf3b533f4809c68/homepage/homepage/public/Zod%20sponsor%20message.png" width="85%">
41
+ </picture>
42
+ </a>
43
+ <br/>
44
+ <p><sub>Learn more about <a target="_blank" rel="noopener noreferrer" href="mailto:sponsorship@colinhacks.com">featured sponsorships</a></sub></p>
45
+ </div>
46
+
47
+ <br/>
48
+ <br/>
49
+ <br/>
50
+
51
+ ### [Read the docs →](https://zod.dev/api)
52
+
53
+ <br/>
54
+ <br/>
55
+
56
+ ## What is Zod?
57
+
58
+ Zod is a TypeScript-first validation library. Define a schema and parse some data with it. You'll get back a strongly typed, validated result.
59
+
60
+ ```ts
61
+ import * as z from "zod";
62
+
63
+ const User = z.object({
64
+ name: z.string(),
65
+ });
66
+
67
+ // some untrusted data...
68
+ const input = {
69
+ /* stuff */
70
+ };
71
+
72
+ // the parsed result is validated and type safe!
73
+ const data = User.parse(input);
74
+
75
+ // so you can use it with confidence :)
76
+ console.log(data.name);
77
+ ```
78
+
79
+ <br/>
80
+
81
+ ## Features
82
+
83
+ - Zero external dependencies
84
+ - Works in Node.js and all modern browsers
85
+ - Tiny: `2kb` core bundle (gzipped)
86
+ - Immutable API: methods return a new instance
87
+ - Concise interface
88
+ - Works with TypeScript and plain JS
89
+ - Built-in JSON Schema conversion
90
+ - Extensive ecosystem
91
+
92
+ <br/>
93
+
94
+ ## Installation
95
+
96
+ ```sh
97
+ npm install zod
98
+ ```
99
+
100
+ <br/>
101
+
102
+ ## Basic usage
103
+
104
+ Before you can do anything else, you need to define a schema. For the purposes of this guide, we'll use a simple object schema.
105
+
106
+ ```ts
107
+ import * as z from "zod";
108
+
109
+ const Player = z.object({
110
+ username: z.string(),
111
+ xp: z.number(),
112
+ });
113
+ ```
114
+
115
+ ### Parsing data
116
+
117
+ Given any Zod schema, use `.parse` to validate an input. If it's valid, Zod returns a strongly-typed _deep clone_ of the input.
118
+
119
+ ```ts
120
+ Player.parse({ username: "billie", xp: 100 });
121
+ // => returns { username: "billie", xp: 100 }
122
+ ```
123
+
124
+ **Note** — If your schema uses certain asynchronous APIs like `async` [refinements](https://zod.dev/api#refinements) or [transforms](https://zod.dev/api#transforms), you'll need to use the `.parseAsync()` method instead.
125
+
126
+ ```ts
127
+ const schema = z.string().refine(async (val) => val.length <= 8);
128
+
129
+ await schema.parseAsync("hello");
130
+ // => "hello"
131
+ ```
132
+
133
+ ### Handling errors
134
+
135
+ When validation fails, the `.parse()` method will throw a `ZodError` instance with granular information about the validation issues.
136
+
137
+ ```ts
138
+ try {
139
+ Player.parse({ username: 42, xp: "100" });
140
+ } catch (err) {
141
+ if (err instanceof z.ZodError) {
142
+ err.issues;
143
+ /* [
144
+ {
145
+ expected: 'string',
146
+ code: 'invalid_type',
147
+ path: [ 'username' ],
148
+ message: 'Invalid input: expected string'
149
+ },
150
+ {
151
+ expected: 'number',
152
+ code: 'invalid_type',
153
+ path: [ 'xp' ],
154
+ message: 'Invalid input: expected number'
155
+ }
156
+ ] */
157
+ }
158
+ }
159
+ ```
160
+
161
+ To avoid a `try/catch` block, you can use the `.safeParse()` method to get back a plain result object containing either the successfully parsed data or a `ZodError`. The result type is a [discriminated union](https://www.typescriptlang.org/docs/handbook/2/narrowing.html#discriminated-unions), so you can handle both cases conveniently.
162
+
163
+ ```ts
164
+ const result = Player.safeParse({ username: 42, xp: "100" });
165
+ if (!result.success) {
166
+ result.error; // ZodError instance
167
+ } else {
168
+ result.data; // { username: string; xp: number }
169
+ }
170
+ ```
171
+
172
+ **Note** — If your schema uses certain asynchronous APIs like `async` [refinements](#refine) or [transforms](#transform), you'll need to use the `.safeParseAsync()` method instead.
173
+
174
+ ```ts
175
+ const schema = z.string().refine(async (val) => val.length <= 8);
176
+
177
+ await schema.safeParseAsync("hello");
178
+ // => { success: true; data: "hello" }
179
+ ```
180
+
181
+ ### Inferring types
182
+
183
+ Zod infers a static type from your schema definitions. You can extract this type with the `z.infer<>` utility and use it however you like.
184
+
185
+ ```ts
186
+ const Player = z.object({
187
+ username: z.string(),
188
+ xp: z.number(),
189
+ });
190
+
191
+ // extract the inferred type
192
+ type Player = z.infer<typeof Player>;
193
+
194
+ // use it in your code
195
+ const player: Player = { username: "billie", xp: 100 };
196
+ ```
197
+
198
+ In some cases, the input & output types of a schema can diverge. For instance, the `.transform()` API can convert the input from one type to another. In these cases, you can extract the input and output types independently:
199
+
200
+ ```ts
201
+ const mySchema = z.string().transform((val) => val.length);
202
+
203
+ type MySchemaIn = z.input<typeof mySchema>;
204
+ // => string
205
+
206
+ type MySchemaOut = z.output<typeof mySchema>; // equivalent to z.infer<typeof mySchema>
207
+ // number
208
+ ```
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
26
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ exports.z = void 0;
30
+ const z = __importStar(require("./v4/classic/external.cjs"));
31
+ exports.z = z;
32
+ __exportStar(require("./v4/classic/external.cjs"), exports);
33
+ exports.default = z;
@@ -0,0 +1,4 @@
1
+ import * as z from "./v4/classic/external.cjs";
2
+ export * from "./v4/classic/external.cjs";
3
+ export { z };
4
+ export default z;
@@ -0,0 +1,4 @@
1
+ import * as z from "./v4/classic/external.js";
2
+ export * from "./v4/classic/external.js";
3
+ export { z };
4
+ export default z;
@@ -0,0 +1,4 @@
1
+ import * as z from "./v4/classic/external.js";
2
+ export * from "./v4/classic/external.js";
3
+ export { z };
4
+ export default z;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../v4/locales/index.cjs"), exports);
@@ -0,0 +1 @@
1
+ export * from "../v4/locales/index.cjs";
@@ -0,0 +1 @@
1
+ export * from "../v4/locales/index.js";
@@ -0,0 +1 @@
1
+ export * from "../v4/locales/index.js";
@@ -0,0 +1,6 @@
1
+ {
2
+ "type": "module",
3
+ "main": "./index.cjs",
4
+ "module": "./index.js",
5
+ "types": "./index.d.cts"
6
+ }
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../v4/mini/index.cjs"), exports);
@@ -0,0 +1 @@
1
+ export * from "../v4/mini/index.cjs";
@@ -0,0 +1 @@
1
+ export * from "../v4/mini/index.js";
@@ -0,0 +1 @@
1
+ export * from "../v4/mini/index.js";
@@ -0,0 +1,6 @@
1
+ {
2
+ "type": "module",
3
+ "main": "./index.cjs",
4
+ "module": "./index.js",
5
+ "types": "./index.d.cts"
6
+ }