pactkit 2.0.2__tar.gz → 2.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (981) hide show
  1. {pactkit-2.0.2 → pactkit-2.1.1}/.gitignore +1 -0
  2. pactkit-2.1.1/.opencode/memory/.gitignore +1 -0
  3. pactkit-2.1.1/.opencode/memory/project.md +41 -0
  4. pactkit-2.1.1/.opencode/pactkit.yaml +110 -0
  5. {pactkit-2.0.2 → pactkit-2.1.1}/AGENTS.md +19 -10
  6. {pactkit-2.0.2 → pactkit-2.1.1}/CHANGELOG.md +40 -0
  7. {pactkit-2.0.2 → pactkit-2.1.1}/PKG-INFO +4 -4
  8. {pactkit-2.0.2 → pactkit-2.1.1}/README.md +3 -3
  9. {pactkit-2.0.2 → pactkit-2.1.1}/docs/architecture/governance/lessons.md +7 -0
  10. pactkit-2.1.1/docs/architecture/governance/rules.md +25 -0
  11. pactkit-2.1.1/docs/guides/codex-integration-preresearch.md +185 -0
  12. pactkit-2.1.1/docs/guides/tool-integration-checklist.md +272 -0
  13. {pactkit-2.0.2 → pactkit-2.1.1}/docs/product/archive/archive_202603.md +7 -0
  14. pactkit-2.1.1/docs/product/context.md +26 -0
  15. pactkit-2.1.1/docs/product/sprint_board.md +18 -0
  16. pactkit-2.1.1/docs/specs/BUG-slim-001.md +122 -0
  17. pactkit-2.1.1/docs/specs/STORY-slim-001.md +273 -0
  18. pactkit-2.1.1/docs/specs/STORY-slim-005.md +483 -0
  19. pactkit-2.1.1/docs/specs/STORY-slim-006.md +321 -0
  20. pactkit-2.1.1/docs/specs/STORY-slim-007.md +301 -0
  21. pactkit-2.1.1/docs/specs/STORY-slim-008.md +202 -0
  22. pactkit-2.1.1/docs/specs/STORY-slim-009.md +224 -0
  23. pactkit-2.1.1/opencode.json +12 -0
  24. {pactkit-2.0.2 → pactkit-2.1.1}/pyproject.toml +1 -1
  25. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/__init__.py +1 -1
  26. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/cli.py +46 -0
  27. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/config.py +42 -16
  28. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/generators/deployer.py +272 -79
  29. pactkit-2.1.1/src/pactkit/profiles.py +201 -0
  30. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/prompts/__init__.py +3 -0
  31. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/prompts/agents.py +10 -10
  32. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/prompts/commands.py +48 -36
  33. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/prompts/rules.py +124 -28
  34. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/prompts/skills.py +24 -25
  35. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/prompts/workflows.py +8 -8
  36. pactkit-2.1.1/src/pactkit/schemas.py +174 -0
  37. pactkit-2.1.1/src/pactkit/skills/board.py +306 -0
  38. pactkit-2.1.1/src/pactkit/skills/scaffold.py +437 -0
  39. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/skills/spec_linter.py +56 -33
  40. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug002_plugin_paths.py +5 -5
  41. pactkit-2.1.1/tests/unit/test_bug_slim001_env_detection.py +70 -0
  42. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_config.py +76 -57
  43. pactkit-2.1.1/tests/unit/test_deploy_opencode_parity.py +333 -0
  44. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_home_path_fix.py +40 -31
  45. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_init_guard.py +10 -3
  46. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_list_stories.py +37 -33
  47. pactkit-2.1.1/tests/unit/test_profiles.py +324 -0
  48. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_prompt_structural_invariants.py +6 -4
  49. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_release_field.py +43 -30
  50. pactkit-2.1.1/tests/unit/test_render_prompt.py +317 -0
  51. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_scaffold.py +13 -9
  52. pactkit-2.1.1/tests/unit/test_scaffold_developer_prefix.py +114 -0
  53. pactkit-2.1.1/tests/unit/test_schemas.py +258 -0
  54. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_script_extraction.py +36 -28
  55. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_selective_deploy.py +43 -29
  56. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_session_context.py +54 -49
  57. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story034_plan_config_refresh.py +4 -2
  58. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story071_opencode_config_parity.py +6 -3
  59. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story072_developer_prefix.py +6 -5
  60. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story073_command_model_routing.py +7 -2
  61. pactkit-2.1.1/tests/unit/test_story_slim009_lazy_rules.py +254 -0
  62. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_tools.py +52 -41
  63. pactkit-2.0.2/docs/architecture/governance/rules.md +0 -16
  64. pactkit-2.0.2/docs/product/context.md +0 -28
  65. pactkit-2.0.2/docs/product/sprint_board.md +0 -6
  66. pactkit-2.0.2/src/pactkit/skills/board.py +0 -277
  67. pactkit-2.0.2/src/pactkit/skills/scaffold.py +0 -343
  68. {pactkit-2.0.2 → pactkit-2.1.1}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  69. {pactkit-2.0.2 → pactkit-2.1.1}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  70. {pactkit-2.0.2 → pactkit-2.1.1}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  71. {pactkit-2.0.2 → pactkit-2.1.1}/.github/dependabot.yml +0 -0
  72. {pactkit-2.0.2 → pactkit-2.1.1}/.github/workflows/ci.yml +0 -0
  73. {pactkit-2.0.2 → pactkit-2.1.1}/.github/workflows/pactkit.yml +0 -0
  74. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/.gitignore +0 -0
  75. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/bun.lock +0 -0
  76. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/@opencode-ai/plugin/package.json +0 -0
  77. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/@opencode-ai/sdk/package.json +0 -0
  78. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/LICENSE +0 -0
  79. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/README.md +0 -0
  80. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/index.cjs +0 -0
  81. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/index.d.cts +0 -0
  82. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/index.d.ts +0 -0
  83. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/index.js +0 -0
  84. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/locales/index.cjs +0 -0
  85. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/locales/index.d.cts +0 -0
  86. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/locales/index.d.ts +0 -0
  87. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/locales/index.js +0 -0
  88. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/locales/package.json +0 -0
  89. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/mini/index.cjs +0 -0
  90. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/mini/index.d.cts +0 -0
  91. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/mini/index.d.ts +0 -0
  92. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/mini/index.js +0 -0
  93. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/mini/package.json +0 -0
  94. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/package.json +0 -0
  95. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/index.ts +0 -0
  96. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/locales/index.ts +0 -0
  97. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/mini/index.ts +0 -0
  98. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/ZodError.ts +0 -0
  99. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/benchmarks/datetime.ts +0 -0
  100. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +0 -0
  101. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/benchmarks/index.ts +0 -0
  102. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/benchmarks/ipv4.ts +0 -0
  103. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/benchmarks/object.ts +0 -0
  104. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/benchmarks/primitives.ts +0 -0
  105. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/benchmarks/realworld.ts +0 -0
  106. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/benchmarks/string.ts +0 -0
  107. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/benchmarks/union.ts +0 -0
  108. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/errors.ts +0 -0
  109. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/external.ts +0 -0
  110. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/helpers/enumUtil.ts +0 -0
  111. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/helpers/errorUtil.ts +0 -0
  112. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/helpers/parseUtil.ts +0 -0
  113. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/helpers/partialUtil.ts +0 -0
  114. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/helpers/typeAliases.ts +0 -0
  115. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/helpers/util.ts +0 -0
  116. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/index.ts +0 -0
  117. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/locales/en.ts +0 -0
  118. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/standard-schema.ts +0 -0
  119. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/Mocker.ts +0 -0
  120. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/all-errors.test.ts +0 -0
  121. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/anyunknown.test.ts +0 -0
  122. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/array.test.ts +0 -0
  123. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/async-parsing.test.ts +0 -0
  124. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/async-refinements.test.ts +0 -0
  125. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/base.test.ts +0 -0
  126. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/bigint.test.ts +0 -0
  127. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/branded.test.ts +0 -0
  128. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/catch.test.ts +0 -0
  129. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/coerce.test.ts +0 -0
  130. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/complex.test.ts +0 -0
  131. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/custom.test.ts +0 -0
  132. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/date.test.ts +0 -0
  133. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/deepmasking.test.ts +0 -0
  134. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/default.test.ts +0 -0
  135. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/description.test.ts +0 -0
  136. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +0 -0
  137. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/enum.test.ts +0 -0
  138. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/error.test.ts +0 -0
  139. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/firstparty.test.ts +0 -0
  140. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +0 -0
  141. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/function.test.ts +0 -0
  142. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/generics.test.ts +0 -0
  143. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/instanceof.test.ts +0 -0
  144. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/intersection.test.ts +0 -0
  145. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/language-server.source.ts +0 -0
  146. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/language-server.test.ts +0 -0
  147. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/literal.test.ts +0 -0
  148. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/map.test.ts +0 -0
  149. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/masking.test.ts +0 -0
  150. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/mocker.test.ts +0 -0
  151. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/nan.test.ts +0 -0
  152. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/nativeEnum.test.ts +0 -0
  153. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/nullable.test.ts +0 -0
  154. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/number.test.ts +0 -0
  155. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/object-augmentation.test.ts +0 -0
  156. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +0 -0
  157. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/object.test.ts +0 -0
  158. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/optional.test.ts +0 -0
  159. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/parseUtil.test.ts +0 -0
  160. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/parser.test.ts +0 -0
  161. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/partials.test.ts +0 -0
  162. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/pickomit.test.ts +0 -0
  163. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/pipeline.test.ts +0 -0
  164. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/preprocess.test.ts +0 -0
  165. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/primitive.test.ts +0 -0
  166. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/promise.test.ts +0 -0
  167. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/readonly.test.ts +0 -0
  168. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/record.test.ts +0 -0
  169. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/recursive.test.ts +0 -0
  170. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/refine.test.ts +0 -0
  171. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/safeparse.test.ts +0 -0
  172. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/set.test.ts +0 -0
  173. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/standard-schema.test.ts +0 -0
  174. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/string.test.ts +0 -0
  175. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/transformer.test.ts +0 -0
  176. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/tuple.test.ts +0 -0
  177. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/unions.test.ts +0 -0
  178. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/validations.test.ts +0 -0
  179. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/tests/void.test.ts +0 -0
  180. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v3/types.ts +0 -0
  181. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/checks.ts +0 -0
  182. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/coerce.ts +0 -0
  183. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/compat.ts +0 -0
  184. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/errors.ts +0 -0
  185. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/external.ts +0 -0
  186. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/index.ts +0 -0
  187. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/iso.ts +0 -0
  188. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/parse.ts +0 -0
  189. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/schemas.ts +0 -0
  190. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +0 -0
  191. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/array.test.ts +0 -0
  192. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/assignability.test.ts +0 -0
  193. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +0 -0
  194. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +0 -0
  195. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/base.test.ts +0 -0
  196. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/bigint.test.ts +0 -0
  197. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/brand.test.ts +0 -0
  198. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/catch.test.ts +0 -0
  199. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +0 -0
  200. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/codec-examples.test.ts +0 -0
  201. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/codec.test.ts +0 -0
  202. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/coerce.test.ts +0 -0
  203. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/continuability.test.ts +0 -0
  204. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/custom.test.ts +0 -0
  205. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/date.test.ts +0 -0
  206. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/datetime.test.ts +0 -0
  207. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/default.test.ts +0 -0
  208. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/description.test.ts +0 -0
  209. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +0 -0
  210. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/enum.test.ts +0 -0
  211. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +0 -0
  212. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/error.test.ts +0 -0
  213. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/file.test.ts +0 -0
  214. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +0 -0
  215. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/function.test.ts +0 -0
  216. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/generics.test.ts +0 -0
  217. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/hash.test.ts +0 -0
  218. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/index.test.ts +0 -0
  219. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +0 -0
  220. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/intersection.test.ts +0 -0
  221. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/json.test.ts +0 -0
  222. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/lazy.test.ts +0 -0
  223. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/literal.test.ts +0 -0
  224. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/map.test.ts +0 -0
  225. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/nan.test.ts +0 -0
  226. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +0 -0
  227. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +0 -0
  228. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/nullable.test.ts +0 -0
  229. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/number.test.ts +0 -0
  230. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/object.test.ts +0 -0
  231. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/optional.test.ts +0 -0
  232. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/partial.test.ts +0 -0
  233. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +0 -0
  234. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/pipe.test.ts +0 -0
  235. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/prefault.test.ts +0 -0
  236. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +0 -0
  237. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/primitive.test.ts +0 -0
  238. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/promise.test.ts +0 -0
  239. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +0 -0
  240. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/readonly.test.ts +0 -0
  241. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/record.test.ts +0 -0
  242. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +0 -0
  243. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/refine.test.ts +0 -0
  244. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/registries.test.ts +0 -0
  245. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/set.test.ts +0 -0
  246. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +0 -0
  247. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +0 -0
  248. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/string.test.ts +0 -0
  249. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +0 -0
  250. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +0 -0
  251. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +0 -0
  252. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/transform.test.ts +0 -0
  253. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/tuple.test.ts +0 -0
  254. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/union.test.ts +0 -0
  255. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/validations.test.ts +0 -0
  256. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/classic/tests/void.test.ts +0 -0
  257. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/api.ts +0 -0
  258. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/checks.ts +0 -0
  259. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/config.ts +0 -0
  260. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/core.ts +0 -0
  261. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/doc.ts +0 -0
  262. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/errors.ts +0 -0
  263. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/index.ts +0 -0
  264. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/json-schema.ts +0 -0
  265. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/parse.ts +0 -0
  266. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/regexes.ts +0 -0
  267. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/registries.ts +0 -0
  268. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/schemas.ts +0 -0
  269. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/standard-schema.ts +0 -0
  270. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/tests/extend.test.ts +0 -0
  271. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/tests/index.test.ts +0 -0
  272. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/tests/locales/be.test.ts +0 -0
  273. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/tests/locales/en.test.ts +0 -0
  274. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/tests/locales/es.test.ts +0 -0
  275. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +0 -0
  276. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +0 -0
  277. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/to-json-schema.ts +0 -0
  278. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/util.ts +0 -0
  279. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/versions.ts +0 -0
  280. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/core/zsf.ts +0 -0
  281. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/index.ts +0 -0
  282. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/ar.ts +0 -0
  283. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/az.ts +0 -0
  284. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/be.ts +0 -0
  285. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/bg.ts +0 -0
  286. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/ca.ts +0 -0
  287. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/cs.ts +0 -0
  288. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/da.ts +0 -0
  289. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/de.ts +0 -0
  290. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/en.ts +0 -0
  291. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/eo.ts +0 -0
  292. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/es.ts +0 -0
  293. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/fa.ts +0 -0
  294. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/fi.ts +0 -0
  295. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/fr-CA.ts +0 -0
  296. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/fr.ts +0 -0
  297. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/he.ts +0 -0
  298. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/hu.ts +0 -0
  299. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/id.ts +0 -0
  300. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/index.ts +0 -0
  301. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/is.ts +0 -0
  302. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/it.ts +0 -0
  303. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/ja.ts +0 -0
  304. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/ka.ts +0 -0
  305. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/kh.ts +0 -0
  306. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/km.ts +0 -0
  307. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/ko.ts +0 -0
  308. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/lt.ts +0 -0
  309. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/mk.ts +0 -0
  310. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/ms.ts +0 -0
  311. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/nl.ts +0 -0
  312. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/no.ts +0 -0
  313. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/ota.ts +0 -0
  314. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/pl.ts +0 -0
  315. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/ps.ts +0 -0
  316. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/pt.ts +0 -0
  317. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/ru.ts +0 -0
  318. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/sl.ts +0 -0
  319. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/sv.ts +0 -0
  320. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/ta.ts +0 -0
  321. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/th.ts +0 -0
  322. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/tr.ts +0 -0
  323. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/ua.ts +0 -0
  324. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/uk.ts +0 -0
  325. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/ur.ts +0 -0
  326. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/vi.ts +0 -0
  327. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/yo.ts +0 -0
  328. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/zh-CN.ts +0 -0
  329. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/locales/zh-TW.ts +0 -0
  330. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/checks.ts +0 -0
  331. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/coerce.ts +0 -0
  332. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/external.ts +0 -0
  333. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/index.ts +0 -0
  334. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/iso.ts +0 -0
  335. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/parse.ts +0 -0
  336. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/schemas.ts +0 -0
  337. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/assignability.test.ts +0 -0
  338. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/brand.test.ts +0 -0
  339. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/checks.test.ts +0 -0
  340. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/codec.test.ts +0 -0
  341. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/computed.test.ts +0 -0
  342. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/error.test.ts +0 -0
  343. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/functions.test.ts +0 -0
  344. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/index.test.ts +0 -0
  345. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/number.test.ts +0 -0
  346. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/object.test.ts +0 -0
  347. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +0 -0
  348. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +0 -0
  349. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4/mini/tests/string.test.ts +0 -0
  350. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/src/v4-mini/index.ts +0 -0
  351. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/ZodError.cjs +0 -0
  352. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/ZodError.d.cts +0 -0
  353. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/ZodError.d.ts +0 -0
  354. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/ZodError.js +0 -0
  355. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/errors.cjs +0 -0
  356. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/errors.d.cts +0 -0
  357. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/errors.d.ts +0 -0
  358. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/errors.js +0 -0
  359. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/external.cjs +0 -0
  360. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/external.d.cts +0 -0
  361. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/external.d.ts +0 -0
  362. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/external.js +0 -0
  363. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/enumUtil.cjs +0 -0
  364. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/enumUtil.d.cts +0 -0
  365. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/enumUtil.d.ts +0 -0
  366. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/enumUtil.js +0 -0
  367. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/errorUtil.cjs +0 -0
  368. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/errorUtil.d.cts +0 -0
  369. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/errorUtil.d.ts +0 -0
  370. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/errorUtil.js +0 -0
  371. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/parseUtil.cjs +0 -0
  372. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/parseUtil.d.cts +0 -0
  373. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/parseUtil.d.ts +0 -0
  374. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/parseUtil.js +0 -0
  375. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/partialUtil.cjs +0 -0
  376. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/partialUtil.d.cts +0 -0
  377. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/partialUtil.d.ts +0 -0
  378. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/partialUtil.js +0 -0
  379. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/typeAliases.cjs +0 -0
  380. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/typeAliases.d.cts +0 -0
  381. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/typeAliases.d.ts +0 -0
  382. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/typeAliases.js +0 -0
  383. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/util.cjs +0 -0
  384. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/util.d.cts +0 -0
  385. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/util.d.ts +0 -0
  386. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/helpers/util.js +0 -0
  387. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/index.cjs +0 -0
  388. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/index.d.cts +0 -0
  389. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/index.d.ts +0 -0
  390. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/index.js +0 -0
  391. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/locales/en.cjs +0 -0
  392. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/locales/en.d.cts +0 -0
  393. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/locales/en.d.ts +0 -0
  394. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/locales/en.js +0 -0
  395. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/package.json +0 -0
  396. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/standard-schema.cjs +0 -0
  397. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/standard-schema.d.cts +0 -0
  398. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/standard-schema.d.ts +0 -0
  399. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/standard-schema.js +0 -0
  400. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/types.cjs +0 -0
  401. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/types.d.cts +0 -0
  402. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/types.d.ts +0 -0
  403. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v3/types.js +0 -0
  404. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/checks.cjs +0 -0
  405. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/checks.d.cts +0 -0
  406. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/checks.d.ts +0 -0
  407. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/checks.js +0 -0
  408. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/coerce.cjs +0 -0
  409. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/coerce.d.cts +0 -0
  410. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/coerce.d.ts +0 -0
  411. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/coerce.js +0 -0
  412. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/compat.cjs +0 -0
  413. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/compat.d.cts +0 -0
  414. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/compat.d.ts +0 -0
  415. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/compat.js +0 -0
  416. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/errors.cjs +0 -0
  417. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/errors.d.cts +0 -0
  418. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/errors.d.ts +0 -0
  419. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/errors.js +0 -0
  420. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/external.cjs +0 -0
  421. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/external.d.cts +0 -0
  422. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/external.d.ts +0 -0
  423. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/external.js +0 -0
  424. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/index.cjs +0 -0
  425. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/index.d.cts +0 -0
  426. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/index.d.ts +0 -0
  427. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/index.js +0 -0
  428. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/iso.cjs +0 -0
  429. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/iso.d.cts +0 -0
  430. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/iso.d.ts +0 -0
  431. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/iso.js +0 -0
  432. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/package.json +0 -0
  433. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/parse.cjs +0 -0
  434. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/parse.d.cts +0 -0
  435. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/parse.d.ts +0 -0
  436. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/parse.js +0 -0
  437. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/schemas.cjs +0 -0
  438. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/schemas.d.cts +0 -0
  439. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/schemas.d.ts +0 -0
  440. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/classic/schemas.js +0 -0
  441. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/api.cjs +0 -0
  442. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/api.d.cts +0 -0
  443. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/api.d.ts +0 -0
  444. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/api.js +0 -0
  445. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/checks.cjs +0 -0
  446. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/checks.d.cts +0 -0
  447. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/checks.d.ts +0 -0
  448. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/checks.js +0 -0
  449. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/core.cjs +0 -0
  450. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/core.d.cts +0 -0
  451. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/core.d.ts +0 -0
  452. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/core.js +0 -0
  453. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/doc.cjs +0 -0
  454. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/doc.d.cts +0 -0
  455. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/doc.d.ts +0 -0
  456. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/doc.js +0 -0
  457. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/errors.cjs +0 -0
  458. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/errors.d.cts +0 -0
  459. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/errors.d.ts +0 -0
  460. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/errors.js +0 -0
  461. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/index.cjs +0 -0
  462. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/index.d.cts +0 -0
  463. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/index.d.ts +0 -0
  464. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/index.js +0 -0
  465. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/json-schema.cjs +0 -0
  466. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/json-schema.d.cts +0 -0
  467. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/json-schema.d.ts +0 -0
  468. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/json-schema.js +0 -0
  469. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/package.json +0 -0
  470. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/parse.cjs +0 -0
  471. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/parse.d.cts +0 -0
  472. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/parse.d.ts +0 -0
  473. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/parse.js +0 -0
  474. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/regexes.cjs +0 -0
  475. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/regexes.d.cts +0 -0
  476. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/regexes.d.ts +0 -0
  477. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/regexes.js +0 -0
  478. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/registries.cjs +0 -0
  479. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/registries.d.cts +0 -0
  480. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/registries.d.ts +0 -0
  481. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/registries.js +0 -0
  482. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/schemas.cjs +0 -0
  483. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/schemas.d.cts +0 -0
  484. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/schemas.d.ts +0 -0
  485. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/schemas.js +0 -0
  486. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/standard-schema.cjs +0 -0
  487. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/standard-schema.d.cts +0 -0
  488. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/standard-schema.d.ts +0 -0
  489. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/standard-schema.js +0 -0
  490. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/to-json-schema.cjs +0 -0
  491. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/to-json-schema.d.cts +0 -0
  492. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/to-json-schema.d.ts +0 -0
  493. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/to-json-schema.js +0 -0
  494. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/util.cjs +0 -0
  495. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/util.d.cts +0 -0
  496. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/util.d.ts +0 -0
  497. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/util.js +0 -0
  498. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/versions.cjs +0 -0
  499. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/versions.d.cts +0 -0
  500. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/versions.d.ts +0 -0
  501. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/core/versions.js +0 -0
  502. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/index.cjs +0 -0
  503. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/index.d.cts +0 -0
  504. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/index.d.ts +0 -0
  505. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/index.js +0 -0
  506. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ar.cjs +0 -0
  507. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ar.d.cts +0 -0
  508. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ar.d.ts +0 -0
  509. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ar.js +0 -0
  510. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/az.cjs +0 -0
  511. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/az.d.cts +0 -0
  512. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/az.d.ts +0 -0
  513. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/az.js +0 -0
  514. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/be.cjs +0 -0
  515. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/be.d.cts +0 -0
  516. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/be.d.ts +0 -0
  517. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/be.js +0 -0
  518. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/bg.cjs +0 -0
  519. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/bg.d.cts +0 -0
  520. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/bg.d.ts +0 -0
  521. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/bg.js +0 -0
  522. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ca.cjs +0 -0
  523. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ca.d.cts +0 -0
  524. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ca.d.ts +0 -0
  525. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ca.js +0 -0
  526. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/cs.cjs +0 -0
  527. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/cs.d.cts +0 -0
  528. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/cs.d.ts +0 -0
  529. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/cs.js +0 -0
  530. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/da.cjs +0 -0
  531. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/da.d.cts +0 -0
  532. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/da.d.ts +0 -0
  533. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/da.js +0 -0
  534. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/de.cjs +0 -0
  535. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/de.d.cts +0 -0
  536. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/de.d.ts +0 -0
  537. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/de.js +0 -0
  538. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/en.cjs +0 -0
  539. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/en.d.cts +0 -0
  540. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/en.d.ts +0 -0
  541. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/en.js +0 -0
  542. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/eo.cjs +0 -0
  543. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/eo.d.cts +0 -0
  544. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/eo.d.ts +0 -0
  545. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/eo.js +0 -0
  546. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/es.cjs +0 -0
  547. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/es.d.cts +0 -0
  548. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/es.d.ts +0 -0
  549. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/es.js +0 -0
  550. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fa.cjs +0 -0
  551. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fa.d.cts +0 -0
  552. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fa.d.ts +0 -0
  553. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fa.js +0 -0
  554. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fi.cjs +0 -0
  555. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fi.d.cts +0 -0
  556. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fi.d.ts +0 -0
  557. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fi.js +0 -0
  558. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fr-CA.cjs +0 -0
  559. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fr-CA.d.cts +0 -0
  560. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fr-CA.d.ts +0 -0
  561. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fr-CA.js +0 -0
  562. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fr.cjs +0 -0
  563. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fr.d.cts +0 -0
  564. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fr.d.ts +0 -0
  565. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/fr.js +0 -0
  566. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/he.cjs +0 -0
  567. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/he.d.cts +0 -0
  568. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/he.d.ts +0 -0
  569. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/he.js +0 -0
  570. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/hu.cjs +0 -0
  571. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/hu.d.cts +0 -0
  572. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/hu.d.ts +0 -0
  573. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/hu.js +0 -0
  574. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/id.cjs +0 -0
  575. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/id.d.cts +0 -0
  576. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/id.d.ts +0 -0
  577. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/id.js +0 -0
  578. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/index.cjs +0 -0
  579. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/index.d.cts +0 -0
  580. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/index.d.ts +0 -0
  581. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/index.js +0 -0
  582. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/is.cjs +0 -0
  583. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/is.d.cts +0 -0
  584. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/is.d.ts +0 -0
  585. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/is.js +0 -0
  586. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/it.cjs +0 -0
  587. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/it.d.cts +0 -0
  588. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/it.d.ts +0 -0
  589. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/it.js +0 -0
  590. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ja.cjs +0 -0
  591. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ja.d.cts +0 -0
  592. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ja.d.ts +0 -0
  593. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ja.js +0 -0
  594. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ka.cjs +0 -0
  595. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ka.d.cts +0 -0
  596. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ka.d.ts +0 -0
  597. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ka.js +0 -0
  598. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/kh.cjs +0 -0
  599. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/kh.d.cts +0 -0
  600. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/kh.d.ts +0 -0
  601. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/kh.js +0 -0
  602. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/km.cjs +0 -0
  603. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/km.d.cts +0 -0
  604. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/km.d.ts +0 -0
  605. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/km.js +0 -0
  606. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ko.cjs +0 -0
  607. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ko.d.cts +0 -0
  608. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ko.d.ts +0 -0
  609. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ko.js +0 -0
  610. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/lt.cjs +0 -0
  611. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/lt.d.cts +0 -0
  612. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/lt.d.ts +0 -0
  613. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/lt.js +0 -0
  614. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/mk.cjs +0 -0
  615. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/mk.d.cts +0 -0
  616. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/mk.d.ts +0 -0
  617. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/mk.js +0 -0
  618. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ms.cjs +0 -0
  619. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ms.d.cts +0 -0
  620. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ms.d.ts +0 -0
  621. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ms.js +0 -0
  622. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/nl.cjs +0 -0
  623. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/nl.d.cts +0 -0
  624. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/nl.d.ts +0 -0
  625. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/nl.js +0 -0
  626. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/no.cjs +0 -0
  627. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/no.d.cts +0 -0
  628. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/no.d.ts +0 -0
  629. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/no.js +0 -0
  630. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ota.cjs +0 -0
  631. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ota.d.cts +0 -0
  632. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ota.d.ts +0 -0
  633. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ota.js +0 -0
  634. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/package.json +0 -0
  635. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/pl.cjs +0 -0
  636. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/pl.d.cts +0 -0
  637. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/pl.d.ts +0 -0
  638. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/pl.js +0 -0
  639. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ps.cjs +0 -0
  640. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ps.d.cts +0 -0
  641. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ps.d.ts +0 -0
  642. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ps.js +0 -0
  643. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/pt.cjs +0 -0
  644. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/pt.d.cts +0 -0
  645. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/pt.d.ts +0 -0
  646. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/pt.js +0 -0
  647. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ru.cjs +0 -0
  648. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ru.d.cts +0 -0
  649. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ru.d.ts +0 -0
  650. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ru.js +0 -0
  651. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/sl.cjs +0 -0
  652. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/sl.d.cts +0 -0
  653. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/sl.d.ts +0 -0
  654. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/sl.js +0 -0
  655. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/sv.cjs +0 -0
  656. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/sv.d.cts +0 -0
  657. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/sv.d.ts +0 -0
  658. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/sv.js +0 -0
  659. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ta.cjs +0 -0
  660. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ta.d.cts +0 -0
  661. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ta.d.ts +0 -0
  662. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ta.js +0 -0
  663. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/th.cjs +0 -0
  664. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/th.d.cts +0 -0
  665. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/th.d.ts +0 -0
  666. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/th.js +0 -0
  667. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/tr.cjs +0 -0
  668. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/tr.d.cts +0 -0
  669. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/tr.d.ts +0 -0
  670. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/tr.js +0 -0
  671. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ua.cjs +0 -0
  672. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ua.d.cts +0 -0
  673. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ua.d.ts +0 -0
  674. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ua.js +0 -0
  675. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/uk.cjs +0 -0
  676. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/uk.d.cts +0 -0
  677. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/uk.d.ts +0 -0
  678. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/uk.js +0 -0
  679. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ur.cjs +0 -0
  680. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ur.d.cts +0 -0
  681. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ur.d.ts +0 -0
  682. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/ur.js +0 -0
  683. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/vi.cjs +0 -0
  684. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/vi.d.cts +0 -0
  685. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/vi.d.ts +0 -0
  686. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/vi.js +0 -0
  687. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/yo.cjs +0 -0
  688. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/yo.d.cts +0 -0
  689. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/yo.d.ts +0 -0
  690. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/yo.js +0 -0
  691. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/zh-CN.cjs +0 -0
  692. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/zh-CN.d.cts +0 -0
  693. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/zh-CN.d.ts +0 -0
  694. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/zh-CN.js +0 -0
  695. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/zh-TW.cjs +0 -0
  696. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/zh-TW.d.cts +0 -0
  697. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/zh-TW.d.ts +0 -0
  698. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/locales/zh-TW.js +0 -0
  699. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/checks.cjs +0 -0
  700. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/checks.d.cts +0 -0
  701. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/checks.d.ts +0 -0
  702. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/checks.js +0 -0
  703. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/coerce.cjs +0 -0
  704. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/coerce.d.cts +0 -0
  705. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/coerce.d.ts +0 -0
  706. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/coerce.js +0 -0
  707. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/external.cjs +0 -0
  708. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/external.d.cts +0 -0
  709. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/external.d.ts +0 -0
  710. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/external.js +0 -0
  711. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/index.cjs +0 -0
  712. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/index.d.cts +0 -0
  713. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/index.d.ts +0 -0
  714. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/index.js +0 -0
  715. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/iso.cjs +0 -0
  716. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/iso.d.cts +0 -0
  717. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/iso.d.ts +0 -0
  718. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/iso.js +0 -0
  719. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/package.json +0 -0
  720. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/parse.cjs +0 -0
  721. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/parse.d.cts +0 -0
  722. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/parse.d.ts +0 -0
  723. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/parse.js +0 -0
  724. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/schemas.cjs +0 -0
  725. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/schemas.d.cts +0 -0
  726. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/schemas.d.ts +0 -0
  727. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/mini/schemas.js +0 -0
  728. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4/package.json +0 -0
  729. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4-mini/index.cjs +0 -0
  730. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4-mini/index.d.cts +0 -0
  731. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4-mini/index.d.ts +0 -0
  732. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4-mini/index.js +0 -0
  733. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/node_modules/zod/v4-mini/package.json +0 -0
  734. {pactkit-2.0.2 → pactkit-2.1.1}/.opencode/package.json +0 -0
  735. {pactkit-2.0.2 → pactkit-2.1.1}/CODE_OF_CONDUCT.md +0 -0
  736. {pactkit-2.0.2 → pactkit-2.1.1}/CONTRIBUTING.md +0 -0
  737. {pactkit-2.0.2 → pactkit-2.1.1}/LICENSE +0 -0
  738. {pactkit-2.0.2 → pactkit-2.1.1}/SECURITY.md +0 -0
  739. {pactkit-2.0.2 → pactkit-2.1.1}/docs/assets/logo.png +0 -0
  740. {pactkit-2.0.2 → pactkit-2.1.1}/docs/product/archive/archive_202602.md +0 -0
  741. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-001.md +0 -0
  742. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-002.md +0 -0
  743. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-003.md +0 -0
  744. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-004.md +0 -0
  745. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-005.md +0 -0
  746. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-006.md +0 -0
  747. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-007.md +0 -0
  748. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-008.md +0 -0
  749. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-009.md +0 -0
  750. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-010.md +0 -0
  751. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-011.md +0 -0
  752. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-012.md +0 -0
  753. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-013.md +0 -0
  754. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-014.md +0 -0
  755. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-015.md +0 -0
  756. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-016.md +0 -0
  757. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-017.md +0 -0
  758. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-018.md +0 -0
  759. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-019.md +0 -0
  760. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-020.md +0 -0
  761. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-021.md +0 -0
  762. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-022.md +0 -0
  763. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-023.md +0 -0
  764. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-024.md +0 -0
  765. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-025.md +0 -0
  766. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-026.md +0 -0
  767. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-027.md +0 -0
  768. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-028.md +0 -0
  769. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-029.md +0 -0
  770. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-030.md +0 -0
  771. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-031.md +0 -0
  772. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-032.md +0 -0
  773. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-033.md +0 -0
  774. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-034.md +0 -0
  775. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/BUG-035.md +0 -0
  776. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-001.md +0 -0
  777. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-002.md +0 -0
  778. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-003.md +0 -0
  779. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-004.md +0 -0
  780. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-005.md +0 -0
  781. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-006.md +0 -0
  782. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-007.md +0 -0
  783. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-008.md +0 -0
  784. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-009.md +0 -0
  785. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-010.md +0 -0
  786. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-011.md +0 -0
  787. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-012.md +0 -0
  788. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-013.md +0 -0
  789. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-014.md +0 -0
  790. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-015.md +0 -0
  791. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-016.md +0 -0
  792. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-017.md +0 -0
  793. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-018.md +0 -0
  794. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-019.md +0 -0
  795. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-020.md +0 -0
  796. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-021.md +0 -0
  797. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-022.md +0 -0
  798. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-023.md +0 -0
  799. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-024.md +0 -0
  800. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-025.md +0 -0
  801. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-026.md +0 -0
  802. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-027.md +0 -0
  803. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-028.md +0 -0
  804. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-029.md +0 -0
  805. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-030.md +0 -0
  806. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-031.md +0 -0
  807. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-032.md +0 -0
  808. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-033.md +0 -0
  809. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-034.md +0 -0
  810. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-035.md +0 -0
  811. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-036.md +0 -0
  812. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-037.md +0 -0
  813. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-038.md +0 -0
  814. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-039.md +0 -0
  815. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-040.md +0 -0
  816. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-041.md +0 -0
  817. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-042.md +0 -0
  818. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-043.md +0 -0
  819. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-044.md +0 -0
  820. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-045.md +0 -0
  821. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-046.md +0 -0
  822. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-047.md +0 -0
  823. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-048.md +0 -0
  824. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-049.md +0 -0
  825. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-050.md +0 -0
  826. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-051.md +0 -0
  827. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-052.md +0 -0
  828. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-053.md +0 -0
  829. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-054.md +0 -0
  830. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-055.md +0 -0
  831. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-056.md +0 -0
  832. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-057.md +0 -0
  833. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-058.md +0 -0
  834. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-059.md +0 -0
  835. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-060.md +0 -0
  836. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-061.md +0 -0
  837. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-062.md +0 -0
  838. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-063.md +0 -0
  839. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-064.md +0 -0
  840. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-065.md +0 -0
  841. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-069.md +0 -0
  842. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-070.md +0 -0
  843. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-071.md +0 -0
  844. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-072.md +0 -0
  845. {pactkit-2.0.2 → pactkit-2.1.1}/docs/specs/STORY-073.md +0 -0
  846. {pactkit-2.0.2 → pactkit-2.1.1}/docs/test_cases/BUG-001_case.md +0 -0
  847. {pactkit-2.0.2 → pactkit-2.1.1}/docs/test_cases/BUG-002_case.md +0 -0
  848. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/generators/__init__.py +0 -0
  849. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/generators/adapter.py +0 -0
  850. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/prompts/references.py +0 -0
  851. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/scripts.py +0 -0
  852. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/skills/__init__.py +0 -0
  853. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/skills/visualize.py +0 -0
  854. {pactkit-2.0.2 → pactkit-2.1.1}/src/pactkit/utils.py +0 -0
  855. {pactkit-2.0.2 → pactkit-2.1.1}/tests/conftest.py +0 -0
  856. {pactkit-2.0.2 → pactkit-2.1.1}/tests/e2e/__init__.py +0 -0
  857. {pactkit-2.0.2 → pactkit-2.1.1}/tests/e2e/cli/__init__.py +0 -0
  858. {pactkit-2.0.2 → pactkit-2.1.1}/tests/e2e/cli/test_cli_e2e.py +0 -0
  859. {pactkit-2.0.2 → pactkit-2.1.1}/tests/integration/__init__.py +0 -0
  860. {pactkit-2.0.2 → pactkit-2.1.1}/tests/integration/test_deploy_classic.py +0 -0
  861. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_agent_features.py +0 -0
  862. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_agent_frontmatter.py +0 -0
  863. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_agents_enrichment.py +0 -0
  864. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_board_bug027.py +0 -0
  865. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_board_sections.py +0 -0
  866. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug001_skill_path.py +0 -0
  867. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug003_multi_import.py +0 -0
  868. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug004_dead_set.py +0 -0
  869. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug005_archive_taskless.py +0 -0
  870. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug006_scan_excludes.py +0 -0
  871. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug007_stale_trace_refs.py +0 -0
  872. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug008_stale_command_refs.py +0 -0
  873. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug009_project_config_backfill.py +0 -0
  874. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug010_rewrite_yaml.py +0 -0
  875. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug011_stale_refs.py +0 -0
  876. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug012_call_graph_filter.py +0 -0
  877. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug013_config_single_source.py +0 -0
  878. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug014_version_hygiene.py +0 -0
  879. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug017_project_init_playbook.py +0 -0
  880. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug018_issue_tracker_verification.py +0 -0
  881. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug019_venv_deployment.py +0 -0
  882. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug020_claude_md_backup.py +0 -0
  883. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug025_release_delegation.py +0 -0
  884. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug026_version_sync.py +0 -0
  885. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug028_ghost_refs.py +0 -0
  886. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug029_stack_detection_fallback.py +0 -0
  887. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug030_spec_lint_cli.py +0 -0
  888. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug031_docstring_accuracy.py +0 -0
  889. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug034_plan_metadata_template.py +0 -0
  890. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug035_opencode_dual_layer.py +0 -0
  891. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug_021.py +0 -0
  892. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug_022.py +0 -0
  893. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug_023.py +0 -0
  894. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_bug_024.py +0 -0
  895. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_check_command.py +0 -0
  896. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_command_frontmatter.py +0 -0
  897. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_command_visualize_modes.py +0 -0
  898. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_config_auto_merge.py +0 -0
  899. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_constitution_sharpening.py +0 -0
  900. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_create_skill.py +0 -0
  901. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_deployer_cleanup.py +0 -0
  902. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_deployer_plugin.py +0 -0
  903. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_design_command.py +0 -0
  904. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_done_gates.py +0 -0
  905. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_draw_prompt.py +0 -0
  906. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_draw_references.py +0 -0
  907. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_drawio_mcp.py +0 -0
  908. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_hotfix_command.py +0 -0
  909. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_lang_profiles.py +0 -0
  910. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_mcp_integration.py +0 -0
  911. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_model_config.py +0 -0
  912. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_modular_constitution.py +0 -0
  913. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_multi_prefix.py +0 -0
  914. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_pdca_slim.py +0 -0
  915. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_project_visibility.py +0 -0
  916. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_prompts_package.py +0 -0
  917. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_release.py +0 -0
  918. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_release_v110.py +0 -0
  919. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_review_command.py +0 -0
  920. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_rules_enrichment.py +0 -0
  921. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_skill_structure.py +0 -0
  922. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_skills_enrichment.py +0 -0
  923. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_smart_regression.py +0 -0
  924. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_sprint_command.py +0 -0
  925. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_stack_references.py +0 -0
  926. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_status_command.py +0 -0
  927. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_statusline.py +0 -0
  928. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story014_release.py +0 -0
  929. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story015_ci_lint_gate.py +0 -0
  930. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story016_claude_md.py +0 -0
  931. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story017_init_claude_md.py +0 -0
  932. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story018_arch_staleness.py +0 -0
  933. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story019_bailout.py +0 -0
  934. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story020_horizon.py +0 -0
  935. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story021_rfc.py +0 -0
  936. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story022_decision_tree.py +0 -0
  937. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story023_test_quality.py +0 -0
  938. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story024_native_agent.py +0 -0
  939. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story025_ci_pipeline.py +0 -0
  940. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story026_issue_tracker.py +0 -0
  941. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story027_hooks.py +0 -0
  942. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story028_rule_scoping.py +0 -0
  943. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story029_doctor.py +0 -0
  944. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story030_lint.py +0 -0
  945. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story031_git_init_guard.py +0 -0
  946. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story032_greenfield_redirect.py +0 -0
  947. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story033_config_backfill.py +0 -0
  948. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story035_readme_docs.py +0 -0
  949. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story037_regression_fix.py +0 -0
  950. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story038_call_graph_update.py +0 -0
  951. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story039_venv_config.py +0 -0
  952. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story040_layered_claude_md.py +0 -0
  953. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story042_spec_linter.py +0 -0
  954. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story043_active_clarify.py +0 -0
  955. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story044_consistency_check.py +0 -0
  956. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story045_auto_pr.py +0 -0
  957. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story046_agent_adapter.py +0 -0
  958. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story047_enterprise_flags.py +0 -0
  959. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story048_worktree_isolation.py +0 -0
  960. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story049_community_standards.py +0 -0
  961. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story050_doc_only_shortcut.py +0 -0
  962. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story051_workflow_streamlining.py +0 -0
  963. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story052_conditional_github_release.py +0 -0
  964. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story053_impact_regression.py +0 -0
  965. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story055_commands.py +0 -0
  966. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story055_config.py +0 -0
  967. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story055_spec_linter.py +0 -0
  968. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story056_commands.py +0 -0
  969. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story056_config.py +0 -0
  970. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story057_implicit_cleanup.py +0 -0
  971. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story058_routing_fix.py +0 -0
  972. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story060_init_hang.py +0 -0
  973. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story061_remove_thinking.py +0 -0
  974. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story062_mcp_recommendations.py +0 -0
  975. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story063_prompt_slimming.py +0 -0
  976. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story064_venv_local_md.py +0 -0
  977. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story065_sprint_model.py +0 -0
  978. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story069_opencode_format.py +0 -0
  979. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_story070_opencode_compliance.py +0 -0
  980. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_update_task.py +0 -0
  981. {pactkit-2.0.2 → pactkit-2.1.1}/tests/unit/test_visualize_modes.py +0 -0
@@ -43,3 +43,4 @@ docs/architecture/snapshots/
43
43
  *.bak
44
44
  .mcp.json
45
45
  coder/
46
+ docker/
@@ -0,0 +1 @@
1
+ *
@@ -0,0 +1,41 @@
1
+ ---
2
+ description: PactKit project-specific knowledge — architecture, patterns, release process, and key decisions.
3
+ label: project
4
+ limit: 5000
5
+ read_only: false
6
+ ---
7
+ ## Project
8
+ - PactKit: Spec-driven agentic DevOps toolkit
9
+ - Version: 2.1.0 (released 2026-03-17, PyPI + GitHub Release)
10
+ - Test Count: 2307+ (grew +113 in one day from 2194)
11
+ - Stack: Python 3.10+, hatchling build, pyyaml only runtime dep
12
+
13
+ ## Key Architecture (v2.1.0)
14
+ - `profiles.py`: FormatProfile frozen dataclass registry (OCP: new format = one entry)
15
+ - `schemas.py`: Document structure single source of truth (Spec/Board/Context/Lessons/TestCase)
16
+ - `deployer.py`: `_render_prompt(template, profile)` — sequential str.replace for template vars
17
+ - `config.py`: re-exports from profiles (VALID_FORMATS, PACTKIT_YAML_CANDIDATES, get_profile)
18
+ - VALID_* sets in config.py are source of truth for component counts
19
+ - CLAUDE_MD_TEMPLATE auto-generated from sorted(RULES_FILES.values())
20
+
21
+ ## Template Variables (11 total)
22
+ - {SKILLS_ROOT}, {BOARD_CMD}, {VISUALIZE_CMD}, {SCAFFOLD_CMD}
23
+ - {PACTKIT_YAML}, {GLOBAL_CONFIG_DIR}, {PROJECT_CONFIG_DIR}
24
+ - {INSTRUCTIONS_FILE}, {DISPLAY_NAME}, {GLOBAL_INSTRUCTIONS}
25
+ - {CONTEXT_SECTIONS}, {LESSONS_ROW_FORMAT}, {M} (backtick escape)
26
+
27
+ ## Key Patterns
28
+ - Standalone scripts (board.py, scaffold.py) cannot import pactkit — inline + source-of-truth comment
29
+ - Plugin mode: _render_prompt(classic) then _rewrite_skills_prefix(_legacy_prefix)
30
+ - Spec template uses TBD as Release placeholder; spec-lint E008 enforces at Act time
31
+ - Edit tool auto-formatting changes quotes — use explicit strings in tests
32
+
33
+ ## Release Process
34
+ - PyPI: python -m build && twine upload dist/*
35
+ - GitHub: gh release create vX.Y.Z --title "..." --notes "..."
36
+ - Sync: CHANGELOG, pyproject.toml, __init__.py, README, pactkit.dev
37
+
38
+ ## Lessons
39
+ - Sequential str.replace > format_map (complex keys like {R1, R2} cause ValueError)
40
+ - CI runners have no ~/.config/opencode/ — tests must handle gracefully
41
+ - auto_merge_config_file adds ALL missing components — mock in selective deploy tests
@@ -0,0 +1,110 @@
1
+ # PactKit Configuration
2
+ # Edit this file to customize which components are deployed.
3
+ # Remove items from a list to disable them. Default: all enabled.
4
+
5
+ version: "2.1.1"
6
+ stack: python
7
+ root: .
8
+ developer: "slim"
9
+
10
+ # Agents — AI role definitions
11
+ agents:
12
+ - code-explorer
13
+ - product-designer
14
+ - qa-engineer
15
+ - repo-maintainer
16
+ - security-auditor
17
+ - senior-developer
18
+ - system-architect
19
+ - system-medic
20
+ - visual-architect
21
+
22
+ # Commands — PDCA playbooks
23
+ commands:
24
+ - project-act
25
+ - project-check
26
+ - project-design
27
+ - project-done
28
+ - project-hotfix
29
+ - project-init
30
+ - project-plan
31
+ - project-sprint
32
+ - project-clarify
33
+ - project-pr
34
+ - project-release
35
+
36
+ # Skills — tool scripts
37
+ skills:
38
+ - pactkit-board
39
+ - pactkit-doctor
40
+ - pactkit-draw
41
+ - pactkit-release
42
+ - pactkit-review
43
+ - pactkit-scaffold
44
+ - pactkit-status
45
+ - pactkit-trace
46
+ - pactkit-visualize
47
+ - pactkit-analyze
48
+
49
+ # Rules — constitution modules
50
+ rules:
51
+ - 01-core-protocol
52
+ - 02-hierarchy-of-truth
53
+ - 03-file-atlas
54
+ - 04-routing-table
55
+ - 05-workflow-conventions
56
+ - 06-mcp-integration
57
+ - 07-shared-protocols
58
+ - 08-architecture-principles
59
+
60
+ # CI/CD — set provider to github or gitlab to generate pipeline config
61
+ ci:
62
+ provider: github
63
+
64
+ # Issue Tracker — set provider to github to link stories to issues
65
+ issue_tracker:
66
+ provider: github
67
+
68
+ # Hooks — safe, report-only hook templates (command-type only)
69
+ hooks:
70
+ post_test_coverage: false
71
+ pre_commit_lint: false
72
+ pre_push_check: false
73
+
74
+ # Lint — configure lint behavior in /project-done
75
+ lint_blocking: false
76
+ auto_fix: false
77
+
78
+ # Virtual Environment — configure venv detection and paths
79
+ venv:
80
+ auto_detect: true
81
+
82
+ # Release — configure release automation behavior
83
+ release:
84
+ github_release: true
85
+
86
+ # Regression — configure impact-based test selection strategy
87
+ regression:
88
+ strategy: impact
89
+ max_impact_tests: 50
90
+
91
+ # Check — configure QA verification behavior
92
+ check:
93
+ security_checklist: true
94
+ security_scope_override: none
95
+
96
+ # Done — configure commit and lesson quality behavior
97
+ done:
98
+ lesson_quality_threshold: 15
99
+
100
+ # Agent Models — override default model per agent (inherit = use account default)
101
+ agent_models:
102
+ code-explorer: haiku
103
+ product-designer: opus
104
+ qa-engineer: sonnet
105
+ repo-maintainer: sonnet
106
+ security-auditor: sonnet
107
+ senior-developer: sonnet
108
+ system-architect: opus
109
+ system-medic: haiku
110
+ visual-architect: sonnet
@@ -29,30 +29,39 @@ pactkit init --format opencode -t /tmp/oc-preview
29
29
 
30
30
  ```
31
31
  src/pactkit/
32
- ├── cli.py ← CLI entry: pactkit init/update/version/upgrade
33
- ├── config.py ← pactkit.yaml load/validate/generate
32
+ ├── cli.py ← CLI entry: pactkit init/update/version/upgrade/schema
33
+ ├── config.py ← pactkit.yaml load/validate/generate + re-exports from profiles
34
+ ├── profiles.py ← FormatProfile registry (OCP: new format = one entry)
35
+ ├── schemas.py ← Document structure schemas (DRY: single source of truth)
34
36
  ├── utils.py ← atomic_write() utility
35
37
  ├── generators/
36
- │ └── deployer.py ← Core deployment orchestrator (classic/plugin/marketplace/opencode)
38
+ │ └── deployer.py ← Core deployment orchestrator (classic/opencode/plugin/marketplace)
37
39
  ├── prompts/ ← All prompt templates and constants
38
40
  │ ├── agents.py ← 9 agent definitions
39
- │ ├── commands.py ← 11 command playbooks
41
+ │ ├── commands.py ← 11 command playbooks (use {TEMPLATE_VAR} placeholders)
40
42
  │ ├── references.py ← Reference checklists (SOLID/Security/Quality)
41
- │ ├── rules.py ← Constitution rule modules + AGENTS.md template
42
- │ ├── skills.py ← 10 skill definitions
43
+ │ ├── rules.py ← 8 rule modules + CLAUDE_MD_TEMPLATE (auto-generated from RULES_FILES)
44
+ │ ├── skills.py ← 10 skill definitions (use {TEMPLATE_VAR} placeholders)
43
45
  │ └── workflows.py ← PDCA workflow prompts + LANG_PROFILES
44
- └── skills/ ← Skill script source files
46
+ └── skills/ ← Skill script source files (deployed as standalone scripts)
45
47
  ├── board.py ← Sprint board operations
46
- ├── scaffold.py ← File scaffolding
47
- ├── spec_linter.py ← Spec structural linter
48
+ ├── scaffold.py ← File scaffolding + SPEC_TEMPLATE (inline copy, see schemas.py)
49
+ ├── spec_linter.py ← Spec structural linter (imports from schemas.py)
48
50
  └── visualize.py ← Code dependency graph (Mermaid)
49
51
  ```
50
52
 
53
+ ## Key Architecture Files
54
+ - `profiles.py` — Add new tool format here. See `FormatProfile` docstring for template variables.
55
+ - `schemas.py` — Add new document type here. See `SCHEMA_REGISTRY` for discovery.
56
+ - `deployer.py` — `_render_prompt(template, profile)` resolves all `{VAR}` placeholders at deploy time.
57
+
51
58
  ## Project Governance
52
59
  - Specs are in `docs/specs/` — they are the source of truth
53
60
  - Sprint board: `docs/product/sprint_board.md`
54
61
  - Architecture graphs: `docs/architecture/graphs/`
55
- - Config: `.claude/pactkit.yaml` (PactKit deployment config)
62
+ - Config: `.opencode/pactkit.yaml` or `.claude/pactkit.yaml` (auto-detected, OpenCode preferred)
56
63
  - Global rules: `~/.config/opencode/AGENTS.md` (loaded automatically by OpenCode)
64
+ - Architecture principles: `~/.config/opencode/rules/08-architecture-principles.md`
57
65
 
58
66
  @./docs/product/context.md
67
+ output MUST use Chinese
@@ -4,6 +4,46 @@ All notable changes to PactKit will be documented in this file.
4
4
 
5
5
  Format follows [Keep a Changelog](https://keepachangelog.com/).
6
6
 
7
+ ## [2.1.1] - 2026-03-18
8
+
9
+ ### Added
10
+ - **Lazy Rule Loading** (STORY-slim-009) — Rules split into always-load core (`01-core-protocol`, `02-hierarchy-of-truth`, `09-credential-safety`) and on-demand `@reference` layer (6 files loaded by AI via Read tool when needed). Reduces per-turn system prompt overhead by 62% (7200 → 2800 tokens).
11
+ - `RULES_CORE_FILES`, `RULES_ONDEMAND_FILES`, `RULES_INSTRUCTIONS_CORE` constants in `rules.py` for layered rule management.
12
+ - AGENTS.md now contains `@rules/xxx.md` reference index with lazy-loading instructions — mirrors Claude Code's `@import` behavior in OpenCode's architecture.
13
+
14
+ ### Changed
15
+ - `_update_global_opencode_json()` writes individual core rule paths instead of `rules/*.md` glob. Preserves user's existing instructions via merge strategy.
16
+ - `_deploy_agents_md_inline()` generates on-demand `@reference` index from `RULES_ONDEMAND_FILES`.
17
+
18
+ ### Fixed
19
+ - `_update_global_opencode_json()` no longer overwrites user's existing `instructions` entries (merge instead of replace).
20
+
21
+ ## [2.1.0] - 2026-03-17
22
+
23
+ ### Added
24
+ - **FormatProfile Abstraction** (STORY-slim-005) — Frozen dataclass registry (`profiles.py`) replaces scattered if-else format branching. Adding a new tool format requires only one registry entry. `VALID_FORMATS` and `PACTKIT_YAML_CANDIDATES` auto-generated from `FORMAT_PROFILES`.
25
+ - **Prompt Template Variables** (STORY-slim-006) — 48 hardcoded env-specific paths replaced with 11 named placeholders (`{SKILLS_ROOT}`, `{BOARD_CMD}`, `{PACTKIT_YAML}`, etc.) resolved at deploy time by `_render_prompt(template, profile)`.
26
+ - **Document Schema Registry** (STORY-slim-007) — New `schemas.py` centralizes all document structure rules (Spec sections, Board headers, context.md sections, lessons.md format). New CLI command `pactkit schema [type]` for rule discovery.
27
+ - **Deploy Chain Parity** (STORY-slim-008) — `_deploy_opencode()` now reads `pactkit.yaml` for selective deployment, calls `auto_merge_config_file()`, `_cleanup_legacy()`, generates project-level `AGENTS.md`, prints MCP recommendations. `_generate_config_if_missing(format=)` is format-aware.
28
+ - **Architecture Principles Rule** — New `08-architecture-principles.md` codifies 8 principles (SOLID, DRY, 12-Factor, Defense-in-Depth) derived from project practice. `CLAUDE_MD_TEMPLATE` auto-generated from `RULES_FILES`.
29
+ - **Codex CLI Pre-Research** (STORY-slim-001) — Tool integration checklist (11 dimensions, 60+ checks) and Codex capability matrix completed. Integration specs (STORY-slim-002/003/004) ready.
30
+ - **Daily Retro Skill** — Personal growth feedback loop with 6 dimensions (engineering, architecture, new skills, thinking patterns, process, career). Triggered by cross-day context.md detection.
31
+ - **Docker Containers** — Isolated `claude-code` and `opencode` containers for clean deployment verification.
32
+
33
+ ### Fixed
34
+ - **BUG-slim-001**: `/project-init` no longer creates `.claude/` directory in OpenCode environment. Environment detection moved before `pactkit init` call. Playbook paths now use `$SKILLS_PATH` variable.
35
+ - **Config Priority**: `.opencode/` now takes precedence over `.claude/` in `pactkit.yaml` resolution (newer environment preferred).
36
+ - **Scaffold Developer Prefix**: `create_spec`, `git_start`, `create_e2e` auto-inject developer prefix from `pactkit.yaml`.
37
+
38
+ ### Changed
39
+ - `opencode_format` boolean parameter removed from `_deploy_agents()`, `_deploy_commands()`, `_deploy_skills()` — replaced by `profile: FormatProfile`.
40
+ - `OPENCODE_SKILLS_PREFIX` constant removed — use `get_profile("opencode").skills_path_var`.
41
+ - `CLAUDE_ONLY_FIELDS` hardcoded set replaced by `profile.excluded_agent_fields` (extensible per format).
42
+ - `TRACE_PROMPT` converted from f-string to regular string for template variable compatibility.
43
+ - Spec scaffold template now uses `TBD` as Release placeholder (enforced by spec-lint E008 at Act time).
44
+
45
+ ## [2.0.2] - 2026-03-16
46
+
7
47
  ## [1.6.9] - 2026-03-13
8
48
 
9
49
  ### Fixed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pactkit
3
- Version: 2.0.2
3
+ Version: 2.1.1
4
4
  Summary: Spec-driven agentic DevOps toolkit for AI coding assistants
5
5
  Project-URL: Homepage, https://pactkit.dev
6
6
  Project-URL: Repository, https://github.com/pactkit/pactkit
@@ -209,8 +209,8 @@ PactKit supports two deployment formats:
209
209
 
210
210
  ```
211
211
  ~/.config/opencode/
212
- ├── AGENTS.md <- Slim header (rules loaded via instructions)
213
- ├── rules/ <- 7 rule modules (loaded via opencode.json instructions)
212
+ ├── AGENTS.md <- On-demand @reference index (lazy rule loading)
213
+ ├── rules/ <- 8 rule modules (3 core always-load + 5 on-demand)
214
214
  ├── commands/ <- 11 command playbooks (with model: routing)
215
215
  ├── agents/ <- 9 agent definitions (mode: subagent)
216
216
  ├── skills/ <- 10 skill packages (with SKILL.md frontmatter)
@@ -218,7 +218,7 @@ PactKit supports two deployment formats:
218
218
  ```
219
219
 
220
220
  Key OpenCode differences:
221
- - **Rules**: Loaded via `opencode.json` `instructions: ["rules/*.md"]` (no `@import`)
221
+ - **Rules**: Core rules always loaded via `instructions`; on-demand rules via `@reference` in AGENTS.md (lazy loading, -62% tokens)
222
222
  - **Agents**: `mode: subagent`, no `name` field, tools as record format
223
223
  - **Commands**: `agent: build` + `model: provider/model-id` (model routing)
224
224
  - **Config**: `pactkit.yaml` in `.opencode/` (not `.claude/`)
@@ -183,8 +183,8 @@ PactKit supports two deployment formats:
183
183
 
184
184
  ```
185
185
  ~/.config/opencode/
186
- ├── AGENTS.md <- Slim header (rules loaded via instructions)
187
- ├── rules/ <- 7 rule modules (loaded via opencode.json instructions)
186
+ ├── AGENTS.md <- On-demand @reference index (lazy rule loading)
187
+ ├── rules/ <- 8 rule modules (3 core always-load + 5 on-demand)
188
188
  ├── commands/ <- 11 command playbooks (with model: routing)
189
189
  ├── agents/ <- 9 agent definitions (mode: subagent)
190
190
  ├── skills/ <- 10 skill packages (with SKILL.md frontmatter)
@@ -192,7 +192,7 @@ PactKit supports two deployment formats:
192
192
  ```
193
193
 
194
194
  Key OpenCode differences:
195
- - **Rules**: Loaded via `opencode.json` `instructions: ["rules/*.md"]` (no `@import`)
195
+ - **Rules**: Core rules always loaded via `instructions`; on-demand rules via `@reference` in AGENTS.md (lazy loading, -62% tokens)
196
196
  - **Agents**: `mode: subagent`, no `name` field, tools as record format
197
197
  - **Commands**: `agent: build` + `model: provider/model-id` (model routing)
198
198
  - **Config**: `pactkit.yaml` in `.opencode/` (not `.claude/`)
@@ -92,3 +92,10 @@
92
92
  | 2026-03-17 | When the target tool lacks `@import` syntax (OpenCode vs Claude Code), use its native config mechanism (`opencode.json` `instructions: ["rules/*.md"]`) for modular rule loading instead of inlining everything into a single file; `_update_global_opencode_json()` with merge strategy preserves user-owned fields (`provider`) while adding tool-managed fields (`instructions`) — same principle as `CLAUDE.local.md` but achieved through JSON merge instead of file separation | STORY-071 |
93
93
  | 2026-03-17 | Tool-internal config files (pactkit.yaml) must not be hardcoded to a single tool's directory — `load_config()` multi-path lookup (`.claude/` → `.opencode/`) with `find_pactkit_yaml()` helper + env-aware `resolve_pactkit_yaml_dir()` for generation keeps the CLI tool-agnostic; skill scripts (board.py) that run standalone cannot import library modules, so must inline the path lookup logic rather than calling `from pactkit.config import find_pactkit_yaml` | STORY-072 |
94
94
  | 2026-03-17 | OpenCode command-level model routing requires `model:` in frontmatter (not just `agent.{name}.model` in opencode.json) — `_resolve_opencode_model_id()` maps shortnames (sonnet/opus/haiku) to full `provider/model-id` by scanning `opencode.json` providers; `command_models` in pactkit.yaml enables user override; also: any config YAML comments referencing `~/.claude/` must be tool-agnostic since OpenCode users see those comments in `.opencode/pactkit.yaml` | STORY-073 |
95
+ | 2026-03-17 | Tool integration checklists need a Dimension 0 capability matrix before any code — `docs/guides/tool-integration-checklist.md` shows that OpenCode (architecture-compatible with Claude Code) needed 6 stories while Codex (no agents, no rules, single provider) would require a completely different strategy; filling the matrix first prevents writing code that assumes the wrong architecture | STORY-slim-001 |
96
+ | 2026-03-17 | When format-specific logic is scattered across 10+ locations (deployer, config, prompts), use a frozen dataclass registry (`FormatProfile` in `profiles.py`) so adding a new tool format requires only one registry entry — functions read `profile.skills_path_var`, `profile.excluded_agent_fields`, etc. instead of checking `if format == "opencode"`; review caught unreachable duplicate code from copy-paste during migration (lines 59-61 in `_rewrite_skills_prefix`) | STORY-slim-005 |
97
+ | 2026-03-17 | Prompt templates with hardcoded env paths should use named placeholders (`{BOARD_CMD}`, `{SKILLS_ROOT}` etc.) resolved at deploy time by `_render_prompt(template, profile)`; use sequential `str.replace()` over `str.format_map()` because user-facing templates contain complex keys like `{R1, R2, ...}` and `{version}_*.mmd` that cause `ValueError: Empty attribute` in Python's format parser; f-string prompt constants must be converted to plain strings first | STORY-slim-006 |
98
+ | 2026-03-17 | Document structure rules should live in a single `schemas.py` registry — `spec_linter.py` and `scaffold.py` both had diverged copies of required fields/patterns; when standalone skill scripts (board.py, scaffold.py) cannot import the library, inline copies with a `# STORY-slim-007: canonical values in src/pactkit/schemas.py` comment; standalone script fallbacks in spec_linter.py's except ImportError block must be kept bit-for-bit identical to schemas.py values | STORY-slim-007 |
99
+ | 2026-03-17 | When two deploy functions share logic (classic/opencode), add missing functions one-by-one rather than creating a shared `_deploy_standard()` up-front — `_deploy_opencode()` was missing `auto_merge_config_file`, `_cleanup_legacy`, `_generate_project_agents_md`, and `_print_mcp_recommendations_opencode`; adding them separately is safer than a premature abstraction that could break the plugin/marketplace modes which use different parameter patterns (`_legacy_prefix`) | STORY-slim-008 |
100
+ | 2026-03-18 | OpenCode `instructions: ["rules/*.md"]` glob loads ALL rules every turn (no lazy loading); the workaround is to split `RULES_FILES` into `RULES_CORE_FILES` (always-load via instructions, 3 files), `RULES_ONDEMAND_FILES` (referenced via `@rules/xxx.md` in AGENTS.md, AI reads on-demand via Read tool), and `RULES_INSTRUCTIONS_CORE` (list including user-managed files like `09-credential-safety.md`); user-managed files MUST NOT be in `RULES_FILES` (which drives `_deploy_rules`) or they cause `KeyError` in `prompts.RULES_MODULES` lookup | STORY-slim-009 |
101
+ | 2026-03-17 | Architecture principles derived from project practice should be codified as a named rule module (08-architecture-principles.md) and deployed to all tool environments via `RULES_FILES`; the `CLAUDE_MD_TEMPLATE` auto-generate pattern (building `@import` list from `sorted(RULES_FILES.values())`) prevents new rules from being silently omitted from Classic mode while OpenCode picks them up via `instructions: ["rules/*.md"]` glob — a DRY fix exposed by adding the new module | chore/rules |
@@ -0,0 +1,25 @@
1
+ # Governance Rules
2
+
3
+ ## Architecture Decisions
4
+
5
+ | ID | Decision | Rationale | Date |
6
+ |----|----------|-----------|------|
7
+ | ADR-001 | Python 3.10+ with hatchling build | Broad compatibility, modern packaging | 2025-01 |
8
+ | ADR-002 | Prompt templates as Python string constants | Zero external deps for core, easy to test | 2025-01 |
9
+ | ADR-003 | pactkit.yaml for selective deployment config | User controls which agents/commands/rules deploy | 2025-02 |
10
+ | ADR-004 | FormatProfile dataclass registry (`profiles.py`) | OCP: new tool = one registry entry; eliminates if-else branching | 2026-03 |
11
+ | ADR-005 | schemas.py as document structure source of truth | DRY: one place for Spec/Board/Context/Lessons/TestCase rules | 2026-03 |
12
+ | ADR-006 | Sequential str.replace in `_render_prompt()` | Safe with user-facing complex keys; format_map fails on `{R1, R2}` | 2026-03 |
13
+ | ADR-007 | Deploy chain parity over premature abstraction | Add functions one-by-one rather than shared `_deploy_standard()` | 2026-03 |
14
+
15
+ | ADR-008 | Lazy rule loading: RULES_CORE_FILES + RULES_ONDEMAND_FILES + RULES_INSTRUCTIONS_CORE | OpenCode instructions glob loads all files every turn; split avoids -62% token overhead | 2026-03 |
16
+
17
+ ## Invariants
18
+
19
+ 1. All 2325+ tests must pass before any commit to `main`.
20
+ 2. Specs (`docs/specs/`) are the source of truth — code conforms to specs, not the reverse.
21
+ 3. CLI entry point is `pactkit` via `src/pactkit/cli.py:main`.
22
+ 4. No runtime dependencies beyond `pyyaml`.
23
+ 5. New tool format requires only a `FormatProfile` entry — no other file changes needed.
24
+ 6. Document structure rules exist only in `schemas.py` — consumers inline with source-of-truth comment.
25
+ 7. `RULES_FILES` contains only PactKit-managed files; user-managed files (09-*, 10-*) go in `RULES_INSTRUCTIONS_CORE` only.
@@ -0,0 +1,185 @@
1
+ # Codex CLI Integration Pre-Research
2
+
3
+ > **Purpose**: Pre-research template for adapting PactKit to Codex CLI.
4
+ > Fill in each "待填写" item before starting implementation.
5
+ > Reference: `docs/guides/tool-integration-checklist.md` Dimension 1.
6
+ >
7
+ > **Codex CLI repo**: https://github.com/openai/codex
8
+ > **Last updated**: 2026-03-17 (initial template)
9
+
10
+ ---
11
+
12
+ ## 0. Known Facts (from initial GitHub scan)
13
+
14
+ | Fact | Source |
15
+ |------|--------|
16
+ | Has `.codex/skills/` directory | Repo root observed |
17
+ | Uses `AGENTS.md` as project instruction file | Repo root observed |
18
+ | Written in Rust | 96.2% Rust per GitHub |
19
+ | Global config in `~/.codex/` | Logs written to `~/.codex/log/` |
20
+ | Supports `codex exec` (non-interactive) | install.md |
21
+ | OpenAI models only (ChatGPT Plus/Pro or API key) | README |
22
+
23
+ ---
24
+
25
+ ## 1. Target Tool Research
26
+
27
+ ### 1.1 Official Documentation URLs
28
+
29
+ | Concept | URL | Status |
30
+ |---------|-----|--------|
31
+ | Agents (multi-role) | 待填写 | ❓ |
32
+ | Commands (custom `/cmd`) | 待填写 | ❓ |
33
+ | Skills format | 待填写 | ❓ |
34
+ | Rules / AGENTS.md | 待填写 | ❓ |
35
+ | Config format | 待填写 | ❓ |
36
+ | Permissions / Sandbox | 待填写 | ❓ |
37
+ | MCP support | 待填写 | ❓ |
38
+ | Model selection | 待填写 | ❓ |
39
+
40
+ ### 1.2 Config Format Differences vs Claude Code
41
+
42
+ | Feature | Claude Code | Codex CLI | Notes |
43
+ |---------|-------------|-----------|-------|
44
+ | Agent definition format | `.claude/agents/*.md` with YAML frontmatter | 待填写 | Does Codex have agents? |
45
+ | Command format | `.claude/commands/*.md` with `allowed-tools:` | 待填写 | Unknown — Codex may not have custom commands |
46
+ | Rules loading | `@import` in `CLAUDE.md` | 待填写 | `AGENTS.md` inline? |
47
+ | Skill format | `SKILL.md` with `name`+`description` | 待填写 | `.codex/skills/` structure? |
48
+ | Permission model | `settings.json` deny list | Sandbox mode (待填写 details) | What sandbox levels? |
49
+ | Model config | N/A (Anthropic only) | 待填写 | How to select GPT-4o vs o3? |
50
+
51
+ ### 1.3 File System Conventions
52
+
53
+ | Path | Purpose | Status |
54
+ |------|---------|--------|
55
+ | `~/.codex/` | Global config dir | Confirmed (log dir exists) |
56
+ | `~/.codex/config.toml`? | Global config file | 待填写 — confirm filename and format |
57
+ | `.codex/` | Project config dir | Confirmed (skills dir exists) |
58
+ | `.codex/skills/` | Project skills | Confirmed |
59
+ | `./AGENTS.md` | Project instruction file | Confirmed (repo has it) |
60
+ | `.codex/pactkit.yaml`? | PactKit config location | 待填写 — confirm `.codex/` is right choice |
61
+
62
+ ### 1.4 Rules Loading Mechanism
63
+
64
+ | Question | Answer |
65
+ |----------|--------|
66
+ | Does Codex support `@import` or similar? | 待填写 |
67
+ | How does Codex load `AGENTS.md`? | 待填写 |
68
+ | Can multiple rule files be referenced? | 待填写 |
69
+ | Is there an `instructions` field or equivalent? | 待填写 |
70
+ | What is the context window limit? | 待填写 |
71
+
72
+ ### 1.5 Model Routing
73
+
74
+ | Question | Answer |
75
+ |----------|--------|
76
+ | Can different agents use different models? | 待填写 |
77
+ | Can different commands use different models? | 待填写 |
78
+ | How is model specified (config file, CLI flag)? | 待填写 |
79
+ | What models are available? | 待填写 (GPT-4o, o3, o4-mini?) |
80
+ | Is there a `small_model` equivalent? | 待填写 |
81
+
82
+ ### 1.6 Permission / Sandbox Model
83
+
84
+ | Question | Answer |
85
+ |----------|--------|
86
+ | What sandbox levels exist? | 待填写 |
87
+ | How is file write permission controlled? | 待填写 |
88
+ | How is shell command permission controlled? | 待填写 |
89
+ | Is there a deny list format? | 待填写 |
90
+ | How does it compare to Claude Code `settings.json`? | 待填写 |
91
+
92
+ ### 1.7 MCP Support
93
+
94
+ | Question | Answer |
95
+ |----------|--------|
96
+ | Does Codex support MCP? | 待填写 |
97
+ | MCP server format (if supported)? | 待填写 |
98
+ | Any pre-built MCP integrations? | 待填写 |
99
+
100
+ ### 1.8 Image / Vision Support
101
+
102
+ | Question | Answer |
103
+ |----------|--------|
104
+ | Does Codex support image input? | 待填写 |
105
+ | How to paste/reference images? | 待填写 |
106
+ | Vision capability declaration needed? | 待填写 |
107
+
108
+ ### 1.9 `settings.json` Equivalents
109
+
110
+ | Claude Code `settings.json` Feature | Codex Equivalent | Notes |
111
+ |-------------------------------------|------------------|-------|
112
+ | `permissions.deny` | 待填写 | |
113
+ | `mcpServers` | 待填写 | |
114
+ | `defaultMode: bypassPermissions` | 待填写 | |
115
+ | `env` variables | 待填写 | |
116
+ | `hooks` | 待填写 | |
117
+
118
+ ### 1.10 Dual-Layer Architecture
119
+
120
+ | Question | Answer |
121
+ |----------|--------|
122
+ | Does Codex distinguish global (`~/.codex/`) from project (`.codex/`)? | 待填写 |
123
+ | What goes in global vs project? | 待填写 |
124
+ | Does `pactkit init --format codex` write to global? | 待填写 |
125
+ | Does `/project-init` write to project? | 待填写 |
126
+
127
+ ---
128
+
129
+ ## 2. Capability Matrix (fill in after research)
130
+
131
+ Based on 1.1–1.10 answers, fill in the `Codex` column in the checklist:
132
+
133
+ ```
134
+ docs/guides/tool-integration-checklist.md → Dimension 0.1
135
+ ```
136
+
137
+ Then determine strategy from Dimension 0.2.
138
+
139
+ ---
140
+
141
+ ## 3. Preliminary Integration Strategy (hypothesis)
142
+
143
+ Based on known facts (update after full research):
144
+
145
+ | Capability | Hypothesis | Confidence |
146
+ |------------|-----------|------------|
147
+ | Agents | None → embed roles in AGENTS.md | Medium |
148
+ | Commands | Exists but different format → convert | Low |
149
+ | Skills | `.codex/skills/` → adapt discovery | Medium |
150
+ | Rules | No `@import` → inline into AGENTS.md | Medium |
151
+ | Model routing | None → prompt-level Model Guard Protocol | Medium |
152
+ | Provider | OpenAI only → no resolver needed | High |
153
+ | Permission | Sandbox mode → different from deny list | Low |
154
+ | pactkit.yaml location | `.codex/pactkit.yaml` | Medium |
155
+
156
+ ---
157
+
158
+ ## 4. Open Questions (to resolve before coding)
159
+
160
+ 1. Does Codex have a concept of custom agents (multi-role)? Or is it always single-agent?
161
+ 2. What is the exact format for custom commands in Codex?
162
+ 3. What does `.codex/skills/` expect — same `SKILL.md` frontmatter as OpenCode?
163
+ 4. Is there a global config file (`~/.codex/config.toml`?) and what fields does it support?
164
+ 5. How does Codex handle `AGENTS.md` — is it a system prompt? Loaded on startup?
165
+ 6. Is the sandbox mode configurable or fixed?
166
+ 7. Does Codex have an equivalent to `opencode.json` `instructions` field?
167
+ 8. What version of Codex should we target? (CLI is Rust-based, separate from Codex Web)
168
+ 9. **Version compatibility**: Should PactKit check `codex --version` at deploy time and warn if below minimum? What is the minimum version that supports skills/AGENTS.md?
169
+
170
+ ---
171
+
172
+ ## 5. Estimated Effort (fill in after research)
173
+
174
+ | Dimension | Estimated Stories | Notes |
175
+ |-----------|------------------|-------|
176
+ | 2: Deploy architecture | 待填写 | |
177
+ | 3: Agent format | 待填写 | Likely: N/A if no agent concept |
178
+ | 4: Command format | 待填写 | |
179
+ | 5: Rules loading | 待填写 | Likely: inline into AGENTS.md |
180
+ | 6: Skills format | 待填写 | |
181
+ | 7: pactkit.yaml | 待填写 | Add `.codex/` to candidates |
182
+ | 8: Playbook text | 待填写 | |
183
+ | 9: CLI | 待填写 | Add `codex` to format choices |
184
+ | 10: Verification | 待填写 | |
185
+ | **Total** | | |