@harness-engineering/cli 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2281) hide show
  1. package/{dist/agents/agents/skills/node_modules/zod/LICENSE → LICENSE} +1 -1
  2. package/dist/agents/commands/claude-code/harness/add-component.md +34 -0
  3. package/dist/agents/commands/claude-code/harness/align-documentation.md +33 -0
  4. package/dist/agents/commands/claude-code/harness/architecture-advisor.md +41 -0
  5. package/dist/agents/commands/claude-code/harness/brainstorming.md +42 -0
  6. package/dist/agents/commands/claude-code/harness/check-mechanical-constraints.md +32 -0
  7. package/dist/agents/commands/claude-code/harness/cleanup-dead-code.md +33 -0
  8. package/dist/agents/commands/claude-code/harness/code-review.md +33 -0
  9. package/dist/agents/commands/claude-code/harness/debugging.md +43 -0
  10. package/dist/agents/commands/claude-code/harness/detect-doc-drift.md +32 -0
  11. package/dist/agents/commands/claude-code/harness/diagnostics.md +43 -0
  12. package/dist/agents/commands/claude-code/harness/enforce-architecture.md +32 -0
  13. package/dist/agents/commands/claude-code/harness/execution.md +43 -0
  14. package/dist/agents/commands/claude-code/harness/git-workflow.md +32 -0
  15. package/dist/agents/commands/claude-code/harness/initialize-project.md +33 -0
  16. package/dist/agents/commands/claude-code/harness/onboarding.md +32 -0
  17. package/dist/agents/commands/claude-code/harness/parallel-agents.md +35 -0
  18. package/dist/agents/commands/claude-code/harness/planning.md +41 -0
  19. package/dist/agents/commands/claude-code/harness/pre-commit-review.md +38 -0
  20. package/dist/agents/commands/claude-code/harness/refactoring.md +35 -0
  21. package/dist/agents/commands/claude-code/harness/skill-authoring.md +35 -0
  22. package/dist/agents/commands/claude-code/harness/state-management.md +35 -0
  23. package/dist/agents/commands/claude-code/harness/tdd.md +42 -0
  24. package/dist/agents/commands/claude-code/harness/validate-context-engineering.md +32 -0
  25. package/dist/agents/commands/claude-code/harness/verification.md +38 -0
  26. package/dist/agents/{agents/skills/claude-code/add-harness-component/SKILL.md → commands/gemini-cli/harness/add-component.toml} +58 -0
  27. package/dist/agents/{agents/skills/gemini-cli/align-documentation/SKILL.md → commands/gemini-cli/harness/align-documentation.toml} +57 -0
  28. package/dist/agents/{skills/gemini-cli/harness-architecture-advisor/SKILL.md → commands/gemini-cli/harness/architecture-advisor.toml} +81 -0
  29. package/dist/agents/{skills/gemini-cli/harness-brainstorming/SKILL.md → commands/gemini-cli/harness/brainstorming.toml} +79 -0
  30. package/dist/agents/{agents/skills/gemini-cli/check-mechanical-constraints/SKILL.md → commands/gemini-cli/harness/check-mechanical-constraints.toml} +58 -0
  31. package/dist/agents/{skills/gemini-cli/cleanup-dead-code/SKILL.md → commands/gemini-cli/harness/cleanup-dead-code.toml} +56 -0
  32. package/dist/agents/{skills/gemini-cli/harness-code-review/SKILL.md → commands/gemini-cli/harness/code-review.toml} +58 -0
  33. package/dist/agents/{agents/skills/claude-code/harness-debugging/SKILL.md → commands/gemini-cli/harness/debugging.toml} +80 -0
  34. package/dist/agents/{agents/skills/gemini-cli/detect-doc-drift/SKILL.md → commands/gemini-cli/harness/detect-doc-drift.toml} +56 -0
  35. package/dist/agents/{agents/skills/gemini-cli/harness-diagnostics/SKILL.md → commands/gemini-cli/harness/diagnostics.toml} +83 -0
  36. package/dist/agents/{agents/skills/gemini-cli/enforce-architecture/SKILL.md → commands/gemini-cli/harness/enforce-architecture.toml} +57 -0
  37. package/dist/agents/{agents/skills/gemini-cli/harness-execution/SKILL.md → commands/gemini-cli/harness/execution.toml} +83 -0
  38. package/dist/agents/{agents/skills/claude-code/harness-git-workflow/SKILL.md → commands/gemini-cli/harness/git-workflow.toml} +57 -0
  39. package/dist/agents/{skills/gemini-cli/initialize-harness-project/SKILL.md → commands/gemini-cli/harness/initialize-project.toml} +57 -0
  40. package/dist/agents/{skills/gemini-cli/harness-onboarding/SKILL.md → commands/gemini-cli/harness/onboarding.toml} +56 -0
  41. package/dist/agents/{agents/skills/gemini-cli/harness-parallel-agents/SKILL.md → commands/gemini-cli/harness/parallel-agents.toml} +59 -0
  42. package/dist/agents/{agents/skills/gemini-cli/harness-planning/SKILL.md → commands/gemini-cli/harness/planning.toml} +79 -0
  43. package/dist/agents/{agents/skills/claude-code/harness-pre-commit-review/SKILL.md → commands/gemini-cli/harness/pre-commit-review.toml} +63 -0
  44. package/dist/agents/{skills/gemini-cli/harness-refactoring/SKILL.md → commands/gemini-cli/harness/refactoring.toml} +59 -0
  45. package/dist/agents/{skills/gemini-cli/harness-skill-authoring/SKILL.md → commands/gemini-cli/harness/skill-authoring.toml} +58 -0
  46. package/dist/agents/{skills/gemini-cli/harness-state-management/SKILL.md → commands/gemini-cli/harness/state-management.toml} +59 -0
  47. package/dist/agents/{skills/gemini-cli/harness-tdd/SKILL.md → commands/gemini-cli/harness/tdd.toml} +80 -0
  48. package/dist/agents/{skills/gemini-cli/validate-context-engineering/SKILL.md → commands/gemini-cli/harness/validate-context-engineering.toml} +57 -0
  49. package/dist/agents/{agents/skills/claude-code/harness-verification/SKILL.md → commands/gemini-cli/harness/verification.toml} +72 -0
  50. package/dist/agents/skills/node_modules/.bin/glob +2 -2
  51. package/dist/agents/skills/node_modules/.bin/vitest +2 -2
  52. package/dist/agents/skills/node_modules/.bin/yaml +2 -2
  53. package/dist/bin/harness.js +2 -1
  54. package/dist/{validate-cross-check-N75UV2CO.js → chunk-3U5VZYR7.js} +1 -0
  55. package/dist/{chunk-JR7ZYYNL.js → chunk-IXT3KLVN.js} +480 -42
  56. package/dist/index.d.ts +69 -1
  57. package/dist/index.js +11 -1
  58. package/dist/validate-cross-check-LNIZ7KGZ.js +6 -0
  59. package/package.json +1 -1
  60. package/dist/agents/agents/personas/architecture-enforcer.yaml +0 -27
  61. package/dist/agents/agents/personas/documentation-maintainer.yaml +0 -25
  62. package/dist/agents/agents/personas/entropy-cleaner.yaml +0 -21
  63. package/dist/agents/agents/skills/.turbo/turbo-test.log +0 -16
  64. package/dist/agents/agents/skills/README.md +0 -64
  65. package/dist/agents/agents/skills/claude-code/add-harness-component/skill.yaml +0 -32
  66. package/dist/agents/agents/skills/claude-code/align-documentation/SKILL.md +0 -181
  67. package/dist/agents/agents/skills/claude-code/align-documentation/skill.yaml +0 -31
  68. package/dist/agents/agents/skills/claude-code/check-mechanical-constraints/SKILL.md +0 -191
  69. package/dist/agents/agents/skills/claude-code/check-mechanical-constraints/skill.yaml +0 -32
  70. package/dist/agents/agents/skills/claude-code/cleanup-dead-code/SKILL.md +0 -202
  71. package/dist/agents/agents/skills/claude-code/cleanup-dead-code/skill.yaml +0 -30
  72. package/dist/agents/agents/skills/claude-code/detect-doc-drift/SKILL.md +0 -159
  73. package/dist/agents/agents/skills/claude-code/detect-doc-drift/skill.yaml +0 -30
  74. package/dist/agents/agents/skills/claude-code/enforce-architecture/SKILL.md +0 -165
  75. package/dist/agents/agents/skills/claude-code/enforce-architecture/skill.yaml +0 -31
  76. package/dist/agents/agents/skills/claude-code/harness-architecture-advisor/SKILL.md +0 -388
  77. package/dist/agents/agents/skills/claude-code/harness-architecture-advisor/skill.yaml +0 -48
  78. package/dist/agents/agents/skills/claude-code/harness-brainstorming/SKILL.md +0 -247
  79. package/dist/agents/agents/skills/claude-code/harness-brainstorming/skill.yaml +0 -47
  80. package/dist/agents/agents/skills/claude-code/harness-code-review/SKILL.md +0 -403
  81. package/dist/agents/agents/skills/claude-code/harness-code-review/skill.yaml +0 -32
  82. package/dist/agents/agents/skills/claude-code/harness-debugging/skill.yaml +0 -47
  83. package/dist/agents/agents/skills/claude-code/harness-diagnostics/SKILL.md +0 -318
  84. package/dist/agents/agents/skills/claude-code/harness-diagnostics/skill.yaml +0 -50
  85. package/dist/agents/agents/skills/claude-code/harness-execution/SKILL.md +0 -298
  86. package/dist/agents/agents/skills/claude-code/harness-execution/skill.yaml +0 -50
  87. package/dist/agents/agents/skills/claude-code/harness-git-workflow/skill.yaml +0 -31
  88. package/dist/agents/agents/skills/claude-code/harness-integrity/SKILL.md +0 -119
  89. package/dist/agents/agents/skills/claude-code/harness-integrity/skill.yaml +0 -47
  90. package/dist/agents/agents/skills/claude-code/harness-onboarding/SKILL.md +0 -260
  91. package/dist/agents/agents/skills/claude-code/harness-onboarding/skill.yaml +0 -30
  92. package/dist/agents/agents/skills/claude-code/harness-parallel-agents/SKILL.md +0 -162
  93. package/dist/agents/agents/skills/claude-code/harness-parallel-agents/skill.yaml +0 -33
  94. package/dist/agents/agents/skills/claude-code/harness-planning/SKILL.md +0 -326
  95. package/dist/agents/agents/skills/claude-code/harness-planning/skill.yaml +0 -47
  96. package/dist/agents/agents/skills/claude-code/harness-pre-commit-review/skill.yaml +0 -33
  97. package/dist/agents/agents/skills/claude-code/harness-refactoring/SKILL.md +0 -150
  98. package/dist/agents/agents/skills/claude-code/harness-refactoring/skill.yaml +0 -33
  99. package/dist/agents/agents/skills/claude-code/harness-skill-authoring/SKILL.md +0 -292
  100. package/dist/agents/agents/skills/claude-code/harness-skill-authoring/skill.yaml +0 -32
  101. package/dist/agents/agents/skills/claude-code/harness-state-management/SKILL.md +0 -295
  102. package/dist/agents/agents/skills/claude-code/harness-state-management/skill.yaml +0 -32
  103. package/dist/agents/agents/skills/claude-code/harness-tdd/SKILL.md +0 -167
  104. package/dist/agents/agents/skills/claude-code/harness-tdd/skill.yaml +0 -48
  105. package/dist/agents/agents/skills/claude-code/harness-verification/skill.yaml +0 -41
  106. package/dist/agents/agents/skills/claude-code/harness-verify/SKILL.md +0 -122
  107. package/dist/agents/agents/skills/claude-code/harness-verify/skill.yaml +0 -40
  108. package/dist/agents/agents/skills/claude-code/initialize-harness-project/SKILL.md +0 -200
  109. package/dist/agents/agents/skills/claude-code/initialize-harness-project/skill.yaml +0 -31
  110. package/dist/agents/agents/skills/claude-code/validate-context-engineering/SKILL.md +0 -129
  111. package/dist/agents/agents/skills/claude-code/validate-context-engineering/skill.yaml +0 -31
  112. package/dist/agents/agents/skills/gemini-cli/add-harness-component/SKILL.md +0 -182
  113. package/dist/agents/agents/skills/gemini-cli/add-harness-component/skill.yaml +0 -32
  114. package/dist/agents/agents/skills/gemini-cli/align-documentation/skill.yaml +0 -31
  115. package/dist/agents/agents/skills/gemini-cli/check-mechanical-constraints/skill.yaml +0 -32
  116. package/dist/agents/agents/skills/gemini-cli/cleanup-dead-code/SKILL.md +0 -202
  117. package/dist/agents/agents/skills/gemini-cli/cleanup-dead-code/skill.yaml +0 -30
  118. package/dist/agents/agents/skills/gemini-cli/detect-doc-drift/skill.yaml +0 -30
  119. package/dist/agents/agents/skills/gemini-cli/enforce-architecture/skill.yaml +0 -31
  120. package/dist/agents/agents/skills/gemini-cli/harness-architecture-advisor/SKILL.md +0 -388
  121. package/dist/agents/agents/skills/gemini-cli/harness-architecture-advisor/skill.yaml +0 -48
  122. package/dist/agents/agents/skills/gemini-cli/harness-brainstorming/SKILL.md +0 -247
  123. package/dist/agents/agents/skills/gemini-cli/harness-brainstorming/skill.yaml +0 -47
  124. package/dist/agents/agents/skills/gemini-cli/harness-code-review/SKILL.md +0 -403
  125. package/dist/agents/agents/skills/gemini-cli/harness-code-review/skill.yaml +0 -32
  126. package/dist/agents/agents/skills/gemini-cli/harness-debugging/SKILL.md +0 -356
  127. package/dist/agents/agents/skills/gemini-cli/harness-debugging/skill.yaml +0 -47
  128. package/dist/agents/agents/skills/gemini-cli/harness-diagnostics/skill.yaml +0 -50
  129. package/dist/agents/agents/skills/gemini-cli/harness-execution/skill.yaml +0 -50
  130. package/dist/agents/agents/skills/gemini-cli/harness-git-workflow/SKILL.md +0 -268
  131. package/dist/agents/agents/skills/gemini-cli/harness-git-workflow/skill.yaml +0 -31
  132. package/dist/agents/agents/skills/gemini-cli/harness-integrity/SKILL.md +0 -119
  133. package/dist/agents/agents/skills/gemini-cli/harness-integrity/skill.yaml +0 -47
  134. package/dist/agents/agents/skills/gemini-cli/harness-onboarding/SKILL.md +0 -260
  135. package/dist/agents/agents/skills/gemini-cli/harness-onboarding/skill.yaml +0 -30
  136. package/dist/agents/agents/skills/gemini-cli/harness-parallel-agents/skill.yaml +0 -33
  137. package/dist/agents/agents/skills/gemini-cli/harness-planning/skill.yaml +0 -47
  138. package/dist/agents/agents/skills/gemini-cli/harness-pre-commit-review/SKILL.md +0 -231
  139. package/dist/agents/agents/skills/gemini-cli/harness-pre-commit-review/skill.yaml +0 -33
  140. package/dist/agents/agents/skills/gemini-cli/harness-refactoring/SKILL.md +0 -150
  141. package/dist/agents/agents/skills/gemini-cli/harness-refactoring/skill.yaml +0 -33
  142. package/dist/agents/agents/skills/gemini-cli/harness-skill-authoring/SKILL.md +0 -292
  143. package/dist/agents/agents/skills/gemini-cli/harness-skill-authoring/skill.yaml +0 -32
  144. package/dist/agents/agents/skills/gemini-cli/harness-state-management/SKILL.md +0 -295
  145. package/dist/agents/agents/skills/gemini-cli/harness-state-management/skill.yaml +0 -32
  146. package/dist/agents/agents/skills/gemini-cli/harness-tdd/SKILL.md +0 -167
  147. package/dist/agents/agents/skills/gemini-cli/harness-tdd/skill.yaml +0 -48
  148. package/dist/agents/agents/skills/gemini-cli/harness-verification/SKILL.md +0 -262
  149. package/dist/agents/agents/skills/gemini-cli/harness-verification/skill.yaml +0 -41
  150. package/dist/agents/agents/skills/gemini-cli/harness-verify/SKILL.md +0 -122
  151. package/dist/agents/agents/skills/gemini-cli/harness-verify/skill.yaml +0 -40
  152. package/dist/agents/agents/skills/gemini-cli/initialize-harness-project/SKILL.md +0 -200
  153. package/dist/agents/agents/skills/gemini-cli/initialize-harness-project/skill.yaml +0 -31
  154. package/dist/agents/agents/skills/gemini-cli/validate-context-engineering/SKILL.md +0 -129
  155. package/dist/agents/agents/skills/gemini-cli/validate-context-engineering/skill.yaml +0 -31
  156. package/dist/agents/agents/skills/node_modules/.bin/glob +0 -17
  157. package/dist/agents/agents/skills/node_modules/.bin/vitest +0 -17
  158. package/dist/agents/agents/skills/node_modules/.bin/yaml +0 -17
  159. package/dist/agents/agents/skills/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +0 -1
  160. package/dist/agents/agents/skills/node_modules/glob/LICENSE +0 -15
  161. package/dist/agents/agents/skills/node_modules/glob/README.md +0 -1265
  162. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/glob.d.ts +0 -388
  163. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/glob.d.ts.map +0 -1
  164. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/glob.js +0 -247
  165. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/glob.js.map +0 -1
  166. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/has-magic.d.ts +0 -14
  167. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/has-magic.d.ts.map +0 -1
  168. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/has-magic.js +0 -27
  169. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/has-magic.js.map +0 -1
  170. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/ignore.d.ts +0 -24
  171. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/ignore.d.ts.map +0 -1
  172. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/ignore.js +0 -119
  173. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/ignore.js.map +0 -1
  174. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/index.d.ts +0 -97
  175. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/index.d.ts.map +0 -1
  176. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/index.js +0 -68
  177. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/index.js.map +0 -1
  178. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/package.json +0 -3
  179. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/pattern.d.ts +0 -76
  180. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/pattern.d.ts.map +0 -1
  181. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/pattern.js +0 -219
  182. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/pattern.js.map +0 -1
  183. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/processor.d.ts +0 -59
  184. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/processor.d.ts.map +0 -1
  185. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/processor.js +0 -301
  186. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/processor.js.map +0 -1
  187. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/walker.d.ts +0 -97
  188. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/walker.d.ts.map +0 -1
  189. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/walker.js +0 -387
  190. package/dist/agents/agents/skills/node_modules/glob/dist/commonjs/walker.js.map +0 -1
  191. package/dist/agents/agents/skills/node_modules/glob/dist/esm/bin.d.mts +0 -3
  192. package/dist/agents/agents/skills/node_modules/glob/dist/esm/bin.d.mts.map +0 -1
  193. package/dist/agents/agents/skills/node_modules/glob/dist/esm/bin.mjs +0 -346
  194. package/dist/agents/agents/skills/node_modules/glob/dist/esm/bin.mjs.map +0 -1
  195. package/dist/agents/agents/skills/node_modules/glob/dist/esm/glob.d.ts +0 -388
  196. package/dist/agents/agents/skills/node_modules/glob/dist/esm/glob.d.ts.map +0 -1
  197. package/dist/agents/agents/skills/node_modules/glob/dist/esm/glob.js +0 -243
  198. package/dist/agents/agents/skills/node_modules/glob/dist/esm/glob.js.map +0 -1
  199. package/dist/agents/agents/skills/node_modules/glob/dist/esm/has-magic.d.ts +0 -14
  200. package/dist/agents/agents/skills/node_modules/glob/dist/esm/has-magic.d.ts.map +0 -1
  201. package/dist/agents/agents/skills/node_modules/glob/dist/esm/has-magic.js +0 -23
  202. package/dist/agents/agents/skills/node_modules/glob/dist/esm/has-magic.js.map +0 -1
  203. package/dist/agents/agents/skills/node_modules/glob/dist/esm/ignore.d.ts +0 -24
  204. package/dist/agents/agents/skills/node_modules/glob/dist/esm/ignore.d.ts.map +0 -1
  205. package/dist/agents/agents/skills/node_modules/glob/dist/esm/ignore.js +0 -115
  206. package/dist/agents/agents/skills/node_modules/glob/dist/esm/ignore.js.map +0 -1
  207. package/dist/agents/agents/skills/node_modules/glob/dist/esm/index.d.ts +0 -97
  208. package/dist/agents/agents/skills/node_modules/glob/dist/esm/index.d.ts.map +0 -1
  209. package/dist/agents/agents/skills/node_modules/glob/dist/esm/index.js +0 -55
  210. package/dist/agents/agents/skills/node_modules/glob/dist/esm/index.js.map +0 -1
  211. package/dist/agents/agents/skills/node_modules/glob/dist/esm/package.json +0 -3
  212. package/dist/agents/agents/skills/node_modules/glob/dist/esm/pattern.d.ts +0 -76
  213. package/dist/agents/agents/skills/node_modules/glob/dist/esm/pattern.d.ts.map +0 -1
  214. package/dist/agents/agents/skills/node_modules/glob/dist/esm/pattern.js +0 -215
  215. package/dist/agents/agents/skills/node_modules/glob/dist/esm/pattern.js.map +0 -1
  216. package/dist/agents/agents/skills/node_modules/glob/dist/esm/processor.d.ts +0 -59
  217. package/dist/agents/agents/skills/node_modules/glob/dist/esm/processor.d.ts.map +0 -1
  218. package/dist/agents/agents/skills/node_modules/glob/dist/esm/processor.js +0 -294
  219. package/dist/agents/agents/skills/node_modules/glob/dist/esm/processor.js.map +0 -1
  220. package/dist/agents/agents/skills/node_modules/glob/dist/esm/walker.d.ts +0 -97
  221. package/dist/agents/agents/skills/node_modules/glob/dist/esm/walker.d.ts.map +0 -1
  222. package/dist/agents/agents/skills/node_modules/glob/dist/esm/walker.js +0 -381
  223. package/dist/agents/agents/skills/node_modules/glob/dist/esm/walker.js.map +0 -1
  224. package/dist/agents/agents/skills/node_modules/glob/node_modules/.bin/glob +0 -17
  225. package/dist/agents/agents/skills/node_modules/glob/package.json +0 -99
  226. package/dist/agents/agents/skills/node_modules/vitest/LICENSE.md +0 -691
  227. package/dist/agents/agents/skills/node_modules/vitest/README.md +0 -7
  228. package/dist/agents/agents/skills/node_modules/vitest/browser/context.d.ts +0 -7
  229. package/dist/agents/agents/skills/node_modules/vitest/browser/context.js +0 -20
  230. package/dist/agents/agents/skills/node_modules/vitest/config.d.ts +0 -3
  231. package/dist/agents/agents/skills/node_modules/vitest/coverage.d.ts +0 -1
  232. package/dist/agents/agents/skills/node_modules/vitest/dist/browser.d.ts +0 -46
  233. package/dist/agents/agents/skills/node_modules/vitest/dist/browser.js +0 -20
  234. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/_commonjsHelpers.D26ty3Ew.js +0 -6
  235. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/base.CJ0Y4ePK.js +0 -165
  236. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/benchmark.B3N2zMcH.js +0 -40
  237. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts +0 -24
  238. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/browser.d.ChKACdzH.d.ts +0 -59
  239. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/cac.DVeoLl0M.js +0 -1409
  240. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/cli-api.B7PN_QUv.js +0 -13657
  241. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/config.d.Cy95HiCx.d.ts +0 -210
  242. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/console.Cf-YriPC.js +0 -146
  243. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/constants.D_Q9UYh-.js +0 -36
  244. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/coverage.AVPTjMgw.js +0 -3292
  245. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/coverage.D_JHT54q.js +0 -25
  246. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/coverage.d.BZtK59WP.d.ts +0 -37
  247. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/creator.DAmOKTvJ.js +0 -673
  248. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/date.Bq6ZW5rf.js +0 -73
  249. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/defaults.BOqNVLsY.js +0 -74
  250. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/env.D4Lgay0q.js +0 -8
  251. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts +0 -29
  252. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/evaluatedModules.Dg1zASAC.js +0 -17
  253. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/evaluatedModules.d.BxJ5omdx.d.ts +0 -7
  254. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/git.Bm2pzPAa.js +0 -71
  255. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/global.d.B15mdLcR.d.ts +0 -99
  256. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/globals.DOayXfHP.js +0 -30
  257. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/index.6Qv1eEA6.js +0 -109
  258. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/index.C5r1PdPD.js +0 -231
  259. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/index.Chj8NDwU.js +0 -206
  260. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/index.CyBMJtT7.js +0 -727
  261. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/index.D3XRDfWc.js +0 -213
  262. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/index.D4KonVSU.js +0 -6343
  263. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/index.M8mOzt4Y.js +0 -3839
  264. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/index.Z5E_ObnR.js +0 -37
  265. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/init-forks._y3TW739.js +0 -41
  266. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/init-threads.DBO2kn-p.js +0 -18
  267. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/init.B6MLFIaN.js +0 -334
  268. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/inspector.CvyFGlXm.js +0 -53
  269. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/modules.BJuCwlRJ.js +0 -36
  270. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/node.Ce0vMQM7.js +0 -14
  271. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/plugin.d.CtqpEehP.d.ts +0 -38
  272. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/reporters.d.CWXNI2jG.d.ts +0 -3271
  273. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/rpc.BoxB0q7B.js +0 -76
  274. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/rpc.d.RH3apGEf.d.ts +0 -64
  275. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/setup-common.Cm-kSBVi.js +0 -60
  276. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/startModuleRunner.DEj0jb3e.js +0 -861
  277. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/suite.d.BJWk38HB.d.ts +0 -10
  278. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/test.B8ej_ZHS.js +0 -254
  279. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/traces.CCmnQaNT.js +0 -217
  280. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/traces.d.402V_yFI.d.ts +0 -18
  281. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/utils.DvEY5TfP.js +0 -52
  282. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/vi.2VT5v0um.js +0 -3919
  283. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/vm.D3epNOPZ.js +0 -744
  284. package/dist/agents/agents/skills/node_modules/vitest/dist/chunks/worker.d.Dyxm8DEL.d.ts +0 -255
  285. package/dist/agents/agents/skills/node_modules/vitest/dist/cli.js +0 -28
  286. package/dist/agents/agents/skills/node_modules/vitest/dist/config.cjs +0 -94
  287. package/dist/agents/agents/skills/node_modules/vitest/dist/config.d.ts +0 -104
  288. package/dist/agents/agents/skills/node_modules/vitest/dist/config.js +0 -15
  289. package/dist/agents/agents/skills/node_modules/vitest/dist/coverage.d.ts +0 -118
  290. package/dist/agents/agents/skills/node_modules/vitest/dist/coverage.js +0 -23
  291. package/dist/agents/agents/skills/node_modules/vitest/dist/environments.d.ts +0 -22
  292. package/dist/agents/agents/skills/node_modules/vitest/dist/environments.js +0 -3
  293. package/dist/agents/agents/skills/node_modules/vitest/dist/index.d.ts +0 -510
  294. package/dist/agents/agents/skills/node_modules/vitest/dist/index.js +0 -20
  295. package/dist/agents/agents/skills/node_modules/vitest/dist/mocker.d.ts +0 -1
  296. package/dist/agents/agents/skills/node_modules/vitest/dist/mocker.js +0 -1
  297. package/dist/agents/agents/skills/node_modules/vitest/dist/module-evaluator.d.ts +0 -124
  298. package/dist/agents/agents/skills/node_modules/vitest/dist/module-evaluator.js +0 -343
  299. package/dist/agents/agents/skills/node_modules/vitest/dist/module-runner.js +0 -17
  300. package/dist/agents/agents/skills/node_modules/vitest/dist/node.d.ts +0 -251
  301. package/dist/agents/agents/skills/node_modules/vitest/dist/node.js +0 -98
  302. package/dist/agents/agents/skills/node_modules/vitest/dist/path.js +0 -7
  303. package/dist/agents/agents/skills/node_modules/vitest/dist/reporters.d.ts +0 -27
  304. package/dist/agents/agents/skills/node_modules/vitest/dist/reporters.js +0 -24
  305. package/dist/agents/agents/skills/node_modules/vitest/dist/runners.d.ts +0 -50
  306. package/dist/agents/agents/skills/node_modules/vitest/dist/runners.js +0 -19
  307. package/dist/agents/agents/skills/node_modules/vitest/dist/snapshot.d.ts +0 -9
  308. package/dist/agents/agents/skills/node_modules/vitest/dist/snapshot.js +0 -4
  309. package/dist/agents/agents/skills/node_modules/vitest/dist/spy.js +0 -1
  310. package/dist/agents/agents/skills/node_modules/vitest/dist/suite.d.ts +0 -5
  311. package/dist/agents/agents/skills/node_modules/vitest/dist/suite.js +0 -6
  312. package/dist/agents/agents/skills/node_modules/vitest/dist/worker.d.ts +0 -32
  313. package/dist/agents/agents/skills/node_modules/vitest/dist/worker.js +0 -48
  314. package/dist/agents/agents/skills/node_modules/vitest/dist/workers/forks.js +0 -54
  315. package/dist/agents/agents/skills/node_modules/vitest/dist/workers/runVmTests.js +0 -95
  316. package/dist/agents/agents/skills/node_modules/vitest/dist/workers/threads.js +0 -55
  317. package/dist/agents/agents/skills/node_modules/vitest/dist/workers/vmForks.js +0 -36
  318. package/dist/agents/agents/skills/node_modules/vitest/dist/workers/vmThreads.js +0 -37
  319. package/dist/agents/agents/skills/node_modules/vitest/environments.d.ts +0 -1
  320. package/dist/agents/agents/skills/node_modules/vitest/globals.d.ts +0 -20
  321. package/dist/agents/agents/skills/node_modules/vitest/import-meta.d.ts +0 -5
  322. package/dist/agents/agents/skills/node_modules/vitest/importMeta.d.ts +0 -4
  323. package/dist/agents/agents/skills/node_modules/vitest/index.cjs +0 -5
  324. package/dist/agents/agents/skills/node_modules/vitest/index.d.cts +0 -1
  325. package/dist/agents/agents/skills/node_modules/vitest/jsdom.d.ts +0 -6
  326. package/dist/agents/agents/skills/node_modules/vitest/mocker.d.ts +0 -1
  327. package/dist/agents/agents/skills/node_modules/vitest/node.d.ts +0 -1
  328. package/dist/agents/agents/skills/node_modules/vitest/node_modules/.bin/vite +0 -17
  329. package/dist/agents/agents/skills/node_modules/vitest/node_modules/.bin/why-is-node-running +0 -17
  330. package/dist/agents/agents/skills/node_modules/vitest/optional-types.d.ts +0 -7
  331. package/dist/agents/agents/skills/node_modules/vitest/package.json +0 -224
  332. package/dist/agents/agents/skills/node_modules/vitest/reporters.d.ts +0 -1
  333. package/dist/agents/agents/skills/node_modules/vitest/runners.d.ts +0 -1
  334. package/dist/agents/agents/skills/node_modules/vitest/snapshot.d.ts +0 -1
  335. package/dist/agents/agents/skills/node_modules/vitest/suite.d.ts +0 -1
  336. package/dist/agents/agents/skills/node_modules/vitest/suppress-warnings.cjs +0 -21
  337. package/dist/agents/agents/skills/node_modules/vitest/vitest.mjs +0 -2
  338. package/dist/agents/agents/skills/node_modules/vitest/worker.d.ts +0 -1
  339. package/dist/agents/agents/skills/node_modules/yaml/LICENSE +0 -13
  340. package/dist/agents/agents/skills/node_modules/yaml/README.md +0 -172
  341. package/dist/agents/agents/skills/node_modules/yaml/bin.mjs +0 -11
  342. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/compose-collection.js +0 -88
  343. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/compose-doc.js +0 -43
  344. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/compose-node.js +0 -102
  345. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/compose-scalar.js +0 -86
  346. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/composer.js +0 -217
  347. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/resolve-block-map.js +0 -115
  348. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +0 -198
  349. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +0 -49
  350. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/resolve-end.js +0 -37
  351. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +0 -207
  352. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +0 -223
  353. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/resolve-props.js +0 -146
  354. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/util-contains-newline.js +0 -34
  355. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +0 -26
  356. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +0 -15
  357. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/compose/util-map-includes.js +0 -13
  358. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/doc/Document.js +0 -335
  359. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/doc/anchors.js +0 -71
  360. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/doc/applyReviver.js +0 -55
  361. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/doc/createNode.js +0 -88
  362. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/doc/directives.js +0 -176
  363. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/errors.js +0 -57
  364. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/index.js +0 -17
  365. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/log.js +0 -11
  366. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/nodes/Alias.js +0 -114
  367. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/nodes/Collection.js +0 -147
  368. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/nodes/Node.js +0 -38
  369. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/nodes/Pair.js +0 -36
  370. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/nodes/Scalar.js +0 -24
  371. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/nodes/YAMLMap.js +0 -144
  372. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +0 -113
  373. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +0 -63
  374. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/nodes/identity.js +0 -36
  375. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/nodes/toJS.js +0 -37
  376. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/parse/cst-scalar.js +0 -214
  377. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/parse/cst-stringify.js +0 -61
  378. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/parse/cst-visit.js +0 -97
  379. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/parse/cst.js +0 -98
  380. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/parse/lexer.js +0 -717
  381. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/parse/line-counter.js +0 -39
  382. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/parse/parser.js +0 -967
  383. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/public-api.js +0 -102
  384. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/Schema.js +0 -37
  385. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/common/map.js +0 -17
  386. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/common/null.js +0 -15
  387. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/common/seq.js +0 -17
  388. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/common/string.js +0 -14
  389. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/core/bool.js +0 -19
  390. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/core/float.js +0 -43
  391. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/core/int.js +0 -38
  392. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/core/schema.js +0 -23
  393. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/json/schema.js +0 -62
  394. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/tags.js +0 -96
  395. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +0 -58
  396. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +0 -26
  397. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +0 -46
  398. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +0 -71
  399. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +0 -64
  400. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +0 -74
  401. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +0 -78
  402. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +0 -39
  403. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +0 -93
  404. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +0 -101
  405. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +0 -146
  406. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/stringify/stringify.js +0 -128
  407. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +0 -143
  408. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/stringify/stringifyComment.js +0 -20
  409. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +0 -85
  410. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +0 -24
  411. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/stringify/stringifyPair.js +0 -150
  412. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/stringify/stringifyString.js +0 -336
  413. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/util.js +0 -11
  414. package/dist/agents/agents/skills/node_modules/yaml/browser/dist/visit.js +0 -233
  415. package/dist/agents/agents/skills/node_modules/yaml/browser/index.js +0 -5
  416. package/dist/agents/agents/skills/node_modules/yaml/browser/package.json +0 -3
  417. package/dist/agents/agents/skills/node_modules/yaml/dist/cli.d.ts +0 -8
  418. package/dist/agents/agents/skills/node_modules/yaml/dist/cli.mjs +0 -201
  419. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/compose-collection.d.ts +0 -11
  420. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/compose-collection.js +0 -90
  421. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/compose-doc.d.ts +0 -7
  422. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/compose-doc.js +0 -45
  423. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/compose-node.d.ts +0 -29
  424. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/compose-node.js +0 -105
  425. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/compose-scalar.d.ts +0 -5
  426. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/compose-scalar.js +0 -88
  427. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/composer.d.ts +0 -63
  428. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/composer.js +0 -222
  429. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-block-map.d.ts +0 -6
  430. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-block-map.js +0 -117
  431. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +0 -11
  432. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-block-scalar.js +0 -200
  433. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +0 -6
  434. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-block-seq.js +0 -51
  435. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-end.d.ts +0 -6
  436. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-end.js +0 -39
  437. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +0 -7
  438. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-flow-collection.js +0 -209
  439. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +0 -10
  440. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-flow-scalar.js +0 -225
  441. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-props.d.ts +0 -23
  442. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/resolve-props.js +0 -148
  443. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/util-contains-newline.d.ts +0 -2
  444. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/util-contains-newline.js +0 -36
  445. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +0 -2
  446. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/util-empty-scalar-position.js +0 -28
  447. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +0 -3
  448. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/util-flow-indent-check.js +0 -17
  449. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/util-map-includes.d.ts +0 -4
  450. package/dist/agents/agents/skills/node_modules/yaml/dist/compose/util-map-includes.js +0 -15
  451. package/dist/agents/agents/skills/node_modules/yaml/dist/doc/Document.d.ts +0 -141
  452. package/dist/agents/agents/skills/node_modules/yaml/dist/doc/Document.js +0 -337
  453. package/dist/agents/agents/skills/node_modules/yaml/dist/doc/anchors.d.ts +0 -24
  454. package/dist/agents/agents/skills/node_modules/yaml/dist/doc/anchors.js +0 -76
  455. package/dist/agents/agents/skills/node_modules/yaml/dist/doc/applyReviver.d.ts +0 -9
  456. package/dist/agents/agents/skills/node_modules/yaml/dist/doc/applyReviver.js +0 -57
  457. package/dist/agents/agents/skills/node_modules/yaml/dist/doc/createNode.d.ts +0 -17
  458. package/dist/agents/agents/skills/node_modules/yaml/dist/doc/createNode.js +0 -90
  459. package/dist/agents/agents/skills/node_modules/yaml/dist/doc/directives.d.ts +0 -49
  460. package/dist/agents/agents/skills/node_modules/yaml/dist/doc/directives.js +0 -178
  461. package/dist/agents/agents/skills/node_modules/yaml/dist/errors.d.ts +0 -21
  462. package/dist/agents/agents/skills/node_modules/yaml/dist/errors.js +0 -62
  463. package/dist/agents/agents/skills/node_modules/yaml/dist/index.d.ts +0 -25
  464. package/dist/agents/agents/skills/node_modules/yaml/dist/index.js +0 -50
  465. package/dist/agents/agents/skills/node_modules/yaml/dist/log.d.ts +0 -3
  466. package/dist/agents/agents/skills/node_modules/yaml/dist/log.js +0 -19
  467. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/Alias.d.ts +0 -29
  468. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/Alias.js +0 -116
  469. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/Collection.d.ts +0 -73
  470. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/Collection.js +0 -151
  471. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/Node.d.ts +0 -53
  472. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/Node.js +0 -40
  473. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/Pair.d.ts +0 -22
  474. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/Pair.js +0 -39
  475. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/Scalar.d.ts +0 -43
  476. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/Scalar.js +0 -27
  477. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/YAMLMap.d.ts +0 -53
  478. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/YAMLMap.js +0 -147
  479. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +0 -60
  480. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/YAMLSeq.js +0 -115
  481. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +0 -4
  482. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/addPairToJSMap.js +0 -65
  483. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/identity.d.ts +0 -23
  484. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/identity.js +0 -53
  485. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/toJS.d.ts +0 -29
  486. package/dist/agents/agents/skills/node_modules/yaml/dist/nodes/toJS.js +0 -39
  487. package/dist/agents/agents/skills/node_modules/yaml/dist/options.d.ts +0 -344
  488. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/cst-scalar.d.ts +0 -64
  489. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/cst-scalar.js +0 -218
  490. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/cst-stringify.d.ts +0 -8
  491. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/cst-stringify.js +0 -63
  492. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/cst-visit.d.ts +0 -39
  493. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/cst-visit.js +0 -99
  494. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/cst.d.ts +0 -109
  495. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/cst.js +0 -112
  496. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/lexer.d.ts +0 -87
  497. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/lexer.js +0 -719
  498. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/line-counter.d.ts +0 -22
  499. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/line-counter.js +0 -41
  500. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/parser.d.ts +0 -84
  501. package/dist/agents/agents/skills/node_modules/yaml/dist/parse/parser.js +0 -972
  502. package/dist/agents/agents/skills/node_modules/yaml/dist/public-api.d.ts +0 -44
  503. package/dist/agents/agents/skills/node_modules/yaml/dist/public-api.js +0 -107
  504. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/Schema.d.ts +0 -17
  505. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/Schema.js +0 -39
  506. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/common/map.d.ts +0 -2
  507. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/common/map.js +0 -19
  508. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/common/null.d.ts +0 -4
  509. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/common/null.js +0 -17
  510. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/common/seq.d.ts +0 -2
  511. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/common/seq.js +0 -19
  512. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/common/string.d.ts +0 -2
  513. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/common/string.js +0 -16
  514. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/core/bool.d.ts +0 -4
  515. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/core/bool.js +0 -21
  516. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/core/float.d.ts +0 -4
  517. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/core/float.js +0 -47
  518. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/core/int.d.ts +0 -4
  519. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/core/int.js +0 -42
  520. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/core/schema.d.ts +0 -1
  521. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/core/schema.js +0 -25
  522. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/json/schema.d.ts +0 -2
  523. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/json/schema.js +0 -64
  524. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/json-schema.d.ts +0 -69
  525. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/tags.d.ts +0 -48
  526. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/tags.js +0 -99
  527. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/types.d.ts +0 -92
  528. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +0 -2
  529. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/binary.js +0 -70
  530. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +0 -7
  531. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/bool.js +0 -29
  532. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +0 -4
  533. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/float.js +0 -50
  534. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +0 -5
  535. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/int.js +0 -76
  536. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +0 -9
  537. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/merge.js +0 -68
  538. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +0 -22
  539. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/omap.js +0 -77
  540. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +0 -10
  541. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +0 -82
  542. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +0 -1
  543. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/schema.js +0 -41
  544. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +0 -28
  545. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/set.js +0 -96
  546. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +0 -6
  547. package/dist/agents/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +0 -105
  548. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +0 -34
  549. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/foldFlowLines.js +0 -151
  550. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringify.d.ts +0 -21
  551. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringify.js +0 -131
  552. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +0 -17
  553. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringifyCollection.js +0 -145
  554. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringifyComment.d.ts +0 -10
  555. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringifyComment.js +0 -24
  556. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +0 -4
  557. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringifyDocument.js +0 -87
  558. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +0 -2
  559. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringifyNumber.js +0 -26
  560. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringifyPair.d.ts +0 -3
  561. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringifyPair.js +0 -152
  562. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringifyString.d.ts +0 -9
  563. package/dist/agents/agents/skills/node_modules/yaml/dist/stringify/stringifyString.js +0 -338
  564. package/dist/agents/agents/skills/node_modules/yaml/dist/test-events.d.ts +0 -4
  565. package/dist/agents/agents/skills/node_modules/yaml/dist/test-events.js +0 -134
  566. package/dist/agents/agents/skills/node_modules/yaml/dist/util.d.ts +0 -16
  567. package/dist/agents/agents/skills/node_modules/yaml/dist/util.js +0 -28
  568. package/dist/agents/agents/skills/node_modules/yaml/dist/visit.d.ts +0 -102
  569. package/dist/agents/agents/skills/node_modules/yaml/dist/visit.js +0 -236
  570. package/dist/agents/agents/skills/node_modules/yaml/node_modules/.bin/yaml +0 -17
  571. package/dist/agents/agents/skills/node_modules/yaml/package.json +0 -97
  572. package/dist/agents/agents/skills/node_modules/yaml/util.js +0 -2
  573. package/dist/agents/agents/skills/node_modules/zod/README.md +0 -208
  574. package/dist/agents/agents/skills/node_modules/zod/index.cjs +0 -33
  575. package/dist/agents/agents/skills/node_modules/zod/index.d.cts +0 -4
  576. package/dist/agents/agents/skills/node_modules/zod/index.d.ts +0 -4
  577. package/dist/agents/agents/skills/node_modules/zod/index.js +0 -4
  578. package/dist/agents/agents/skills/node_modules/zod/package.json +0 -118
  579. package/dist/agents/agents/skills/node_modules/zod/src/index.ts +0 -4
  580. package/dist/agents/agents/skills/node_modules/zod/src/v3/ZodError.ts +0 -330
  581. package/dist/agents/agents/skills/node_modules/zod/src/v3/benchmarks/datetime.ts +0 -58
  582. package/dist/agents/agents/skills/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +0 -80
  583. package/dist/agents/agents/skills/node_modules/zod/src/v3/benchmarks/index.ts +0 -59
  584. package/dist/agents/agents/skills/node_modules/zod/src/v3/benchmarks/ipv4.ts +0 -57
  585. package/dist/agents/agents/skills/node_modules/zod/src/v3/benchmarks/object.ts +0 -69
  586. package/dist/agents/agents/skills/node_modules/zod/src/v3/benchmarks/primitives.ts +0 -162
  587. package/dist/agents/agents/skills/node_modules/zod/src/v3/benchmarks/realworld.ts +0 -63
  588. package/dist/agents/agents/skills/node_modules/zod/src/v3/benchmarks/string.ts +0 -55
  589. package/dist/agents/agents/skills/node_modules/zod/src/v3/benchmarks/union.ts +0 -80
  590. package/dist/agents/agents/skills/node_modules/zod/src/v3/errors.ts +0 -13
  591. package/dist/agents/agents/skills/node_modules/zod/src/v3/external.ts +0 -6
  592. package/dist/agents/agents/skills/node_modules/zod/src/v3/helpers/enumUtil.ts +0 -17
  593. package/dist/agents/agents/skills/node_modules/zod/src/v3/helpers/errorUtil.ts +0 -8
  594. package/dist/agents/agents/skills/node_modules/zod/src/v3/helpers/parseUtil.ts +0 -176
  595. package/dist/agents/agents/skills/node_modules/zod/src/v3/helpers/partialUtil.ts +0 -34
  596. package/dist/agents/agents/skills/node_modules/zod/src/v3/helpers/typeAliases.ts +0 -2
  597. package/dist/agents/agents/skills/node_modules/zod/src/v3/helpers/util.ts +0 -224
  598. package/dist/agents/agents/skills/node_modules/zod/src/v3/index.ts +0 -4
  599. package/dist/agents/agents/skills/node_modules/zod/src/v3/locales/en.ts +0 -124
  600. package/dist/agents/agents/skills/node_modules/zod/src/v3/standard-schema.ts +0 -113
  601. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/Mocker.ts +0 -54
  602. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/all-errors.test.ts +0 -157
  603. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/anyunknown.test.ts +0 -28
  604. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/array.test.ts +0 -71
  605. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/async-parsing.test.ts +0 -388
  606. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/async-refinements.test.ts +0 -46
  607. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/base.test.ts +0 -29
  608. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/bigint.test.ts +0 -55
  609. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/branded.test.ts +0 -53
  610. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/catch.test.ts +0 -220
  611. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/coerce.test.ts +0 -133
  612. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/complex.test.ts +0 -56
  613. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/custom.test.ts +0 -31
  614. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/date.test.ts +0 -32
  615. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/deepmasking.test.ts +0 -186
  616. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/default.test.ts +0 -112
  617. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/description.test.ts +0 -33
  618. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +0 -315
  619. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/enum.test.ts +0 -80
  620. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/error.test.ts +0 -551
  621. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/firstparty.test.ts +0 -87
  622. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +0 -21
  623. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/function.test.ts +0 -257
  624. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/generics.test.ts +0 -48
  625. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/instanceof.test.ts +0 -37
  626. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/intersection.test.ts +0 -110
  627. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/language-server.source.ts +0 -76
  628. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/language-server.test.ts +0 -207
  629. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/literal.test.ts +0 -36
  630. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/map.test.ts +0 -110
  631. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/masking.test.ts +0 -4
  632. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/mocker.test.ts +0 -19
  633. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/nan.test.ts +0 -21
  634. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/nativeEnum.test.ts +0 -87
  635. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/nullable.test.ts +0 -42
  636. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/number.test.ts +0 -176
  637. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/object-augmentation.test.ts +0 -29
  638. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +0 -29
  639. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/object.test.ts +0 -434
  640. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/optional.test.ts +0 -42
  641. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/parseUtil.test.ts +0 -23
  642. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/parser.test.ts +0 -41
  643. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/partials.test.ts +0 -243
  644. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/pickomit.test.ts +0 -111
  645. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/pipeline.test.ts +0 -29
  646. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/preprocess.test.ts +0 -186
  647. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/primitive.test.ts +0 -440
  648. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/promise.test.ts +0 -90
  649. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/readonly.test.ts +0 -194
  650. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/record.test.ts +0 -171
  651. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/recursive.test.ts +0 -197
  652. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/refine.test.ts +0 -313
  653. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/safeparse.test.ts +0 -27
  654. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/set.test.ts +0 -142
  655. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/standard-schema.test.ts +0 -83
  656. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/string.test.ts +0 -916
  657. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/transformer.test.ts +0 -233
  658. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/tuple.test.ts +0 -90
  659. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/unions.test.ts +0 -57
  660. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/validations.test.ts +0 -133
  661. package/dist/agents/agents/skills/node_modules/zod/src/v3/tests/void.test.ts +0 -15
  662. package/dist/agents/agents/skills/node_modules/zod/src/v3/types.ts +0 -5136
  663. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/checks.ts +0 -30
  664. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/coerce.ts +0 -27
  665. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/compat.ts +0 -66
  666. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/errors.ts +0 -75
  667. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/external.ts +0 -50
  668. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/index.ts +0 -5
  669. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/iso.ts +0 -90
  670. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/parse.ts +0 -33
  671. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/schemas.ts +0 -2054
  672. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +0 -26
  673. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/array.test.ts +0 -264
  674. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/assignability.test.ts +0 -210
  675. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +0 -381
  676. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +0 -68
  677. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/base.test.ts +0 -7
  678. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/bigint.test.ts +0 -54
  679. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/brand.test.ts +0 -63
  680. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/catch.test.ts +0 -252
  681. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +0 -20
  682. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/coerce.test.ts +0 -160
  683. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/continuability.test.ts +0 -352
  684. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/custom.test.ts +0 -40
  685. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/date.test.ts +0 -31
  686. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/datetime.test.ts +0 -296
  687. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/default.test.ts +0 -313
  688. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/description.test.ts +0 -32
  689. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +0 -619
  690. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/enum.test.ts +0 -285
  691. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +0 -527
  692. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/error.test.ts +0 -711
  693. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/file.test.ts +0 -91
  694. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +0 -175
  695. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/function.test.ts +0 -268
  696. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/generics.test.ts +0 -72
  697. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/index.test.ts +0 -829
  698. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +0 -34
  699. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/intersection.test.ts +0 -171
  700. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/json.test.ts +0 -108
  701. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/lazy.test.ts +0 -227
  702. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/literal.test.ts +0 -92
  703. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/map.test.ts +0 -196
  704. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/nan.test.ts +0 -21
  705. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +0 -168
  706. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +0 -86
  707. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/nullable.test.ts +0 -22
  708. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/number.test.ts +0 -247
  709. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/object.test.ts +0 -563
  710. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/optional.test.ts +0 -123
  711. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/partial.test.ts +0 -147
  712. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +0 -127
  713. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/pipe.test.ts +0 -81
  714. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/prefault.test.ts +0 -37
  715. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +0 -298
  716. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/primitive.test.ts +0 -175
  717. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/promise.test.ts +0 -81
  718. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +0 -23
  719. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/readonly.test.ts +0 -252
  720. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/record.test.ts +0 -342
  721. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +0 -356
  722. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/refine.test.ts +0 -532
  723. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/registries.test.ts +0 -204
  724. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/set.test.ts +0 -179
  725. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +0 -57
  726. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +0 -109
  727. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/string.test.ts +0 -881
  728. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +0 -66
  729. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +0 -758
  730. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +0 -2314
  731. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/transform.test.ts +0 -250
  732. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/tuple.test.ts +0 -163
  733. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/union.test.ts +0 -94
  734. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/validations.test.ts +0 -283
  735. package/dist/agents/agents/skills/node_modules/zod/src/v4/classic/tests/void.test.ts +0 -12
  736. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/api.ts +0 -1594
  737. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/checks.ts +0 -1283
  738. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/config.ts +0 -15
  739. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/core.ts +0 -134
  740. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/doc.ts +0 -44
  741. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/errors.ts +0 -424
  742. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/function.ts +0 -176
  743. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/index.ts +0 -15
  744. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/json-schema.ts +0 -143
  745. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/parse.ts +0 -94
  746. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/regexes.ts +0 -135
  747. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/registries.ts +0 -96
  748. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/schemas.ts +0 -3842
  749. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/standard-schema.ts +0 -64
  750. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/tests/index.test.ts +0 -46
  751. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/tests/locales/be.test.ts +0 -124
  752. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/tests/locales/en.test.ts +0 -22
  753. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +0 -128
  754. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +0 -69
  755. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/to-json-schema.ts +0 -977
  756. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/util.ts +0 -775
  757. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/versions.ts +0 -5
  758. package/dist/agents/agents/skills/node_modules/zod/src/v4/core/zsf.ts +0 -323
  759. package/dist/agents/agents/skills/node_modules/zod/src/v4/index.ts +0 -4
  760. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/ar.ts +0 -125
  761. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/az.ts +0 -121
  762. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/be.ts +0 -184
  763. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/ca.ts +0 -127
  764. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/cs.ts +0 -142
  765. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/de.ts +0 -124
  766. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/en.ts +0 -127
  767. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/eo.ts +0 -125
  768. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/es.ts +0 -125
  769. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/fa.ts +0 -134
  770. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/fi.ts +0 -131
  771. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/fr-CA.ts +0 -126
  772. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/fr.ts +0 -124
  773. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/he.ts +0 -125
  774. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/hu.ts +0 -126
  775. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/id.ts +0 -125
  776. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/index.ts +0 -39
  777. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/it.ts +0 -125
  778. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/ja.ts +0 -122
  779. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/kh.ts +0 -126
  780. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/ko.ts +0 -131
  781. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/mk.ts +0 -127
  782. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/ms.ts +0 -124
  783. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/nl.ts +0 -126
  784. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/no.ts +0 -124
  785. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/ota.ts +0 -125
  786. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/pl.ts +0 -126
  787. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/ps.ts +0 -133
  788. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/pt.ts +0 -123
  789. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/ru.ts +0 -184
  790. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/sl.ts +0 -126
  791. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/sv.ts +0 -127
  792. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/ta.ts +0 -125
  793. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/th.ts +0 -126
  794. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/tr.ts +0 -121
  795. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/ua.ts +0 -126
  796. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/ur.ts +0 -126
  797. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/vi.ts +0 -125
  798. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/zh-CN.ts +0 -123
  799. package/dist/agents/agents/skills/node_modules/zod/src/v4/locales/zh-TW.ts +0 -125
  800. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/checks.ts +0 -32
  801. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/coerce.ts +0 -22
  802. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/external.ts +0 -40
  803. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/index.ts +0 -3
  804. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/iso.ts +0 -62
  805. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/parse.ts +0 -1
  806. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/schemas.ts +0 -1579
  807. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/tests/assignability.test.ts +0 -129
  808. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/tests/brand.test.ts +0 -51
  809. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/tests/checks.test.ts +0 -144
  810. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/tests/computed.test.ts +0 -36
  811. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/tests/error.test.ts +0 -22
  812. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/tests/functions.test.ts +0 -43
  813. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/tests/index.test.ts +0 -871
  814. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/tests/number.test.ts +0 -95
  815. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/tests/object.test.ts +0 -185
  816. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +0 -43
  817. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +0 -275
  818. package/dist/agents/agents/skills/node_modules/zod/src/v4/mini/tests/string.test.ts +0 -299
  819. package/dist/agents/agents/skills/node_modules/zod/src/v4-mini/index.ts +0 -1
  820. package/dist/agents/agents/skills/node_modules/zod/v3/ZodError.cjs +0 -138
  821. package/dist/agents/agents/skills/node_modules/zod/v3/ZodError.d.cts +0 -164
  822. package/dist/agents/agents/skills/node_modules/zod/v3/ZodError.d.ts +0 -164
  823. package/dist/agents/agents/skills/node_modules/zod/v3/ZodError.js +0 -133
  824. package/dist/agents/agents/skills/node_modules/zod/v3/errors.cjs +0 -17
  825. package/dist/agents/agents/skills/node_modules/zod/v3/errors.d.cts +0 -5
  826. package/dist/agents/agents/skills/node_modules/zod/v3/errors.d.ts +0 -5
  827. package/dist/agents/agents/skills/node_modules/zod/v3/errors.js +0 -9
  828. package/dist/agents/agents/skills/node_modules/zod/v3/external.cjs +0 -22
  829. package/dist/agents/agents/skills/node_modules/zod/v3/external.d.cts +0 -6
  830. package/dist/agents/agents/skills/node_modules/zod/v3/external.d.ts +0 -6
  831. package/dist/agents/agents/skills/node_modules/zod/v3/external.js +0 -6
  832. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/enumUtil.cjs +0 -2
  833. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/enumUtil.d.cts +0 -8
  834. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/enumUtil.d.ts +0 -8
  835. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/enumUtil.js +0 -1
  836. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/errorUtil.cjs +0 -9
  837. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/errorUtil.d.cts +0 -9
  838. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/errorUtil.d.ts +0 -9
  839. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/errorUtil.js +0 -6
  840. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/parseUtil.cjs +0 -124
  841. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/parseUtil.d.cts +0 -78
  842. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/parseUtil.d.ts +0 -78
  843. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/parseUtil.js +0 -109
  844. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/partialUtil.cjs +0 -2
  845. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/partialUtil.d.cts +0 -8
  846. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/partialUtil.d.ts +0 -8
  847. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/partialUtil.js +0 -1
  848. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/typeAliases.cjs +0 -2
  849. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/typeAliases.d.cts +0 -2
  850. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/typeAliases.d.ts +0 -2
  851. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/typeAliases.js +0 -1
  852. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/util.cjs +0 -137
  853. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/util.d.cts +0 -85
  854. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/util.d.ts +0 -85
  855. package/dist/agents/agents/skills/node_modules/zod/v3/helpers/util.js +0 -133
  856. package/dist/agents/agents/skills/node_modules/zod/v3/index.cjs +0 -33
  857. package/dist/agents/agents/skills/node_modules/zod/v3/index.d.cts +0 -4
  858. package/dist/agents/agents/skills/node_modules/zod/v3/index.d.ts +0 -4
  859. package/dist/agents/agents/skills/node_modules/zod/v3/index.js +0 -4
  860. package/dist/agents/agents/skills/node_modules/zod/v3/locales/en.cjs +0 -111
  861. package/dist/agents/agents/skills/node_modules/zod/v3/locales/en.d.cts +0 -3
  862. package/dist/agents/agents/skills/node_modules/zod/v3/locales/en.d.ts +0 -3
  863. package/dist/agents/agents/skills/node_modules/zod/v3/locales/en.js +0 -109
  864. package/dist/agents/agents/skills/node_modules/zod/v3/standard-schema.cjs +0 -2
  865. package/dist/agents/agents/skills/node_modules/zod/v3/standard-schema.d.cts +0 -102
  866. package/dist/agents/agents/skills/node_modules/zod/v3/standard-schema.d.ts +0 -102
  867. package/dist/agents/agents/skills/node_modules/zod/v3/standard-schema.js +0 -1
  868. package/dist/agents/agents/skills/node_modules/zod/v3/types.cjs +0 -3775
  869. package/dist/agents/agents/skills/node_modules/zod/v3/types.d.cts +0 -1031
  870. package/dist/agents/agents/skills/node_modules/zod/v3/types.d.ts +0 -1031
  871. package/dist/agents/agents/skills/node_modules/zod/v3/types.js +0 -3693
  872. package/dist/agents/agents/skills/node_modules/zod/v4/classic/checks.cjs +0 -32
  873. package/dist/agents/agents/skills/node_modules/zod/v4/classic/checks.d.cts +0 -1
  874. package/dist/agents/agents/skills/node_modules/zod/v4/classic/checks.d.ts +0 -1
  875. package/dist/agents/agents/skills/node_modules/zod/v4/classic/checks.js +0 -1
  876. package/dist/agents/agents/skills/node_modules/zod/v4/classic/coerce.cjs +0 -47
  877. package/dist/agents/agents/skills/node_modules/zod/v4/classic/coerce.d.cts +0 -17
  878. package/dist/agents/agents/skills/node_modules/zod/v4/classic/coerce.d.ts +0 -17
  879. package/dist/agents/agents/skills/node_modules/zod/v4/classic/coerce.js +0 -17
  880. package/dist/agents/agents/skills/node_modules/zod/v4/classic/compat.cjs +0 -57
  881. package/dist/agents/agents/skills/node_modules/zod/v4/classic/compat.d.cts +0 -46
  882. package/dist/agents/agents/skills/node_modules/zod/v4/classic/compat.d.ts +0 -46
  883. package/dist/agents/agents/skills/node_modules/zod/v4/classic/compat.js +0 -27
  884. package/dist/agents/agents/skills/node_modules/zod/v4/classic/errors.cjs +0 -67
  885. package/dist/agents/agents/skills/node_modules/zod/v4/classic/errors.d.cts +0 -30
  886. package/dist/agents/agents/skills/node_modules/zod/v4/classic/errors.d.ts +0 -30
  887. package/dist/agents/agents/skills/node_modules/zod/v4/classic/errors.js +0 -41
  888. package/dist/agents/agents/skills/node_modules/zod/v4/classic/external.cjs +0 -70
  889. package/dist/agents/agents/skills/node_modules/zod/v4/classic/external.d.cts +0 -13
  890. package/dist/agents/agents/skills/node_modules/zod/v4/classic/external.d.ts +0 -13
  891. package/dist/agents/agents/skills/node_modules/zod/v4/classic/external.js +0 -18
  892. package/dist/agents/agents/skills/node_modules/zod/v4/classic/index.cjs +0 -33
  893. package/dist/agents/agents/skills/node_modules/zod/v4/classic/index.d.cts +0 -4
  894. package/dist/agents/agents/skills/node_modules/zod/v4/classic/index.d.ts +0 -4
  895. package/dist/agents/agents/skills/node_modules/zod/v4/classic/index.js +0 -4
  896. package/dist/agents/agents/skills/node_modules/zod/v4/classic/iso.cjs +0 -60
  897. package/dist/agents/agents/skills/node_modules/zod/v4/classic/iso.d.cts +0 -22
  898. package/dist/agents/agents/skills/node_modules/zod/v4/classic/iso.d.ts +0 -22
  899. package/dist/agents/agents/skills/node_modules/zod/v4/classic/iso.js +0 -30
  900. package/dist/agents/agents/skills/node_modules/zod/v4/classic/parse.cjs +0 -32
  901. package/dist/agents/agents/skills/node_modules/zod/v4/classic/parse.d.cts +0 -23
  902. package/dist/agents/agents/skills/node_modules/zod/v4/classic/parse.d.ts +0 -23
  903. package/dist/agents/agents/skills/node_modules/zod/v4/classic/parse.js +0 -6
  904. package/dist/agents/agents/skills/node_modules/zod/v4/classic/schemas.cjs +0 -1109
  905. package/dist/agents/agents/skills/node_modules/zod/v4/classic/schemas.d.cts +0 -630
  906. package/dist/agents/agents/skills/node_modules/zod/v4/classic/schemas.d.ts +0 -630
  907. package/dist/agents/agents/skills/node_modules/zod/v4/classic/schemas.js +0 -1006
  908. package/dist/agents/agents/skills/node_modules/zod/v4/core/api.cjs +0 -1039
  909. package/dist/agents/agents/skills/node_modules/zod/v4/core/api.d.cts +0 -284
  910. package/dist/agents/agents/skills/node_modules/zod/v4/core/api.d.ts +0 -284
  911. package/dist/agents/agents/skills/node_modules/zod/v4/core/api.js +0 -906
  912. package/dist/agents/agents/skills/node_modules/zod/v4/core/checks.cjs +0 -591
  913. package/dist/agents/agents/skills/node_modules/zod/v4/core/checks.d.cts +0 -278
  914. package/dist/agents/agents/skills/node_modules/zod/v4/core/checks.d.ts +0 -278
  915. package/dist/agents/agents/skills/node_modules/zod/v4/core/checks.js +0 -565
  916. package/dist/agents/agents/skills/node_modules/zod/v4/core/core.cjs +0 -67
  917. package/dist/agents/agents/skills/node_modules/zod/v4/core/core.d.cts +0 -49
  918. package/dist/agents/agents/skills/node_modules/zod/v4/core/core.d.ts +0 -49
  919. package/dist/agents/agents/skills/node_modules/zod/v4/core/core.js +0 -61
  920. package/dist/agents/agents/skills/node_modules/zod/v4/core/doc.cjs +0 -39
  921. package/dist/agents/agents/skills/node_modules/zod/v4/core/doc.d.cts +0 -14
  922. package/dist/agents/agents/skills/node_modules/zod/v4/core/doc.d.ts +0 -14
  923. package/dist/agents/agents/skills/node_modules/zod/v4/core/doc.js +0 -35
  924. package/dist/agents/agents/skills/node_modules/zod/v4/core/errors.cjs +0 -226
  925. package/dist/agents/agents/skills/node_modules/zod/v4/core/errors.d.cts +0 -208
  926. package/dist/agents/agents/skills/node_modules/zod/v4/core/errors.d.ts +0 -208
  927. package/dist/agents/agents/skills/node_modules/zod/v4/core/errors.js +0 -195
  928. package/dist/agents/agents/skills/node_modules/zod/v4/core/function.cjs +0 -102
  929. package/dist/agents/agents/skills/node_modules/zod/v4/core/function.d.cts +0 -52
  930. package/dist/agents/agents/skills/node_modules/zod/v4/core/function.d.ts +0 -52
  931. package/dist/agents/agents/skills/node_modules/zod/v4/core/function.js +0 -75
  932. package/dist/agents/agents/skills/node_modules/zod/v4/core/index.cjs +0 -44
  933. package/dist/agents/agents/skills/node_modules/zod/v4/core/index.d.cts +0 -15
  934. package/dist/agents/agents/skills/node_modules/zod/v4/core/index.d.ts +0 -15
  935. package/dist/agents/agents/skills/node_modules/zod/v4/core/index.js +0 -15
  936. package/dist/agents/agents/skills/node_modules/zod/v4/core/json-schema.cjs +0 -2
  937. package/dist/agents/agents/skills/node_modules/zod/v4/core/json-schema.d.cts +0 -87
  938. package/dist/agents/agents/skills/node_modules/zod/v4/core/json-schema.d.ts +0 -87
  939. package/dist/agents/agents/skills/node_modules/zod/v4/core/json-schema.js +0 -1
  940. package/dist/agents/agents/skills/node_modules/zod/v4/core/parse.cjs +0 -87
  941. package/dist/agents/agents/skills/node_modules/zod/v4/core/parse.d.cts +0 -25
  942. package/dist/agents/agents/skills/node_modules/zod/v4/core/parse.d.ts +0 -25
  943. package/dist/agents/agents/skills/node_modules/zod/v4/core/parse.js +0 -57
  944. package/dist/agents/agents/skills/node_modules/zod/v4/core/regexes.cjs +0 -103
  945. package/dist/agents/agents/skills/node_modules/zod/v4/core/regexes.d.cts +0 -62
  946. package/dist/agents/agents/skills/node_modules/zod/v4/core/regexes.d.ts +0 -62
  947. package/dist/agents/agents/skills/node_modules/zod/v4/core/regexes.js +0 -95
  948. package/dist/agents/agents/skills/node_modules/zod/v4/core/registries.cjs +0 -56
  949. package/dist/agents/agents/skills/node_modules/zod/v4/core/registries.d.cts +0 -35
  950. package/dist/agents/agents/skills/node_modules/zod/v4/core/registries.d.ts +0 -35
  951. package/dist/agents/agents/skills/node_modules/zod/v4/core/registries.js +0 -51
  952. package/dist/agents/agents/skills/node_modules/zod/v4/core/schemas.cjs +0 -1748
  953. package/dist/agents/agents/skills/node_modules/zod/v4/core/schemas.d.cts +0 -1041
  954. package/dist/agents/agents/skills/node_modules/zod/v4/core/schemas.d.ts +0 -1041
  955. package/dist/agents/agents/skills/node_modules/zod/v4/core/schemas.js +0 -1717
  956. package/dist/agents/agents/skills/node_modules/zod/v4/core/standard-schema.cjs +0 -2
  957. package/dist/agents/agents/skills/node_modules/zod/v4/core/standard-schema.d.cts +0 -55
  958. package/dist/agents/agents/skills/node_modules/zod/v4/core/standard-schema.d.ts +0 -55
  959. package/dist/agents/agents/skills/node_modules/zod/v4/core/standard-schema.js +0 -1
  960. package/dist/agents/agents/skills/node_modules/zod/v4/core/to-json-schema.cjs +0 -854
  961. package/dist/agents/agents/skills/node_modules/zod/v4/core/to-json-schema.d.cts +0 -88
  962. package/dist/agents/agents/skills/node_modules/zod/v4/core/to-json-schema.d.ts +0 -88
  963. package/dist/agents/agents/skills/node_modules/zod/v4/core/to-json-schema.js +0 -849
  964. package/dist/agents/agents/skills/node_modules/zod/v4/core/util.cjs +0 -539
  965. package/dist/agents/agents/skills/node_modules/zod/v4/core/util.d.cts +0 -183
  966. package/dist/agents/agents/skills/node_modules/zod/v4/core/util.d.ts +0 -183
  967. package/dist/agents/agents/skills/node_modules/zod/v4/core/util.js +0 -493
  968. package/dist/agents/agents/skills/node_modules/zod/v4/core/versions.cjs +0 -8
  969. package/dist/agents/agents/skills/node_modules/zod/v4/core/versions.d.cts +0 -5
  970. package/dist/agents/agents/skills/node_modules/zod/v4/core/versions.d.ts +0 -5
  971. package/dist/agents/agents/skills/node_modules/zod/v4/core/versions.js +0 -5
  972. package/dist/agents/agents/skills/node_modules/zod/v4/index.cjs +0 -22
  973. package/dist/agents/agents/skills/node_modules/zod/v4/index.d.cts +0 -3
  974. package/dist/agents/agents/skills/node_modules/zod/v4/index.d.ts +0 -3
  975. package/dist/agents/agents/skills/node_modules/zod/v4/index.js +0 -3
  976. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ar.cjs +0 -142
  977. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ar.d.cts +0 -4
  978. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ar.d.ts +0 -4
  979. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ar.js +0 -116
  980. package/dist/agents/agents/skills/node_modules/zod/v4/locales/az.cjs +0 -141
  981. package/dist/agents/agents/skills/node_modules/zod/v4/locales/az.d.cts +0 -4
  982. package/dist/agents/agents/skills/node_modules/zod/v4/locales/az.d.ts +0 -4
  983. package/dist/agents/agents/skills/node_modules/zod/v4/locales/az.js +0 -115
  984. package/dist/agents/agents/skills/node_modules/zod/v4/locales/be.cjs +0 -190
  985. package/dist/agents/agents/skills/node_modules/zod/v4/locales/be.d.cts +0 -4
  986. package/dist/agents/agents/skills/node_modules/zod/v4/locales/be.d.ts +0 -4
  987. package/dist/agents/agents/skills/node_modules/zod/v4/locales/be.js +0 -164
  988. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ca.cjs +0 -144
  989. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ca.d.cts +0 -4
  990. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ca.d.ts +0 -4
  991. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ca.js +0 -118
  992. package/dist/agents/agents/skills/node_modules/zod/v4/locales/cs.cjs +0 -161
  993. package/dist/agents/agents/skills/node_modules/zod/v4/locales/cs.d.cts +0 -4
  994. package/dist/agents/agents/skills/node_modules/zod/v4/locales/cs.d.ts +0 -4
  995. package/dist/agents/agents/skills/node_modules/zod/v4/locales/cs.js +0 -135
  996. package/dist/agents/agents/skills/node_modules/zod/v4/locales/de.cjs +0 -142
  997. package/dist/agents/agents/skills/node_modules/zod/v4/locales/de.d.cts +0 -4
  998. package/dist/agents/agents/skills/node_modules/zod/v4/locales/de.d.ts +0 -4
  999. package/dist/agents/agents/skills/node_modules/zod/v4/locales/de.js +0 -116
  1000. package/dist/agents/agents/skills/node_modules/zod/v4/locales/en.cjs +0 -145
  1001. package/dist/agents/agents/skills/node_modules/zod/v4/locales/en.d.cts +0 -5
  1002. package/dist/agents/agents/skills/node_modules/zod/v4/locales/en.d.ts +0 -5
  1003. package/dist/agents/agents/skills/node_modules/zod/v4/locales/en.js +0 -117
  1004. package/dist/agents/agents/skills/node_modules/zod/v4/locales/eo.cjs +0 -144
  1005. package/dist/agents/agents/skills/node_modules/zod/v4/locales/eo.d.cts +0 -5
  1006. package/dist/agents/agents/skills/node_modules/zod/v4/locales/eo.d.ts +0 -5
  1007. package/dist/agents/agents/skills/node_modules/zod/v4/locales/eo.js +0 -116
  1008. package/dist/agents/agents/skills/node_modules/zod/v4/locales/es.cjs +0 -143
  1009. package/dist/agents/agents/skills/node_modules/zod/v4/locales/es.d.cts +0 -4
  1010. package/dist/agents/agents/skills/node_modules/zod/v4/locales/es.d.ts +0 -4
  1011. package/dist/agents/agents/skills/node_modules/zod/v4/locales/es.js +0 -117
  1012. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fa.cjs +0 -148
  1013. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fa.d.cts +0 -4
  1014. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fa.d.ts +0 -4
  1015. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fa.js +0 -122
  1016. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fi.cjs +0 -148
  1017. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fi.d.cts +0 -4
  1018. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fi.d.ts +0 -4
  1019. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fi.js +0 -122
  1020. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fr-CA.cjs +0 -143
  1021. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fr-CA.d.cts +0 -4
  1022. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fr-CA.d.ts +0 -4
  1023. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fr-CA.js +0 -117
  1024. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fr.cjs +0 -142
  1025. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fr.d.cts +0 -4
  1026. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fr.d.ts +0 -4
  1027. package/dist/agents/agents/skills/node_modules/zod/v4/locales/fr.js +0 -116
  1028. package/dist/agents/agents/skills/node_modules/zod/v4/locales/he.cjs +0 -143
  1029. package/dist/agents/agents/skills/node_modules/zod/v4/locales/he.d.cts +0 -4
  1030. package/dist/agents/agents/skills/node_modules/zod/v4/locales/he.d.ts +0 -4
  1031. package/dist/agents/agents/skills/node_modules/zod/v4/locales/he.js +0 -117
  1032. package/dist/agents/agents/skills/node_modules/zod/v4/locales/hu.cjs +0 -143
  1033. package/dist/agents/agents/skills/node_modules/zod/v4/locales/hu.d.cts +0 -4
  1034. package/dist/agents/agents/skills/node_modules/zod/v4/locales/hu.d.ts +0 -4
  1035. package/dist/agents/agents/skills/node_modules/zod/v4/locales/hu.js +0 -117
  1036. package/dist/agents/agents/skills/node_modules/zod/v4/locales/id.cjs +0 -142
  1037. package/dist/agents/agents/skills/node_modules/zod/v4/locales/id.d.cts +0 -4
  1038. package/dist/agents/agents/skills/node_modules/zod/v4/locales/id.d.ts +0 -4
  1039. package/dist/agents/agents/skills/node_modules/zod/v4/locales/id.js +0 -116
  1040. package/dist/agents/agents/skills/node_modules/zod/v4/locales/index.cjs +0 -84
  1041. package/dist/agents/agents/skills/node_modules/zod/v4/locales/index.d.cts +0 -39
  1042. package/dist/agents/agents/skills/node_modules/zod/v4/locales/index.d.ts +0 -39
  1043. package/dist/agents/agents/skills/node_modules/zod/v4/locales/index.js +0 -39
  1044. package/dist/agents/agents/skills/node_modules/zod/v4/locales/it.cjs +0 -143
  1045. package/dist/agents/agents/skills/node_modules/zod/v4/locales/it.d.cts +0 -4
  1046. package/dist/agents/agents/skills/node_modules/zod/v4/locales/it.d.ts +0 -4
  1047. package/dist/agents/agents/skills/node_modules/zod/v4/locales/it.js +0 -117
  1048. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ja.cjs +0 -141
  1049. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ja.d.cts +0 -4
  1050. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ja.d.ts +0 -4
  1051. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ja.js +0 -115
  1052. package/dist/agents/agents/skills/node_modules/zod/v4/locales/kh.cjs +0 -143
  1053. package/dist/agents/agents/skills/node_modules/zod/v4/locales/kh.d.cts +0 -4
  1054. package/dist/agents/agents/skills/node_modules/zod/v4/locales/kh.d.ts +0 -4
  1055. package/dist/agents/agents/skills/node_modules/zod/v4/locales/kh.js +0 -117
  1056. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ko.cjs +0 -147
  1057. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ko.d.cts +0 -4
  1058. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ko.d.ts +0 -4
  1059. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ko.js +0 -121
  1060. package/dist/agents/agents/skills/node_modules/zod/v4/locales/mk.cjs +0 -144
  1061. package/dist/agents/agents/skills/node_modules/zod/v4/locales/mk.d.cts +0 -4
  1062. package/dist/agents/agents/skills/node_modules/zod/v4/locales/mk.d.ts +0 -4
  1063. package/dist/agents/agents/skills/node_modules/zod/v4/locales/mk.js +0 -118
  1064. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ms.cjs +0 -142
  1065. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ms.d.cts +0 -4
  1066. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ms.d.ts +0 -4
  1067. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ms.js +0 -116
  1068. package/dist/agents/agents/skills/node_modules/zod/v4/locales/nl.cjs +0 -143
  1069. package/dist/agents/agents/skills/node_modules/zod/v4/locales/nl.d.cts +0 -4
  1070. package/dist/agents/agents/skills/node_modules/zod/v4/locales/nl.d.ts +0 -4
  1071. package/dist/agents/agents/skills/node_modules/zod/v4/locales/nl.js +0 -117
  1072. package/dist/agents/agents/skills/node_modules/zod/v4/locales/no.cjs +0 -142
  1073. package/dist/agents/agents/skills/node_modules/zod/v4/locales/no.d.cts +0 -4
  1074. package/dist/agents/agents/skills/node_modules/zod/v4/locales/no.d.ts +0 -4
  1075. package/dist/agents/agents/skills/node_modules/zod/v4/locales/no.js +0 -116
  1076. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ota.cjs +0 -143
  1077. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ota.d.cts +0 -4
  1078. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ota.d.ts +0 -4
  1079. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ota.js +0 -117
  1080. package/dist/agents/agents/skills/node_modules/zod/v4/locales/pl.cjs +0 -143
  1081. package/dist/agents/agents/skills/node_modules/zod/v4/locales/pl.d.cts +0 -4
  1082. package/dist/agents/agents/skills/node_modules/zod/v4/locales/pl.d.ts +0 -4
  1083. package/dist/agents/agents/skills/node_modules/zod/v4/locales/pl.js +0 -117
  1084. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ps.cjs +0 -148
  1085. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ps.d.cts +0 -4
  1086. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ps.d.ts +0 -4
  1087. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ps.js +0 -122
  1088. package/dist/agents/agents/skills/node_modules/zod/v4/locales/pt.cjs +0 -142
  1089. package/dist/agents/agents/skills/node_modules/zod/v4/locales/pt.d.cts +0 -4
  1090. package/dist/agents/agents/skills/node_modules/zod/v4/locales/pt.d.ts +0 -4
  1091. package/dist/agents/agents/skills/node_modules/zod/v4/locales/pt.js +0 -116
  1092. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ru.cjs +0 -190
  1093. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ru.d.cts +0 -4
  1094. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ru.d.ts +0 -4
  1095. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ru.js +0 -164
  1096. package/dist/agents/agents/skills/node_modules/zod/v4/locales/sl.cjs +0 -143
  1097. package/dist/agents/agents/skills/node_modules/zod/v4/locales/sl.d.cts +0 -4
  1098. package/dist/agents/agents/skills/node_modules/zod/v4/locales/sl.d.ts +0 -4
  1099. package/dist/agents/agents/skills/node_modules/zod/v4/locales/sl.js +0 -117
  1100. package/dist/agents/agents/skills/node_modules/zod/v4/locales/sv.cjs +0 -144
  1101. package/dist/agents/agents/skills/node_modules/zod/v4/locales/sv.d.cts +0 -4
  1102. package/dist/agents/agents/skills/node_modules/zod/v4/locales/sv.d.ts +0 -4
  1103. package/dist/agents/agents/skills/node_modules/zod/v4/locales/sv.js +0 -118
  1104. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ta.cjs +0 -143
  1105. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ta.d.cts +0 -4
  1106. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ta.d.ts +0 -4
  1107. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ta.js +0 -117
  1108. package/dist/agents/agents/skills/node_modules/zod/v4/locales/th.cjs +0 -143
  1109. package/dist/agents/agents/skills/node_modules/zod/v4/locales/th.d.cts +0 -4
  1110. package/dist/agents/agents/skills/node_modules/zod/v4/locales/th.d.ts +0 -4
  1111. package/dist/agents/agents/skills/node_modules/zod/v4/locales/th.js +0 -117
  1112. package/dist/agents/agents/skills/node_modules/zod/v4/locales/tr.cjs +0 -143
  1113. package/dist/agents/agents/skills/node_modules/zod/v4/locales/tr.d.cts +0 -5
  1114. package/dist/agents/agents/skills/node_modules/zod/v4/locales/tr.d.ts +0 -5
  1115. package/dist/agents/agents/skills/node_modules/zod/v4/locales/tr.js +0 -115
  1116. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ua.cjs +0 -143
  1117. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ua.d.cts +0 -4
  1118. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ua.d.ts +0 -4
  1119. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ua.js +0 -117
  1120. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ur.cjs +0 -143
  1121. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ur.d.cts +0 -4
  1122. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ur.d.ts +0 -4
  1123. package/dist/agents/agents/skills/node_modules/zod/v4/locales/ur.js +0 -117
  1124. package/dist/agents/agents/skills/node_modules/zod/v4/locales/vi.cjs +0 -142
  1125. package/dist/agents/agents/skills/node_modules/zod/v4/locales/vi.d.cts +0 -4
  1126. package/dist/agents/agents/skills/node_modules/zod/v4/locales/vi.d.ts +0 -4
  1127. package/dist/agents/agents/skills/node_modules/zod/v4/locales/vi.js +0 -116
  1128. package/dist/agents/agents/skills/node_modules/zod/v4/locales/zh-CN.cjs +0 -142
  1129. package/dist/agents/agents/skills/node_modules/zod/v4/locales/zh-CN.d.cts +0 -4
  1130. package/dist/agents/agents/skills/node_modules/zod/v4/locales/zh-CN.d.ts +0 -4
  1131. package/dist/agents/agents/skills/node_modules/zod/v4/locales/zh-CN.js +0 -116
  1132. package/dist/agents/agents/skills/node_modules/zod/v4/locales/zh-TW.cjs +0 -143
  1133. package/dist/agents/agents/skills/node_modules/zod/v4/locales/zh-TW.d.cts +0 -4
  1134. package/dist/agents/agents/skills/node_modules/zod/v4/locales/zh-TW.d.ts +0 -4
  1135. package/dist/agents/agents/skills/node_modules/zod/v4/locales/zh-TW.js +0 -117
  1136. package/dist/agents/agents/skills/node_modules/zod/v4/mini/checks.cjs +0 -34
  1137. package/dist/agents/agents/skills/node_modules/zod/v4/mini/checks.d.cts +0 -1
  1138. package/dist/agents/agents/skills/node_modules/zod/v4/mini/checks.d.ts +0 -1
  1139. package/dist/agents/agents/skills/node_modules/zod/v4/mini/checks.js +0 -1
  1140. package/dist/agents/agents/skills/node_modules/zod/v4/mini/coerce.cjs +0 -47
  1141. package/dist/agents/agents/skills/node_modules/zod/v4/mini/coerce.d.cts +0 -7
  1142. package/dist/agents/agents/skills/node_modules/zod/v4/mini/coerce.d.ts +0 -7
  1143. package/dist/agents/agents/skills/node_modules/zod/v4/mini/coerce.js +0 -17
  1144. package/dist/agents/agents/skills/node_modules/zod/v4/mini/external.cjs +0 -62
  1145. package/dist/agents/agents/skills/node_modules/zod/v4/mini/external.d.cts +0 -11
  1146. package/dist/agents/agents/skills/node_modules/zod/v4/mini/external.d.ts +0 -11
  1147. package/dist/agents/agents/skills/node_modules/zod/v4/mini/external.js +0 -13
  1148. package/dist/agents/agents/skills/node_modules/zod/v4/mini/index.cjs +0 -32
  1149. package/dist/agents/agents/skills/node_modules/zod/v4/mini/index.d.cts +0 -3
  1150. package/dist/agents/agents/skills/node_modules/zod/v4/mini/index.d.ts +0 -3
  1151. package/dist/agents/agents/skills/node_modules/zod/v4/mini/index.js +0 -3
  1152. package/dist/agents/agents/skills/node_modules/zod/v4/mini/iso.cjs +0 -60
  1153. package/dist/agents/agents/skills/node_modules/zod/v4/mini/iso.d.cts +0 -22
  1154. package/dist/agents/agents/skills/node_modules/zod/v4/mini/iso.d.ts +0 -22
  1155. package/dist/agents/agents/skills/node_modules/zod/v4/mini/iso.js +0 -30
  1156. package/dist/agents/agents/skills/node_modules/zod/v4/mini/parse.cjs +0 -8
  1157. package/dist/agents/agents/skills/node_modules/zod/v4/mini/parse.d.cts +0 -1
  1158. package/dist/agents/agents/skills/node_modules/zod/v4/mini/parse.d.ts +0 -1
  1159. package/dist/agents/agents/skills/node_modules/zod/v4/mini/parse.js +0 -1
  1160. package/dist/agents/agents/skills/node_modules/zod/v4/mini/schemas.cjs +0 -839
  1161. package/dist/agents/agents/skills/node_modules/zod/v4/mini/schemas.d.cts +0 -356
  1162. package/dist/agents/agents/skills/node_modules/zod/v4/mini/schemas.d.ts +0 -356
  1163. package/dist/agents/agents/skills/node_modules/zod/v4/mini/schemas.js +0 -732
  1164. package/dist/agents/agents/skills/node_modules/zod/v4-mini/index.cjs +0 -17
  1165. package/dist/agents/agents/skills/node_modules/zod/v4-mini/index.d.cts +0 -1
  1166. package/dist/agents/agents/skills/node_modules/zod/v4-mini/index.d.ts +0 -1
  1167. package/dist/agents/agents/skills/node_modules/zod/v4-mini/index.js +0 -1
  1168. package/dist/agents/agents/skills/package.json +0 -17
  1169. package/dist/agents/agents/skills/tests/references.test.ts +0 -85
  1170. package/dist/agents/agents/skills/tests/schema.test.ts +0 -95
  1171. package/dist/agents/agents/skills/tests/schema.ts +0 -66
  1172. package/dist/agents/agents/skills/tests/structure.test.ts +0 -82
  1173. package/dist/agents/agents/skills/tsconfig.json +0 -12
  1174. package/dist/agents/agents/skills/vitest.config.mts +0 -9
  1175. package/dist/agents/skills/.turbo/turbo-test.log +0 -16
  1176. package/dist/agents/skills/gemini-cli/add-harness-component/SKILL.md +0 -182
  1177. package/dist/agents/skills/gemini-cli/add-harness-component/skill.yaml +0 -32
  1178. package/dist/agents/skills/gemini-cli/align-documentation/SKILL.md +0 -181
  1179. package/dist/agents/skills/gemini-cli/align-documentation/skill.yaml +0 -31
  1180. package/dist/agents/skills/gemini-cli/check-mechanical-constraints/SKILL.md +0 -191
  1181. package/dist/agents/skills/gemini-cli/check-mechanical-constraints/skill.yaml +0 -32
  1182. package/dist/agents/skills/gemini-cli/cleanup-dead-code/skill.yaml +0 -30
  1183. package/dist/agents/skills/gemini-cli/detect-doc-drift/SKILL.md +0 -159
  1184. package/dist/agents/skills/gemini-cli/detect-doc-drift/skill.yaml +0 -30
  1185. package/dist/agents/skills/gemini-cli/enforce-architecture/SKILL.md +0 -165
  1186. package/dist/agents/skills/gemini-cli/enforce-architecture/skill.yaml +0 -31
  1187. package/dist/agents/skills/gemini-cli/harness-architecture-advisor/skill.yaml +0 -48
  1188. package/dist/agents/skills/gemini-cli/harness-brainstorming/skill.yaml +0 -47
  1189. package/dist/agents/skills/gemini-cli/harness-code-review/skill.yaml +0 -32
  1190. package/dist/agents/skills/gemini-cli/harness-debugging/SKILL.md +0 -356
  1191. package/dist/agents/skills/gemini-cli/harness-debugging/skill.yaml +0 -47
  1192. package/dist/agents/skills/gemini-cli/harness-diagnostics/SKILL.md +0 -318
  1193. package/dist/agents/skills/gemini-cli/harness-diagnostics/skill.yaml +0 -50
  1194. package/dist/agents/skills/gemini-cli/harness-execution/SKILL.md +0 -298
  1195. package/dist/agents/skills/gemini-cli/harness-execution/skill.yaml +0 -50
  1196. package/dist/agents/skills/gemini-cli/harness-git-workflow/SKILL.md +0 -268
  1197. package/dist/agents/skills/gemini-cli/harness-git-workflow/skill.yaml +0 -31
  1198. package/dist/agents/skills/gemini-cli/harness-integrity/SKILL.md +0 -119
  1199. package/dist/agents/skills/gemini-cli/harness-integrity/skill.yaml +0 -47
  1200. package/dist/agents/skills/gemini-cli/harness-onboarding/skill.yaml +0 -30
  1201. package/dist/agents/skills/gemini-cli/harness-parallel-agents/SKILL.md +0 -162
  1202. package/dist/agents/skills/gemini-cli/harness-parallel-agents/skill.yaml +0 -33
  1203. package/dist/agents/skills/gemini-cli/harness-planning/SKILL.md +0 -326
  1204. package/dist/agents/skills/gemini-cli/harness-planning/skill.yaml +0 -47
  1205. package/dist/agents/skills/gemini-cli/harness-pre-commit-review/SKILL.md +0 -231
  1206. package/dist/agents/skills/gemini-cli/harness-pre-commit-review/skill.yaml +0 -33
  1207. package/dist/agents/skills/gemini-cli/harness-refactoring/skill.yaml +0 -33
  1208. package/dist/agents/skills/gemini-cli/harness-skill-authoring/skill.yaml +0 -32
  1209. package/dist/agents/skills/gemini-cli/harness-state-management/skill.yaml +0 -32
  1210. package/dist/agents/skills/gemini-cli/harness-tdd/skill.yaml +0 -48
  1211. package/dist/agents/skills/gemini-cli/harness-verification/SKILL.md +0 -262
  1212. package/dist/agents/skills/gemini-cli/harness-verification/skill.yaml +0 -41
  1213. package/dist/agents/skills/gemini-cli/harness-verify/SKILL.md +0 -122
  1214. package/dist/agents/skills/gemini-cli/harness-verify/skill.yaml +0 -40
  1215. package/dist/agents/skills/gemini-cli/initialize-harness-project/skill.yaml +0 -31
  1216. package/dist/agents/skills/gemini-cli/validate-context-engineering/skill.yaml +0 -31
  1217. package/dist/agents/skills/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +0 -1
  1218. package/dist/agents/skills/node_modules/glob/LICENSE +0 -15
  1219. package/dist/agents/skills/node_modules/glob/README.md +0 -1265
  1220. package/dist/agents/skills/node_modules/glob/dist/commonjs/glob.d.ts +0 -388
  1221. package/dist/agents/skills/node_modules/glob/dist/commonjs/glob.d.ts.map +0 -1
  1222. package/dist/agents/skills/node_modules/glob/dist/commonjs/glob.js +0 -247
  1223. package/dist/agents/skills/node_modules/glob/dist/commonjs/glob.js.map +0 -1
  1224. package/dist/agents/skills/node_modules/glob/dist/commonjs/has-magic.d.ts +0 -14
  1225. package/dist/agents/skills/node_modules/glob/dist/commonjs/has-magic.d.ts.map +0 -1
  1226. package/dist/agents/skills/node_modules/glob/dist/commonjs/has-magic.js +0 -27
  1227. package/dist/agents/skills/node_modules/glob/dist/commonjs/has-magic.js.map +0 -1
  1228. package/dist/agents/skills/node_modules/glob/dist/commonjs/ignore.d.ts +0 -24
  1229. package/dist/agents/skills/node_modules/glob/dist/commonjs/ignore.d.ts.map +0 -1
  1230. package/dist/agents/skills/node_modules/glob/dist/commonjs/ignore.js +0 -119
  1231. package/dist/agents/skills/node_modules/glob/dist/commonjs/ignore.js.map +0 -1
  1232. package/dist/agents/skills/node_modules/glob/dist/commonjs/index.d.ts +0 -97
  1233. package/dist/agents/skills/node_modules/glob/dist/commonjs/index.d.ts.map +0 -1
  1234. package/dist/agents/skills/node_modules/glob/dist/commonjs/index.js +0 -68
  1235. package/dist/agents/skills/node_modules/glob/dist/commonjs/index.js.map +0 -1
  1236. package/dist/agents/skills/node_modules/glob/dist/commonjs/package.json +0 -3
  1237. package/dist/agents/skills/node_modules/glob/dist/commonjs/pattern.d.ts +0 -76
  1238. package/dist/agents/skills/node_modules/glob/dist/commonjs/pattern.d.ts.map +0 -1
  1239. package/dist/agents/skills/node_modules/glob/dist/commonjs/pattern.js +0 -219
  1240. package/dist/agents/skills/node_modules/glob/dist/commonjs/pattern.js.map +0 -1
  1241. package/dist/agents/skills/node_modules/glob/dist/commonjs/processor.d.ts +0 -59
  1242. package/dist/agents/skills/node_modules/glob/dist/commonjs/processor.d.ts.map +0 -1
  1243. package/dist/agents/skills/node_modules/glob/dist/commonjs/processor.js +0 -301
  1244. package/dist/agents/skills/node_modules/glob/dist/commonjs/processor.js.map +0 -1
  1245. package/dist/agents/skills/node_modules/glob/dist/commonjs/walker.d.ts +0 -97
  1246. package/dist/agents/skills/node_modules/glob/dist/commonjs/walker.d.ts.map +0 -1
  1247. package/dist/agents/skills/node_modules/glob/dist/commonjs/walker.js +0 -387
  1248. package/dist/agents/skills/node_modules/glob/dist/commonjs/walker.js.map +0 -1
  1249. package/dist/agents/skills/node_modules/glob/dist/esm/bin.d.mts +0 -3
  1250. package/dist/agents/skills/node_modules/glob/dist/esm/bin.d.mts.map +0 -1
  1251. package/dist/agents/skills/node_modules/glob/dist/esm/bin.mjs +0 -346
  1252. package/dist/agents/skills/node_modules/glob/dist/esm/bin.mjs.map +0 -1
  1253. package/dist/agents/skills/node_modules/glob/dist/esm/glob.d.ts +0 -388
  1254. package/dist/agents/skills/node_modules/glob/dist/esm/glob.d.ts.map +0 -1
  1255. package/dist/agents/skills/node_modules/glob/dist/esm/glob.js +0 -243
  1256. package/dist/agents/skills/node_modules/glob/dist/esm/glob.js.map +0 -1
  1257. package/dist/agents/skills/node_modules/glob/dist/esm/has-magic.d.ts +0 -14
  1258. package/dist/agents/skills/node_modules/glob/dist/esm/has-magic.d.ts.map +0 -1
  1259. package/dist/agents/skills/node_modules/glob/dist/esm/has-magic.js +0 -23
  1260. package/dist/agents/skills/node_modules/glob/dist/esm/has-magic.js.map +0 -1
  1261. package/dist/agents/skills/node_modules/glob/dist/esm/ignore.d.ts +0 -24
  1262. package/dist/agents/skills/node_modules/glob/dist/esm/ignore.d.ts.map +0 -1
  1263. package/dist/agents/skills/node_modules/glob/dist/esm/ignore.js +0 -115
  1264. package/dist/agents/skills/node_modules/glob/dist/esm/ignore.js.map +0 -1
  1265. package/dist/agents/skills/node_modules/glob/dist/esm/index.d.ts +0 -97
  1266. package/dist/agents/skills/node_modules/glob/dist/esm/index.d.ts.map +0 -1
  1267. package/dist/agents/skills/node_modules/glob/dist/esm/index.js +0 -55
  1268. package/dist/agents/skills/node_modules/glob/dist/esm/index.js.map +0 -1
  1269. package/dist/agents/skills/node_modules/glob/dist/esm/package.json +0 -3
  1270. package/dist/agents/skills/node_modules/glob/dist/esm/pattern.d.ts +0 -76
  1271. package/dist/agents/skills/node_modules/glob/dist/esm/pattern.d.ts.map +0 -1
  1272. package/dist/agents/skills/node_modules/glob/dist/esm/pattern.js +0 -215
  1273. package/dist/agents/skills/node_modules/glob/dist/esm/pattern.js.map +0 -1
  1274. package/dist/agents/skills/node_modules/glob/dist/esm/processor.d.ts +0 -59
  1275. package/dist/agents/skills/node_modules/glob/dist/esm/processor.d.ts.map +0 -1
  1276. package/dist/agents/skills/node_modules/glob/dist/esm/processor.js +0 -294
  1277. package/dist/agents/skills/node_modules/glob/dist/esm/processor.js.map +0 -1
  1278. package/dist/agents/skills/node_modules/glob/dist/esm/walker.d.ts +0 -97
  1279. package/dist/agents/skills/node_modules/glob/dist/esm/walker.d.ts.map +0 -1
  1280. package/dist/agents/skills/node_modules/glob/dist/esm/walker.js +0 -381
  1281. package/dist/agents/skills/node_modules/glob/dist/esm/walker.js.map +0 -1
  1282. package/dist/agents/skills/node_modules/glob/node_modules/.bin/glob +0 -17
  1283. package/dist/agents/skills/node_modules/glob/package.json +0 -99
  1284. package/dist/agents/skills/node_modules/vitest/LICENSE.md +0 -691
  1285. package/dist/agents/skills/node_modules/vitest/README.md +0 -7
  1286. package/dist/agents/skills/node_modules/vitest/browser/context.d.ts +0 -7
  1287. package/dist/agents/skills/node_modules/vitest/browser/context.js +0 -20
  1288. package/dist/agents/skills/node_modules/vitest/config.d.ts +0 -3
  1289. package/dist/agents/skills/node_modules/vitest/coverage.d.ts +0 -1
  1290. package/dist/agents/skills/node_modules/vitest/dist/browser.d.ts +0 -46
  1291. package/dist/agents/skills/node_modules/vitest/dist/browser.js +0 -20
  1292. package/dist/agents/skills/node_modules/vitest/dist/chunks/_commonjsHelpers.D26ty3Ew.js +0 -6
  1293. package/dist/agents/skills/node_modules/vitest/dist/chunks/base.CJ0Y4ePK.js +0 -165
  1294. package/dist/agents/skills/node_modules/vitest/dist/chunks/benchmark.B3N2zMcH.js +0 -40
  1295. package/dist/agents/skills/node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts +0 -24
  1296. package/dist/agents/skills/node_modules/vitest/dist/chunks/browser.d.ChKACdzH.d.ts +0 -59
  1297. package/dist/agents/skills/node_modules/vitest/dist/chunks/cac.DVeoLl0M.js +0 -1409
  1298. package/dist/agents/skills/node_modules/vitest/dist/chunks/cli-api.B7PN_QUv.js +0 -13657
  1299. package/dist/agents/skills/node_modules/vitest/dist/chunks/config.d.Cy95HiCx.d.ts +0 -210
  1300. package/dist/agents/skills/node_modules/vitest/dist/chunks/console.Cf-YriPC.js +0 -146
  1301. package/dist/agents/skills/node_modules/vitest/dist/chunks/constants.D_Q9UYh-.js +0 -36
  1302. package/dist/agents/skills/node_modules/vitest/dist/chunks/coverage.AVPTjMgw.js +0 -3292
  1303. package/dist/agents/skills/node_modules/vitest/dist/chunks/coverage.D_JHT54q.js +0 -25
  1304. package/dist/agents/skills/node_modules/vitest/dist/chunks/coverage.d.BZtK59WP.d.ts +0 -37
  1305. package/dist/agents/skills/node_modules/vitest/dist/chunks/creator.DAmOKTvJ.js +0 -673
  1306. package/dist/agents/skills/node_modules/vitest/dist/chunks/date.Bq6ZW5rf.js +0 -73
  1307. package/dist/agents/skills/node_modules/vitest/dist/chunks/defaults.BOqNVLsY.js +0 -74
  1308. package/dist/agents/skills/node_modules/vitest/dist/chunks/env.D4Lgay0q.js +0 -8
  1309. package/dist/agents/skills/node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts +0 -29
  1310. package/dist/agents/skills/node_modules/vitest/dist/chunks/evaluatedModules.Dg1zASAC.js +0 -17
  1311. package/dist/agents/skills/node_modules/vitest/dist/chunks/evaluatedModules.d.BxJ5omdx.d.ts +0 -7
  1312. package/dist/agents/skills/node_modules/vitest/dist/chunks/git.Bm2pzPAa.js +0 -71
  1313. package/dist/agents/skills/node_modules/vitest/dist/chunks/global.d.B15mdLcR.d.ts +0 -99
  1314. package/dist/agents/skills/node_modules/vitest/dist/chunks/globals.DOayXfHP.js +0 -30
  1315. package/dist/agents/skills/node_modules/vitest/dist/chunks/index.6Qv1eEA6.js +0 -109
  1316. package/dist/agents/skills/node_modules/vitest/dist/chunks/index.C5r1PdPD.js +0 -231
  1317. package/dist/agents/skills/node_modules/vitest/dist/chunks/index.Chj8NDwU.js +0 -206
  1318. package/dist/agents/skills/node_modules/vitest/dist/chunks/index.CyBMJtT7.js +0 -727
  1319. package/dist/agents/skills/node_modules/vitest/dist/chunks/index.D3XRDfWc.js +0 -213
  1320. package/dist/agents/skills/node_modules/vitest/dist/chunks/index.D4KonVSU.js +0 -6343
  1321. package/dist/agents/skills/node_modules/vitest/dist/chunks/index.M8mOzt4Y.js +0 -3839
  1322. package/dist/agents/skills/node_modules/vitest/dist/chunks/index.Z5E_ObnR.js +0 -37
  1323. package/dist/agents/skills/node_modules/vitest/dist/chunks/init-forks._y3TW739.js +0 -41
  1324. package/dist/agents/skills/node_modules/vitest/dist/chunks/init-threads.DBO2kn-p.js +0 -18
  1325. package/dist/agents/skills/node_modules/vitest/dist/chunks/init.B6MLFIaN.js +0 -334
  1326. package/dist/agents/skills/node_modules/vitest/dist/chunks/inspector.CvyFGlXm.js +0 -53
  1327. package/dist/agents/skills/node_modules/vitest/dist/chunks/modules.BJuCwlRJ.js +0 -36
  1328. package/dist/agents/skills/node_modules/vitest/dist/chunks/node.Ce0vMQM7.js +0 -14
  1329. package/dist/agents/skills/node_modules/vitest/dist/chunks/plugin.d.CtqpEehP.d.ts +0 -38
  1330. package/dist/agents/skills/node_modules/vitest/dist/chunks/reporters.d.CWXNI2jG.d.ts +0 -3271
  1331. package/dist/agents/skills/node_modules/vitest/dist/chunks/rpc.BoxB0q7B.js +0 -76
  1332. package/dist/agents/skills/node_modules/vitest/dist/chunks/rpc.d.RH3apGEf.d.ts +0 -64
  1333. package/dist/agents/skills/node_modules/vitest/dist/chunks/setup-common.Cm-kSBVi.js +0 -60
  1334. package/dist/agents/skills/node_modules/vitest/dist/chunks/startModuleRunner.DEj0jb3e.js +0 -861
  1335. package/dist/agents/skills/node_modules/vitest/dist/chunks/suite.d.BJWk38HB.d.ts +0 -10
  1336. package/dist/agents/skills/node_modules/vitest/dist/chunks/test.B8ej_ZHS.js +0 -254
  1337. package/dist/agents/skills/node_modules/vitest/dist/chunks/traces.CCmnQaNT.js +0 -217
  1338. package/dist/agents/skills/node_modules/vitest/dist/chunks/traces.d.402V_yFI.d.ts +0 -18
  1339. package/dist/agents/skills/node_modules/vitest/dist/chunks/utils.DvEY5TfP.js +0 -52
  1340. package/dist/agents/skills/node_modules/vitest/dist/chunks/vi.2VT5v0um.js +0 -3919
  1341. package/dist/agents/skills/node_modules/vitest/dist/chunks/vm.D3epNOPZ.js +0 -744
  1342. package/dist/agents/skills/node_modules/vitest/dist/chunks/worker.d.Dyxm8DEL.d.ts +0 -255
  1343. package/dist/agents/skills/node_modules/vitest/dist/cli.js +0 -28
  1344. package/dist/agents/skills/node_modules/vitest/dist/config.cjs +0 -94
  1345. package/dist/agents/skills/node_modules/vitest/dist/config.d.ts +0 -104
  1346. package/dist/agents/skills/node_modules/vitest/dist/config.js +0 -15
  1347. package/dist/agents/skills/node_modules/vitest/dist/coverage.d.ts +0 -118
  1348. package/dist/agents/skills/node_modules/vitest/dist/coverage.js +0 -23
  1349. package/dist/agents/skills/node_modules/vitest/dist/environments.d.ts +0 -22
  1350. package/dist/agents/skills/node_modules/vitest/dist/environments.js +0 -3
  1351. package/dist/agents/skills/node_modules/vitest/dist/index.d.ts +0 -510
  1352. package/dist/agents/skills/node_modules/vitest/dist/index.js +0 -20
  1353. package/dist/agents/skills/node_modules/vitest/dist/mocker.d.ts +0 -1
  1354. package/dist/agents/skills/node_modules/vitest/dist/mocker.js +0 -1
  1355. package/dist/agents/skills/node_modules/vitest/dist/module-evaluator.d.ts +0 -124
  1356. package/dist/agents/skills/node_modules/vitest/dist/module-evaluator.js +0 -343
  1357. package/dist/agents/skills/node_modules/vitest/dist/module-runner.js +0 -17
  1358. package/dist/agents/skills/node_modules/vitest/dist/node.d.ts +0 -251
  1359. package/dist/agents/skills/node_modules/vitest/dist/node.js +0 -98
  1360. package/dist/agents/skills/node_modules/vitest/dist/path.js +0 -7
  1361. package/dist/agents/skills/node_modules/vitest/dist/reporters.d.ts +0 -27
  1362. package/dist/agents/skills/node_modules/vitest/dist/reporters.js +0 -24
  1363. package/dist/agents/skills/node_modules/vitest/dist/runners.d.ts +0 -50
  1364. package/dist/agents/skills/node_modules/vitest/dist/runners.js +0 -19
  1365. package/dist/agents/skills/node_modules/vitest/dist/snapshot.d.ts +0 -9
  1366. package/dist/agents/skills/node_modules/vitest/dist/snapshot.js +0 -4
  1367. package/dist/agents/skills/node_modules/vitest/dist/spy.js +0 -1
  1368. package/dist/agents/skills/node_modules/vitest/dist/suite.d.ts +0 -5
  1369. package/dist/agents/skills/node_modules/vitest/dist/suite.js +0 -6
  1370. package/dist/agents/skills/node_modules/vitest/dist/worker.d.ts +0 -32
  1371. package/dist/agents/skills/node_modules/vitest/dist/worker.js +0 -48
  1372. package/dist/agents/skills/node_modules/vitest/dist/workers/forks.js +0 -54
  1373. package/dist/agents/skills/node_modules/vitest/dist/workers/runVmTests.js +0 -95
  1374. package/dist/agents/skills/node_modules/vitest/dist/workers/threads.js +0 -55
  1375. package/dist/agents/skills/node_modules/vitest/dist/workers/vmForks.js +0 -36
  1376. package/dist/agents/skills/node_modules/vitest/dist/workers/vmThreads.js +0 -37
  1377. package/dist/agents/skills/node_modules/vitest/environments.d.ts +0 -1
  1378. package/dist/agents/skills/node_modules/vitest/globals.d.ts +0 -20
  1379. package/dist/agents/skills/node_modules/vitest/import-meta.d.ts +0 -5
  1380. package/dist/agents/skills/node_modules/vitest/importMeta.d.ts +0 -4
  1381. package/dist/agents/skills/node_modules/vitest/index.cjs +0 -5
  1382. package/dist/agents/skills/node_modules/vitest/index.d.cts +0 -1
  1383. package/dist/agents/skills/node_modules/vitest/jsdom.d.ts +0 -6
  1384. package/dist/agents/skills/node_modules/vitest/mocker.d.ts +0 -1
  1385. package/dist/agents/skills/node_modules/vitest/node.d.ts +0 -1
  1386. package/dist/agents/skills/node_modules/vitest/node_modules/.bin/vite +0 -17
  1387. package/dist/agents/skills/node_modules/vitest/node_modules/.bin/why-is-node-running +0 -17
  1388. package/dist/agents/skills/node_modules/vitest/optional-types.d.ts +0 -7
  1389. package/dist/agents/skills/node_modules/vitest/package.json +0 -224
  1390. package/dist/agents/skills/node_modules/vitest/reporters.d.ts +0 -1
  1391. package/dist/agents/skills/node_modules/vitest/runners.d.ts +0 -1
  1392. package/dist/agents/skills/node_modules/vitest/snapshot.d.ts +0 -1
  1393. package/dist/agents/skills/node_modules/vitest/suite.d.ts +0 -1
  1394. package/dist/agents/skills/node_modules/vitest/suppress-warnings.cjs +0 -21
  1395. package/dist/agents/skills/node_modules/vitest/vitest.mjs +0 -2
  1396. package/dist/agents/skills/node_modules/vitest/worker.d.ts +0 -1
  1397. package/dist/agents/skills/node_modules/yaml/LICENSE +0 -13
  1398. package/dist/agents/skills/node_modules/yaml/README.md +0 -172
  1399. package/dist/agents/skills/node_modules/yaml/bin.mjs +0 -11
  1400. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/compose-collection.js +0 -88
  1401. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/compose-doc.js +0 -43
  1402. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/compose-node.js +0 -102
  1403. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/compose-scalar.js +0 -86
  1404. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/composer.js +0 -217
  1405. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/resolve-block-map.js +0 -115
  1406. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +0 -198
  1407. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +0 -49
  1408. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/resolve-end.js +0 -37
  1409. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +0 -207
  1410. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +0 -223
  1411. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/resolve-props.js +0 -146
  1412. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/util-contains-newline.js +0 -34
  1413. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +0 -26
  1414. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +0 -15
  1415. package/dist/agents/skills/node_modules/yaml/browser/dist/compose/util-map-includes.js +0 -13
  1416. package/dist/agents/skills/node_modules/yaml/browser/dist/doc/Document.js +0 -335
  1417. package/dist/agents/skills/node_modules/yaml/browser/dist/doc/anchors.js +0 -71
  1418. package/dist/agents/skills/node_modules/yaml/browser/dist/doc/applyReviver.js +0 -55
  1419. package/dist/agents/skills/node_modules/yaml/browser/dist/doc/createNode.js +0 -88
  1420. package/dist/agents/skills/node_modules/yaml/browser/dist/doc/directives.js +0 -176
  1421. package/dist/agents/skills/node_modules/yaml/browser/dist/errors.js +0 -57
  1422. package/dist/agents/skills/node_modules/yaml/browser/dist/index.js +0 -17
  1423. package/dist/agents/skills/node_modules/yaml/browser/dist/log.js +0 -11
  1424. package/dist/agents/skills/node_modules/yaml/browser/dist/nodes/Alias.js +0 -114
  1425. package/dist/agents/skills/node_modules/yaml/browser/dist/nodes/Collection.js +0 -147
  1426. package/dist/agents/skills/node_modules/yaml/browser/dist/nodes/Node.js +0 -38
  1427. package/dist/agents/skills/node_modules/yaml/browser/dist/nodes/Pair.js +0 -36
  1428. package/dist/agents/skills/node_modules/yaml/browser/dist/nodes/Scalar.js +0 -24
  1429. package/dist/agents/skills/node_modules/yaml/browser/dist/nodes/YAMLMap.js +0 -144
  1430. package/dist/agents/skills/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +0 -113
  1431. package/dist/agents/skills/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +0 -63
  1432. package/dist/agents/skills/node_modules/yaml/browser/dist/nodes/identity.js +0 -36
  1433. package/dist/agents/skills/node_modules/yaml/browser/dist/nodes/toJS.js +0 -37
  1434. package/dist/agents/skills/node_modules/yaml/browser/dist/parse/cst-scalar.js +0 -214
  1435. package/dist/agents/skills/node_modules/yaml/browser/dist/parse/cst-stringify.js +0 -61
  1436. package/dist/agents/skills/node_modules/yaml/browser/dist/parse/cst-visit.js +0 -97
  1437. package/dist/agents/skills/node_modules/yaml/browser/dist/parse/cst.js +0 -98
  1438. package/dist/agents/skills/node_modules/yaml/browser/dist/parse/lexer.js +0 -717
  1439. package/dist/agents/skills/node_modules/yaml/browser/dist/parse/line-counter.js +0 -39
  1440. package/dist/agents/skills/node_modules/yaml/browser/dist/parse/parser.js +0 -967
  1441. package/dist/agents/skills/node_modules/yaml/browser/dist/public-api.js +0 -102
  1442. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/Schema.js +0 -37
  1443. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/common/map.js +0 -17
  1444. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/common/null.js +0 -15
  1445. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/common/seq.js +0 -17
  1446. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/common/string.js +0 -14
  1447. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/core/bool.js +0 -19
  1448. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/core/float.js +0 -43
  1449. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/core/int.js +0 -38
  1450. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/core/schema.js +0 -23
  1451. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/json/schema.js +0 -62
  1452. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/tags.js +0 -96
  1453. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +0 -58
  1454. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +0 -26
  1455. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +0 -46
  1456. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +0 -71
  1457. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +0 -64
  1458. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +0 -74
  1459. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +0 -78
  1460. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +0 -39
  1461. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +0 -93
  1462. package/dist/agents/skills/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +0 -101
  1463. package/dist/agents/skills/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +0 -146
  1464. package/dist/agents/skills/node_modules/yaml/browser/dist/stringify/stringify.js +0 -128
  1465. package/dist/agents/skills/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +0 -143
  1466. package/dist/agents/skills/node_modules/yaml/browser/dist/stringify/stringifyComment.js +0 -20
  1467. package/dist/agents/skills/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +0 -85
  1468. package/dist/agents/skills/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +0 -24
  1469. package/dist/agents/skills/node_modules/yaml/browser/dist/stringify/stringifyPair.js +0 -150
  1470. package/dist/agents/skills/node_modules/yaml/browser/dist/stringify/stringifyString.js +0 -336
  1471. package/dist/agents/skills/node_modules/yaml/browser/dist/util.js +0 -11
  1472. package/dist/agents/skills/node_modules/yaml/browser/dist/visit.js +0 -233
  1473. package/dist/agents/skills/node_modules/yaml/browser/index.js +0 -5
  1474. package/dist/agents/skills/node_modules/yaml/browser/package.json +0 -3
  1475. package/dist/agents/skills/node_modules/yaml/dist/cli.d.ts +0 -8
  1476. package/dist/agents/skills/node_modules/yaml/dist/cli.mjs +0 -201
  1477. package/dist/agents/skills/node_modules/yaml/dist/compose/compose-collection.d.ts +0 -11
  1478. package/dist/agents/skills/node_modules/yaml/dist/compose/compose-collection.js +0 -90
  1479. package/dist/agents/skills/node_modules/yaml/dist/compose/compose-doc.d.ts +0 -7
  1480. package/dist/agents/skills/node_modules/yaml/dist/compose/compose-doc.js +0 -45
  1481. package/dist/agents/skills/node_modules/yaml/dist/compose/compose-node.d.ts +0 -29
  1482. package/dist/agents/skills/node_modules/yaml/dist/compose/compose-node.js +0 -105
  1483. package/dist/agents/skills/node_modules/yaml/dist/compose/compose-scalar.d.ts +0 -5
  1484. package/dist/agents/skills/node_modules/yaml/dist/compose/compose-scalar.js +0 -88
  1485. package/dist/agents/skills/node_modules/yaml/dist/compose/composer.d.ts +0 -63
  1486. package/dist/agents/skills/node_modules/yaml/dist/compose/composer.js +0 -222
  1487. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-block-map.d.ts +0 -6
  1488. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-block-map.js +0 -117
  1489. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +0 -11
  1490. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-block-scalar.js +0 -200
  1491. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +0 -6
  1492. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-block-seq.js +0 -51
  1493. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-end.d.ts +0 -6
  1494. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-end.js +0 -39
  1495. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +0 -7
  1496. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-flow-collection.js +0 -209
  1497. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +0 -10
  1498. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-flow-scalar.js +0 -225
  1499. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-props.d.ts +0 -23
  1500. package/dist/agents/skills/node_modules/yaml/dist/compose/resolve-props.js +0 -148
  1501. package/dist/agents/skills/node_modules/yaml/dist/compose/util-contains-newline.d.ts +0 -2
  1502. package/dist/agents/skills/node_modules/yaml/dist/compose/util-contains-newline.js +0 -36
  1503. package/dist/agents/skills/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +0 -2
  1504. package/dist/agents/skills/node_modules/yaml/dist/compose/util-empty-scalar-position.js +0 -28
  1505. package/dist/agents/skills/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +0 -3
  1506. package/dist/agents/skills/node_modules/yaml/dist/compose/util-flow-indent-check.js +0 -17
  1507. package/dist/agents/skills/node_modules/yaml/dist/compose/util-map-includes.d.ts +0 -4
  1508. package/dist/agents/skills/node_modules/yaml/dist/compose/util-map-includes.js +0 -15
  1509. package/dist/agents/skills/node_modules/yaml/dist/doc/Document.d.ts +0 -141
  1510. package/dist/agents/skills/node_modules/yaml/dist/doc/Document.js +0 -337
  1511. package/dist/agents/skills/node_modules/yaml/dist/doc/anchors.d.ts +0 -24
  1512. package/dist/agents/skills/node_modules/yaml/dist/doc/anchors.js +0 -76
  1513. package/dist/agents/skills/node_modules/yaml/dist/doc/applyReviver.d.ts +0 -9
  1514. package/dist/agents/skills/node_modules/yaml/dist/doc/applyReviver.js +0 -57
  1515. package/dist/agents/skills/node_modules/yaml/dist/doc/createNode.d.ts +0 -17
  1516. package/dist/agents/skills/node_modules/yaml/dist/doc/createNode.js +0 -90
  1517. package/dist/agents/skills/node_modules/yaml/dist/doc/directives.d.ts +0 -49
  1518. package/dist/agents/skills/node_modules/yaml/dist/doc/directives.js +0 -178
  1519. package/dist/agents/skills/node_modules/yaml/dist/errors.d.ts +0 -21
  1520. package/dist/agents/skills/node_modules/yaml/dist/errors.js +0 -62
  1521. package/dist/agents/skills/node_modules/yaml/dist/index.d.ts +0 -25
  1522. package/dist/agents/skills/node_modules/yaml/dist/index.js +0 -50
  1523. package/dist/agents/skills/node_modules/yaml/dist/log.d.ts +0 -3
  1524. package/dist/agents/skills/node_modules/yaml/dist/log.js +0 -19
  1525. package/dist/agents/skills/node_modules/yaml/dist/nodes/Alias.d.ts +0 -29
  1526. package/dist/agents/skills/node_modules/yaml/dist/nodes/Alias.js +0 -116
  1527. package/dist/agents/skills/node_modules/yaml/dist/nodes/Collection.d.ts +0 -73
  1528. package/dist/agents/skills/node_modules/yaml/dist/nodes/Collection.js +0 -151
  1529. package/dist/agents/skills/node_modules/yaml/dist/nodes/Node.d.ts +0 -53
  1530. package/dist/agents/skills/node_modules/yaml/dist/nodes/Node.js +0 -40
  1531. package/dist/agents/skills/node_modules/yaml/dist/nodes/Pair.d.ts +0 -22
  1532. package/dist/agents/skills/node_modules/yaml/dist/nodes/Pair.js +0 -39
  1533. package/dist/agents/skills/node_modules/yaml/dist/nodes/Scalar.d.ts +0 -43
  1534. package/dist/agents/skills/node_modules/yaml/dist/nodes/Scalar.js +0 -27
  1535. package/dist/agents/skills/node_modules/yaml/dist/nodes/YAMLMap.d.ts +0 -53
  1536. package/dist/agents/skills/node_modules/yaml/dist/nodes/YAMLMap.js +0 -147
  1537. package/dist/agents/skills/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +0 -60
  1538. package/dist/agents/skills/node_modules/yaml/dist/nodes/YAMLSeq.js +0 -115
  1539. package/dist/agents/skills/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +0 -4
  1540. package/dist/agents/skills/node_modules/yaml/dist/nodes/addPairToJSMap.js +0 -65
  1541. package/dist/agents/skills/node_modules/yaml/dist/nodes/identity.d.ts +0 -23
  1542. package/dist/agents/skills/node_modules/yaml/dist/nodes/identity.js +0 -53
  1543. package/dist/agents/skills/node_modules/yaml/dist/nodes/toJS.d.ts +0 -29
  1544. package/dist/agents/skills/node_modules/yaml/dist/nodes/toJS.js +0 -39
  1545. package/dist/agents/skills/node_modules/yaml/dist/options.d.ts +0 -344
  1546. package/dist/agents/skills/node_modules/yaml/dist/parse/cst-scalar.d.ts +0 -64
  1547. package/dist/agents/skills/node_modules/yaml/dist/parse/cst-scalar.js +0 -218
  1548. package/dist/agents/skills/node_modules/yaml/dist/parse/cst-stringify.d.ts +0 -8
  1549. package/dist/agents/skills/node_modules/yaml/dist/parse/cst-stringify.js +0 -63
  1550. package/dist/agents/skills/node_modules/yaml/dist/parse/cst-visit.d.ts +0 -39
  1551. package/dist/agents/skills/node_modules/yaml/dist/parse/cst-visit.js +0 -99
  1552. package/dist/agents/skills/node_modules/yaml/dist/parse/cst.d.ts +0 -109
  1553. package/dist/agents/skills/node_modules/yaml/dist/parse/cst.js +0 -112
  1554. package/dist/agents/skills/node_modules/yaml/dist/parse/lexer.d.ts +0 -87
  1555. package/dist/agents/skills/node_modules/yaml/dist/parse/lexer.js +0 -719
  1556. package/dist/agents/skills/node_modules/yaml/dist/parse/line-counter.d.ts +0 -22
  1557. package/dist/agents/skills/node_modules/yaml/dist/parse/line-counter.js +0 -41
  1558. package/dist/agents/skills/node_modules/yaml/dist/parse/parser.d.ts +0 -84
  1559. package/dist/agents/skills/node_modules/yaml/dist/parse/parser.js +0 -972
  1560. package/dist/agents/skills/node_modules/yaml/dist/public-api.d.ts +0 -44
  1561. package/dist/agents/skills/node_modules/yaml/dist/public-api.js +0 -107
  1562. package/dist/agents/skills/node_modules/yaml/dist/schema/Schema.d.ts +0 -17
  1563. package/dist/agents/skills/node_modules/yaml/dist/schema/Schema.js +0 -39
  1564. package/dist/agents/skills/node_modules/yaml/dist/schema/common/map.d.ts +0 -2
  1565. package/dist/agents/skills/node_modules/yaml/dist/schema/common/map.js +0 -19
  1566. package/dist/agents/skills/node_modules/yaml/dist/schema/common/null.d.ts +0 -4
  1567. package/dist/agents/skills/node_modules/yaml/dist/schema/common/null.js +0 -17
  1568. package/dist/agents/skills/node_modules/yaml/dist/schema/common/seq.d.ts +0 -2
  1569. package/dist/agents/skills/node_modules/yaml/dist/schema/common/seq.js +0 -19
  1570. package/dist/agents/skills/node_modules/yaml/dist/schema/common/string.d.ts +0 -2
  1571. package/dist/agents/skills/node_modules/yaml/dist/schema/common/string.js +0 -16
  1572. package/dist/agents/skills/node_modules/yaml/dist/schema/core/bool.d.ts +0 -4
  1573. package/dist/agents/skills/node_modules/yaml/dist/schema/core/bool.js +0 -21
  1574. package/dist/agents/skills/node_modules/yaml/dist/schema/core/float.d.ts +0 -4
  1575. package/dist/agents/skills/node_modules/yaml/dist/schema/core/float.js +0 -47
  1576. package/dist/agents/skills/node_modules/yaml/dist/schema/core/int.d.ts +0 -4
  1577. package/dist/agents/skills/node_modules/yaml/dist/schema/core/int.js +0 -42
  1578. package/dist/agents/skills/node_modules/yaml/dist/schema/core/schema.d.ts +0 -1
  1579. package/dist/agents/skills/node_modules/yaml/dist/schema/core/schema.js +0 -25
  1580. package/dist/agents/skills/node_modules/yaml/dist/schema/json/schema.d.ts +0 -2
  1581. package/dist/agents/skills/node_modules/yaml/dist/schema/json/schema.js +0 -64
  1582. package/dist/agents/skills/node_modules/yaml/dist/schema/json-schema.d.ts +0 -69
  1583. package/dist/agents/skills/node_modules/yaml/dist/schema/tags.d.ts +0 -48
  1584. package/dist/agents/skills/node_modules/yaml/dist/schema/tags.js +0 -99
  1585. package/dist/agents/skills/node_modules/yaml/dist/schema/types.d.ts +0 -92
  1586. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +0 -2
  1587. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/binary.js +0 -70
  1588. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +0 -7
  1589. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/bool.js +0 -29
  1590. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +0 -4
  1591. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/float.js +0 -50
  1592. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +0 -5
  1593. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/int.js +0 -76
  1594. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +0 -9
  1595. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/merge.js +0 -68
  1596. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +0 -22
  1597. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/omap.js +0 -77
  1598. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +0 -10
  1599. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +0 -82
  1600. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +0 -1
  1601. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/schema.js +0 -41
  1602. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +0 -28
  1603. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/set.js +0 -96
  1604. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +0 -6
  1605. package/dist/agents/skills/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +0 -105
  1606. package/dist/agents/skills/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +0 -34
  1607. package/dist/agents/skills/node_modules/yaml/dist/stringify/foldFlowLines.js +0 -151
  1608. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringify.d.ts +0 -21
  1609. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringify.js +0 -131
  1610. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +0 -17
  1611. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringifyCollection.js +0 -145
  1612. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringifyComment.d.ts +0 -10
  1613. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringifyComment.js +0 -24
  1614. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +0 -4
  1615. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringifyDocument.js +0 -87
  1616. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +0 -2
  1617. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringifyNumber.js +0 -26
  1618. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringifyPair.d.ts +0 -3
  1619. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringifyPair.js +0 -152
  1620. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringifyString.d.ts +0 -9
  1621. package/dist/agents/skills/node_modules/yaml/dist/stringify/stringifyString.js +0 -338
  1622. package/dist/agents/skills/node_modules/yaml/dist/test-events.d.ts +0 -4
  1623. package/dist/agents/skills/node_modules/yaml/dist/test-events.js +0 -134
  1624. package/dist/agents/skills/node_modules/yaml/dist/util.d.ts +0 -16
  1625. package/dist/agents/skills/node_modules/yaml/dist/util.js +0 -28
  1626. package/dist/agents/skills/node_modules/yaml/dist/visit.d.ts +0 -102
  1627. package/dist/agents/skills/node_modules/yaml/dist/visit.js +0 -236
  1628. package/dist/agents/skills/node_modules/yaml/node_modules/.bin/yaml +0 -17
  1629. package/dist/agents/skills/node_modules/yaml/package.json +0 -97
  1630. package/dist/agents/skills/node_modules/yaml/util.js +0 -2
  1631. package/dist/agents/skills/node_modules/zod/LICENSE +0 -21
  1632. package/dist/agents/skills/node_modules/zod/README.md +0 -208
  1633. package/dist/agents/skills/node_modules/zod/index.cjs +0 -33
  1634. package/dist/agents/skills/node_modules/zod/index.d.cts +0 -4
  1635. package/dist/agents/skills/node_modules/zod/index.d.ts +0 -4
  1636. package/dist/agents/skills/node_modules/zod/index.js +0 -4
  1637. package/dist/agents/skills/node_modules/zod/package.json +0 -118
  1638. package/dist/agents/skills/node_modules/zod/src/index.ts +0 -4
  1639. package/dist/agents/skills/node_modules/zod/src/v3/ZodError.ts +0 -330
  1640. package/dist/agents/skills/node_modules/zod/src/v3/benchmarks/datetime.ts +0 -58
  1641. package/dist/agents/skills/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +0 -80
  1642. package/dist/agents/skills/node_modules/zod/src/v3/benchmarks/index.ts +0 -59
  1643. package/dist/agents/skills/node_modules/zod/src/v3/benchmarks/ipv4.ts +0 -57
  1644. package/dist/agents/skills/node_modules/zod/src/v3/benchmarks/object.ts +0 -69
  1645. package/dist/agents/skills/node_modules/zod/src/v3/benchmarks/primitives.ts +0 -162
  1646. package/dist/agents/skills/node_modules/zod/src/v3/benchmarks/realworld.ts +0 -63
  1647. package/dist/agents/skills/node_modules/zod/src/v3/benchmarks/string.ts +0 -55
  1648. package/dist/agents/skills/node_modules/zod/src/v3/benchmarks/union.ts +0 -80
  1649. package/dist/agents/skills/node_modules/zod/src/v3/errors.ts +0 -13
  1650. package/dist/agents/skills/node_modules/zod/src/v3/external.ts +0 -6
  1651. package/dist/agents/skills/node_modules/zod/src/v3/helpers/enumUtil.ts +0 -17
  1652. package/dist/agents/skills/node_modules/zod/src/v3/helpers/errorUtil.ts +0 -8
  1653. package/dist/agents/skills/node_modules/zod/src/v3/helpers/parseUtil.ts +0 -176
  1654. package/dist/agents/skills/node_modules/zod/src/v3/helpers/partialUtil.ts +0 -34
  1655. package/dist/agents/skills/node_modules/zod/src/v3/helpers/typeAliases.ts +0 -2
  1656. package/dist/agents/skills/node_modules/zod/src/v3/helpers/util.ts +0 -224
  1657. package/dist/agents/skills/node_modules/zod/src/v3/index.ts +0 -4
  1658. package/dist/agents/skills/node_modules/zod/src/v3/locales/en.ts +0 -124
  1659. package/dist/agents/skills/node_modules/zod/src/v3/standard-schema.ts +0 -113
  1660. package/dist/agents/skills/node_modules/zod/src/v3/tests/Mocker.ts +0 -54
  1661. package/dist/agents/skills/node_modules/zod/src/v3/tests/all-errors.test.ts +0 -157
  1662. package/dist/agents/skills/node_modules/zod/src/v3/tests/anyunknown.test.ts +0 -28
  1663. package/dist/agents/skills/node_modules/zod/src/v3/tests/array.test.ts +0 -71
  1664. package/dist/agents/skills/node_modules/zod/src/v3/tests/async-parsing.test.ts +0 -388
  1665. package/dist/agents/skills/node_modules/zod/src/v3/tests/async-refinements.test.ts +0 -46
  1666. package/dist/agents/skills/node_modules/zod/src/v3/tests/base.test.ts +0 -29
  1667. package/dist/agents/skills/node_modules/zod/src/v3/tests/bigint.test.ts +0 -55
  1668. package/dist/agents/skills/node_modules/zod/src/v3/tests/branded.test.ts +0 -53
  1669. package/dist/agents/skills/node_modules/zod/src/v3/tests/catch.test.ts +0 -220
  1670. package/dist/agents/skills/node_modules/zod/src/v3/tests/coerce.test.ts +0 -133
  1671. package/dist/agents/skills/node_modules/zod/src/v3/tests/complex.test.ts +0 -56
  1672. package/dist/agents/skills/node_modules/zod/src/v3/tests/custom.test.ts +0 -31
  1673. package/dist/agents/skills/node_modules/zod/src/v3/tests/date.test.ts +0 -32
  1674. package/dist/agents/skills/node_modules/zod/src/v3/tests/deepmasking.test.ts +0 -186
  1675. package/dist/agents/skills/node_modules/zod/src/v3/tests/default.test.ts +0 -112
  1676. package/dist/agents/skills/node_modules/zod/src/v3/tests/description.test.ts +0 -33
  1677. package/dist/agents/skills/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +0 -315
  1678. package/dist/agents/skills/node_modules/zod/src/v3/tests/enum.test.ts +0 -80
  1679. package/dist/agents/skills/node_modules/zod/src/v3/tests/error.test.ts +0 -551
  1680. package/dist/agents/skills/node_modules/zod/src/v3/tests/firstparty.test.ts +0 -87
  1681. package/dist/agents/skills/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +0 -21
  1682. package/dist/agents/skills/node_modules/zod/src/v3/tests/function.test.ts +0 -257
  1683. package/dist/agents/skills/node_modules/zod/src/v3/tests/generics.test.ts +0 -48
  1684. package/dist/agents/skills/node_modules/zod/src/v3/tests/instanceof.test.ts +0 -37
  1685. package/dist/agents/skills/node_modules/zod/src/v3/tests/intersection.test.ts +0 -110
  1686. package/dist/agents/skills/node_modules/zod/src/v3/tests/language-server.source.ts +0 -76
  1687. package/dist/agents/skills/node_modules/zod/src/v3/tests/language-server.test.ts +0 -207
  1688. package/dist/agents/skills/node_modules/zod/src/v3/tests/literal.test.ts +0 -36
  1689. package/dist/agents/skills/node_modules/zod/src/v3/tests/map.test.ts +0 -110
  1690. package/dist/agents/skills/node_modules/zod/src/v3/tests/masking.test.ts +0 -4
  1691. package/dist/agents/skills/node_modules/zod/src/v3/tests/mocker.test.ts +0 -19
  1692. package/dist/agents/skills/node_modules/zod/src/v3/tests/nan.test.ts +0 -21
  1693. package/dist/agents/skills/node_modules/zod/src/v3/tests/nativeEnum.test.ts +0 -87
  1694. package/dist/agents/skills/node_modules/zod/src/v3/tests/nullable.test.ts +0 -42
  1695. package/dist/agents/skills/node_modules/zod/src/v3/tests/number.test.ts +0 -176
  1696. package/dist/agents/skills/node_modules/zod/src/v3/tests/object-augmentation.test.ts +0 -29
  1697. package/dist/agents/skills/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +0 -29
  1698. package/dist/agents/skills/node_modules/zod/src/v3/tests/object.test.ts +0 -434
  1699. package/dist/agents/skills/node_modules/zod/src/v3/tests/optional.test.ts +0 -42
  1700. package/dist/agents/skills/node_modules/zod/src/v3/tests/parseUtil.test.ts +0 -23
  1701. package/dist/agents/skills/node_modules/zod/src/v3/tests/parser.test.ts +0 -41
  1702. package/dist/agents/skills/node_modules/zod/src/v3/tests/partials.test.ts +0 -243
  1703. package/dist/agents/skills/node_modules/zod/src/v3/tests/pickomit.test.ts +0 -111
  1704. package/dist/agents/skills/node_modules/zod/src/v3/tests/pipeline.test.ts +0 -29
  1705. package/dist/agents/skills/node_modules/zod/src/v3/tests/preprocess.test.ts +0 -186
  1706. package/dist/agents/skills/node_modules/zod/src/v3/tests/primitive.test.ts +0 -440
  1707. package/dist/agents/skills/node_modules/zod/src/v3/tests/promise.test.ts +0 -90
  1708. package/dist/agents/skills/node_modules/zod/src/v3/tests/readonly.test.ts +0 -194
  1709. package/dist/agents/skills/node_modules/zod/src/v3/tests/record.test.ts +0 -171
  1710. package/dist/agents/skills/node_modules/zod/src/v3/tests/recursive.test.ts +0 -197
  1711. package/dist/agents/skills/node_modules/zod/src/v3/tests/refine.test.ts +0 -313
  1712. package/dist/agents/skills/node_modules/zod/src/v3/tests/safeparse.test.ts +0 -27
  1713. package/dist/agents/skills/node_modules/zod/src/v3/tests/set.test.ts +0 -142
  1714. package/dist/agents/skills/node_modules/zod/src/v3/tests/standard-schema.test.ts +0 -83
  1715. package/dist/agents/skills/node_modules/zod/src/v3/tests/string.test.ts +0 -916
  1716. package/dist/agents/skills/node_modules/zod/src/v3/tests/transformer.test.ts +0 -233
  1717. package/dist/agents/skills/node_modules/zod/src/v3/tests/tuple.test.ts +0 -90
  1718. package/dist/agents/skills/node_modules/zod/src/v3/tests/unions.test.ts +0 -57
  1719. package/dist/agents/skills/node_modules/zod/src/v3/tests/validations.test.ts +0 -133
  1720. package/dist/agents/skills/node_modules/zod/src/v3/tests/void.test.ts +0 -15
  1721. package/dist/agents/skills/node_modules/zod/src/v3/types.ts +0 -5136
  1722. package/dist/agents/skills/node_modules/zod/src/v4/classic/checks.ts +0 -30
  1723. package/dist/agents/skills/node_modules/zod/src/v4/classic/coerce.ts +0 -27
  1724. package/dist/agents/skills/node_modules/zod/src/v4/classic/compat.ts +0 -66
  1725. package/dist/agents/skills/node_modules/zod/src/v4/classic/errors.ts +0 -75
  1726. package/dist/agents/skills/node_modules/zod/src/v4/classic/external.ts +0 -50
  1727. package/dist/agents/skills/node_modules/zod/src/v4/classic/index.ts +0 -5
  1728. package/dist/agents/skills/node_modules/zod/src/v4/classic/iso.ts +0 -90
  1729. package/dist/agents/skills/node_modules/zod/src/v4/classic/parse.ts +0 -33
  1730. package/dist/agents/skills/node_modules/zod/src/v4/classic/schemas.ts +0 -2054
  1731. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +0 -26
  1732. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/array.test.ts +0 -264
  1733. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/assignability.test.ts +0 -210
  1734. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +0 -381
  1735. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +0 -68
  1736. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/base.test.ts +0 -7
  1737. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/bigint.test.ts +0 -54
  1738. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/brand.test.ts +0 -63
  1739. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/catch.test.ts +0 -252
  1740. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +0 -20
  1741. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/coerce.test.ts +0 -160
  1742. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/continuability.test.ts +0 -352
  1743. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/custom.test.ts +0 -40
  1744. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/date.test.ts +0 -31
  1745. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/datetime.test.ts +0 -296
  1746. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/default.test.ts +0 -313
  1747. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/description.test.ts +0 -32
  1748. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +0 -619
  1749. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/enum.test.ts +0 -285
  1750. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +0 -527
  1751. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/error.test.ts +0 -711
  1752. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/file.test.ts +0 -91
  1753. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +0 -175
  1754. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/function.test.ts +0 -268
  1755. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/generics.test.ts +0 -72
  1756. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/index.test.ts +0 -829
  1757. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +0 -34
  1758. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/intersection.test.ts +0 -171
  1759. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/json.test.ts +0 -108
  1760. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/lazy.test.ts +0 -227
  1761. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/literal.test.ts +0 -92
  1762. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/map.test.ts +0 -196
  1763. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/nan.test.ts +0 -21
  1764. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +0 -168
  1765. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +0 -86
  1766. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/nullable.test.ts +0 -22
  1767. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/number.test.ts +0 -247
  1768. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/object.test.ts +0 -563
  1769. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/optional.test.ts +0 -123
  1770. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/partial.test.ts +0 -147
  1771. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +0 -127
  1772. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/pipe.test.ts +0 -81
  1773. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/prefault.test.ts +0 -37
  1774. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +0 -298
  1775. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/primitive.test.ts +0 -175
  1776. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/promise.test.ts +0 -81
  1777. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +0 -23
  1778. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/readonly.test.ts +0 -252
  1779. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/record.test.ts +0 -342
  1780. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +0 -356
  1781. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/refine.test.ts +0 -532
  1782. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/registries.test.ts +0 -204
  1783. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/set.test.ts +0 -179
  1784. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +0 -57
  1785. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +0 -109
  1786. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/string.test.ts +0 -881
  1787. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +0 -66
  1788. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +0 -758
  1789. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +0 -2314
  1790. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/transform.test.ts +0 -250
  1791. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/tuple.test.ts +0 -163
  1792. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/union.test.ts +0 -94
  1793. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/validations.test.ts +0 -283
  1794. package/dist/agents/skills/node_modules/zod/src/v4/classic/tests/void.test.ts +0 -12
  1795. package/dist/agents/skills/node_modules/zod/src/v4/core/api.ts +0 -1594
  1796. package/dist/agents/skills/node_modules/zod/src/v4/core/checks.ts +0 -1283
  1797. package/dist/agents/skills/node_modules/zod/src/v4/core/config.ts +0 -15
  1798. package/dist/agents/skills/node_modules/zod/src/v4/core/core.ts +0 -134
  1799. package/dist/agents/skills/node_modules/zod/src/v4/core/doc.ts +0 -44
  1800. package/dist/agents/skills/node_modules/zod/src/v4/core/errors.ts +0 -424
  1801. package/dist/agents/skills/node_modules/zod/src/v4/core/function.ts +0 -176
  1802. package/dist/agents/skills/node_modules/zod/src/v4/core/index.ts +0 -15
  1803. package/dist/agents/skills/node_modules/zod/src/v4/core/json-schema.ts +0 -143
  1804. package/dist/agents/skills/node_modules/zod/src/v4/core/parse.ts +0 -94
  1805. package/dist/agents/skills/node_modules/zod/src/v4/core/regexes.ts +0 -135
  1806. package/dist/agents/skills/node_modules/zod/src/v4/core/registries.ts +0 -96
  1807. package/dist/agents/skills/node_modules/zod/src/v4/core/schemas.ts +0 -3842
  1808. package/dist/agents/skills/node_modules/zod/src/v4/core/standard-schema.ts +0 -64
  1809. package/dist/agents/skills/node_modules/zod/src/v4/core/tests/index.test.ts +0 -46
  1810. package/dist/agents/skills/node_modules/zod/src/v4/core/tests/locales/be.test.ts +0 -124
  1811. package/dist/agents/skills/node_modules/zod/src/v4/core/tests/locales/en.test.ts +0 -22
  1812. package/dist/agents/skills/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +0 -128
  1813. package/dist/agents/skills/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +0 -69
  1814. package/dist/agents/skills/node_modules/zod/src/v4/core/to-json-schema.ts +0 -977
  1815. package/dist/agents/skills/node_modules/zod/src/v4/core/util.ts +0 -775
  1816. package/dist/agents/skills/node_modules/zod/src/v4/core/versions.ts +0 -5
  1817. package/dist/agents/skills/node_modules/zod/src/v4/core/zsf.ts +0 -323
  1818. package/dist/agents/skills/node_modules/zod/src/v4/index.ts +0 -4
  1819. package/dist/agents/skills/node_modules/zod/src/v4/locales/ar.ts +0 -125
  1820. package/dist/agents/skills/node_modules/zod/src/v4/locales/az.ts +0 -121
  1821. package/dist/agents/skills/node_modules/zod/src/v4/locales/be.ts +0 -184
  1822. package/dist/agents/skills/node_modules/zod/src/v4/locales/ca.ts +0 -127
  1823. package/dist/agents/skills/node_modules/zod/src/v4/locales/cs.ts +0 -142
  1824. package/dist/agents/skills/node_modules/zod/src/v4/locales/de.ts +0 -124
  1825. package/dist/agents/skills/node_modules/zod/src/v4/locales/en.ts +0 -127
  1826. package/dist/agents/skills/node_modules/zod/src/v4/locales/eo.ts +0 -125
  1827. package/dist/agents/skills/node_modules/zod/src/v4/locales/es.ts +0 -125
  1828. package/dist/agents/skills/node_modules/zod/src/v4/locales/fa.ts +0 -134
  1829. package/dist/agents/skills/node_modules/zod/src/v4/locales/fi.ts +0 -131
  1830. package/dist/agents/skills/node_modules/zod/src/v4/locales/fr-CA.ts +0 -126
  1831. package/dist/agents/skills/node_modules/zod/src/v4/locales/fr.ts +0 -124
  1832. package/dist/agents/skills/node_modules/zod/src/v4/locales/he.ts +0 -125
  1833. package/dist/agents/skills/node_modules/zod/src/v4/locales/hu.ts +0 -126
  1834. package/dist/agents/skills/node_modules/zod/src/v4/locales/id.ts +0 -125
  1835. package/dist/agents/skills/node_modules/zod/src/v4/locales/index.ts +0 -39
  1836. package/dist/agents/skills/node_modules/zod/src/v4/locales/it.ts +0 -125
  1837. package/dist/agents/skills/node_modules/zod/src/v4/locales/ja.ts +0 -122
  1838. package/dist/agents/skills/node_modules/zod/src/v4/locales/kh.ts +0 -126
  1839. package/dist/agents/skills/node_modules/zod/src/v4/locales/ko.ts +0 -131
  1840. package/dist/agents/skills/node_modules/zod/src/v4/locales/mk.ts +0 -127
  1841. package/dist/agents/skills/node_modules/zod/src/v4/locales/ms.ts +0 -124
  1842. package/dist/agents/skills/node_modules/zod/src/v4/locales/nl.ts +0 -126
  1843. package/dist/agents/skills/node_modules/zod/src/v4/locales/no.ts +0 -124
  1844. package/dist/agents/skills/node_modules/zod/src/v4/locales/ota.ts +0 -125
  1845. package/dist/agents/skills/node_modules/zod/src/v4/locales/pl.ts +0 -126
  1846. package/dist/agents/skills/node_modules/zod/src/v4/locales/ps.ts +0 -133
  1847. package/dist/agents/skills/node_modules/zod/src/v4/locales/pt.ts +0 -123
  1848. package/dist/agents/skills/node_modules/zod/src/v4/locales/ru.ts +0 -184
  1849. package/dist/agents/skills/node_modules/zod/src/v4/locales/sl.ts +0 -126
  1850. package/dist/agents/skills/node_modules/zod/src/v4/locales/sv.ts +0 -127
  1851. package/dist/agents/skills/node_modules/zod/src/v4/locales/ta.ts +0 -125
  1852. package/dist/agents/skills/node_modules/zod/src/v4/locales/th.ts +0 -126
  1853. package/dist/agents/skills/node_modules/zod/src/v4/locales/tr.ts +0 -121
  1854. package/dist/agents/skills/node_modules/zod/src/v4/locales/ua.ts +0 -126
  1855. package/dist/agents/skills/node_modules/zod/src/v4/locales/ur.ts +0 -126
  1856. package/dist/agents/skills/node_modules/zod/src/v4/locales/vi.ts +0 -125
  1857. package/dist/agents/skills/node_modules/zod/src/v4/locales/zh-CN.ts +0 -123
  1858. package/dist/agents/skills/node_modules/zod/src/v4/locales/zh-TW.ts +0 -125
  1859. package/dist/agents/skills/node_modules/zod/src/v4/mini/checks.ts +0 -32
  1860. package/dist/agents/skills/node_modules/zod/src/v4/mini/coerce.ts +0 -22
  1861. package/dist/agents/skills/node_modules/zod/src/v4/mini/external.ts +0 -40
  1862. package/dist/agents/skills/node_modules/zod/src/v4/mini/index.ts +0 -3
  1863. package/dist/agents/skills/node_modules/zod/src/v4/mini/iso.ts +0 -62
  1864. package/dist/agents/skills/node_modules/zod/src/v4/mini/parse.ts +0 -1
  1865. package/dist/agents/skills/node_modules/zod/src/v4/mini/schemas.ts +0 -1579
  1866. package/dist/agents/skills/node_modules/zod/src/v4/mini/tests/assignability.test.ts +0 -129
  1867. package/dist/agents/skills/node_modules/zod/src/v4/mini/tests/brand.test.ts +0 -51
  1868. package/dist/agents/skills/node_modules/zod/src/v4/mini/tests/checks.test.ts +0 -144
  1869. package/dist/agents/skills/node_modules/zod/src/v4/mini/tests/computed.test.ts +0 -36
  1870. package/dist/agents/skills/node_modules/zod/src/v4/mini/tests/error.test.ts +0 -22
  1871. package/dist/agents/skills/node_modules/zod/src/v4/mini/tests/functions.test.ts +0 -43
  1872. package/dist/agents/skills/node_modules/zod/src/v4/mini/tests/index.test.ts +0 -871
  1873. package/dist/agents/skills/node_modules/zod/src/v4/mini/tests/number.test.ts +0 -95
  1874. package/dist/agents/skills/node_modules/zod/src/v4/mini/tests/object.test.ts +0 -185
  1875. package/dist/agents/skills/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +0 -43
  1876. package/dist/agents/skills/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +0 -275
  1877. package/dist/agents/skills/node_modules/zod/src/v4/mini/tests/string.test.ts +0 -299
  1878. package/dist/agents/skills/node_modules/zod/src/v4-mini/index.ts +0 -1
  1879. package/dist/agents/skills/node_modules/zod/v3/ZodError.cjs +0 -138
  1880. package/dist/agents/skills/node_modules/zod/v3/ZodError.d.cts +0 -164
  1881. package/dist/agents/skills/node_modules/zod/v3/ZodError.d.ts +0 -164
  1882. package/dist/agents/skills/node_modules/zod/v3/ZodError.js +0 -133
  1883. package/dist/agents/skills/node_modules/zod/v3/errors.cjs +0 -17
  1884. package/dist/agents/skills/node_modules/zod/v3/errors.d.cts +0 -5
  1885. package/dist/agents/skills/node_modules/zod/v3/errors.d.ts +0 -5
  1886. package/dist/agents/skills/node_modules/zod/v3/errors.js +0 -9
  1887. package/dist/agents/skills/node_modules/zod/v3/external.cjs +0 -22
  1888. package/dist/agents/skills/node_modules/zod/v3/external.d.cts +0 -6
  1889. package/dist/agents/skills/node_modules/zod/v3/external.d.ts +0 -6
  1890. package/dist/agents/skills/node_modules/zod/v3/external.js +0 -6
  1891. package/dist/agents/skills/node_modules/zod/v3/helpers/enumUtil.cjs +0 -2
  1892. package/dist/agents/skills/node_modules/zod/v3/helpers/enumUtil.d.cts +0 -8
  1893. package/dist/agents/skills/node_modules/zod/v3/helpers/enumUtil.d.ts +0 -8
  1894. package/dist/agents/skills/node_modules/zod/v3/helpers/enumUtil.js +0 -1
  1895. package/dist/agents/skills/node_modules/zod/v3/helpers/errorUtil.cjs +0 -9
  1896. package/dist/agents/skills/node_modules/zod/v3/helpers/errorUtil.d.cts +0 -9
  1897. package/dist/agents/skills/node_modules/zod/v3/helpers/errorUtil.d.ts +0 -9
  1898. package/dist/agents/skills/node_modules/zod/v3/helpers/errorUtil.js +0 -6
  1899. package/dist/agents/skills/node_modules/zod/v3/helpers/parseUtil.cjs +0 -124
  1900. package/dist/agents/skills/node_modules/zod/v3/helpers/parseUtil.d.cts +0 -78
  1901. package/dist/agents/skills/node_modules/zod/v3/helpers/parseUtil.d.ts +0 -78
  1902. package/dist/agents/skills/node_modules/zod/v3/helpers/parseUtil.js +0 -109
  1903. package/dist/agents/skills/node_modules/zod/v3/helpers/partialUtil.cjs +0 -2
  1904. package/dist/agents/skills/node_modules/zod/v3/helpers/partialUtil.d.cts +0 -8
  1905. package/dist/agents/skills/node_modules/zod/v3/helpers/partialUtil.d.ts +0 -8
  1906. package/dist/agents/skills/node_modules/zod/v3/helpers/partialUtil.js +0 -1
  1907. package/dist/agents/skills/node_modules/zod/v3/helpers/typeAliases.cjs +0 -2
  1908. package/dist/agents/skills/node_modules/zod/v3/helpers/typeAliases.d.cts +0 -2
  1909. package/dist/agents/skills/node_modules/zod/v3/helpers/typeAliases.d.ts +0 -2
  1910. package/dist/agents/skills/node_modules/zod/v3/helpers/typeAliases.js +0 -1
  1911. package/dist/agents/skills/node_modules/zod/v3/helpers/util.cjs +0 -137
  1912. package/dist/agents/skills/node_modules/zod/v3/helpers/util.d.cts +0 -85
  1913. package/dist/agents/skills/node_modules/zod/v3/helpers/util.d.ts +0 -85
  1914. package/dist/agents/skills/node_modules/zod/v3/helpers/util.js +0 -133
  1915. package/dist/agents/skills/node_modules/zod/v3/index.cjs +0 -33
  1916. package/dist/agents/skills/node_modules/zod/v3/index.d.cts +0 -4
  1917. package/dist/agents/skills/node_modules/zod/v3/index.d.ts +0 -4
  1918. package/dist/agents/skills/node_modules/zod/v3/index.js +0 -4
  1919. package/dist/agents/skills/node_modules/zod/v3/locales/en.cjs +0 -111
  1920. package/dist/agents/skills/node_modules/zod/v3/locales/en.d.cts +0 -3
  1921. package/dist/agents/skills/node_modules/zod/v3/locales/en.d.ts +0 -3
  1922. package/dist/agents/skills/node_modules/zod/v3/locales/en.js +0 -109
  1923. package/dist/agents/skills/node_modules/zod/v3/standard-schema.cjs +0 -2
  1924. package/dist/agents/skills/node_modules/zod/v3/standard-schema.d.cts +0 -102
  1925. package/dist/agents/skills/node_modules/zod/v3/standard-schema.d.ts +0 -102
  1926. package/dist/agents/skills/node_modules/zod/v3/standard-schema.js +0 -1
  1927. package/dist/agents/skills/node_modules/zod/v3/types.cjs +0 -3775
  1928. package/dist/agents/skills/node_modules/zod/v3/types.d.cts +0 -1031
  1929. package/dist/agents/skills/node_modules/zod/v3/types.d.ts +0 -1031
  1930. package/dist/agents/skills/node_modules/zod/v3/types.js +0 -3693
  1931. package/dist/agents/skills/node_modules/zod/v4/classic/checks.cjs +0 -32
  1932. package/dist/agents/skills/node_modules/zod/v4/classic/checks.d.cts +0 -1
  1933. package/dist/agents/skills/node_modules/zod/v4/classic/checks.d.ts +0 -1
  1934. package/dist/agents/skills/node_modules/zod/v4/classic/checks.js +0 -1
  1935. package/dist/agents/skills/node_modules/zod/v4/classic/coerce.cjs +0 -47
  1936. package/dist/agents/skills/node_modules/zod/v4/classic/coerce.d.cts +0 -17
  1937. package/dist/agents/skills/node_modules/zod/v4/classic/coerce.d.ts +0 -17
  1938. package/dist/agents/skills/node_modules/zod/v4/classic/coerce.js +0 -17
  1939. package/dist/agents/skills/node_modules/zod/v4/classic/compat.cjs +0 -57
  1940. package/dist/agents/skills/node_modules/zod/v4/classic/compat.d.cts +0 -46
  1941. package/dist/agents/skills/node_modules/zod/v4/classic/compat.d.ts +0 -46
  1942. package/dist/agents/skills/node_modules/zod/v4/classic/compat.js +0 -27
  1943. package/dist/agents/skills/node_modules/zod/v4/classic/errors.cjs +0 -67
  1944. package/dist/agents/skills/node_modules/zod/v4/classic/errors.d.cts +0 -30
  1945. package/dist/agents/skills/node_modules/zod/v4/classic/errors.d.ts +0 -30
  1946. package/dist/agents/skills/node_modules/zod/v4/classic/errors.js +0 -41
  1947. package/dist/agents/skills/node_modules/zod/v4/classic/external.cjs +0 -70
  1948. package/dist/agents/skills/node_modules/zod/v4/classic/external.d.cts +0 -13
  1949. package/dist/agents/skills/node_modules/zod/v4/classic/external.d.ts +0 -13
  1950. package/dist/agents/skills/node_modules/zod/v4/classic/external.js +0 -18
  1951. package/dist/agents/skills/node_modules/zod/v4/classic/index.cjs +0 -33
  1952. package/dist/agents/skills/node_modules/zod/v4/classic/index.d.cts +0 -4
  1953. package/dist/agents/skills/node_modules/zod/v4/classic/index.d.ts +0 -4
  1954. package/dist/agents/skills/node_modules/zod/v4/classic/index.js +0 -4
  1955. package/dist/agents/skills/node_modules/zod/v4/classic/iso.cjs +0 -60
  1956. package/dist/agents/skills/node_modules/zod/v4/classic/iso.d.cts +0 -22
  1957. package/dist/agents/skills/node_modules/zod/v4/classic/iso.d.ts +0 -22
  1958. package/dist/agents/skills/node_modules/zod/v4/classic/iso.js +0 -30
  1959. package/dist/agents/skills/node_modules/zod/v4/classic/parse.cjs +0 -32
  1960. package/dist/agents/skills/node_modules/zod/v4/classic/parse.d.cts +0 -23
  1961. package/dist/agents/skills/node_modules/zod/v4/classic/parse.d.ts +0 -23
  1962. package/dist/agents/skills/node_modules/zod/v4/classic/parse.js +0 -6
  1963. package/dist/agents/skills/node_modules/zod/v4/classic/schemas.cjs +0 -1109
  1964. package/dist/agents/skills/node_modules/zod/v4/classic/schemas.d.cts +0 -630
  1965. package/dist/agents/skills/node_modules/zod/v4/classic/schemas.d.ts +0 -630
  1966. package/dist/agents/skills/node_modules/zod/v4/classic/schemas.js +0 -1006
  1967. package/dist/agents/skills/node_modules/zod/v4/core/api.cjs +0 -1039
  1968. package/dist/agents/skills/node_modules/zod/v4/core/api.d.cts +0 -284
  1969. package/dist/agents/skills/node_modules/zod/v4/core/api.d.ts +0 -284
  1970. package/dist/agents/skills/node_modules/zod/v4/core/api.js +0 -906
  1971. package/dist/agents/skills/node_modules/zod/v4/core/checks.cjs +0 -591
  1972. package/dist/agents/skills/node_modules/zod/v4/core/checks.d.cts +0 -278
  1973. package/dist/agents/skills/node_modules/zod/v4/core/checks.d.ts +0 -278
  1974. package/dist/agents/skills/node_modules/zod/v4/core/checks.js +0 -565
  1975. package/dist/agents/skills/node_modules/zod/v4/core/core.cjs +0 -67
  1976. package/dist/agents/skills/node_modules/zod/v4/core/core.d.cts +0 -49
  1977. package/dist/agents/skills/node_modules/zod/v4/core/core.d.ts +0 -49
  1978. package/dist/agents/skills/node_modules/zod/v4/core/core.js +0 -61
  1979. package/dist/agents/skills/node_modules/zod/v4/core/doc.cjs +0 -39
  1980. package/dist/agents/skills/node_modules/zod/v4/core/doc.d.cts +0 -14
  1981. package/dist/agents/skills/node_modules/zod/v4/core/doc.d.ts +0 -14
  1982. package/dist/agents/skills/node_modules/zod/v4/core/doc.js +0 -35
  1983. package/dist/agents/skills/node_modules/zod/v4/core/errors.cjs +0 -226
  1984. package/dist/agents/skills/node_modules/zod/v4/core/errors.d.cts +0 -208
  1985. package/dist/agents/skills/node_modules/zod/v4/core/errors.d.ts +0 -208
  1986. package/dist/agents/skills/node_modules/zod/v4/core/errors.js +0 -195
  1987. package/dist/agents/skills/node_modules/zod/v4/core/function.cjs +0 -102
  1988. package/dist/agents/skills/node_modules/zod/v4/core/function.d.cts +0 -52
  1989. package/dist/agents/skills/node_modules/zod/v4/core/function.d.ts +0 -52
  1990. package/dist/agents/skills/node_modules/zod/v4/core/function.js +0 -75
  1991. package/dist/agents/skills/node_modules/zod/v4/core/index.cjs +0 -44
  1992. package/dist/agents/skills/node_modules/zod/v4/core/index.d.cts +0 -15
  1993. package/dist/agents/skills/node_modules/zod/v4/core/index.d.ts +0 -15
  1994. package/dist/agents/skills/node_modules/zod/v4/core/index.js +0 -15
  1995. package/dist/agents/skills/node_modules/zod/v4/core/json-schema.cjs +0 -2
  1996. package/dist/agents/skills/node_modules/zod/v4/core/json-schema.d.cts +0 -87
  1997. package/dist/agents/skills/node_modules/zod/v4/core/json-schema.d.ts +0 -87
  1998. package/dist/agents/skills/node_modules/zod/v4/core/json-schema.js +0 -1
  1999. package/dist/agents/skills/node_modules/zod/v4/core/parse.cjs +0 -87
  2000. package/dist/agents/skills/node_modules/zod/v4/core/parse.d.cts +0 -25
  2001. package/dist/agents/skills/node_modules/zod/v4/core/parse.d.ts +0 -25
  2002. package/dist/agents/skills/node_modules/zod/v4/core/parse.js +0 -57
  2003. package/dist/agents/skills/node_modules/zod/v4/core/regexes.cjs +0 -103
  2004. package/dist/agents/skills/node_modules/zod/v4/core/regexes.d.cts +0 -62
  2005. package/dist/agents/skills/node_modules/zod/v4/core/regexes.d.ts +0 -62
  2006. package/dist/agents/skills/node_modules/zod/v4/core/regexes.js +0 -95
  2007. package/dist/agents/skills/node_modules/zod/v4/core/registries.cjs +0 -56
  2008. package/dist/agents/skills/node_modules/zod/v4/core/registries.d.cts +0 -35
  2009. package/dist/agents/skills/node_modules/zod/v4/core/registries.d.ts +0 -35
  2010. package/dist/agents/skills/node_modules/zod/v4/core/registries.js +0 -51
  2011. package/dist/agents/skills/node_modules/zod/v4/core/schemas.cjs +0 -1748
  2012. package/dist/agents/skills/node_modules/zod/v4/core/schemas.d.cts +0 -1041
  2013. package/dist/agents/skills/node_modules/zod/v4/core/schemas.d.ts +0 -1041
  2014. package/dist/agents/skills/node_modules/zod/v4/core/schemas.js +0 -1717
  2015. package/dist/agents/skills/node_modules/zod/v4/core/standard-schema.cjs +0 -2
  2016. package/dist/agents/skills/node_modules/zod/v4/core/standard-schema.d.cts +0 -55
  2017. package/dist/agents/skills/node_modules/zod/v4/core/standard-schema.d.ts +0 -55
  2018. package/dist/agents/skills/node_modules/zod/v4/core/standard-schema.js +0 -1
  2019. package/dist/agents/skills/node_modules/zod/v4/core/to-json-schema.cjs +0 -854
  2020. package/dist/agents/skills/node_modules/zod/v4/core/to-json-schema.d.cts +0 -88
  2021. package/dist/agents/skills/node_modules/zod/v4/core/to-json-schema.d.ts +0 -88
  2022. package/dist/agents/skills/node_modules/zod/v4/core/to-json-schema.js +0 -849
  2023. package/dist/agents/skills/node_modules/zod/v4/core/util.cjs +0 -539
  2024. package/dist/agents/skills/node_modules/zod/v4/core/util.d.cts +0 -183
  2025. package/dist/agents/skills/node_modules/zod/v4/core/util.d.ts +0 -183
  2026. package/dist/agents/skills/node_modules/zod/v4/core/util.js +0 -493
  2027. package/dist/agents/skills/node_modules/zod/v4/core/versions.cjs +0 -8
  2028. package/dist/agents/skills/node_modules/zod/v4/core/versions.d.cts +0 -5
  2029. package/dist/agents/skills/node_modules/zod/v4/core/versions.d.ts +0 -5
  2030. package/dist/agents/skills/node_modules/zod/v4/core/versions.js +0 -5
  2031. package/dist/agents/skills/node_modules/zod/v4/index.cjs +0 -22
  2032. package/dist/agents/skills/node_modules/zod/v4/index.d.cts +0 -3
  2033. package/dist/agents/skills/node_modules/zod/v4/index.d.ts +0 -3
  2034. package/dist/agents/skills/node_modules/zod/v4/index.js +0 -3
  2035. package/dist/agents/skills/node_modules/zod/v4/locales/ar.cjs +0 -142
  2036. package/dist/agents/skills/node_modules/zod/v4/locales/ar.d.cts +0 -4
  2037. package/dist/agents/skills/node_modules/zod/v4/locales/ar.d.ts +0 -4
  2038. package/dist/agents/skills/node_modules/zod/v4/locales/ar.js +0 -116
  2039. package/dist/agents/skills/node_modules/zod/v4/locales/az.cjs +0 -141
  2040. package/dist/agents/skills/node_modules/zod/v4/locales/az.d.cts +0 -4
  2041. package/dist/agents/skills/node_modules/zod/v4/locales/az.d.ts +0 -4
  2042. package/dist/agents/skills/node_modules/zod/v4/locales/az.js +0 -115
  2043. package/dist/agents/skills/node_modules/zod/v4/locales/be.cjs +0 -190
  2044. package/dist/agents/skills/node_modules/zod/v4/locales/be.d.cts +0 -4
  2045. package/dist/agents/skills/node_modules/zod/v4/locales/be.d.ts +0 -4
  2046. package/dist/agents/skills/node_modules/zod/v4/locales/be.js +0 -164
  2047. package/dist/agents/skills/node_modules/zod/v4/locales/ca.cjs +0 -144
  2048. package/dist/agents/skills/node_modules/zod/v4/locales/ca.d.cts +0 -4
  2049. package/dist/agents/skills/node_modules/zod/v4/locales/ca.d.ts +0 -4
  2050. package/dist/agents/skills/node_modules/zod/v4/locales/ca.js +0 -118
  2051. package/dist/agents/skills/node_modules/zod/v4/locales/cs.cjs +0 -161
  2052. package/dist/agents/skills/node_modules/zod/v4/locales/cs.d.cts +0 -4
  2053. package/dist/agents/skills/node_modules/zod/v4/locales/cs.d.ts +0 -4
  2054. package/dist/agents/skills/node_modules/zod/v4/locales/cs.js +0 -135
  2055. package/dist/agents/skills/node_modules/zod/v4/locales/de.cjs +0 -142
  2056. package/dist/agents/skills/node_modules/zod/v4/locales/de.d.cts +0 -4
  2057. package/dist/agents/skills/node_modules/zod/v4/locales/de.d.ts +0 -4
  2058. package/dist/agents/skills/node_modules/zod/v4/locales/de.js +0 -116
  2059. package/dist/agents/skills/node_modules/zod/v4/locales/en.cjs +0 -145
  2060. package/dist/agents/skills/node_modules/zod/v4/locales/en.d.cts +0 -5
  2061. package/dist/agents/skills/node_modules/zod/v4/locales/en.d.ts +0 -5
  2062. package/dist/agents/skills/node_modules/zod/v4/locales/en.js +0 -117
  2063. package/dist/agents/skills/node_modules/zod/v4/locales/eo.cjs +0 -144
  2064. package/dist/agents/skills/node_modules/zod/v4/locales/eo.d.cts +0 -5
  2065. package/dist/agents/skills/node_modules/zod/v4/locales/eo.d.ts +0 -5
  2066. package/dist/agents/skills/node_modules/zod/v4/locales/eo.js +0 -116
  2067. package/dist/agents/skills/node_modules/zod/v4/locales/es.cjs +0 -143
  2068. package/dist/agents/skills/node_modules/zod/v4/locales/es.d.cts +0 -4
  2069. package/dist/agents/skills/node_modules/zod/v4/locales/es.d.ts +0 -4
  2070. package/dist/agents/skills/node_modules/zod/v4/locales/es.js +0 -117
  2071. package/dist/agents/skills/node_modules/zod/v4/locales/fa.cjs +0 -148
  2072. package/dist/agents/skills/node_modules/zod/v4/locales/fa.d.cts +0 -4
  2073. package/dist/agents/skills/node_modules/zod/v4/locales/fa.d.ts +0 -4
  2074. package/dist/agents/skills/node_modules/zod/v4/locales/fa.js +0 -122
  2075. package/dist/agents/skills/node_modules/zod/v4/locales/fi.cjs +0 -148
  2076. package/dist/agents/skills/node_modules/zod/v4/locales/fi.d.cts +0 -4
  2077. package/dist/agents/skills/node_modules/zod/v4/locales/fi.d.ts +0 -4
  2078. package/dist/agents/skills/node_modules/zod/v4/locales/fi.js +0 -122
  2079. package/dist/agents/skills/node_modules/zod/v4/locales/fr-CA.cjs +0 -143
  2080. package/dist/agents/skills/node_modules/zod/v4/locales/fr-CA.d.cts +0 -4
  2081. package/dist/agents/skills/node_modules/zod/v4/locales/fr-CA.d.ts +0 -4
  2082. package/dist/agents/skills/node_modules/zod/v4/locales/fr-CA.js +0 -117
  2083. package/dist/agents/skills/node_modules/zod/v4/locales/fr.cjs +0 -142
  2084. package/dist/agents/skills/node_modules/zod/v4/locales/fr.d.cts +0 -4
  2085. package/dist/agents/skills/node_modules/zod/v4/locales/fr.d.ts +0 -4
  2086. package/dist/agents/skills/node_modules/zod/v4/locales/fr.js +0 -116
  2087. package/dist/agents/skills/node_modules/zod/v4/locales/he.cjs +0 -143
  2088. package/dist/agents/skills/node_modules/zod/v4/locales/he.d.cts +0 -4
  2089. package/dist/agents/skills/node_modules/zod/v4/locales/he.d.ts +0 -4
  2090. package/dist/agents/skills/node_modules/zod/v4/locales/he.js +0 -117
  2091. package/dist/agents/skills/node_modules/zod/v4/locales/hu.cjs +0 -143
  2092. package/dist/agents/skills/node_modules/zod/v4/locales/hu.d.cts +0 -4
  2093. package/dist/agents/skills/node_modules/zod/v4/locales/hu.d.ts +0 -4
  2094. package/dist/agents/skills/node_modules/zod/v4/locales/hu.js +0 -117
  2095. package/dist/agents/skills/node_modules/zod/v4/locales/id.cjs +0 -142
  2096. package/dist/agents/skills/node_modules/zod/v4/locales/id.d.cts +0 -4
  2097. package/dist/agents/skills/node_modules/zod/v4/locales/id.d.ts +0 -4
  2098. package/dist/agents/skills/node_modules/zod/v4/locales/id.js +0 -116
  2099. package/dist/agents/skills/node_modules/zod/v4/locales/index.cjs +0 -84
  2100. package/dist/agents/skills/node_modules/zod/v4/locales/index.d.cts +0 -39
  2101. package/dist/agents/skills/node_modules/zod/v4/locales/index.d.ts +0 -39
  2102. package/dist/agents/skills/node_modules/zod/v4/locales/index.js +0 -39
  2103. package/dist/agents/skills/node_modules/zod/v4/locales/it.cjs +0 -143
  2104. package/dist/agents/skills/node_modules/zod/v4/locales/it.d.cts +0 -4
  2105. package/dist/agents/skills/node_modules/zod/v4/locales/it.d.ts +0 -4
  2106. package/dist/agents/skills/node_modules/zod/v4/locales/it.js +0 -117
  2107. package/dist/agents/skills/node_modules/zod/v4/locales/ja.cjs +0 -141
  2108. package/dist/agents/skills/node_modules/zod/v4/locales/ja.d.cts +0 -4
  2109. package/dist/agents/skills/node_modules/zod/v4/locales/ja.d.ts +0 -4
  2110. package/dist/agents/skills/node_modules/zod/v4/locales/ja.js +0 -115
  2111. package/dist/agents/skills/node_modules/zod/v4/locales/kh.cjs +0 -143
  2112. package/dist/agents/skills/node_modules/zod/v4/locales/kh.d.cts +0 -4
  2113. package/dist/agents/skills/node_modules/zod/v4/locales/kh.d.ts +0 -4
  2114. package/dist/agents/skills/node_modules/zod/v4/locales/kh.js +0 -117
  2115. package/dist/agents/skills/node_modules/zod/v4/locales/ko.cjs +0 -147
  2116. package/dist/agents/skills/node_modules/zod/v4/locales/ko.d.cts +0 -4
  2117. package/dist/agents/skills/node_modules/zod/v4/locales/ko.d.ts +0 -4
  2118. package/dist/agents/skills/node_modules/zod/v4/locales/ko.js +0 -121
  2119. package/dist/agents/skills/node_modules/zod/v4/locales/mk.cjs +0 -144
  2120. package/dist/agents/skills/node_modules/zod/v4/locales/mk.d.cts +0 -4
  2121. package/dist/agents/skills/node_modules/zod/v4/locales/mk.d.ts +0 -4
  2122. package/dist/agents/skills/node_modules/zod/v4/locales/mk.js +0 -118
  2123. package/dist/agents/skills/node_modules/zod/v4/locales/ms.cjs +0 -142
  2124. package/dist/agents/skills/node_modules/zod/v4/locales/ms.d.cts +0 -4
  2125. package/dist/agents/skills/node_modules/zod/v4/locales/ms.d.ts +0 -4
  2126. package/dist/agents/skills/node_modules/zod/v4/locales/ms.js +0 -116
  2127. package/dist/agents/skills/node_modules/zod/v4/locales/nl.cjs +0 -143
  2128. package/dist/agents/skills/node_modules/zod/v4/locales/nl.d.cts +0 -4
  2129. package/dist/agents/skills/node_modules/zod/v4/locales/nl.d.ts +0 -4
  2130. package/dist/agents/skills/node_modules/zod/v4/locales/nl.js +0 -117
  2131. package/dist/agents/skills/node_modules/zod/v4/locales/no.cjs +0 -142
  2132. package/dist/agents/skills/node_modules/zod/v4/locales/no.d.cts +0 -4
  2133. package/dist/agents/skills/node_modules/zod/v4/locales/no.d.ts +0 -4
  2134. package/dist/agents/skills/node_modules/zod/v4/locales/no.js +0 -116
  2135. package/dist/agents/skills/node_modules/zod/v4/locales/ota.cjs +0 -143
  2136. package/dist/agents/skills/node_modules/zod/v4/locales/ota.d.cts +0 -4
  2137. package/dist/agents/skills/node_modules/zod/v4/locales/ota.d.ts +0 -4
  2138. package/dist/agents/skills/node_modules/zod/v4/locales/ota.js +0 -117
  2139. package/dist/agents/skills/node_modules/zod/v4/locales/pl.cjs +0 -143
  2140. package/dist/agents/skills/node_modules/zod/v4/locales/pl.d.cts +0 -4
  2141. package/dist/agents/skills/node_modules/zod/v4/locales/pl.d.ts +0 -4
  2142. package/dist/agents/skills/node_modules/zod/v4/locales/pl.js +0 -117
  2143. package/dist/agents/skills/node_modules/zod/v4/locales/ps.cjs +0 -148
  2144. package/dist/agents/skills/node_modules/zod/v4/locales/ps.d.cts +0 -4
  2145. package/dist/agents/skills/node_modules/zod/v4/locales/ps.d.ts +0 -4
  2146. package/dist/agents/skills/node_modules/zod/v4/locales/ps.js +0 -122
  2147. package/dist/agents/skills/node_modules/zod/v4/locales/pt.cjs +0 -142
  2148. package/dist/agents/skills/node_modules/zod/v4/locales/pt.d.cts +0 -4
  2149. package/dist/agents/skills/node_modules/zod/v4/locales/pt.d.ts +0 -4
  2150. package/dist/agents/skills/node_modules/zod/v4/locales/pt.js +0 -116
  2151. package/dist/agents/skills/node_modules/zod/v4/locales/ru.cjs +0 -190
  2152. package/dist/agents/skills/node_modules/zod/v4/locales/ru.d.cts +0 -4
  2153. package/dist/agents/skills/node_modules/zod/v4/locales/ru.d.ts +0 -4
  2154. package/dist/agents/skills/node_modules/zod/v4/locales/ru.js +0 -164
  2155. package/dist/agents/skills/node_modules/zod/v4/locales/sl.cjs +0 -143
  2156. package/dist/agents/skills/node_modules/zod/v4/locales/sl.d.cts +0 -4
  2157. package/dist/agents/skills/node_modules/zod/v4/locales/sl.d.ts +0 -4
  2158. package/dist/agents/skills/node_modules/zod/v4/locales/sl.js +0 -117
  2159. package/dist/agents/skills/node_modules/zod/v4/locales/sv.cjs +0 -144
  2160. package/dist/agents/skills/node_modules/zod/v4/locales/sv.d.cts +0 -4
  2161. package/dist/agents/skills/node_modules/zod/v4/locales/sv.d.ts +0 -4
  2162. package/dist/agents/skills/node_modules/zod/v4/locales/sv.js +0 -118
  2163. package/dist/agents/skills/node_modules/zod/v4/locales/ta.cjs +0 -143
  2164. package/dist/agents/skills/node_modules/zod/v4/locales/ta.d.cts +0 -4
  2165. package/dist/agents/skills/node_modules/zod/v4/locales/ta.d.ts +0 -4
  2166. package/dist/agents/skills/node_modules/zod/v4/locales/ta.js +0 -117
  2167. package/dist/agents/skills/node_modules/zod/v4/locales/th.cjs +0 -143
  2168. package/dist/agents/skills/node_modules/zod/v4/locales/th.d.cts +0 -4
  2169. package/dist/agents/skills/node_modules/zod/v4/locales/th.d.ts +0 -4
  2170. package/dist/agents/skills/node_modules/zod/v4/locales/th.js +0 -117
  2171. package/dist/agents/skills/node_modules/zod/v4/locales/tr.cjs +0 -143
  2172. package/dist/agents/skills/node_modules/zod/v4/locales/tr.d.cts +0 -5
  2173. package/dist/agents/skills/node_modules/zod/v4/locales/tr.d.ts +0 -5
  2174. package/dist/agents/skills/node_modules/zod/v4/locales/tr.js +0 -115
  2175. package/dist/agents/skills/node_modules/zod/v4/locales/ua.cjs +0 -143
  2176. package/dist/agents/skills/node_modules/zod/v4/locales/ua.d.cts +0 -4
  2177. package/dist/agents/skills/node_modules/zod/v4/locales/ua.d.ts +0 -4
  2178. package/dist/agents/skills/node_modules/zod/v4/locales/ua.js +0 -117
  2179. package/dist/agents/skills/node_modules/zod/v4/locales/ur.cjs +0 -143
  2180. package/dist/agents/skills/node_modules/zod/v4/locales/ur.d.cts +0 -4
  2181. package/dist/agents/skills/node_modules/zod/v4/locales/ur.d.ts +0 -4
  2182. package/dist/agents/skills/node_modules/zod/v4/locales/ur.js +0 -117
  2183. package/dist/agents/skills/node_modules/zod/v4/locales/vi.cjs +0 -142
  2184. package/dist/agents/skills/node_modules/zod/v4/locales/vi.d.cts +0 -4
  2185. package/dist/agents/skills/node_modules/zod/v4/locales/vi.d.ts +0 -4
  2186. package/dist/agents/skills/node_modules/zod/v4/locales/vi.js +0 -116
  2187. package/dist/agents/skills/node_modules/zod/v4/locales/zh-CN.cjs +0 -142
  2188. package/dist/agents/skills/node_modules/zod/v4/locales/zh-CN.d.cts +0 -4
  2189. package/dist/agents/skills/node_modules/zod/v4/locales/zh-CN.d.ts +0 -4
  2190. package/dist/agents/skills/node_modules/zod/v4/locales/zh-CN.js +0 -116
  2191. package/dist/agents/skills/node_modules/zod/v4/locales/zh-TW.cjs +0 -143
  2192. package/dist/agents/skills/node_modules/zod/v4/locales/zh-TW.d.cts +0 -4
  2193. package/dist/agents/skills/node_modules/zod/v4/locales/zh-TW.d.ts +0 -4
  2194. package/dist/agents/skills/node_modules/zod/v4/locales/zh-TW.js +0 -117
  2195. package/dist/agents/skills/node_modules/zod/v4/mini/checks.cjs +0 -34
  2196. package/dist/agents/skills/node_modules/zod/v4/mini/checks.d.cts +0 -1
  2197. package/dist/agents/skills/node_modules/zod/v4/mini/checks.d.ts +0 -1
  2198. package/dist/agents/skills/node_modules/zod/v4/mini/checks.js +0 -1
  2199. package/dist/agents/skills/node_modules/zod/v4/mini/coerce.cjs +0 -47
  2200. package/dist/agents/skills/node_modules/zod/v4/mini/coerce.d.cts +0 -7
  2201. package/dist/agents/skills/node_modules/zod/v4/mini/coerce.d.ts +0 -7
  2202. package/dist/agents/skills/node_modules/zod/v4/mini/coerce.js +0 -17
  2203. package/dist/agents/skills/node_modules/zod/v4/mini/external.cjs +0 -62
  2204. package/dist/agents/skills/node_modules/zod/v4/mini/external.d.cts +0 -11
  2205. package/dist/agents/skills/node_modules/zod/v4/mini/external.d.ts +0 -11
  2206. package/dist/agents/skills/node_modules/zod/v4/mini/external.js +0 -13
  2207. package/dist/agents/skills/node_modules/zod/v4/mini/index.cjs +0 -32
  2208. package/dist/agents/skills/node_modules/zod/v4/mini/index.d.cts +0 -3
  2209. package/dist/agents/skills/node_modules/zod/v4/mini/index.d.ts +0 -3
  2210. package/dist/agents/skills/node_modules/zod/v4/mini/index.js +0 -3
  2211. package/dist/agents/skills/node_modules/zod/v4/mini/iso.cjs +0 -60
  2212. package/dist/agents/skills/node_modules/zod/v4/mini/iso.d.cts +0 -22
  2213. package/dist/agents/skills/node_modules/zod/v4/mini/iso.d.ts +0 -22
  2214. package/dist/agents/skills/node_modules/zod/v4/mini/iso.js +0 -30
  2215. package/dist/agents/skills/node_modules/zod/v4/mini/parse.cjs +0 -8
  2216. package/dist/agents/skills/node_modules/zod/v4/mini/parse.d.cts +0 -1
  2217. package/dist/agents/skills/node_modules/zod/v4/mini/parse.d.ts +0 -1
  2218. package/dist/agents/skills/node_modules/zod/v4/mini/parse.js +0 -1
  2219. package/dist/agents/skills/node_modules/zod/v4/mini/schemas.cjs +0 -839
  2220. package/dist/agents/skills/node_modules/zod/v4/mini/schemas.d.cts +0 -356
  2221. package/dist/agents/skills/node_modules/zod/v4/mini/schemas.d.ts +0 -356
  2222. package/dist/agents/skills/node_modules/zod/v4/mini/schemas.js +0 -732
  2223. package/dist/agents/skills/node_modules/zod/v4-mini/index.cjs +0 -17
  2224. package/dist/agents/skills/node_modules/zod/v4-mini/index.d.cts +0 -1
  2225. package/dist/agents/skills/node_modules/zod/v4-mini/index.d.ts +0 -1
  2226. package/dist/agents/skills/node_modules/zod/v4-mini/index.js +0 -1
  2227. package/dist/chunk-4RCIE5YB.js +0 -526
  2228. package/dist/chunk-5JDJNUEO.js +0 -2639
  2229. package/dist/chunk-6I25KNGR.js +0 -1209
  2230. package/dist/chunk-77B7VOJM.js +0 -1304
  2231. package/dist/chunk-ATN2MXAI.js +0 -2798
  2232. package/dist/chunk-CJ2ZAYCV.js +0 -2639
  2233. package/dist/chunk-EQKDZSPA.js +0 -226
  2234. package/dist/chunk-FQB2ZTRA.js +0 -1209
  2235. package/dist/chunk-G2SHRCBP.js +0 -935
  2236. package/dist/chunk-GPYYJN6Z.js +0 -2634
  2237. package/dist/chunk-H2LQ7ELQ.js +0 -2795
  2238. package/dist/chunk-L64MEJOI.js +0 -2512
  2239. package/dist/chunk-LFA7JNFB.js +0 -2633
  2240. package/dist/chunk-NDZWBEZS.js +0 -317
  2241. package/dist/chunk-RZHIR5XA.js +0 -640
  2242. package/dist/chunk-SJJ37KLV.js +0 -317
  2243. package/dist/chunk-SPR56MPD.js +0 -2798
  2244. package/dist/chunk-TLZO4QIN.js +0 -2850
  2245. package/dist/chunk-TUMCTRNV.js +0 -2637
  2246. package/dist/chunk-WE3FMIWI.js +0 -2639
  2247. package/dist/chunk-Z7MYWXIH.js +0 -2852
  2248. package/dist/chunk-ZOOWDP6S.js +0 -2857
  2249. package/dist/chunk-ZW7OXJCM.js +0 -2639
  2250. package/dist/templates/templates/advanced/agents/personas/.gitkeep +0 -0
  2251. package/dist/templates/templates/advanced/docs/changes/.gitkeep +0 -0
  2252. package/dist/templates/templates/advanced/docs/principles.md.hbs +0 -14
  2253. package/dist/templates/templates/advanced/docs/specs/.gitkeep +0 -0
  2254. package/dist/templates/templates/advanced/harness.config.json.hbs +0 -30
  2255. package/dist/templates/templates/advanced/package.json.hbs +0 -21
  2256. package/dist/templates/templates/advanced/template.json +0 -7
  2257. package/dist/templates/templates/base/AGENTS.md.hbs +0 -18
  2258. package/dist/templates/templates/base/docs/index.md.hbs +0 -13
  2259. package/dist/templates/templates/base/template.json +0 -5
  2260. package/dist/templates/templates/basic/harness.config.json.hbs +0 -16
  2261. package/dist/templates/templates/basic/package.json.hbs +0 -15
  2262. package/dist/templates/templates/basic/src/index.ts +0 -1
  2263. package/dist/templates/templates/basic/template.json +0 -7
  2264. package/dist/templates/templates/basic/tsconfig.json +0 -13
  2265. package/dist/templates/templates/intermediate/docs/changes/.gitkeep +0 -0
  2266. package/dist/templates/templates/intermediate/docs/principles.md.hbs +0 -14
  2267. package/dist/templates/templates/intermediate/docs/specs/.gitkeep +0 -0
  2268. package/dist/templates/templates/intermediate/eslint.config.mjs.hbs +0 -12
  2269. package/dist/templates/templates/intermediate/harness.config.json.hbs +0 -22
  2270. package/dist/templates/templates/intermediate/package.json.hbs +0 -19
  2271. package/dist/templates/templates/intermediate/src/domain/.gitkeep +0 -0
  2272. package/dist/templates/templates/intermediate/src/services/.gitkeep +0 -0
  2273. package/dist/templates/templates/intermediate/src/types/.gitkeep +0 -0
  2274. package/dist/templates/templates/intermediate/template.json +0 -7
  2275. package/dist/templates/templates/nextjs/next.config.mjs +0 -3
  2276. package/dist/templates/templates/nextjs/package.json.hbs +0 -17
  2277. package/dist/templates/templates/nextjs/src/app/layout.tsx +0 -12
  2278. package/dist/templates/templates/nextjs/src/app/page.tsx +0 -7
  2279. package/dist/templates/templates/nextjs/src/lib/.gitkeep +0 -0
  2280. package/dist/templates/templates/nextjs/template.json +0 -6
  2281. package/dist/validate-cross-check-ZB2OZDOK.js +0 -69
@@ -1,3271 +0,0 @@
1
- import { TaskMeta, Suite, File, TestAnnotation, TestArtifact, ImportDuration, Test, Task, TaskResultPack, FileSpecification, CancelReason, SequenceSetupFiles, SequenceHooks } from '@vitest/runner';
2
- import { TestError, SerializedError, Arrayable, ParsedStack, Awaitable } from '@vitest/utils';
3
- import { A as AfterSuiteRunMeta, U as UserConsoleLog, P as ProvidedContext, L as LabelColor } from './rpc.d.RH3apGEf.js';
4
- import { Writable } from 'node:stream';
5
- import { DevEnvironment, TransformResult as TransformResult$1, ViteDevServer, Plugin, UserConfig as UserConfig$1, DepOptimizationConfig, ServerOptions, ConfigEnv, AliasOptions } from 'vite';
6
- import { S as SerializedTestSpecification, c as SourceModuleDiagnostic, B as BrowserTesterOptions } from './browser.d.ChKACdzH.js';
7
- import { MockedModule } from '@vitest/mocker';
8
- import { StackTraceParserOptions } from '@vitest/utils/source-map';
9
- import { BrowserCommands } from 'vitest/browser';
10
- import { B as BrowserTraceViewMode, S as SerializedConfig, F as FakeTimerInstallOpts } from './config.d.Cy95HiCx.js';
11
- import { PrettyFormatOptions } from '@vitest/pretty-format';
12
- import { SnapshotSummary, SnapshotStateOptions } from '@vitest/snapshot';
13
- import { SerializedDiffOptions } from '@vitest/utils/diff';
14
- import { chai } from '@vitest/expect';
15
- import { happyDomTypes, jsdomTypes } from 'vitest/optional-types.js';
16
- import { c as ContextTestEnvironment, d as WorkerExecuteContext, e as WorkerTestEnvironment } from './worker.d.Dyxm8DEL.js';
17
- import { O as OTELCarrier } from './traces.d.402V_yFI.js';
18
- import { B as BenchmarkResult } from './benchmark.d.DAaHLpsq.js';
19
- import { a as RuntimeCoverageProviderModule } from './coverage.d.BZtK59WP.js';
20
- import { SnapshotManager } from '@vitest/snapshot/manager';
21
- import { Console } from 'node:console';
22
- import { Stats } from 'node:fs';
23
-
24
- type ChaiConfig = Omit<Partial<typeof chai.config>, "useProxy" | "proxyExcludedKeys">;
25
-
26
- type HappyDOMOptions = Omit<NonNullable<ConstructorParameters<typeof happyDomTypes.Window>[0]>, "console">;
27
-
28
- type JSDOMOptions = ConstructorOptionsOverride & Omit<jsdomTypes.ConstructorOptions, keyof ConstructorOptionsOverride>;
29
- interface ConstructorOptionsOverride {
30
- /**
31
- * The html content for the test.
32
- *
33
- * @default '<!DOCTYPE html>'
34
- */
35
- html?: string | ArrayBufferLike;
36
- /**
37
- * userAgent affects the value read from navigator.userAgent, as well as the User-Agent header sent while fetching subresources.
38
- *
39
- * @default `Mozilla/5.0 (${process.platform}) AppleWebKit/537.36 (KHTML, like Gecko) jsdom/${jsdomVersion}`
40
- */
41
- userAgent?: string;
42
- /**
43
- * url sets the value returned by window.location, document.URL, and document.documentURI,
44
- * and affects things like resolution of relative URLs within the document
45
- * and the same-origin restrictions and referrer used while fetching subresources.
46
- *
47
- * @default 'http://localhost:3000'.
48
- */
49
- url?: string;
50
- /**
51
- * Enable console?
52
- *
53
- * @default false
54
- */
55
- console?: boolean;
56
- /**
57
- * jsdom does not have the capability to render visual content, and will act like a headless browser by default.
58
- * It provides hints to web pages through APIs such as document.hidden that their content is not visible.
59
- *
60
- * When the `pretendToBeVisual` option is set to `true`, jsdom will pretend that it is rendering and displaying
61
- * content.
62
- *
63
- * @default true
64
- */
65
- pretendToBeVisual?: boolean;
66
- /**
67
- * Enable CookieJar
68
- *
69
- * @default false
70
- */
71
- cookieJar?: boolean;
72
- resources?: "usable";
73
- }
74
-
75
- declare class ReportedTaskImplementation {
76
- /**
77
- * The project associated with the test or suite.
78
- */
79
- readonly project: TestProject;
80
- /**
81
- * Unique identifier.
82
- * This ID is deterministic and will be the same for the same test across multiple runs.
83
- * The ID is based on the project name, module url and test order.
84
- */
85
- readonly id: string;
86
- /**
87
- * Location in the module where the test or suite is defined.
88
- */
89
- readonly location: {
90
- line: number;
91
- column: number;
92
- } | undefined;
93
- /**
94
- * Checks if the test did not fail the suite.
95
- * If the test is not finished yet or was skipped, it will return `true`.
96
- */
97
- ok(): boolean;
98
- /**
99
- * Custom metadata that was attached to the test during its execution.
100
- */
101
- meta(): TaskMeta;
102
- }
103
- declare class TestCase extends ReportedTaskImplementation {
104
- #private;
105
- readonly type = "test";
106
- /**
107
- * Direct reference to the test module where the test or suite is defined.
108
- */
109
- readonly module: TestModule;
110
- /**
111
- * Name of the test.
112
- */
113
- readonly name: string;
114
- /**
115
- * Options that the test was initiated with.
116
- */
117
- readonly options: TaskOptions;
118
- /**
119
- * Parent suite. If the test was called directly inside the module, the parent will be the module itself.
120
- */
121
- readonly parent: TestSuite | TestModule;
122
- /**
123
- * Full name of the test including all parent suites separated with `>`.
124
- */
125
- get fullName(): string;
126
- /**
127
- * Test results.
128
- * - **pending**: Test was collected, but didn't finish running yet.
129
- * - **passed**: Test passed successfully
130
- * - **failed**: Test failed to execute
131
- * - **skipped**: Test was skipped during collection or dynamically with `ctx.skip()`.
132
- */
133
- result(): TestResult;
134
- /**
135
- * Test annotations added via the `task.annotate` API during the test execution.
136
- */
137
- annotations(): ReadonlyArray<TestAnnotation>;
138
- /**
139
- * @experimental
140
- *
141
- * Test artifacts recorded via the `recordArtifact` API during the test execution.
142
- */
143
- artifacts(): ReadonlyArray<TestArtifact>;
144
- /**
145
- * Useful information about the test like duration, memory usage, etc.
146
- * Diagnostic is only available after the test has finished.
147
- */
148
- diagnostic(): TestDiagnostic | undefined;
149
- }
150
- declare class TestCollection {
151
- #private;
152
- constructor(task: Suite | File, project: TestProject);
153
- /**
154
- * Returns the test or suite at a specific index.
155
- */
156
- at(index: number): TestCase | TestSuite | undefined;
157
- /**
158
- * The number of tests and suites in the collection.
159
- */
160
- get size(): number;
161
- /**
162
- * Returns the collection in array form for easier manipulation.
163
- */
164
- array(): (TestCase | TestSuite)[];
165
- /**
166
- * Filters all tests that are part of this collection and its children.
167
- */
168
- allTests(state?: TestState): Generator<TestCase, undefined, void>;
169
- /**
170
- * Filters only the tests that are part of this collection.
171
- */
172
- tests(state?: TestState): Generator<TestCase, undefined, void>;
173
- /**
174
- * Filters only the suites that are part of this collection.
175
- */
176
- suites(): Generator<TestSuite, undefined, void>;
177
- /**
178
- * Filters all suites that are part of this collection and its children.
179
- */
180
- allSuites(): Generator<TestSuite, undefined, void>;
181
- [Symbol.iterator](): Generator<TestSuite | TestCase, undefined, void>;
182
- }
183
-
184
- type ReportedHookContext = {
185
- readonly name: "beforeAll" | "afterAll";
186
- readonly entity: TestSuite | TestModule;
187
- } | {
188
- readonly name: "beforeEach" | "afterEach";
189
- readonly entity: TestCase;
190
- };
191
- declare abstract class SuiteImplementation extends ReportedTaskImplementation {
192
- /**
193
- * Collection of suites and tests that are part of this suite.
194
- */
195
- readonly children: TestCollection;
196
- /**
197
- * Errors that happened outside of the test run during collection, like syntax errors.
198
- */
199
- errors(): SerializedError[];
200
- }
201
- declare class TestSuite extends SuiteImplementation {
202
- #private;
203
- readonly type = "suite";
204
- /**
205
- * Name of the test or the suite.
206
- */
207
- readonly name: string;
208
- /**
209
- * Direct reference to the test module where the test or suite is defined.
210
- */
211
- readonly module: TestModule;
212
- /**
213
- * Parent suite. If suite was called directly inside the module, the parent will be the module itself.
214
- */
215
- readonly parent: TestSuite | TestModule;
216
- /**
217
- * Options that suite was initiated with.
218
- */
219
- readonly options: TaskOptions;
220
- /**
221
- * Checks if the suite has any failed tests.
222
- * This will also return `false` if suite failed during collection.
223
- */
224
- ok: () => boolean;
225
- /**
226
- * The meta information attached to the suite during its collection or execution.
227
- */
228
- meta: () => TaskMeta;
229
- /**
230
- * Checks the running state of the suite.
231
- */
232
- state(): TestSuiteState;
233
- /**
234
- * Full name of the suite including all parent suites separated with `>`.
235
- */
236
- get fullName(): string;
237
- }
238
- declare class TestModule extends SuiteImplementation {
239
- readonly location: undefined;
240
- readonly type = "module";
241
- /**
242
- * The Vite environment that processes files on the server.
243
- *
244
- * Can be empty if test module did not run yet.
245
- */
246
- readonly viteEnvironment: DevEnvironment | undefined;
247
- /**
248
- * This is usually an absolute UNIX file path.
249
- * It can be a virtual ID if the file is not on the disk.
250
- * This value corresponds to the ID in the Vite's module graph.
251
- */
252
- readonly moduleId: string;
253
- /**
254
- * Module id relative to the project. This is the same as `task.name`.
255
- */
256
- readonly relativeModuleId: string;
257
- /**
258
- * Checks the running state of the test file.
259
- */
260
- state(): TestModuleState;
261
- /**
262
- * Checks if the module has any failed tests.
263
- * This will also return `false` if module failed during collection.
264
- */
265
- ok: () => boolean;
266
- /**
267
- * The meta information attached to the module during its collection or execution.
268
- */
269
- meta: () => TaskMeta;
270
- /**
271
- * Useful information about the module like duration, memory usage, etc.
272
- * If the module was not executed yet, all diagnostic values will return `0`.
273
- */
274
- diagnostic(): ModuleDiagnostic;
275
- }
276
- interface TaskOptions {
277
- readonly each: boolean | undefined;
278
- readonly fails: boolean | undefined;
279
- readonly concurrent: boolean | undefined;
280
- readonly shuffle: boolean | undefined;
281
- readonly retry: number | undefined;
282
- readonly repeats: number | undefined;
283
- readonly mode: "run" | "only" | "skip" | "todo";
284
- }
285
- type TestSuiteState = "skipped" | "pending" | "failed" | "passed";
286
- type TestModuleState = TestSuiteState | "queued";
287
- type TestState = TestResult["state"];
288
- type TestResult = TestResultPassed | TestResultFailed | TestResultSkipped | TestResultPending;
289
- interface TestResultPending {
290
- /**
291
- * The test was collected, but didn't finish running yet.
292
- */
293
- readonly state: "pending";
294
- /**
295
- * Pending tests have no errors.
296
- */
297
- readonly errors: undefined;
298
- }
299
- interface TestResultPassed {
300
- /**
301
- * The test passed successfully.
302
- */
303
- readonly state: "passed";
304
- /**
305
- * Errors that were thrown during the test execution.
306
- *
307
- * **Note**: If test was retried successfully, errors will still be reported.
308
- */
309
- readonly errors: ReadonlyArray<TestError> | undefined;
310
- }
311
- interface TestResultFailed {
312
- /**
313
- * The test failed to execute.
314
- */
315
- readonly state: "failed";
316
- /**
317
- * Errors that were thrown during the test execution.
318
- */
319
- readonly errors: ReadonlyArray<TestError>;
320
- }
321
- interface TestResultSkipped {
322
- /**
323
- * The test was skipped with `only` (on another test), `skip` or `todo` flag.
324
- * You can see which one was used in the `options.mode` option.
325
- */
326
- readonly state: "skipped";
327
- /**
328
- * Skipped tests have no errors.
329
- */
330
- readonly errors: undefined;
331
- /**
332
- * A custom note passed down to `ctx.skip(note)`.
333
- */
334
- readonly note: string | undefined;
335
- }
336
- interface TestDiagnostic {
337
- /**
338
- * If the duration of the test is above `slowTestThreshold`.
339
- */
340
- readonly slow: boolean;
341
- /**
342
- * The amount of memory used by the test in bytes.
343
- * This value is only available if the test was executed with `logHeapUsage` flag.
344
- */
345
- readonly heap: number | undefined;
346
- /**
347
- * The time it takes to execute the test in ms.
348
- */
349
- readonly duration: number;
350
- /**
351
- * The time in ms when the test started.
352
- */
353
- readonly startTime: number;
354
- /**
355
- * The amount of times the test was retried.
356
- */
357
- readonly retryCount: number;
358
- /**
359
- * The amount of times the test was repeated as configured by `repeats` option.
360
- * This value can be lower if the test failed during the repeat and no `retry` is configured.
361
- */
362
- readonly repeatCount: number;
363
- /**
364
- * If test passed on a second retry.
365
- */
366
- readonly flaky: boolean;
367
- }
368
- interface ModuleDiagnostic {
369
- /**
370
- * The time it takes to import and initiate an environment.
371
- */
372
- readonly environmentSetupDuration: number;
373
- /**
374
- * The time it takes Vitest to setup test harness (runner, mocks, etc.).
375
- */
376
- readonly prepareDuration: number;
377
- /**
378
- * The time it takes to import the test module.
379
- * This includes importing everything in the module and executing suite callbacks.
380
- */
381
- readonly collectDuration: number;
382
- /**
383
- * The time it takes to import the setup module.
384
- */
385
- readonly setupDuration: number;
386
- /**
387
- * Accumulated duration of all tests and hooks in the module.
388
- */
389
- readonly duration: number;
390
- /**
391
- * The amount of memory used by the test module in bytes.
392
- * This value is only available if the test was executed with `logHeapUsage` flag.
393
- */
394
- readonly heap: number | undefined;
395
- /**
396
- * The time spent importing every non-externalized dependency that Vitest has processed.
397
- */
398
- readonly importDurations: Record<string, ImportDuration>;
399
- }
400
- declare function experimental_getRunnerTask(entity: TestCase): Test;
401
- declare function experimental_getRunnerTask(entity: TestSuite): Suite;
402
- declare function experimental_getRunnerTask(entity: TestModule): File;
403
- declare function experimental_getRunnerTask(entity: TestCase | TestSuite | TestModule): Suite | File | Test;
404
-
405
- declare class TestSpecification {
406
- /**
407
- * The task ID associated with the test module.
408
- */
409
- readonly taskId: string;
410
- /**
411
- * The test project that the module belongs to.
412
- */
413
- readonly project: TestProject;
414
- /**
415
- * The ID of the module in the Vite module graph. It is usually an absolute file path.
416
- */
417
- readonly moduleId: string;
418
- /**
419
- * The current test pool. It's possible to have multiple pools in a single test project with `poolMatchGlob` and `typecheck.enabled`.
420
- * @experimental In Vitest 4, the project will only support a single pool and this property will be removed.
421
- */
422
- readonly pool: Pool;
423
- /**
424
- * Line numbers of the test locations to run.
425
- */
426
- readonly testLines: number[] | undefined;
427
- constructor(project: TestProject, moduleId: string, pool: Pool, testLines?: number[] | undefined);
428
- /**
429
- * Test module associated with the specification.
430
- */
431
- get testModule(): TestModule | undefined;
432
- toJSON(): SerializedTestSpecification;
433
- }
434
-
435
- interface CoverageSummaryData {
436
- lines: Totals;
437
- statements: Totals;
438
- branches: Totals;
439
- functions: Totals;
440
- }
441
-
442
- declare class CoverageSummary {
443
- constructor(data: CoverageSummary | CoverageSummaryData);
444
- merge(obj: CoverageSummary): CoverageSummary;
445
- toJSON(): CoverageSummaryData;
446
- isEmpty(): boolean;
447
- data: CoverageSummaryData;
448
- lines: Totals;
449
- statements: Totals;
450
- branches: Totals;
451
- functions: Totals;
452
- }
453
-
454
- interface CoverageMapData {
455
- [key: string]: FileCoverage | FileCoverageData;
456
- }
457
-
458
- declare class CoverageMap {
459
- constructor(data: CoverageMapData | CoverageMap);
460
- addFileCoverage(pathOrObject: string | FileCoverage | FileCoverageData): void;
461
- files(): string[];
462
- fileCoverageFor(filename: string): FileCoverage;
463
- filter(callback: (key: string) => boolean): void;
464
- getCoverageSummary(): CoverageSummary;
465
- merge(data: CoverageMapData | CoverageMap): void;
466
- toJSON(): CoverageMapData;
467
- data: CoverageMapData;
468
- }
469
-
470
- interface Location {
471
- line: number;
472
- column: number;
473
- }
474
-
475
- interface Range {
476
- start: Location;
477
- end: Location;
478
- }
479
-
480
- interface BranchMapping {
481
- loc: Range;
482
- type: string;
483
- locations: Range[];
484
- line: number;
485
- }
486
-
487
- interface FunctionMapping {
488
- name: string;
489
- decl: Range;
490
- loc: Range;
491
- line: number;
492
- }
493
-
494
- interface FileCoverageData {
495
- path: string;
496
- statementMap: { [key: string]: Range };
497
- fnMap: { [key: string]: FunctionMapping };
498
- branchMap: { [key: string]: BranchMapping };
499
- s: { [key: string]: number };
500
- f: { [key: string]: number };
501
- b: { [key: string]: number[] };
502
- }
503
-
504
- interface Totals {
505
- total: number;
506
- covered: number;
507
- skipped: number;
508
- pct: number;
509
- }
510
-
511
- interface Coverage {
512
- covered: number;
513
- total: number;
514
- coverage: number;
515
- }
516
-
517
- declare class FileCoverage implements FileCoverageData {
518
- constructor(data: string | FileCoverage | FileCoverageData);
519
- merge(other: FileCoverageData): void;
520
- getBranchCoverageByLine(): { [line: number]: Coverage };
521
- getLineCoverage(): { [line: number]: number };
522
- getUncoveredLines(): number[];
523
- resetHits(): void;
524
- computeBranchTotals(): Totals;
525
- computeSimpleTotals(): Totals;
526
- toSummary(): CoverageSummary;
527
- toJSON(): object;
528
-
529
- data: FileCoverageData;
530
- path: string;
531
- statementMap: { [key: string]: Range };
532
- fnMap: { [key: string]: FunctionMapping };
533
- branchMap: { [key: string]: BranchMapping };
534
- s: { [key: string]: number };
535
- f: { [key: string]: number };
536
- b: { [key: string]: number[] };
537
- }
538
-
539
- interface Node {
540
- isRoot(): boolean;
541
- visit(visitor: Visitor, state: any): void;
542
- }
543
-
544
- interface Visitor<N extends Node = Node> {
545
- onStart(root: N, state: any): void;
546
- onSummary(root: N, state: any): void;
547
- onDetail(root: N, state: any): void;
548
- onSummaryEnd(root: N, state: any): void;
549
- onEnd(root: N, state: any): void;
550
- }
551
-
552
- interface FileOptions {
553
- file: string;
554
- }
555
-
556
- interface ProjectOptions {
557
- projectRoot: string;
558
- }
559
-
560
- interface ReportOptions {
561
- clover: CloverOptions;
562
- cobertura: CoberturaOptions;
563
- "html-spa": HtmlSpaOptions;
564
- html: HtmlOptions;
565
- json: JsonOptions$1;
566
- "json-summary": JsonSummaryOptions;
567
- lcov: LcovOptions;
568
- lcovonly: LcovOnlyOptions;
569
- none: never;
570
- teamcity: TeamcityOptions;
571
- text: TextOptions;
572
- "text-lcov": TextLcovOptions;
573
- "text-summary": TextSummaryOptions;
574
- }
575
-
576
- interface CloverOptions extends FileOptions, ProjectOptions {}
577
-
578
- interface CoberturaOptions extends FileOptions, ProjectOptions {}
579
-
580
- interface HtmlSpaOptions extends HtmlOptions {
581
- metricsToShow: Array<"lines" | "branches" | "functions" | "statements">;
582
- }
583
- interface HtmlOptions {
584
- verbose: boolean;
585
- skipEmpty: boolean;
586
- subdir: string;
587
- linkMapper: LinkMapper;
588
- }
589
-
590
- type JsonOptions$1 = FileOptions;
591
- type JsonSummaryOptions = FileOptions;
592
-
593
- interface LcovOptions extends FileOptions, ProjectOptions {}
594
- interface LcovOnlyOptions extends FileOptions, ProjectOptions {}
595
-
596
- interface TeamcityOptions extends FileOptions {
597
- blockName: string;
598
- }
599
-
600
- interface TextOptions extends FileOptions {
601
- maxCols: number;
602
- skipEmpty: boolean;
603
- skipFull: boolean;
604
- }
605
- type TextLcovOptions = ProjectOptions;
606
- type TextSummaryOptions = FileOptions;
607
-
608
- interface LinkMapper {
609
- getPath(node: string | Node): string;
610
- relativePath(source: string | Node, target: string | Node): string;
611
- assetPath(node: Node, name: string): string;
612
- }
613
-
614
- type TransformResult = string | Partial<TransformResult$1> | undefined | null | void;
615
- type CoverageResults = unknown;
616
- interface CoverageProvider {
617
- name: string;
618
- /** Called when provider is being initialized before tests run */
619
- initialize: (ctx: Vitest) => Promise<void> | void;
620
- /** Called when setting coverage options for Vitest context (`ctx.config.coverage`) */
621
- resolveOptions: () => ResolvedCoverageOptions;
622
- /** Callback to clean previous reports */
623
- clean: (clean?: boolean) => void | Promise<void>;
624
- /** Called with coverage results after a single test file has been run */
625
- onAfterSuiteRun: (meta: AfterSuiteRunMeta) => void | Promise<void>;
626
- /** Callback called when test run fails */
627
- onTestFailure?: () => void | Promise<void>;
628
- /** Callback to generate final coverage results */
629
- generateCoverage: (reportContext: ReportContext) => CoverageResults | Promise<CoverageResults>;
630
- /** Callback to convert coverage results to coverage reports. Called with results returned from `generateCoverage` */
631
- reportCoverage: (coverage: CoverageResults, reportContext: ReportContext) => void | Promise<void>;
632
- /** Callback for `--merge-reports` options. Called with multiple coverage results generated by `generateCoverage`. */
633
- mergeReports?: (coverages: CoverageResults[]) => void | Promise<void>;
634
- /** Callback called for instrumenting files with coverage counters. */
635
- onFileTransform?: (sourceCode: string, id: string, pluginCtx: any) => TransformResult | Promise<TransformResult>;
636
- /**
637
- * Return `true` if this file is transformed by the coverage provider.
638
- * This is used to generate the persistent file hash by `fsModuleCache`
639
- * @experimental
640
- */
641
- requiresTransform?: (id: string) => boolean;
642
- /** Callback that's called when the coverage is enabled via a programmatic `enableCoverage` API. */
643
- onEnabled?: () => void | Promise<void>;
644
- }
645
- interface ReportContext {
646
- /** Indicates whether all tests were run. False when only specific tests were run. */
647
- allTestsRun?: boolean;
648
- }
649
- interface CoverageProviderModule extends RuntimeCoverageProviderModule {
650
- /**
651
- * Factory for creating a new coverage provider
652
- */
653
- getProvider: () => CoverageProvider | Promise<CoverageProvider>;
654
- }
655
- type CoverageReporter = keyof ReportOptions | (string & {});
656
- type CoverageReporterWithOptions<ReporterName extends CoverageReporter = CoverageReporter> = ReporterName extends keyof ReportOptions ? ReportOptions[ReporterName] extends never ? [ReporterName, object] : [ReporterName, Partial<ReportOptions[ReporterName]>] : [ReporterName, Record<string, unknown>];
657
- type CoverageProviderName = "v8" | "istanbul" | "custom" | undefined;
658
- type CoverageOptions<T extends CoverageProviderName = CoverageProviderName> = T extends "istanbul" ? {
659
- provider: T;
660
- } & CoverageIstanbulOptions : T extends "v8" ? {
661
- /**
662
- * Provider to use for coverage collection.
663
- *
664
- * @default 'v8'
665
- */
666
- provider: T;
667
- } & CoverageV8Options : T extends "custom" ? {
668
- provider: T;
669
- } & CustomProviderOptions : {
670
- provider?: T;
671
- } & CoverageV8Options;
672
- /** Fields that have default values. Internally these will always be defined. */
673
- type FieldsWithDefaultValues = "enabled" | "clean" | "cleanOnRerun" | "reportsDirectory" | "exclude" | "reportOnFailure" | "allowExternal" | "processingConcurrency";
674
- type ResolvedCoverageOptions<T extends CoverageProviderName = CoverageProviderName> = CoverageOptions<T> & Required<Pick<CoverageOptions<T>, FieldsWithDefaultValues>> & {
675
- reporter: CoverageReporterWithOptions[];
676
- };
677
- interface BaseCoverageOptions {
678
- /**
679
- * Enables coverage collection. Can be overridden using `--coverage` CLI option.
680
- *
681
- * @default false
682
- */
683
- enabled?: boolean;
684
- /**
685
- * List of files included in coverage as glob patterns.
686
- * By default only files covered by tests are included.
687
- *
688
- * See [Including and excluding files from coverage report](https://vitest.dev/guide/coverage.html#including-and-excluding-files-from-coverage-report) for examples.
689
- */
690
- include?: string[];
691
- /**
692
- * List of files excluded from coverage as glob patterns.
693
- * Files are first checked against `coverage.include`.
694
- *
695
- * See [Including and excluding files from coverage report](https://vitest.dev/guide/coverage.html#including-and-excluding-files-from-coverage-report) for examples.
696
- */
697
- exclude?: string[];
698
- /**
699
- * Clean coverage results before running tests
700
- *
701
- * @default true
702
- */
703
- clean?: boolean;
704
- /**
705
- * Clean coverage report on watch rerun
706
- *
707
- * @default true
708
- */
709
- cleanOnRerun?: boolean;
710
- /**
711
- * Directory to write coverage report to
712
- *
713
- * @default './coverage'
714
- */
715
- reportsDirectory?: string;
716
- /**
717
- * Coverage reporters to use.
718
- * See [istanbul documentation](https://istanbul.js.org/docs/advanced/alternative-reporters/) for detailed list of all reporters.
719
- *
720
- * @default ['text', 'html', 'clover', 'json']
721
- */
722
- reporter?: Arrayable<CoverageReporter> | (CoverageReporter | [CoverageReporter] | CoverageReporterWithOptions)[];
723
- /**
724
- * Do not show files with 100% statement, branch, and function coverage
725
- *
726
- * @default false
727
- */
728
- skipFull?: boolean;
729
- /**
730
- * Configurations for thresholds
731
- *
732
- * @example
733
- *
734
- * ```ts
735
- * {
736
- * // Thresholds for all files
737
- * functions: 95,
738
- * branches: 70,
739
- * perFile: true,
740
- * autoUpdate: true,
741
- *
742
- * // Thresholds for utilities
743
- * 'src/utils/**.ts': {
744
- * lines: 100,
745
- * statements: 95,
746
- * }
747
- * }
748
- * ```
749
- */
750
- thresholds?: Thresholds | ({
751
- [glob: string]: Pick<Thresholds, 100 | "statements" | "functions" | "branches" | "lines">;
752
- } & Thresholds);
753
- /**
754
- * Watermarks for statements, lines, branches and functions.
755
- *
756
- * Default value is `[50,80]` for each property.
757
- */
758
- watermarks?: {
759
- statements?: [number, number];
760
- functions?: [number, number];
761
- branches?: [number, number];
762
- lines?: [number, number];
763
- };
764
- /**
765
- * Generate coverage report even when tests fail.
766
- *
767
- * @default false
768
- */
769
- reportOnFailure?: boolean;
770
- /**
771
- * Collect coverage of files outside the project `root`.
772
- *
773
- * @default false
774
- */
775
- allowExternal?: boolean;
776
- /**
777
- * Apply exclusions again after coverage has been remapped to original sources.
778
- * This is useful when your source files are transpiled and may contain source maps
779
- * of non-source files.
780
- *
781
- * Use this option when you are seeing files that show up in report even if they
782
- * match your `coverage.exclude` patterns.
783
- *
784
- * @default false
785
- */
786
- excludeAfterRemap?: boolean;
787
- /**
788
- * Concurrency limit used when processing the coverage results.
789
- * Defaults to `Math.min(20, os.availableParallelism?.() ?? os.cpus().length)`
790
- */
791
- processingConcurrency?: number;
792
- /**
793
- * Set to array of class method names to ignore for coverage
794
- *
795
- * @default []
796
- */
797
- ignoreClassMethods?: string[];
798
- }
799
- interface CoverageIstanbulOptions extends BaseCoverageOptions {}
800
- interface CoverageV8Options extends BaseCoverageOptions {}
801
- interface CustomProviderOptions extends Pick<BaseCoverageOptions, FieldsWithDefaultValues> {
802
- /** Name of the module or path to a file to load the custom provider from */
803
- customProviderModule: string;
804
- }
805
- interface Thresholds {
806
- /** Set global thresholds to `100` */
807
- 100?: boolean;
808
- /** Check thresholds per file. */
809
- perFile?: boolean;
810
- /**
811
- * Update threshold values automatically when current coverage is higher than earlier thresholds
812
- * Also can accept a function to format the new threshold values
813
- *
814
- * @default false
815
- */
816
- autoUpdate?: boolean | ((newThreshold: number) => number);
817
- /** Thresholds for statements */
818
- statements?: number;
819
- /** Thresholds for functions */
820
- functions?: number;
821
- /** Thresholds for branches */
822
- branches?: number;
823
- /** Thresholds for lines */
824
- lines?: number;
825
- }
826
-
827
- interface TestRunResult {
828
- testModules: TestModule[];
829
- unhandledErrors: unknown[];
830
- }
831
-
832
- declare class TypeCheckError extends Error {
833
- message: string;
834
- stacks: ParsedStack[];
835
- name: string;
836
- constructor(message: string, stacks: ParsedStack[]);
837
- }
838
-
839
- interface ErrorOptions {
840
- type?: string;
841
- fullStack?: boolean;
842
- project?: TestProject;
843
- verbose?: boolean;
844
- screenshotPaths?: string[];
845
- task?: Task;
846
- showCodeFrame?: boolean;
847
- }
848
- type Listener = () => void;
849
- declare class Logger {
850
- ctx: Vitest;
851
- outputStream: NodeJS.WriteStream | Writable;
852
- errorStream: NodeJS.WriteStream | Writable;
853
- private _clearScreenPending;
854
- private _highlights;
855
- private cleanupListeners;
856
- console: Console;
857
- constructor(ctx: Vitest, outputStream?: NodeJS.WriteStream | Writable, errorStream?: NodeJS.WriteStream | Writable);
858
- log(...args: any[]): void;
859
- error(...args: any[]): void;
860
- warn(...args: any[]): void;
861
- clearFullScreen(message?: string): void;
862
- clearScreen(message: string, force?: boolean): void;
863
- private _clearScreen;
864
- printError(err: unknown, options?: ErrorOptions): void;
865
- deprecate(message: string): void;
866
- clearHighlightCache(filename?: string): void;
867
- highlight(filename: string, source: string): string;
868
- printNoTestFound(filters?: string[]): void;
869
- printBanner(): void;
870
- printBrowserBanner(project: TestProject): void;
871
- printUnhandledErrors(errors: ReadonlyArray<unknown>): void;
872
- printSourceTypeErrors(errors: TypeCheckError[]): void;
873
- getColumns(): number;
874
- onTerminalCleanup(listener: Listener): void;
875
- private addCleanupListeners;
876
- private registerUnhandledRejection;
877
- }
878
-
879
- interface SuiteResultCache {
880
- failed: boolean;
881
- duration: number;
882
- }
883
- declare class ResultsCache {
884
- private logger;
885
- private cache;
886
- private workspacesKeyMap;
887
- private cachePath;
888
- private version;
889
- private root;
890
- constructor(logger: Logger);
891
- getCachePath(): string | null;
892
- setConfig(root: string, config: ResolvedConfig["cache"]): void;
893
- getResults(key: string): SuiteResultCache | undefined;
894
- clearCache(): Promise<void>;
895
- readFromCache(): Promise<void>;
896
- updateResults(files: File[]): void;
897
- removeFromCache(filepath: string): void;
898
- writeToCache(): Promise<void>;
899
- }
900
-
901
- type FileStatsCache = Pick<Stats, "size">;
902
- declare class FilesStatsCache {
903
- cache: Map<string, FileStatsCache>;
904
- getStats(key: string): FileStatsCache | undefined;
905
- populateStats(root: string, specs: TestSpecification[]): Promise<void>;
906
- updateStats(fsPath: string, key: string): Promise<void>;
907
- removeStats(fsPath: string): void;
908
- }
909
-
910
- declare class VitestCache {
911
- results: ResultsCache;
912
- stats: FilesStatsCache;
913
- constructor(logger: Logger);
914
- getFileTestResults(key: string): SuiteResultCache | undefined;
915
- getFileStats(key: string): {
916
- size: number;
917
- } | undefined;
918
- static resolveCacheDir(root: string, dir?: string, projectName?: string): string;
919
- }
920
-
921
- declare class VitestPackageInstaller {
922
- isPackageExists(name: string, options?: {
923
- paths?: string[];
924
- }): boolean;
925
- ensureInstalled(dependency: string, root: string, version?: string): Promise<boolean>;
926
- }
927
-
928
- type TestRunEndReason = "passed" | "interrupted" | "failed";
929
- interface Reporter {
930
- onInit?: (vitest: Vitest) => void;
931
- /**
932
- * Called when the project initiated the browser instance.
933
- * project.browser will always be defined.
934
- * @experimental
935
- */
936
- onBrowserInit?: (project: TestProject) => Awaitable<void>;
937
- onTestRemoved?: (trigger?: string) => Awaitable<void>;
938
- onWatcherStart?: (files?: File[], errors?: unknown[]) => Awaitable<void>;
939
- onWatcherRerun?: (files: string[], trigger?: string) => Awaitable<void>;
940
- onServerRestart?: (reason?: string) => Awaitable<void>;
941
- onUserConsoleLog?: (log: UserConsoleLog) => Awaitable<void>;
942
- onProcessTimeout?: () => Awaitable<void>;
943
- /**
944
- * Called when the new test run starts.
945
- */
946
- onTestRunStart?: (specifications: ReadonlyArray<TestSpecification>) => Awaitable<void>;
947
- /**
948
- * Called when the test run is finished.
949
- */
950
- onTestRunEnd?: (testModules: ReadonlyArray<TestModule>, unhandledErrors: ReadonlyArray<SerializedError>, reason: TestRunEndReason) => Awaitable<void>;
951
- /**
952
- * Called when the module is enqueued for testing. The file itself is not loaded yet.
953
- */
954
- onTestModuleQueued?: (testModule: TestModule) => Awaitable<void>;
955
- /**
956
- * Called when the test file is loaded and the module is ready to run tests.
957
- */
958
- onTestModuleCollected?: (testModule: TestModule) => Awaitable<void>;
959
- /**
960
- * Called when starting to run tests of the test file
961
- */
962
- onTestModuleStart?: (testModule: TestModule) => Awaitable<void>;
963
- /**
964
- * Called when all tests of the test file have finished running.
965
- */
966
- onTestModuleEnd?: (testModule: TestModule) => Awaitable<void>;
967
- /**
968
- * Called when test case is ready to run.
969
- * Called before the `beforeEach` hooks for the test are run.
970
- */
971
- onTestCaseReady?: (testCase: TestCase) => Awaitable<void>;
972
- /**
973
- * Called after the test and its hooks are finished running.
974
- * The `result()` cannot be `pending`.
975
- */
976
- onTestCaseResult?: (testCase: TestCase) => Awaitable<void>;
977
- /**
978
- * Called when annotation is added via the `task.annotate` API.
979
- */
980
- onTestCaseAnnotate?: (testCase: TestCase, annotation: TestAnnotation) => Awaitable<void>;
981
- /**
982
- * Called when artifacts are recorded on tests via the `recordArtifact` utility.
983
- */
984
- onTestCaseArtifactRecord?: (testCase: TestCase, artifact: TestArtifact) => Awaitable<void>;
985
- /**
986
- * Called when test suite is ready to run.
987
- * Called before the `beforeAll` hooks for the test are run.
988
- */
989
- onTestSuiteReady?: (testSuite: TestSuite) => Awaitable<void>;
990
- /**
991
- * Called after the test suite and its hooks are finished running.
992
- * The `state` cannot be `pending`.
993
- */
994
- onTestSuiteResult?: (testSuite: TestSuite) => Awaitable<void>;
995
- /**
996
- * Called before the hook starts to run.
997
- */
998
- onHookStart?: (hook: ReportedHookContext) => Awaitable<void>;
999
- /**
1000
- * Called after the hook finished running.
1001
- */
1002
- onHookEnd?: (hook: ReportedHookContext) => Awaitable<void>;
1003
- onCoverage?: (coverage: unknown) => Awaitable<void>;
1004
- }
1005
-
1006
- interface BlobOptions {
1007
- outputFile?: string;
1008
- }
1009
- declare class BlobReporter implements Reporter {
1010
- start: number;
1011
- ctx: Vitest;
1012
- options: BlobOptions;
1013
- coverage: unknown | undefined;
1014
- constructor(options: BlobOptions);
1015
- onInit(ctx: Vitest): void;
1016
- onCoverage(coverage: unknown): void;
1017
- onTestRunEnd(testModules: ReadonlyArray<TestModule>, unhandledErrors: ReadonlyArray<SerializedError>): Promise<void>;
1018
- }
1019
- interface MergedBlobs {
1020
- files: File[];
1021
- errors: unknown[];
1022
- coverages: unknown[];
1023
- executionTimes: number[];
1024
- }
1025
-
1026
- declare class StateManager {
1027
- filesMap: Map<string, File[]>;
1028
- pathsSet: Set<string>;
1029
- idMap: Map<string, Task>;
1030
- taskFileMap: WeakMap<Task, File>;
1031
- errorsSet: Set<unknown>;
1032
- reportedTasksMap: WeakMap<Task, TestModule | TestCase | TestSuite>;
1033
- blobs?: MergedBlobs;
1034
- transformTime: number;
1035
- metadata: Record<string, {
1036
- externalized: Record<string, string>;
1037
- duration: Record<string, number[]>;
1038
- tmps: Record<string, string>;
1039
- dumpDir?: string;
1040
- outline?: {
1041
- externalized: number;
1042
- inlined: number;
1043
- };
1044
- }>;
1045
- onUnhandledError?: OnUnhandledErrorCallback;
1046
- constructor(options: {
1047
- onUnhandledError?: OnUnhandledErrorCallback;
1048
- });
1049
- catchError(error: unknown, type: string): void;
1050
- clearErrors(): void;
1051
- getUnhandledErrors(): unknown[];
1052
- getPaths(): string[];
1053
- /**
1054
- * Return files that were running or collected.
1055
- */
1056
- getFiles(keys?: string[]): File[];
1057
- getTestModules(keys?: string[]): TestModule[];
1058
- getFilepaths(): string[];
1059
- getFailedFilepaths(): string[];
1060
- collectPaths(paths?: string[]): void;
1061
- collectFiles(project: TestProject, files?: File[]): void;
1062
- clearFiles(project: TestProject, paths?: string[]): void;
1063
- updateId(task: Task, project: TestProject): void;
1064
- getReportedEntity(task: Task): TestModule | TestCase | TestSuite | undefined;
1065
- getReportedEntityById(taskId: string): TestModule | TestCase | TestSuite | undefined;
1066
- updateTasks(packs: TaskResultPack[]): void;
1067
- updateUserLog(log: UserConsoleLog): void;
1068
- getCountOfFailedTests(): number;
1069
- cancelFiles(files: FileSpecification[], project: TestProject): void;
1070
- }
1071
-
1072
- declare class VitestWatcher {
1073
- private vitest;
1074
- /**
1075
- * Modules that will be invalidated on the next run.
1076
- */
1077
- readonly invalidates: Set<string>;
1078
- /**
1079
- * Test files that have changed and need to be rerun.
1080
- */
1081
- readonly changedTests: Set<string>;
1082
- private readonly _onRerun;
1083
- constructor(vitest: Vitest);
1084
- unregisterWatcher: () => void;
1085
- registerWatcher(): this;
1086
- private scheduleRerun;
1087
- private getTestFilesFromWatcherTrigger;
1088
- onFileChange: (id: string) => void;
1089
- onFileDelete: (id: string) => void;
1090
- onFileCreate: (id: string) => void;
1091
- private handleSetupFile;
1092
- /**
1093
- * @returns A value indicating whether rerun is needed (changedTests was mutated)
1094
- */
1095
- private handleFileChanged;
1096
- }
1097
- interface WatcherTriggerPattern {
1098
- pattern: RegExp;
1099
- testsToRun: (file: string, match: RegExpMatchArray) => string[] | string | null | undefined | void;
1100
- }
1101
-
1102
- interface VitestOptions {
1103
- packageInstaller?: VitestPackageInstaller;
1104
- stdin?: NodeJS.ReadStream;
1105
- stdout?: NodeJS.WriteStream | Writable;
1106
- stderr?: NodeJS.WriteStream | Writable;
1107
- }
1108
- declare class Vitest {
1109
- readonly mode: VitestRunMode;
1110
- /**
1111
- * Current Vitest version.
1112
- * @example '2.0.0'
1113
- */
1114
- readonly version: string;
1115
- static readonly version: string;
1116
- /**
1117
- * The logger instance used to log messages. It's recommended to use this logger instead of `console`.
1118
- * It's possible to override stdout and stderr streams when initiating Vitest.
1119
- * @example
1120
- * new Vitest('test', {
1121
- * stdout: new Writable(),
1122
- * })
1123
- */
1124
- readonly logger: Logger;
1125
- /**
1126
- * The package installer instance used to install Vitest packages.
1127
- * @example
1128
- * await vitest.packageInstaller.ensureInstalled('@vitest/browser', process.cwd())
1129
- */
1130
- readonly packageInstaller: VitestPackageInstaller;
1131
- /**
1132
- * A path to the built Vitest directory. This is usually a folder in `node_modules`.
1133
- */
1134
- readonly distPath: string;
1135
- /**
1136
- * A list of projects that are currently running.
1137
- * If projects were filtered with `--project` flag, they won't appear here.
1138
- */
1139
- projects: TestProject[];
1140
- /**
1141
- * A watcher handler. This is not the file system watcher. The handler only
1142
- * exposes methods to handle changed files.
1143
- *
1144
- * If you have your own watcher, you can use these methods to replicate
1145
- * Vitest behaviour.
1146
- */
1147
- readonly watcher: VitestWatcher;
1148
- private isFirstRun;
1149
- private restartsCount;
1150
- private readonly specifications;
1151
- private pool;
1152
- private _config?;
1153
- private _vite?;
1154
- private _state?;
1155
- private _cache?;
1156
- private _snapshot?;
1157
- private _coverageProvider?;
1158
- constructor(mode: VitestRunMode, cliOptions: UserConfig, options?: VitestOptions);
1159
- private _onRestartListeners;
1160
- private _onClose;
1161
- private _onSetServer;
1162
- private _onCancelListeners;
1163
- private _onUserTestsRerun;
1164
- private _onFilterWatchedSpecification;
1165
- /**
1166
- * The global config.
1167
- */
1168
- get config(): ResolvedConfig;
1169
- /**
1170
- * Global Vite's dev server instance.
1171
- */
1172
- get vite(): ViteDevServer;
1173
- /**
1174
- * The global test state manager.
1175
- * @experimental The State API is experimental and not subject to semver.
1176
- */
1177
- get state(): StateManager;
1178
- /**
1179
- * The global snapshot manager. You can access the current state on `snapshot.summary`.
1180
- */
1181
- get snapshot(): SnapshotManager;
1182
- /**
1183
- * Test results and test file stats cache. Primarily used by the sequencer to sort tests.
1184
- */
1185
- get cache(): VitestCache;
1186
- enableCoverage(): Promise<void>;
1187
- disableCoverage(): void;
1188
- private clearAllCachePaths;
1189
- private _coverageOverrideCache;
1190
- /**
1191
- * Inject new test projects into the workspace.
1192
- * @param config Glob, config path or a custom config options.
1193
- * @returns An array of new test projects. Can be empty if the name was filtered out.
1194
- */
1195
- private injectTestProject;
1196
- /**
1197
- * Provide a value to the test context. This value will be available to all tests with `inject`.
1198
- */
1199
- provide: <T extends keyof ProvidedContext & string>(key: T, value: ProvidedContext[T]) => void;
1200
- /**
1201
- * Get global provided context.
1202
- */
1203
- getProvidedContext(): ProvidedContext;
1204
- /**
1205
- * Return project that has the root (or "global") config.
1206
- */
1207
- getRootProject(): TestProject;
1208
- getProjectByName(name: string): TestProject;
1209
- /**
1210
- * Import a file using Vite module runner. The file will be transformed by Vite and executed in a separate context.
1211
- * @param moduleId The ID of the module in Vite module graph
1212
- */
1213
- import<T>(moduleId: string): Promise<T>;
1214
- /**
1215
- * Creates a coverage provider if `coverage` is enabled in the config.
1216
- */
1217
- createCoverageProvider(): Promise<CoverageProvider | null>;
1218
- private resolveProjects;
1219
- /**
1220
- * Glob test files in every project and create a TestSpecification for each file and pool.
1221
- * @param filters String filters to match the test files.
1222
- */
1223
- globTestSpecifications(filters?: string[]): Promise<TestSpecification[]>;
1224
- private initCoverageProvider;
1225
- /**
1226
- * Deletes all Vitest caches, including `experimental.fsModuleCache`.
1227
- * @experimental
1228
- */
1229
- experimental_clearCache(): Promise<void>;
1230
- /**
1231
- * Merge reports from multiple runs located in the specified directory (value from `--merge-reports` if not specified).
1232
- */
1233
- mergeReports(directory?: string): Promise<TestRunResult>;
1234
- /**
1235
- * Returns the seed, if tests are running in a random order.
1236
- */
1237
- getSeed(): number | null;
1238
- collect(filters?: string[]): Promise<TestRunResult>;
1239
- /**
1240
- * Returns the list of test files that match the config and filters.
1241
- * @param filters String filters to match the test files
1242
- */
1243
- getRelevantTestSpecifications(filters?: string[]): Promise<TestSpecification[]>;
1244
- /**
1245
- * Initialize reporters, the coverage provider, and run tests.
1246
- * This method can throw an error:
1247
- * - `FilesNotFoundError` if no tests are found
1248
- * - `GitNotFoundError` if `--related` flag is used, but git repository is not initialized
1249
- * - `Error` from the user reporters
1250
- * @param filters String filters to match the test files
1251
- */
1252
- start(filters?: string[]): Promise<TestRunResult>;
1253
- /**
1254
- * Initialize reporters and the coverage provider. This method doesn't run any tests.
1255
- * If the `--watch` flag is provided, Vitest will still run changed tests even if this method was not called.
1256
- */
1257
- init(): Promise<void>;
1258
- /**
1259
- * If there is a test run happening, returns a promise that will
1260
- * resolve when the test run is finished.
1261
- */
1262
- waitForTestRunEnd(): Promise<void>;
1263
- /**
1264
- * Get test specifications associated with the given module. If module is not a test file, an empty array is returned.
1265
- *
1266
- * **Note:** this method relies on a cache generated by `globTestSpecifications`. If the file was not processed yet, use `project.matchesGlobPattern` instead.
1267
- * @param moduleId The module ID to get test specifications for.
1268
- */
1269
- getModuleSpecifications(moduleId: string): TestSpecification[];
1270
- /**
1271
- * Vitest automatically caches test specifications for each file. This method clears the cache for the given file or the whole cache altogether.
1272
- */
1273
- clearSpecificationsCache(moduleId?: string): void;
1274
- /**
1275
- * Run tests for the given test specifications. This does not trigger `onWatcher*` events.
1276
- * @param specifications A list of specifications to run.
1277
- * @param allTestsRun Indicates whether all tests were run. This only matters for coverage.
1278
- */
1279
- runTestSpecifications(specifications: TestSpecification[], allTestsRun?: boolean): Promise<TestRunResult>;
1280
- /**
1281
- * Rerun files and trigger `onWatcherRerun`, `onWatcherStart` and `onTestsRerun` events.
1282
- * @param specifications A list of specifications to run.
1283
- * @param allTestsRun Indicates whether all tests were run. This only matters for coverage.
1284
- */
1285
- rerunTestSpecifications(specifications: TestSpecification[], allTestsRun?: boolean): Promise<TestRunResult>;
1286
- private runFiles;
1287
- /**
1288
- * Returns module's diagnostic. If `testModule` is not provided, `selfTime` and `totalTime` will be aggregated across all tests.
1289
- *
1290
- * If the module was not transformed or executed, the diagnostic will be empty.
1291
- * @experimental
1292
- * @see {@link https://vitest.dev/api/advanced/vitest#getsourcemodulediagnostic}
1293
- */
1294
- experimental_getSourceModuleDiagnostic(moduleId: string, testModule?: TestModule): Promise<SourceModuleDiagnostic>;
1295
- experimental_parseSpecifications(specifications: TestSpecification[], options?: {
1296
- /** @default os.availableParallelism() */
1297
- concurrency?: number;
1298
- }): Promise<TestModule[]>;
1299
- experimental_parseSpecification(specification: TestSpecification): Promise<TestModule>;
1300
- /**
1301
- * Collect tests in specified modules. Vitest will run the files to collect tests.
1302
- * @param specifications A list of specifications to run.
1303
- */
1304
- collectTests(specifications: TestSpecification[]): Promise<TestRunResult>;
1305
- /**
1306
- * Gracefully cancel the current test run. Vitest will wait until all running tests are finished before cancelling.
1307
- */
1308
- cancelCurrentRun(reason: CancelReason): Promise<void>;
1309
- private initializeGlobalSetup;
1310
- /**
1311
- * Update snapshots in specified files. If no files are provided, it will update files with failed tests and obsolete snapshots.
1312
- * @param files The list of files on the file system
1313
- */
1314
- updateSnapshot(files?: string[]): Promise<TestRunResult>;
1315
- /**
1316
- * Enable the mode that allows updating snapshots when running tests.
1317
- * This method doesn't run any tests.
1318
- *
1319
- * Every test that runs after this method is called will update snapshots.
1320
- * To disable the mode, call `resetSnapshotUpdate`.
1321
- */
1322
- enableSnapshotUpdate(): void;
1323
- /**
1324
- * Disable the mode that allows updating snapshots when running tests.
1325
- */
1326
- resetSnapshotUpdate(): void;
1327
- /**
1328
- * Set the global test name pattern to a regexp.
1329
- * This method doesn't run any tests.
1330
- */
1331
- setGlobalTestNamePattern(pattern: string | RegExp): void;
1332
- /**
1333
- * Returns the regexp used for the global test name pattern.
1334
- */
1335
- getGlobalTestNamePattern(): RegExp | undefined;
1336
- /**
1337
- * Resets the global test name pattern. This method doesn't run any tests.
1338
- */
1339
- resetGlobalTestNamePattern(): void;
1340
- private _rerunTimer;
1341
- private scheduleRerun;
1342
- /**
1343
- * Invalidate a file in all projects.
1344
- */
1345
- invalidateFile(filepath: string): void;
1346
- private reportCoverage;
1347
- /**
1348
- * Closes all projects and their associated resources.
1349
- * This can only be called once; the closing promise is cached until the server restarts.
1350
- */
1351
- close(): Promise<void>;
1352
- /**
1353
- * Closes all projects and exit the process
1354
- * @param force If true, the process will exit immediately after closing the projects.
1355
- */
1356
- exit(force?: boolean): Promise<void>;
1357
- /**
1358
- * Should the server be kept running after the tests are done.
1359
- */
1360
- shouldKeepServer(): boolean;
1361
- /**
1362
- * Register a handler that will be called when the server is restarted due to a config change.
1363
- */
1364
- onServerRestart(fn: OnServerRestartHandler): void;
1365
- /**
1366
- * Register a handler that will be called when the test run is cancelled with `vitest.cancelCurrentRun`.
1367
- */
1368
- onCancel(fn: (reason: CancelReason) => Awaitable<void>): () => void;
1369
- /**
1370
- * Register a handler that will be called when the server is closed.
1371
- */
1372
- onClose(fn: () => Awaitable<void>): void;
1373
- /**
1374
- * Register a handler that will be called when the tests are rerunning.
1375
- */
1376
- onTestsRerun(fn: OnTestsRerunHandler): void;
1377
- /**
1378
- * Register a handler that will be called when a file is changed.
1379
- * This callback should return `true` of `false` indicating whether the test file needs to be rerun.
1380
- * @example
1381
- * const testsToRun = [resolve('./test.spec.ts')]
1382
- * vitest.onFilterWatchedSpecification(specification => testsToRun.includes(specification.moduleId))
1383
- */
1384
- onFilterWatchedSpecification(fn: (specification: TestSpecification) => boolean): void;
1385
- /**
1386
- * Check if the project with a given name should be included.
1387
- */
1388
- matchesProjectFilter(name: string): boolean;
1389
- }
1390
- type OnServerRestartHandler = (reason?: string) => Promise<void> | void;
1391
- type OnTestsRerunHandler = (testFiles: TestSpecification[]) => Promise<void> | void;
1392
-
1393
- interface CDPSession {
1394
- send: (method: string, params?: Record<string, unknown>) => Promise<unknown>;
1395
- on: (event: string, listener: (...args: unknown[]) => void) => void;
1396
- once: (event: string, listener: (...args: unknown[]) => void) => void;
1397
- off: (event: string, listener: (...args: unknown[]) => void) => void;
1398
- }
1399
- interface BrowserModuleMocker {
1400
- register: (sessionId: string, module: MockedModule) => Promise<void>;
1401
- delete: (sessionId: string, url: string) => Promise<void>;
1402
- clear: (sessionId: string) => Promise<void>;
1403
- }
1404
- interface BrowserProviderOption<Options extends object = object> {
1405
- name: string;
1406
- supportedBrowser?: ReadonlyArray<string>;
1407
- options: Options;
1408
- providerFactory: (project: TestProject) => BrowserProvider;
1409
- serverFactory: BrowserServerFactory;
1410
- }
1411
- interface BrowserServerOptions {
1412
- project: TestProject;
1413
- coveragePlugin: () => Plugin;
1414
- mocksPlugins: (options: {
1415
- filter: (id: string) => boolean;
1416
- }) => Plugin[];
1417
- metaEnvReplacer: () => Plugin;
1418
- }
1419
- interface BrowserServerFactory {
1420
- (options: BrowserServerOptions): Promise<ParentProjectBrowser>;
1421
- }
1422
- interface BrowserProvider {
1423
- name: string;
1424
- mocker?: BrowserModuleMocker;
1425
- readonly initScripts?: string[];
1426
- /**
1427
- * @experimental opt-in into file parallelisation
1428
- */
1429
- supportsParallelism: boolean;
1430
- getCommandsContext: (sessionId: string) => Record<string, unknown>;
1431
- openPage: (sessionId: string, url: string) => Promise<void>;
1432
- getCDPSession?: (sessionId: string) => Promise<CDPSession>;
1433
- close: () => Awaitable<void>;
1434
- }
1435
- type BrowserBuiltinProvider = "webdriverio" | "playwright" | "preview";
1436
- interface _BrowserNames {}
1437
- type UnsupportedProperties = "browser" | "typecheck" | "alias" | "sequence" | "root" | "pool" | "runner" | "api" | "deps" | "environment" | "environmentOptions" | "server" | "benchmark" | "name";
1438
- interface BrowserInstanceOption extends Omit<ProjectConfig, UnsupportedProperties>, Pick<BrowserConfigOptions, "headless" | "locators" | "viewport" | "testerHtmlPath" | "screenshotDirectory" | "screenshotFailures"> {
1439
- /**
1440
- * Name of the browser
1441
- */
1442
- browser: keyof _BrowserNames extends never ? string : _BrowserNames[keyof _BrowserNames];
1443
- name?: string;
1444
- provider?: BrowserProviderOption;
1445
- }
1446
- interface BrowserConfigOptions {
1447
- /**
1448
- * if running tests in the browser should be the default
1449
- *
1450
- * @default false
1451
- */
1452
- enabled?: boolean;
1453
- /**
1454
- * Configurations for different browser setups
1455
- */
1456
- instances?: BrowserInstanceOption[];
1457
- /**
1458
- * Browser provider
1459
- * @example
1460
- * ```ts
1461
- * import { playwright } from '@vitest/browser-playwright'
1462
- * export default defineConfig({
1463
- * test: {
1464
- * browser: {
1465
- * provider: playwright(),
1466
- * },
1467
- * },
1468
- * })
1469
- * ```
1470
- */
1471
- provider?: BrowserProviderOption;
1472
- /**
1473
- * enable headless mode
1474
- *
1475
- * @default process.env.CI
1476
- */
1477
- headless?: boolean;
1478
- /**
1479
- * Serve API options.
1480
- *
1481
- * The default port is 63315.
1482
- */
1483
- api?: ApiConfig | number;
1484
- /**
1485
- * Isolate test environment after each test
1486
- *
1487
- * @default true
1488
- * @deprecated use top-level `isolate` instead
1489
- */
1490
- isolate?: boolean;
1491
- /**
1492
- * Run test files in parallel if provider supports this option
1493
- * This option only has effect in headless mode (enabled in CI by default)
1494
- *
1495
- * @default // Same as "test.fileParallelism"
1496
- * @deprecated use top-level `fileParallelism` instead
1497
- */
1498
- fileParallelism?: boolean;
1499
- /**
1500
- * Show Vitest UI
1501
- *
1502
- * @default !process.env.CI
1503
- */
1504
- ui?: boolean;
1505
- /**
1506
- * Default viewport size
1507
- */
1508
- viewport?: {
1509
- /**
1510
- * Width of the viewport
1511
- * @default 414
1512
- */
1513
- width: number;
1514
- /**
1515
- * Height of the viewport
1516
- * @default 896
1517
- */
1518
- height: number;
1519
- };
1520
- /**
1521
- * Locator options
1522
- */
1523
- locators?: {
1524
- /**
1525
- * Attribute used to locate elements by test id
1526
- * @default 'data-testid'
1527
- */
1528
- testIdAttribute?: string;
1529
- };
1530
- /**
1531
- * Generate traces that can be viewed on https://trace.playwright.dev/
1532
- *
1533
- * This option is supported only by **playwright** provider.
1534
- */
1535
- trace?: BrowserTraceViewMode | {
1536
- mode: BrowserTraceViewMode;
1537
- /**
1538
- * The directory where all traces will be stored. By default, Vitest
1539
- * stores all traces in `__traces__` folder close to the test file.
1540
- */
1541
- tracesDir?: string;
1542
- /**
1543
- * Whether to capture screenshots during tracing. Screenshots are used to build a timeline preview.
1544
- * @default true
1545
- */
1546
- screenshots?: boolean;
1547
- /**
1548
- * If this option is true tracing will
1549
- * - capture DOM snapshot on every action
1550
- * - record network activity
1551
- * @default true
1552
- */
1553
- snapshots?: boolean;
1554
- };
1555
- /**
1556
- * Directory where screenshots will be saved when page.screenshot() is called
1557
- * If not set, all screenshots are saved to __screenshots__ directory in the same folder as the test file.
1558
- * If this is set, it will be resolved relative to the project root.
1559
- * @default __screenshots__
1560
- */
1561
- screenshotDirectory?: string;
1562
- /**
1563
- * Should Vitest take screenshots if the test fails
1564
- * @default !browser.ui
1565
- */
1566
- screenshotFailures?: boolean;
1567
- /**
1568
- * Path to the index.html file that will be used to run tests.
1569
- */
1570
- testerHtmlPath?: string;
1571
- /**
1572
- * Scripts injected into the main window.
1573
- */
1574
- orchestratorScripts?: BrowserScript[];
1575
- /**
1576
- * Commands that will be executed on the server
1577
- * via the browser `import("vitest/browser").commands` API.
1578
- * @see {@link https://vitest.dev/api/browser/commands}
1579
- */
1580
- commands?: Record<string, BrowserCommand<any>>;
1581
- /**
1582
- * Timeout for connecting to the browser
1583
- * @default 30000
1584
- */
1585
- connectTimeout?: number;
1586
- expect?: {
1587
- toMatchScreenshot?: { [ComparatorName in keyof ToMatchScreenshotComparators] : {
1588
- /**
1589
- * The name of the comparator to use for visual diffing.
1590
- *
1591
- * @defaultValue `'pixelmatch'`
1592
- */
1593
- comparatorName?: ComparatorName;
1594
- comparatorOptions?: ToMatchScreenshotComparators[ComparatorName];
1595
- } }[keyof ToMatchScreenshotComparators] & ToMatchScreenshotOptions;
1596
- };
1597
- /**
1598
- * Enables tracking uncaught errors and exceptions so they can be reported by Vitest.
1599
- *
1600
- * If you need to hide certain errors, it is recommended to use [`onUnhandledError`](https://vitest.dev/config/#onunhandlederror) option instead.
1601
- *
1602
- * Disabling this will completely remove all Vitest error handlers, which can help debugging with the "Pause on exceptions" checkbox turned on.
1603
- * @default true
1604
- */
1605
- trackUnhandledErrors?: boolean;
1606
- }
1607
- interface BrowserCommandContext {
1608
- testPath: string | undefined;
1609
- provider: BrowserProvider;
1610
- project: TestProject;
1611
- sessionId: string;
1612
- triggerCommand: <K extends keyof BrowserCommands>(name: K, ...args: Parameters<BrowserCommands[K]>) => ReturnType<BrowserCommands[K]>;
1613
- }
1614
- interface BrowserServerStateSession {
1615
- project: TestProject;
1616
- connected: () => void;
1617
- fail: (v: Error) => void;
1618
- }
1619
- interface BrowserOrchestrator {
1620
- cleanupTesters: () => Promise<void>;
1621
- createTesters: (options: BrowserTesterOptions) => Promise<void>;
1622
- onCancel: (reason: CancelReason) => Promise<void>;
1623
- $close: () => void;
1624
- }
1625
- interface BrowserServerState {
1626
- orchestrators: Map<string, BrowserOrchestrator>;
1627
- }
1628
- interface ParentProjectBrowser {
1629
- spawn: (project: TestProject) => ProjectBrowser;
1630
- vite: ViteDevServer;
1631
- }
1632
- interface ProjectBrowser {
1633
- vite: ViteDevServer;
1634
- state: BrowserServerState;
1635
- provider: BrowserProvider;
1636
- close: () => Promise<void>;
1637
- initBrowserProvider: (project: TestProject) => Promise<void>;
1638
- parseStacktrace: (stack: string) => ParsedStack[];
1639
- parseErrorStacktrace: (error: TestError, options?: StackTraceParserOptions) => ParsedStack[];
1640
- registerCommand: <K extends keyof BrowserCommands>(name: K, cb: BrowserCommand<Parameters<BrowserCommands[K]>, ReturnType<BrowserCommands[K]>>) => void;
1641
- triggerCommand: <K extends keyof BrowserCommands>(name: K, context: BrowserCommandContext, ...args: Parameters<BrowserCommands[K]>) => ReturnType<BrowserCommands[K]>;
1642
- }
1643
- interface BrowserCommand<
1644
- Payload extends unknown[] = [],
1645
- ReturnValue = any
1646
- > {
1647
- (context: BrowserCommandContext, ...payload: Payload): Awaitable<ReturnValue>;
1648
- }
1649
- interface BrowserScript {
1650
- /**
1651
- * If "content" is provided and type is "module", this will be its identifier.
1652
- *
1653
- * If you are using TypeScript, you can add `.ts` extension here for example.
1654
- * @default `injected-${index}.js`
1655
- */
1656
- id?: string;
1657
- /**
1658
- * JavaScript content to be injected. This string is processed by Vite plugins if type is "module".
1659
- *
1660
- * You can use `id` to give Vite a hint about the file extension.
1661
- */
1662
- content?: string;
1663
- /**
1664
- * Path to the script. This value is resolved by Vite so it can be a node module or a file path.
1665
- */
1666
- src?: string;
1667
- /**
1668
- * If the script should be loaded asynchronously.
1669
- */
1670
- async?: boolean;
1671
- /**
1672
- * Script type.
1673
- * @default 'module'
1674
- */
1675
- type?: string;
1676
- }
1677
- interface ResolvedBrowserOptions extends BrowserConfigOptions {
1678
- name: string;
1679
- enabled: boolean;
1680
- headless: boolean;
1681
- isolate: boolean;
1682
- fileParallelism: boolean;
1683
- api: ApiConfig;
1684
- ui: boolean;
1685
- viewport: {
1686
- width: number;
1687
- height: number;
1688
- };
1689
- screenshotFailures: boolean;
1690
- locators: {
1691
- testIdAttribute: string;
1692
- };
1693
- trace: {
1694
- mode: BrowserTraceViewMode;
1695
- tracesDir?: string;
1696
- screenshots?: boolean;
1697
- snapshots?: boolean;
1698
- };
1699
- }
1700
- type ToMatchScreenshotResolvePath = (data: {
1701
- /**
1702
- * Path **without** extension, sanitized and relative to the test file.
1703
- *
1704
- * This comes from the arguments passed to `toMatchScreenshot`; if called
1705
- * without arguments this will be the auto-generated name.
1706
- *
1707
- * @example
1708
- * test('calls `onClick`', () => {
1709
- * expect(locator).toMatchScreenshot()
1710
- * // arg = "calls-onclick-1"
1711
- * })
1712
- *
1713
- * @example
1714
- * expect(locator).toMatchScreenshot('foo/bar/baz.png')
1715
- * // arg = "foo/bar/baz"
1716
- *
1717
- * @example
1718
- * expect(locator).toMatchScreenshot('../foo/bar/baz.png')
1719
- * // arg = "foo/bar/baz"
1720
- */
1721
- arg: string;
1722
- /**
1723
- * Screenshot extension, with leading dot.
1724
- *
1725
- * This can be set through the arguments passed to `toMatchScreenshot`, but
1726
- * the value will fall back to `'.png'` if an unsupported extension is used.
1727
- */
1728
- ext: string;
1729
- /**
1730
- * The instance's browser name.
1731
- */
1732
- browserName: string;
1733
- /**
1734
- * The value of {@linkcode process.platform}.
1735
- */
1736
- platform: NodeJS.Platform;
1737
- /**
1738
- * The value provided to
1739
- * {@linkcode https://vitest.dev/config/browser/screenshotdirectory|browser.screenshotDirectory},
1740
- * if none is provided, its default value.
1741
- */
1742
- screenshotDirectory: string;
1743
- /**
1744
- * Absolute path to the project's
1745
- * {@linkcode https://vitest.dev/config/#root|root}.
1746
- */
1747
- root: string;
1748
- /**
1749
- * Path to the test file, relative to the project's
1750
- * {@linkcode https://vitest.dev/config/#root|root}.
1751
- */
1752
- testFileDirectory: string;
1753
- /**
1754
- * The test's filename.
1755
- */
1756
- testFileName: string;
1757
- /**
1758
- * The {@linkcode https://vitest.dev/api/#test|test}'s name, including
1759
- * parent {@linkcode https://vitest.dev/api/#describe|describe}, sanitized.
1760
- */
1761
- testName: string;
1762
- /**
1763
- * The value provided to
1764
- * {@linkcode https://vitest.dev/config/#attachmentsdir|attachmentsDir},
1765
- * if none is provided, its default value.
1766
- */
1767
- attachmentsDir: string;
1768
- }) => string;
1769
- interface ToMatchScreenshotOptions {
1770
- /**
1771
- * Overrides default reference screenshot path.
1772
- *
1773
- * @default `${root}/${testFileDirectory}/${screenshotDirectory}/${testFileName}/${arg}-${browserName}-${platform}${ext}`
1774
- */
1775
- resolveScreenshotPath?: ToMatchScreenshotResolvePath;
1776
- /**
1777
- * Overrides default screenshot path used for diffs.
1778
- *
1779
- * @default `${root}/${attachmentsDir}/${testFileDirectory}/${testFileName}/${arg}-${browserName}-${platform}${ext}`
1780
- */
1781
- resolveDiffPath?: ToMatchScreenshotResolvePath;
1782
- }
1783
- interface ToMatchScreenshotComparators {}
1784
-
1785
- declare class TestProject {
1786
- options?: InitializeProjectOptions | undefined;
1787
- /**
1788
- * The global Vitest instance.
1789
- */
1790
- readonly vitest: Vitest;
1791
- /**
1792
- * Resolved global configuration. If there are no workspace projects, this will be the same as `config`.
1793
- */
1794
- readonly globalConfig: ResolvedConfig;
1795
- /**
1796
- * Browser instance if the browser is enabled. This is initialized when the tests run for the first time.
1797
- */
1798
- browser?: ProjectBrowser;
1799
- /**
1800
- * Temporary directory for the project. This is unique for each project. Vitest stores transformed content here.
1801
- */
1802
- readonly tmpDir: string;
1803
- /** @inetrnal */ testFilesList: string[] | null;
1804
- private runner;
1805
- private closingPromise;
1806
- private typecheckFilesList;
1807
- private _globalSetups?;
1808
- private _provided;
1809
- constructor(vitest: Vitest, options?: InitializeProjectOptions | undefined, tmpDir?: string);
1810
- /**
1811
- * The unique hash of this project. This value is consistent between the reruns.
1812
- *
1813
- * It is based on the root of the project (not consistent between OS) and its name.
1814
- */
1815
- get hash(): string;
1816
- /**
1817
- * Provide a value to the test context. This value will be available to all tests with `inject`.
1818
- */
1819
- provide: <T extends keyof ProvidedContext & string>(key: T, value: ProvidedContext[T]) => void;
1820
- /**
1821
- * Get the provided context. The project context is merged with the global context.
1822
- */
1823
- getProvidedContext(): ProvidedContext;
1824
- /**
1825
- * Creates a new test specification. Specifications describe how to run tests.
1826
- * @param moduleId The file path
1827
- */
1828
- createSpecification(moduleId: string, locations?: number[] | undefined, pool?: string): TestSpecification;
1829
- toJSON(): SerializedTestProject;
1830
- /**
1831
- * Vite's dev server instance. Every workspace project has its own server.
1832
- */
1833
- get vite(): ViteDevServer;
1834
- /**
1835
- * Resolved project configuration.
1836
- */
1837
- get config(): ResolvedConfig;
1838
- /**
1839
- * The name of the project or an empty string if not set.
1840
- */
1841
- get name(): string;
1842
- /**
1843
- * The color used when reporting tasks of this project.
1844
- */
1845
- get color(): ProjectName["color"];
1846
- /**
1847
- * Serialized project configuration. This is the config that tests receive.
1848
- */
1849
- get serializedConfig(): SerializedConfig;
1850
- /**
1851
- * Check if this is the root project. The root project is the one that has the root config.
1852
- */
1853
- isRootProject(): boolean;
1854
- onTestsRerun(cb: OnTestsRerunHandler): void;
1855
- /**
1856
- * Get all files in the project that match the globs in the config and the filters.
1857
- * @param filters String filters to match the test files.
1858
- */
1859
- globTestFiles(filters?: string[]): Promise<{
1860
- /**
1861
- * Test files that match the filters.
1862
- */
1863
- testFiles: string[];
1864
- /**
1865
- * Typecheck test files that match the filters. This will be empty unless `typecheck.enabled` is `true`.
1866
- */
1867
- typecheckTestFiles: string[];
1868
- }>;
1869
- private globAllTestFiles;
1870
- isBrowserEnabled(): boolean;
1871
- private markTestFile;
1872
- /**
1873
- * Test if a file matches the test globs. This does the actual glob matching if the test is not cached, unlike `isCachedTestFile`.
1874
- */
1875
- matchesTestGlob(moduleId: string, source?: () => string): boolean;
1876
- private isInSourceTestCode;
1877
- private filterFiles;
1878
- private _parentBrowser?;
1879
- /**
1880
- * Closes the project and all associated resources. This can only be called once; the closing promise is cached until the server restarts.
1881
- * If the resources are needed again, create a new project.
1882
- */
1883
- close(): Promise<void>;
1884
- /**
1885
- * Import a file using Vite module runner.
1886
- * @param moduleId The ID of the module in Vite module graph
1887
- */
1888
- import<T>(moduleId: string): Promise<T>;
1889
- private _setHash;
1890
- private _serializeOverriddenConfig;
1891
- private clearTmpDir;
1892
- }
1893
- interface SerializedTestProject {
1894
- name: string;
1895
- serializedConfig: SerializedConfig;
1896
- context: ProvidedContext;
1897
- }
1898
- interface InitializeProjectOptions extends TestProjectInlineConfiguration {
1899
- configFile: string | false;
1900
- }
1901
-
1902
- interface PoolRunnerInitializer {
1903
- readonly name: string;
1904
- createPoolWorker: (options: PoolOptions) => PoolWorker;
1905
- }
1906
- interface PoolOptions {
1907
- distPath: string;
1908
- project: TestProject;
1909
- method: "run" | "collect";
1910
- cacheFs?: boolean;
1911
- environment: ContextTestEnvironment;
1912
- execArgv: string[];
1913
- env: Partial<NodeJS.ProcessEnv>;
1914
- }
1915
- interface PoolWorker {
1916
- readonly name: string;
1917
- readonly reportMemory?: boolean;
1918
- readonly cacheFs?: boolean;
1919
- on: (event: string, callback: (arg: any) => void) => void;
1920
- off: (event: string, callback: (arg: any) => void) => void;
1921
- send: (message: WorkerRequest) => void;
1922
- deserialize: (data: unknown) => unknown;
1923
- start: () => Promise<void>;
1924
- stop: () => Promise<void>;
1925
- /**
1926
- * This is called on workers that already satisfy certain constraints:
1927
- * - The task has the same worker name
1928
- * - The task has the same project
1929
- */
1930
- canReuse?: (task: PoolTask) => boolean;
1931
- }
1932
- interface PoolTask {
1933
- worker: "forks" | "threads" | "vmForks" | "vmThreads" | (string & {});
1934
- project: TestProject;
1935
- isolate: boolean;
1936
- /**
1937
- * Custom `process.env`. All tasks in the same project will reference the same object,
1938
- * so modifying it once will modify it for every task.
1939
- */
1940
- env: Partial<NodeJS.ProcessEnv>;
1941
- /**
1942
- * Custom `execArgv`. All tasks in the same project will reference the same array,
1943
- * so modifying it once will modify it for every task.
1944
- */
1945
- execArgv: string[];
1946
- context: WorkerExecuteContext;
1947
- memoryLimit: number | null;
1948
- }
1949
- type WorkerRequest = {
1950
- __vitest_worker_request__: true;
1951
- } & ({
1952
- type: "start";
1953
- poolId: number;
1954
- workerId: WorkerExecuteContext["workerId"];
1955
- options: {
1956
- reportMemory: boolean;
1957
- };
1958
- context: {
1959
- environment: WorkerTestEnvironment;
1960
- config: SerializedConfig;
1961
- pool: string;
1962
- };
1963
- traces: {
1964
- enabled: boolean;
1965
- sdkPath?: string;
1966
- otelCarrier?: OTELCarrier;
1967
- };
1968
- } | {
1969
- type: "stop";
1970
- otelCarrier?: OTELCarrier;
1971
- } | {
1972
- type: "run";
1973
- context: WorkerExecuteContext;
1974
- otelCarrier?: OTELCarrier;
1975
- } | {
1976
- type: "collect";
1977
- context: WorkerExecuteContext;
1978
- otelCarrier?: OTELCarrier;
1979
- } | {
1980
- type: "cancel";
1981
- });
1982
- type WorkerResponse = {
1983
- __vitest_worker_response__: true;
1984
- } & ({
1985
- type: "started";
1986
- error?: unknown;
1987
- } | {
1988
- type: "stopped";
1989
- error?: unknown;
1990
- } | {
1991
- type: "testfileFinished";
1992
- usedMemory?: number;
1993
- error?: unknown;
1994
- });
1995
-
1996
- interface BaseOptions {
1997
- isTTY?: boolean;
1998
- }
1999
- declare abstract class BaseReporter implements Reporter {
2000
- start: number;
2001
- end: number;
2002
- watchFilters?: string[];
2003
- failedUnwatchedFiles: TestModule[];
2004
- isTTY: boolean;
2005
- ctx: Vitest;
2006
- renderSucceed: boolean;
2007
- protected verbose: boolean;
2008
- private _filesInWatchMode;
2009
- private _timeStart;
2010
- constructor(options?: BaseOptions);
2011
- onInit(ctx: Vitest): void;
2012
- log(...messages: any): void;
2013
- error(...messages: any): void;
2014
- relative(path: string): string;
2015
- onTestRunStart(_specifications: ReadonlyArray<TestSpecification>): void;
2016
- onTestRunEnd(testModules: ReadonlyArray<TestModule>, unhandledErrors: ReadonlyArray<SerializedError>, _reason: TestRunEndReason): void;
2017
- onTestCaseResult(testCase: TestCase): void;
2018
- onTestSuiteResult(testSuite: TestSuite): void;
2019
- onTestModuleEnd(testModule: TestModule): void;
2020
- private logFailedTask;
2021
- protected printTestModule(testModule: TestModule): void;
2022
- protected printTestCase(moduleState: TestModuleState, test: TestCase): void;
2023
- private getModuleLog;
2024
- protected printTestSuite(testSuite: TestSuite): void;
2025
- protected getTestName(test: Task, _separator?: string): string;
2026
- protected getFullName(test: Task, separator?: string): string;
2027
- protected getTestIndentation(test: Task): string;
2028
- protected printAnnotations(test: TestCase, console: "log" | "error", padding?: number): void;
2029
- protected getEntityPrefix(entity: TestCase | TestModule | TestSuite): string;
2030
- protected getTestCaseSuffix(testCase: TestCase): string;
2031
- protected getStateSymbol(test: TestCase | TestModule | TestSuite): string;
2032
- private getDurationPrefix;
2033
- onWatcherStart(files?: File[], errors?: unknown[]): void;
2034
- onWatcherRerun(files: string[], trigger?: string): void;
2035
- onUserConsoleLog(log: UserConsoleLog, taskState?: TestResult["state"]): void;
2036
- onTestRemoved(trigger?: string): void;
2037
- shouldLog(log: UserConsoleLog, taskState?: TestResult["state"]): boolean;
2038
- onServerRestart(reason?: string): void;
2039
- reportSummary(files: File[], errors: unknown[]): void;
2040
- reportTestSummary(files: File[], errors: unknown[]): void;
2041
- private printImportsBreakdown;
2042
- private importDurationTime;
2043
- private ellipsisPath;
2044
- private printErrorsSummary;
2045
- reportBenchmarkSummary(files: File[]): void;
2046
- private printTaskErrors;
2047
- }
2048
-
2049
- interface DefaultReporterOptions extends BaseOptions {
2050
- summary?: boolean;
2051
- }
2052
- declare class DefaultReporter extends BaseReporter {
2053
- private options;
2054
- private summary?;
2055
- constructor(options?: DefaultReporterOptions);
2056
- onTestRunStart(specifications: ReadonlyArray<TestSpecification>): void;
2057
- onTestRunEnd(testModules: ReadonlyArray<TestModule>, unhandledErrors: ReadonlyArray<SerializedError>, reason: TestRunEndReason): void;
2058
- onTestModuleQueued(file: TestModule): void;
2059
- onTestModuleCollected(module: TestModule): void;
2060
- onTestModuleEnd(module: TestModule): void;
2061
- onTestCaseReady(test: TestCase): void;
2062
- onTestCaseResult(test: TestCase): void;
2063
- onHookStart(hook: ReportedHookContext): void;
2064
- onHookEnd(hook: ReportedHookContext): void;
2065
- onInit(ctx: Vitest): void;
2066
- }
2067
-
2068
- interface GithubActionsReporterOptions {
2069
- onWritePath?: (path: string) => string;
2070
- /**
2071
- * @default true
2072
- */
2073
- displayAnnotations?: boolean;
2074
- }
2075
- declare class GithubActionsReporter implements Reporter {
2076
- ctx: Vitest;
2077
- options: GithubActionsReporterOptions;
2078
- constructor(options?: GithubActionsReporterOptions);
2079
- onInit(ctx: Vitest): void;
2080
- onTestCaseAnnotate(testCase: TestCase, annotation: TestAnnotation): void;
2081
- onTestRunEnd(testModules: ReadonlyArray<TestModule>, unhandledErrors: ReadonlyArray<SerializedError>): void;
2082
- }
2083
-
2084
- interface HTMLOptions {
2085
- outputFile?: string;
2086
- }
2087
-
2088
- type Status = "passed" | "failed" | "skipped" | "pending" | "todo" | "disabled";
2089
- type Milliseconds = number;
2090
- interface Callsite {
2091
- line: number;
2092
- column: number;
2093
- }
2094
- interface JsonAssertionResult {
2095
- ancestorTitles: Array<string>;
2096
- fullName: string;
2097
- status: Status;
2098
- title: string;
2099
- meta: TaskMeta;
2100
- duration?: Milliseconds | null;
2101
- failureMessages: Array<string> | null;
2102
- location?: Callsite | null;
2103
- }
2104
- interface JsonTestResult {
2105
- message: string;
2106
- name: string;
2107
- status: "failed" | "passed";
2108
- startTime: number;
2109
- endTime: number;
2110
- assertionResults: Array<JsonAssertionResult>;
2111
- }
2112
- interface JsonTestResults {
2113
- numFailedTests: number;
2114
- numFailedTestSuites: number;
2115
- numPassedTests: number;
2116
- numPassedTestSuites: number;
2117
- numPendingTests: number;
2118
- numPendingTestSuites: number;
2119
- numTodoTests: number;
2120
- numTotalTests: number;
2121
- numTotalTestSuites: number;
2122
- startTime: number;
2123
- success: boolean;
2124
- testResults: Array<JsonTestResult>;
2125
- snapshot: SnapshotSummary;
2126
- coverageMap?: CoverageMap | null | undefined;
2127
- }
2128
- interface JsonOptions {
2129
- outputFile?: string;
2130
- }
2131
- declare class JsonReporter implements Reporter {
2132
- start: number;
2133
- ctx: Vitest;
2134
- options: JsonOptions;
2135
- coverageMap?: CoverageMap;
2136
- constructor(options: JsonOptions);
2137
- onInit(ctx: Vitest): void;
2138
- onCoverage(coverageMap: unknown): void;
2139
- onTestRunEnd(testModules: ReadonlyArray<TestModule>): Promise<void>;
2140
- /**
2141
- * Writes the report to an output file if specified in the config,
2142
- * or logs it to the console otherwise.
2143
- * @param report
2144
- */
2145
- writeReport(report: string): Promise<void>;
2146
- }
2147
-
2148
- interface ClassnameTemplateVariables {
2149
- filename: string;
2150
- filepath: string;
2151
- }
2152
- interface JUnitOptions {
2153
- outputFile?: string;
2154
- /**
2155
- * Template for the classname attribute. Can be either a string or a function. The string can contain placeholders {filename} and {filepath}.
2156
- */
2157
- classnameTemplate?: string | ((classnameVariables: ClassnameTemplateVariables) => string);
2158
- suiteName?: string;
2159
- /**
2160
- * Write <system-out> and <system-err> for console output
2161
- * @default true
2162
- */
2163
- includeConsoleOutput?: boolean;
2164
- /**
2165
- * Add <testcase file="..."> attribute (validated on CIRCLE CI and GitLab CI)
2166
- * @default false
2167
- */
2168
- addFileAttribute?: boolean;
2169
- }
2170
- declare class JUnitReporter implements Reporter {
2171
- private ctx;
2172
- private reportFile?;
2173
- private baseLog;
2174
- private logger;
2175
- private _timeStart;
2176
- private fileFd?;
2177
- private options;
2178
- constructor(options: JUnitOptions);
2179
- onInit(ctx: Vitest): Promise<void>;
2180
- writeElement(name: string, attrs: Record<string, any>, children: () => Promise<void>): Promise<void>;
2181
- writeLogs(task: Task, type: "err" | "out"): Promise<void>;
2182
- writeTasks(tasks: Task[], filename: string): Promise<void>;
2183
- onTestRunEnd(testModules: ReadonlyArray<TestModule>): Promise<void>;
2184
- }
2185
-
2186
- declare class DotReporter extends BaseReporter {
2187
- private renderer?;
2188
- private tests;
2189
- private finishedTests;
2190
- onInit(ctx: Vitest): void;
2191
- printTestModule(): void;
2192
- onWatcherRerun(files: string[], trigger?: string): void;
2193
- onTestRunEnd(testModules: ReadonlyArray<TestModule>, unhandledErrors: ReadonlyArray<SerializedError>, reason: TestRunEndReason): void;
2194
- onTestModuleCollected(module: TestModule): void;
2195
- onTestCaseReady(test: TestCase): void;
2196
- onTestCaseResult(test: TestCase): void;
2197
- onTestModuleEnd(testModule: TestModule): void;
2198
- private createSummary;
2199
- }
2200
-
2201
- declare class HangingProcessReporter implements Reporter {
2202
- whyRunning: (() => void) | undefined;
2203
- onInit(): void;
2204
- onProcessTimeout(): void;
2205
- }
2206
-
2207
- declare class TapReporter implements Reporter {
2208
- protected ctx: Vitest;
2209
- private logger;
2210
- onInit(ctx: Vitest): void;
2211
- static getComment(task: Task): string;
2212
- private logErrorDetails;
2213
- protected logTasks(tasks: Task[]): void;
2214
- onTestRunEnd(testModules: ReadonlyArray<TestModule>): void;
2215
- }
2216
-
2217
- declare class TapFlatReporter extends TapReporter {
2218
- onInit(ctx: Vitest): void;
2219
- onTestRunEnd(testModules: ReadonlyArray<TestModule>): void;
2220
- }
2221
-
2222
- declare class TreeReporter extends DefaultReporter {
2223
- protected verbose: boolean;
2224
- renderSucceed: boolean;
2225
- }
2226
-
2227
- declare class VerboseReporter extends DefaultReporter {
2228
- protected verbose: boolean;
2229
- renderSucceed: boolean;
2230
- printTestModule(_module: TestModule): void;
2231
- onTestCaseResult(test: TestCase): void;
2232
- }
2233
-
2234
- type FormattedBenchmarkResult = BenchmarkResult & {
2235
- id: string;
2236
- };
2237
-
2238
- declare function renderTable(options: {
2239
- tasks: Task[];
2240
- level: number;
2241
- shallow?: boolean;
2242
- showHeap: boolean;
2243
- columns: number;
2244
- slowTestThreshold: number;
2245
- compare?: Record<Task["id"], FormattedBenchmarkResult>;
2246
- }): string;
2247
-
2248
- declare class BenchmarkReporter extends DefaultReporter {
2249
- compare?: Parameters<typeof renderTable>[0]["compare"];
2250
- onInit(ctx: Vitest): Promise<void>;
2251
- onTaskUpdate(packs: TaskResultPack[]): void;
2252
- onTestSuiteResult(testSuite: TestSuite): void;
2253
- protected printTestModule(testModule: TestModule): void;
2254
- private printSuiteTable;
2255
- onTestRunEnd(testModules: ReadonlyArray<TestModule>, unhandledErrors: ReadonlyArray<SerializedError>, reason: TestRunEndReason): Promise<void>;
2256
- }
2257
-
2258
- declare class VerboseBenchmarkReporter extends BenchmarkReporter {
2259
- protected verbose: boolean;
2260
- }
2261
-
2262
- declare const BenchmarkReportsMap: {
2263
- default: typeof BenchmarkReporter;
2264
- verbose: typeof VerboseBenchmarkReporter;
2265
- };
2266
- type BenchmarkBuiltinReporters = keyof typeof BenchmarkReportsMap;
2267
-
2268
- declare const ReportersMap: {
2269
- default: typeof DefaultReporter;
2270
- blob: typeof BlobReporter;
2271
- verbose: typeof VerboseReporter;
2272
- dot: typeof DotReporter;
2273
- json: typeof JsonReporter;
2274
- tap: typeof TapReporter;
2275
- "tap-flat": typeof TapFlatReporter;
2276
- junit: typeof JUnitReporter;
2277
- tree: typeof TreeReporter;
2278
- "hanging-process": typeof HangingProcessReporter;
2279
- "github-actions": typeof GithubActionsReporter;
2280
- };
2281
- type BuiltinReporters = keyof typeof ReportersMap;
2282
- interface BuiltinReporterOptions {
2283
- "default": DefaultReporterOptions;
2284
- "verbose": DefaultReporterOptions;
2285
- "dot": BaseOptions;
2286
- "tree": BaseOptions;
2287
- "json": JsonOptions;
2288
- "blob": BlobOptions;
2289
- "tap": never;
2290
- "tap-flat": never;
2291
- "junit": JUnitOptions;
2292
- "hanging-process": never;
2293
- "html": HTMLOptions;
2294
- "github-actions": GithubActionsReporterOptions;
2295
- }
2296
-
2297
- interface TestSequencer {
2298
- /**
2299
- * Slicing tests into shards. Will be run before `sort`.
2300
- * Only run, if `shard` is defined.
2301
- */
2302
- shard: (files: TestSpecification[]) => Awaitable<TestSpecification[]>;
2303
- sort: (files: TestSpecification[]) => Awaitable<TestSpecification[]>;
2304
- }
2305
- interface TestSequencerConstructor {
2306
- new (ctx: Vitest): TestSequencer;
2307
- }
2308
-
2309
- interface BenchmarkUserOptions {
2310
- /**
2311
- * Include globs for benchmark test files
2312
- *
2313
- * @default ['**\/*.{bench,benchmark}.?(c|m)[jt]s?(x)']
2314
- */
2315
- include?: string[];
2316
- /**
2317
- * Exclude globs for benchmark test files
2318
- * @default ['**\/node_modules/**', '**\/dist/**', '**\/cypress/**', '**\/.{idea,git,cache,output,temp}/**', '**\/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build,eslint,prettier}.config.*']
2319
- */
2320
- exclude?: string[];
2321
- /**
2322
- * Include globs for in-source benchmark test files
2323
- *
2324
- * @default []
2325
- */
2326
- includeSource?: string[];
2327
- /**
2328
- * Custom reporter for output. Can contain one or more built-in report names, reporter instances,
2329
- * and/or paths to custom reporters
2330
- *
2331
- * @default ['default']
2332
- */
2333
- reporters?: Arrayable<BenchmarkBuiltinReporters | Reporter>;
2334
- /**
2335
- * @deprecated Use `benchmark.outputJson` instead
2336
- */
2337
- outputFile?: string | (Partial<Record<BenchmarkBuiltinReporters, string>> & Record<string, string>);
2338
- /**
2339
- * benchmark output file to compare against
2340
- */
2341
- compare?: string;
2342
- /**
2343
- * benchmark output file
2344
- */
2345
- outputJson?: string;
2346
- /**
2347
- * Include `samples` array of benchmark results for API or custom reporter usages.
2348
- * This is disabled by default to reduce memory usage.
2349
- * @default false
2350
- */
2351
- includeSamples?: boolean;
2352
- }
2353
-
2354
- type BuiltinEnvironment = "node" | "jsdom" | "happy-dom" | "edge-runtime";
2355
- type VitestEnvironment = BuiltinEnvironment | (string & Record<never, never>);
2356
- type CSSModuleScopeStrategy = "stable" | "scoped" | "non-scoped";
2357
- type ApiConfig = Pick<ServerOptions, "port" | "strictPort" | "host" | "middlewareMode">;
2358
- interface EnvironmentOptions {
2359
- /**
2360
- * jsdom options.
2361
- */
2362
- jsdom?: JSDOMOptions;
2363
- happyDOM?: HappyDOMOptions;
2364
- [x: string]: unknown;
2365
- }
2366
-
2367
- type VitestRunMode = "test" | "benchmark";
2368
- interface ProjectName {
2369
- label: string;
2370
- color?: LabelColor;
2371
- }
2372
- interface SequenceOptions {
2373
- /**
2374
- * Class that handles sorting and sharding algorithm.
2375
- * If you only need to change sorting, you can extend
2376
- * your custom sequencer from `BaseSequencer` from `vitest/node`.
2377
- * @default BaseSequencer
2378
- */
2379
- sequencer?: TestSequencerConstructor;
2380
- /**
2381
- * Controls the order in which this project runs its tests when using multiple [projects](/guide/projects).
2382
- *
2383
- * - Projects with the same group order number will run together, and groups are run from lowest to highest.
2384
- * - If you don’t set this option, all projects run in parallel.
2385
- * - If several projects use the same group order, they will run at the same time.
2386
- * @default 0
2387
- */
2388
- groupOrder?: number;
2389
- /**
2390
- * Should files and tests run in random order.
2391
- * @default false
2392
- */
2393
- shuffle?: boolean | {
2394
- /**
2395
- * Should files run in random order. Long running tests will not start
2396
- * earlier if you enable this option.
2397
- * @default false
2398
- */
2399
- files?: boolean;
2400
- /**
2401
- * Should tests run in random order.
2402
- * @default false
2403
- */
2404
- tests?: boolean;
2405
- };
2406
- /**
2407
- * Should tests run in parallel.
2408
- * @default false
2409
- */
2410
- concurrent?: boolean;
2411
- /**
2412
- * Defines how setup files should be ordered
2413
- * - 'parallel' will run all setup files in parallel
2414
- * - 'list' will run all setup files in the order they are defined in the config file
2415
- * @default 'parallel'
2416
- */
2417
- setupFiles?: SequenceSetupFiles;
2418
- /**
2419
- * Seed for the random number generator.
2420
- * @default Date.now()
2421
- */
2422
- seed?: number;
2423
- /**
2424
- * Defines how hooks should be ordered
2425
- * - `stack` will order "after" hooks in reverse order, "before" hooks will run sequentially
2426
- * - `list` will order hooks in the order they are defined
2427
- * - `parallel` will run hooks in a single group in parallel
2428
- * @default 'stack'
2429
- */
2430
- hooks?: SequenceHooks;
2431
- }
2432
- type DepsOptimizationOptions = Omit<DepOptimizationConfig, "disabled" | "noDiscovery"> & {
2433
- enabled?: boolean;
2434
- };
2435
- interface DepsOptions {
2436
- /**
2437
- * Enable dependency optimization. This can improve the performance of your tests.
2438
- */
2439
- optimizer?: Partial<Record<"client" | "ssr" | ({} & string), DepsOptimizationOptions>>;
2440
- web?: {
2441
- /**
2442
- * Should Vitest process assets (.png, .svg, .jpg, etc) files and resolve them like Vite does in the browser.
2443
- *
2444
- * These module will have a default export equal to the path to the asset, if no query is specified.
2445
- *
2446
- * **At the moment, this option only works with `{ pool: 'vmThreads' }`.**
2447
- *
2448
- * @default true
2449
- */
2450
- transformAssets?: boolean;
2451
- /**
2452
- * Should Vitest process CSS (.css, .scss, .sass, etc) files and resolve them like Vite does in the browser.
2453
- *
2454
- * If CSS files are disabled with `css` options, this option will just silence UNKNOWN_EXTENSION errors.
2455
- *
2456
- * **At the moment, this option only works with `{ pool: 'vmThreads' }`.**
2457
- *
2458
- * @default true
2459
- */
2460
- transformCss?: boolean;
2461
- /**
2462
- * Regexp pattern to match external files that should be transformed.
2463
- *
2464
- * By default, files inside `node_modules` are externalized and not transformed.
2465
- *
2466
- * **At the moment, this option only works with `{ pool: 'vmThreads' }`.**
2467
- *
2468
- * @default []
2469
- */
2470
- transformGlobPattern?: RegExp | RegExp[];
2471
- };
2472
- /**
2473
- * Interpret CJS module's default as named exports
2474
- *
2475
- * @default true
2476
- */
2477
- interopDefault?: boolean;
2478
- /**
2479
- * A list of directories relative to the config file that should be treated as module directories.
2480
- *
2481
- * @default ['node_modules']
2482
- */
2483
- moduleDirectories?: string[];
2484
- }
2485
- type InlineReporter = Reporter;
2486
- type ReporterName = BuiltinReporters | "html" | (string & {});
2487
- type ReporterWithOptions<Name extends ReporterName = ReporterName> = Name extends keyof BuiltinReporterOptions ? BuiltinReporterOptions[Name] extends never ? [Name, object] : [Name, Partial<BuiltinReporterOptions[Name]>] : [Name, Record<string, unknown>];
2488
- interface ResolveSnapshotPathHandlerContext {
2489
- config: SerializedConfig;
2490
- }
2491
- type ResolveSnapshotPathHandler = (testPath: string, snapExtension: string, context: ResolveSnapshotPathHandlerContext) => string;
2492
- type BuiltinPool = "browser" | "threads" | "forks" | "vmThreads" | "vmForks" | "typescript";
2493
- type Pool = BuiltinPool | (string & {});
2494
- interface InlineConfig {
2495
- /**
2496
- * Name of the project. Will be used to display in the reporter.
2497
- */
2498
- name?: string | ProjectName;
2499
- /**
2500
- * Benchmark options.
2501
- *
2502
- * @default {}
2503
- */
2504
- benchmark?: BenchmarkUserOptions;
2505
- /**
2506
- * A list of [glob patterns](https://superchupu.dev/tinyglobby/comparison) that match your test files.
2507
- *
2508
- * @default ['**\/*.{test,spec}.?(c|m)[jt]s?(x)']
2509
- * @see {@link https://vitest.dev/config/include}
2510
- */
2511
- include?: string[];
2512
- /**
2513
- * Exclude globs for test files
2514
- * @default ['**\/node_modules/**', '**\/.git/**']
2515
- */
2516
- exclude?: string[];
2517
- /**
2518
- * Include globs for in-source test files
2519
- *
2520
- * @default []
2521
- */
2522
- includeSource?: string[];
2523
- /**
2524
- * Handling for dependencies inlining or externalizing
2525
- *
2526
- */
2527
- deps?: DepsOptions;
2528
- server?: {
2529
- deps?: ServerDepsOptions;
2530
- debug?: {
2531
- /**
2532
- * The folder where Vitest stores the contents of transformed
2533
- * test files that can be inspected manually.
2534
- *
2535
- * If `true`, Vitest dumps the files in `.vitest-dump` folder relative to the root of the project.
2536
- *
2537
- * You can also use `VITEST_DEBUG_DUMP` env variable to enable this.
2538
- */
2539
- dump?: string | true;
2540
- /**
2541
- * If dump is enabled, should Vitest load the files from there instead of transforming them.
2542
- *
2543
- * You can also use `VITEST_DEBUG_LOAD_DUMP` env variable to enable this.
2544
- */
2545
- load?: boolean;
2546
- };
2547
- };
2548
- /**
2549
- * Base directory to scan for the test files
2550
- *
2551
- * @default `config.root`
2552
- */
2553
- dir?: string;
2554
- /**
2555
- * Register apis globally
2556
- *
2557
- * @default false
2558
- */
2559
- globals?: boolean;
2560
- /**
2561
- * Running environment
2562
- *
2563
- * Supports 'node', 'jsdom', 'happy-dom', 'edge-runtime'
2564
- *
2565
- * If used unsupported string, will try to load the package `vitest-environment-${env}`
2566
- *
2567
- * @default 'node'
2568
- */
2569
- environment?: VitestEnvironment;
2570
- /**
2571
- * Environment options.
2572
- */
2573
- environmentOptions?: EnvironmentOptions;
2574
- /**
2575
- * Run tests in an isolated environment. This option has no effect on vmThreads pool.
2576
- *
2577
- * Disabling this option improves performance if your code doesn't rely on side effects.
2578
- *
2579
- * @default true
2580
- */
2581
- isolate?: boolean;
2582
- /**
2583
- * Pass additional arguments to `node` process when spawning the worker.
2584
- *
2585
- * See [Command-line API | Node.js](https://nodejs.org/docs/latest/api/cli.html) for more information.
2586
- *
2587
- * Set to `process.execArgv` to pass all arguments of the current process.
2588
- *
2589
- * Be careful when using, it as some options may crash worker, e.g. --prof, --title. See https://github.com/nodejs/node/issues/41103
2590
- *
2591
- * @default [] // no execution arguments are passed
2592
- */
2593
- execArgv?: string[];
2594
- /**
2595
- * Specifies the memory limit for `worker_thread` or `child_process` before they are recycled.
2596
- * If you see memory leaks, try to tinker this value.
2597
- */
2598
- vmMemoryLimit?: string | number;
2599
- /**
2600
- * Pool used to run tests in.
2601
- *
2602
- * Supports 'threads', 'forks', 'vmThreads', 'vmForks'
2603
- *
2604
- * @default 'forks'
2605
- */
2606
- pool?: Exclude<Pool, "browser"> | PoolRunnerInitializer;
2607
- /**
2608
- * Maximum number or percentage of workers to run tests in.
2609
- */
2610
- maxWorkers?: number | string;
2611
- /**
2612
- * Should all test files run in parallel. Doesn't affect tests running in the same file.
2613
- * Setting this to `false` will override `maxWorkers` option to `1`.
2614
- *
2615
- * @default true
2616
- */
2617
- fileParallelism?: boolean;
2618
- /**
2619
- * Options for projects
2620
- */
2621
- projects?: TestProjectConfiguration[];
2622
- /**
2623
- * Update snapshot
2624
- *
2625
- * @default false
2626
- */
2627
- update?: boolean;
2628
- /**
2629
- * Watch mode
2630
- *
2631
- * @default !process.env.CI
2632
- */
2633
- watch?: boolean;
2634
- /**
2635
- * Project root
2636
- *
2637
- * @default process.cwd()
2638
- */
2639
- root?: string;
2640
- /**
2641
- * Custom reporter for output. Can contain one or more built-in report names, reporter instances,
2642
- * and/or paths to custom reporters.
2643
- *
2644
- * @default []
2645
- */
2646
- reporters?: Arrayable<ReporterName | InlineReporter> | ((ReporterName | InlineReporter) | [ReporterName] | ReporterWithOptions)[];
2647
- /**
2648
- * Write test results to a file when the --reporter=json` or `--reporter=junit` option is also specified.
2649
- * Also definable individually per reporter by using an object instead.
2650
- */
2651
- outputFile?: string | (Partial<Record<BuiltinReporters, string>> & Record<string, string>);
2652
- /**
2653
- * Default timeout of a test in milliseconds
2654
- *
2655
- * @default 5000
2656
- */
2657
- testTimeout?: number;
2658
- /**
2659
- * Default timeout of a hook in milliseconds
2660
- *
2661
- * @default 10000
2662
- */
2663
- hookTimeout?: number;
2664
- /**
2665
- * Default timeout to wait for close when Vitest shuts down, in milliseconds
2666
- *
2667
- * @default 10000
2668
- */
2669
- teardownTimeout?: number;
2670
- /**
2671
- * Silent mode
2672
- *
2673
- * Use `'passed-only'` to see logs from failing tests only.
2674
- *
2675
- * @default false
2676
- */
2677
- silent?: boolean | "passed-only";
2678
- /**
2679
- * Hide logs for skipped tests
2680
- *
2681
- * @default false
2682
- */
2683
- hideSkippedTests?: boolean;
2684
- /**
2685
- * Path to setup files
2686
- */
2687
- setupFiles?: string | string[];
2688
- /**
2689
- * Path to global setup files
2690
- */
2691
- globalSetup?: string | string[];
2692
- /**
2693
- * Glob pattern of file paths that will trigger the whole suite rerun
2694
- *
2695
- * Useful if you are testing calling CLI commands
2696
- *
2697
- * @default ['**\/package.json/**', '**\/{vitest,vite}.config.*\/**']
2698
- */
2699
- forceRerunTriggers?: string[];
2700
- /**
2701
- * Pattern configuration to rerun only the tests that are affected
2702
- * by the changes of specific files in the repository.
2703
- */
2704
- watchTriggerPatterns?: WatcherTriggerPattern[];
2705
- /**
2706
- * Coverage options
2707
- */
2708
- coverage?: CoverageOptions;
2709
- /**
2710
- * run test names with the specified pattern
2711
- */
2712
- testNamePattern?: string | RegExp;
2713
- /**
2714
- * Will call `.mockClear()` on all spies before each test
2715
- * @default false
2716
- */
2717
- clearMocks?: boolean;
2718
- /**
2719
- * Will call `.mockReset()` on all spies before each test
2720
- * @default false
2721
- */
2722
- mockReset?: boolean;
2723
- /**
2724
- * Will call `.mockRestore()` on all spies before each test
2725
- * @default false
2726
- */
2727
- restoreMocks?: boolean;
2728
- /**
2729
- * Will restore all global stubs to their original values before each test
2730
- * @default false
2731
- */
2732
- unstubGlobals?: boolean;
2733
- /**
2734
- * Will restore all env stubs to their original values before each test
2735
- * @default false
2736
- */
2737
- unstubEnvs?: boolean;
2738
- /**
2739
- * Serve API options.
2740
- *
2741
- * When set to true, the default port is 51204.
2742
- *
2743
- * @default false
2744
- */
2745
- api?: boolean | number | ApiConfig;
2746
- /**
2747
- * Enable Vitest UI
2748
- *
2749
- * @default false
2750
- */
2751
- ui?: boolean;
2752
- /**
2753
- * options for test in a browser environment
2754
- *
2755
- * @default false
2756
- */
2757
- browser?: BrowserConfigOptions;
2758
- /**
2759
- * Open UI automatically.
2760
- *
2761
- * @default !process.env.CI
2762
- */
2763
- open?: boolean;
2764
- /**
2765
- * Base url for the UI
2766
- *
2767
- * @default '/__vitest__/'
2768
- */
2769
- uiBase?: string;
2770
- /**
2771
- * Format options for snapshot testing.
2772
- */
2773
- snapshotFormat?: Omit<PrettyFormatOptions, "plugins" | "compareKeys"> & {
2774
- compareKeys?: null | undefined;
2775
- };
2776
- /**
2777
- * Path to a module which has a default export of diff config.
2778
- */
2779
- diff?: string | SerializedDiffOptions;
2780
- /**
2781
- * Paths to snapshot serializer modules.
2782
- */
2783
- snapshotSerializers?: string[];
2784
- /**
2785
- * Resolve custom snapshot path
2786
- */
2787
- resolveSnapshotPath?: ResolveSnapshotPathHandler;
2788
- /**
2789
- * Path to a custom snapshot environment module that has a default export of `SnapshotEnvironment` object.
2790
- */
2791
- snapshotEnvironment?: string;
2792
- /**
2793
- * Pass with no tests
2794
- */
2795
- passWithNoTests?: boolean;
2796
- /**
2797
- * Allow tests and suites that are marked as only
2798
- *
2799
- * @default !process.env.CI
2800
- */
2801
- allowOnly?: boolean;
2802
- /**
2803
- * Show heap usage after each test. Useful for debugging memory leaks.
2804
- */
2805
- logHeapUsage?: boolean;
2806
- /**
2807
- * Custom environment variables assigned to `process.env` before running tests.
2808
- */
2809
- env?: Partial<NodeJS.ProcessEnv>;
2810
- /**
2811
- * Options for @sinon/fake-timers
2812
- */
2813
- fakeTimers?: FakeTimerInstallOpts;
2814
- /**
2815
- * Custom handler for console.log in tests.
2816
- *
2817
- * Return `false` to ignore the log.
2818
- */
2819
- onConsoleLog?: (log: string, type: "stdout" | "stderr", entity: TestModule | TestCase | TestSuite | undefined) => boolean | void;
2820
- /**
2821
- * Enable stack trace filtering. If absent, all stack trace frames
2822
- * will be shown.
2823
- *
2824
- * Return `false` to omit the frame.
2825
- */
2826
- onStackTrace?: (error: TestError, frame: ParsedStack) => boolean | void;
2827
- /**
2828
- * A callback that can return `false` to ignore an unhandled error
2829
- */
2830
- onUnhandledError?: OnUnhandledErrorCallback;
2831
- /**
2832
- * Indicates if CSS files should be processed.
2833
- *
2834
- * When excluded, the CSS files will be replaced with empty strings to bypass the subsequent processing.
2835
- *
2836
- * @default { include: [], modules: { classNameStrategy: false } }
2837
- */
2838
- css?: boolean | {
2839
- include?: RegExp | RegExp[];
2840
- exclude?: RegExp | RegExp[];
2841
- modules?: {
2842
- classNameStrategy?: CSSModuleScopeStrategy;
2843
- };
2844
- };
2845
- /**
2846
- * A number of tests that are allowed to run at the same time marked with `test.concurrent`.
2847
- * @default 5
2848
- */
2849
- maxConcurrency?: number;
2850
- /**
2851
- * Options for configuring cache policy.
2852
- * @default { dir: 'node_modules/.vite/vitest/{project-hash}' }
2853
- */
2854
- cache?: false | {
2855
- /**
2856
- * @deprecated Use Vite's "cacheDir" instead if you want to change the cache director. Note caches will be written to "cacheDir\/vitest".
2857
- */
2858
- dir: string;
2859
- };
2860
- /**
2861
- * Options for configuring the order of running tests.
2862
- */
2863
- sequence?: SequenceOptions;
2864
- /**
2865
- * Specifies an `Object`, or an `Array` of `Object`,
2866
- * which defines aliases used to replace values in `import` or `require` statements.
2867
- * Will be merged with the default aliases inside `resolve.alias`.
2868
- */
2869
- alias?: AliasOptions;
2870
- /**
2871
- * Ignore any unhandled errors that occur
2872
- *
2873
- * @default false
2874
- */
2875
- dangerouslyIgnoreUnhandledErrors?: boolean;
2876
- /**
2877
- * Options for configuring typechecking test environment.
2878
- */
2879
- typecheck?: Partial<TypecheckConfig>;
2880
- /**
2881
- * The number of milliseconds after which a test is considered slow and reported as such in the results.
2882
- *
2883
- * @default 300
2884
- */
2885
- slowTestThreshold?: number;
2886
- /**
2887
- * Path to a custom test runner.
2888
- */
2889
- runner?: string;
2890
- /**
2891
- * Debug tests by opening `node:inspector` in worker / child process.
2892
- * Provides similar experience as `--inspect` Node CLI argument.
2893
- *
2894
- * Requires `fileParallelism: false`.
2895
- */
2896
- inspect?: boolean | string;
2897
- /**
2898
- * Debug tests by opening `node:inspector` in worker / child process and wait for debugger to connect.
2899
- * Provides similar experience as `--inspect-brk` Node CLI argument.
2900
- *
2901
- * Requires `fileParallelism: false`.
2902
- */
2903
- inspectBrk?: boolean | string;
2904
- /**
2905
- * Inspector options. If `--inspect` or `--inspect-brk` is enabled, these options will be passed to the inspector.
2906
- */
2907
- inspector?: {
2908
- /**
2909
- * Enable inspector
2910
- */
2911
- enabled?: boolean;
2912
- /**
2913
- * Port to run inspector on
2914
- */
2915
- port?: number;
2916
- /**
2917
- * Host to run inspector on
2918
- */
2919
- host?: string;
2920
- /**
2921
- * Wait for debugger to connect before running tests
2922
- */
2923
- waitForDebugger?: boolean;
2924
- };
2925
- /**
2926
- * Define variables that will be returned from `inject` in the test environment.
2927
- * @example
2928
- * ```ts
2929
- * // vitest.config.ts
2930
- * export default defineConfig({
2931
- * test: {
2932
- * provide: {
2933
- * someKey: 'someValue'
2934
- * }
2935
- * }
2936
- * })
2937
- * ```
2938
- * ```ts
2939
- * // test file
2940
- * import { inject } from 'vitest'
2941
- * const value = inject('someKey') // 'someValue'
2942
- * ```
2943
- */
2944
- provide?: Partial<ProvidedContext>;
2945
- /**
2946
- * Configuration options for expect() matches.
2947
- */
2948
- expect?: {
2949
- /**
2950
- * Throw an error if tests don't have any expect() assertions.
2951
- */
2952
- requireAssertions?: boolean;
2953
- /**
2954
- * Default options for expect.poll()
2955
- */
2956
- poll?: {
2957
- /**
2958
- * Timeout in milliseconds
2959
- * @default 1000
2960
- */
2961
- timeout?: number;
2962
- /**
2963
- * Polling interval in milliseconds
2964
- * @default 50
2965
- */
2966
- interval?: number;
2967
- };
2968
- };
2969
- /**
2970
- * Modify default Chai config. Vitest uses Chai for `expect` and `assert` matches.
2971
- * https://github.com/chaijs/chai/blob/4.x.x/lib/chai/config.js
2972
- */
2973
- chaiConfig?: ChaiConfig;
2974
- /**
2975
- * Stop test execution when given number of tests have failed.
2976
- */
2977
- bail?: number;
2978
- /**
2979
- * Retry the test specific number of times if it fails.
2980
- *
2981
- * @default 0
2982
- */
2983
- retry?: number;
2984
- /**
2985
- * Show full diff when snapshot fails instead of a patch.
2986
- */
2987
- expandSnapshotDiff?: boolean;
2988
- /**
2989
- * By default, Vitest automatically intercepts console logging during tests for extra formatting of test file, test title, etc...
2990
- * This is also required for console log preview on Vitest UI.
2991
- * However, disabling such interception might help when you want to debug a code with normal synchronous terminal console logging.
2992
- *
2993
- * This option has no effect on browser pool since Vitest preserves original logging on browser devtools.
2994
- *
2995
- * @default false
2996
- */
2997
- disableConsoleIntercept?: boolean;
2998
- /**
2999
- * Always print console stack traces.
3000
- *
3001
- * @default false
3002
- */
3003
- printConsoleTrace?: boolean;
3004
- /**
3005
- * Include "location" property inside the test definition
3006
- *
3007
- * @default false
3008
- */
3009
- includeTaskLocation?: boolean;
3010
- /**
3011
- * Directory path for storing attachments created by `context.annotate`
3012
- *
3013
- * @default '.vitest-attachments'
3014
- */
3015
- attachmentsDir?: string;
3016
- /**
3017
- * Experimental features
3018
- *
3019
- * @experimental
3020
- */
3021
- experimental?: {
3022
- /**
3023
- * Enable caching of modules on the file system between reruns.
3024
- */
3025
- fsModuleCache?: boolean;
3026
- /**
3027
- * Path relative to the root of the project where the fs module cache will be stored.
3028
- * @default node_modules/.experimental-vitest-cache
3029
- */
3030
- fsModuleCachePath?: string;
3031
- /**
3032
- * {@link https://vitest.dev/guide/open-telemetry}
3033
- */
3034
- openTelemetry?: {
3035
- enabled: boolean;
3036
- sdkPath?: string;
3037
- browserSdkPath?: string;
3038
- };
3039
- /**
3040
- * Show imports (top 10) that take a long time.
3041
- *
3042
- * Enabling this will also show a breakdown by default in UI, but you can always press a button to toggle it.
3043
- */
3044
- printImportBreakdown?: boolean;
3045
- };
3046
- }
3047
- interface TypecheckConfig {
3048
- /**
3049
- * Run typechecking tests alongside regular tests.
3050
- */
3051
- enabled?: boolean;
3052
- /**
3053
- * When typechecking is enabled, only run typechecking tests.
3054
- */
3055
- only?: boolean;
3056
- /**
3057
- * What tools to use for type checking.
3058
- *
3059
- * @default 'tsc'
3060
- */
3061
- checker: "tsc" | "vue-tsc" | (string & Record<never, never>);
3062
- /**
3063
- * Pattern for files that should be treated as test files
3064
- *
3065
- * @default ['**\/*.{test,spec}-d.?(c|m)[jt]s?(x)']
3066
- */
3067
- include: string[];
3068
- /**
3069
- * Pattern for files that should not be treated as test files
3070
- *
3071
- * @default ['**\/node_modules/**', '**\/dist/**', '**\/cypress/**', '**\/.{idea,git,cache,output,temp}/**', '**\/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build,eslint,prettier}.config.*']
3072
- */
3073
- exclude: string[];
3074
- /**
3075
- * Check JS files that have `@ts-check` comment.
3076
- * If you have it enabled in tsconfig, this will not overwrite it.
3077
- */
3078
- allowJs?: boolean;
3079
- /**
3080
- * Do not fail, if Vitest found errors outside the test files.
3081
- */
3082
- ignoreSourceErrors?: boolean;
3083
- /**
3084
- * Path to tsconfig, relative to the project root.
3085
- */
3086
- tsconfig?: string;
3087
- /**
3088
- * Minimum time in milliseconds it takes to spawn the typechecker.
3089
- * @default 10_000
3090
- */
3091
- spawnTimeout?: number;
3092
- }
3093
- interface UserConfig extends InlineConfig {
3094
- /**
3095
- * Path to the config file.
3096
- *
3097
- * Default resolving to `vitest.config.*`, `vite.config.*`
3098
- *
3099
- * Setting to `false` will disable config resolving.
3100
- */
3101
- config?: string | false | undefined;
3102
- /**
3103
- * Do not run tests when Vitest starts.
3104
- *
3105
- * Vitest will only run tests if it's called programmatically or the test file changes.
3106
- *
3107
- * If CLI file filters are passed, standalone mode is ignored.
3108
- */
3109
- standalone?: boolean;
3110
- /**
3111
- * Use happy-dom
3112
- */
3113
- dom?: boolean;
3114
- /**
3115
- * Run tests that cover a list of source files
3116
- */
3117
- related?: string[] | string;
3118
- /**
3119
- * Overrides Vite mode
3120
- * @default 'test'
3121
- */
3122
- mode?: string;
3123
- /**
3124
- * Runs tests that are affected by the changes in the repository, or between specified branch or commit hash
3125
- * Requires initialized git repository
3126
- * @default false
3127
- */
3128
- changed?: boolean | string;
3129
- /**
3130
- * Test suite shard to execute in a format of <index>/<count>.
3131
- * Will divide tests into a `count` numbers, and run only the `indexed` part.
3132
- * Cannot be used with enabled watch.
3133
- * @example --shard=2/3
3134
- */
3135
- shard?: string;
3136
- /**
3137
- * Name of the project or projects to run.
3138
- */
3139
- project?: string | string[];
3140
- /**
3141
- * Additional exclude patterns
3142
- */
3143
- cliExclude?: string[];
3144
- /**
3145
- * Override vite config's clearScreen from cli
3146
- */
3147
- clearScreen?: boolean;
3148
- /**
3149
- * benchmark.compare option exposed at the top level for cli
3150
- */
3151
- compare?: string;
3152
- /**
3153
- * benchmark.outputJson option exposed at the top level for cli
3154
- */
3155
- outputJson?: string;
3156
- /**
3157
- * Directory of blob reports to merge
3158
- * @default '.vitest-reports'
3159
- */
3160
- mergeReports?: string;
3161
- /**
3162
- * Delete all Vitest caches, including `experimental.fsModuleCache`.
3163
- * @experimental
3164
- */
3165
- clearCache?: boolean;
3166
- }
3167
- type OnUnhandledErrorCallback = (error: (TestError | Error) & {
3168
- type: string;
3169
- }) => boolean | void;
3170
- interface ResolvedConfig extends Omit<Required<UserConfig>, "project" | "config" | "filters" | "browser" | "coverage" | "testNamePattern" | "related" | "api" | "reporters" | "resolveSnapshotPath" | "benchmark" | "shard" | "cache" | "sequence" | "typecheck" | "runner" | "pool" | "cliExclude" | "diff" | "setupFiles" | "snapshotEnvironment" | "bail" | "name" | "vmMemoryLimit" | "fileParallelism"> {
3171
- mode: VitestRunMode;
3172
- name: ProjectName["label"];
3173
- color?: ProjectName["color"];
3174
- base?: string;
3175
- diff?: string | SerializedDiffOptions;
3176
- bail?: number;
3177
- setupFiles: string[];
3178
- snapshotEnvironment?: string;
3179
- config?: string;
3180
- filters?: string[];
3181
- testNamePattern?: RegExp;
3182
- related?: string[];
3183
- coverage: ResolvedCoverageOptions;
3184
- snapshotOptions: SnapshotStateOptions;
3185
- browser: ResolvedBrowserOptions;
3186
- pool: Pool;
3187
- poolRunner?: PoolRunnerInitializer;
3188
- reporters: (InlineReporter | ReporterWithOptions)[];
3189
- defines: Record<string, any>;
3190
- viteDefine: Record<string, any>;
3191
- api: ApiConfig & {
3192
- token: string;
3193
- };
3194
- cliExclude?: string[];
3195
- project: string[];
3196
- benchmark?: Required<Omit<BenchmarkUserOptions, "outputFile" | "compare" | "outputJson">> & Pick<BenchmarkUserOptions, "outputFile" | "compare" | "outputJson">;
3197
- shard?: {
3198
- index: number;
3199
- count: number;
3200
- };
3201
- cache: {
3202
- /**
3203
- * @deprecated
3204
- */
3205
- dir: string;
3206
- } | false;
3207
- sequence: {
3208
- sequencer: TestSequencerConstructor;
3209
- hooks: SequenceHooks;
3210
- setupFiles: SequenceSetupFiles;
3211
- shuffle?: boolean;
3212
- concurrent?: boolean;
3213
- seed: number;
3214
- groupOrder: number;
3215
- };
3216
- typecheck: Omit<TypecheckConfig, "enabled"> & {
3217
- enabled: boolean;
3218
- };
3219
- runner?: string;
3220
- maxWorkers: number;
3221
- vmMemoryLimit?: UserConfig["vmMemoryLimit"];
3222
- dumpDir?: string;
3223
- }
3224
- type NonProjectOptions = "shard" | "watch" | "run" | "cache" | "update" | "reporters" | "outputFile" | "teardownTimeout" | "silent" | "forceRerunTriggers" | "testNamePattern" | "ui" | "open" | "uiBase" | "snapshotFormat" | "resolveSnapshotPath" | "passWithNoTests" | "onConsoleLog" | "onStackTrace" | "dangerouslyIgnoreUnhandledErrors" | "slowTestThreshold" | "inspect" | "inspectBrk" | "coverage" | "watchTriggerPatterns";
3225
- interface ServerDepsOptions {
3226
- /**
3227
- * Externalize means that Vite will bpass the package to native Node.
3228
- *
3229
- * Externalized dependencies will not be applied Vite's transformers and resolvers.
3230
- * And does not support HMR on reload.
3231
- *
3232
- * Typically, packages under `node_modules` are externalized.
3233
- */
3234
- external?: (string | RegExp)[];
3235
- /**
3236
- * Vite will process inlined modules.
3237
- *
3238
- * This could be helpful to handle packages that ship `.js` in ESM format (that Node can't handle).
3239
- *
3240
- * If `true`, every dependency will be inlined
3241
- */
3242
- inline?: (string | RegExp)[] | true;
3243
- /**
3244
- * Try to guess the CJS version of a package when it's invalid ESM
3245
- * @default false
3246
- */
3247
- fallbackCJS?: boolean;
3248
- }
3249
- type ProjectConfig = Omit<InlineConfig, NonProjectOptions | "sequencer" | "deps"> & {
3250
- mode?: string;
3251
- sequencer?: Omit<SequenceOptions, "sequencer" | "seed">;
3252
- deps?: Omit<DepsOptions, "moduleDirectories">;
3253
- };
3254
- type ResolvedProjectConfig = Omit<ResolvedConfig, Exclude<NonProjectOptions, "coverage" | "watch">>;
3255
- interface UserWorkspaceConfig extends UserConfig$1 {
3256
- test?: ProjectConfig;
3257
- }
3258
- type UserProjectConfigFn = (env: ConfigEnv) => UserWorkspaceConfig | Promise<UserWorkspaceConfig>;
3259
- type UserProjectConfigExport = UserWorkspaceConfig | Promise<UserWorkspaceConfig> | UserProjectConfigFn;
3260
- type TestProjectInlineConfiguration = (UserWorkspaceConfig & {
3261
- /**
3262
- * Relative path to the extendable config. All other options will be merged with this config.
3263
- * If `true`, the project will inherit all options from the root config.
3264
- * @example '../vite.config.ts'
3265
- */
3266
- extends?: string | true;
3267
- });
3268
- type TestProjectConfiguration = string | TestProjectInlineConfiguration | Promise<UserWorkspaceConfig> | UserProjectConfigFn;
3269
-
3270
- export { CoverageMap as C, TestSuite as K, Logger as L, experimental_getRunnerTask as Q, TestProject as T, Vitest as V, BenchmarkReporter as aE, BenchmarkReportsMap as aF, DefaultReporter as aG, DotReporter as aH, GithubActionsReporter as aI, HangingProcessReporter as aJ, JsonReporter as aK, JUnitReporter as aL, ReportersMap as aM, TapFlatReporter as aN, TapReporter as aO, VerboseBenchmarkReporter as aP, VerboseReporter as aQ, BaseReporter as aR, TestSpecification as k, VitestPackageInstaller as p, TestCase as v, TestCollection as w, TestModule as y };
3271
- export type { BrowserCommand as $, ApiConfig as A, TestResult as B, TestResultFailed as D, TestResultPassed as E, TestResultSkipped as F, TestState as G, HTMLOptions as H, InlineConfig as I, JsonOptions as J, ModuleDiagnostic as M, TestSuiteState as N, OnServerRestartHandler as O, PoolWorker as P, ResolvedCoverageOptions as R, SerializedTestProject as S, UserWorkspaceConfig as U, WatcherTriggerPattern as W, TestSequencerConstructor as X, BenchmarkUserOptions as Y, BrowserBuiltinProvider as Z, _BrowserNames as _, ReportContext as a, BrowserCommandContext as a0, BrowserConfigOptions as a1, BrowserInstanceOption as a2, BrowserModuleMocker as a3, BrowserOrchestrator as a4, BrowserProvider as a5, BrowserProviderOption as a6, BrowserScript as a7, BrowserServerFactory as a8, BrowserServerOptions as a9, TestRunResult as aA, ReportedHookContext as aB, Reporter as aC, TestRunEndReason as aD, BenchmarkBuiltinReporters as aS, BuiltinReporterOptions as aT, BuiltinReporters as aU, JsonAssertionResult as aV, JsonTestResult as aW, JsonTestResults as aX, BrowserServerState as aa, BrowserServerStateSession as ab, CDPSession as ac, ParentProjectBrowser as ad, ProjectBrowser as ae, ResolvedBrowserOptions as af, ToMatchScreenshotComparators as ag, ToMatchScreenshotOptions as ah, BuiltinEnvironment as ai, CSSModuleScopeStrategy as aj, DepsOptimizationOptions as ak, EnvironmentOptions as al, Pool as am, ProjectConfig as an, ResolvedProjectConfig as ao, ResolveSnapshotPathHandler as ap, ResolveSnapshotPathHandlerContext as aq, TypecheckConfig as ar, VitestEnvironment as as, BaseCoverageOptions as at, CoverageIstanbulOptions as au, CoverageOptions as av, CoverageProvider as aw, CoverageProviderModule as ax, CoverageReporter as ay, CustomProviderOptions as az, TestProjectConfiguration as b, CoverageV8Options as c, UserProjectConfigFn as d, UserProjectConfigExport as e, UserConfig as f, TestProjectInlineConfiguration as g, ResolvedConfig as h, VitestRunMode as i, VitestOptions as j, PoolOptions as l, WorkerRequest as m, TestSequencer as n, OnTestsRerunHandler as o, PoolRunnerInitializer as q, PoolTask as r, WorkerResponse as s, JUnitOptions as t, TaskOptions as u, TestDiagnostic as x, TestModuleState as z };