spec-kitty-cli 3.2.0rc28__tar.gz → 3.2.0rc30__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 (1724) hide show
  1. spec_kitty_cli-3.2.0rc30/CHANGELOG.md +4371 -0
  2. spec_kitty_cli-3.2.0rc30/PKG-INFO +328 -0
  3. spec_kitty_cli-3.2.0rc30/README.md +228 -0
  4. spec_kitty_cli-3.2.0rc30/kitty-specs/pre-doctrine-test-stabilization-01KSMG8Y/tasks/README.md +64 -0
  5. spec_kitty_cli-3.2.0rc30/kitty-specs/unblock-sync-identity-boundary-canary-01KRZJ07/tasks/README.md +64 -0
  6. spec_kitty_cli-3.2.0rc30/kitty-specs/unified-charter-bundle-chokepoint-01KP5Q2G/tasks/README.md +64 -0
  7. spec_kitty_cli-3.2.0rc30/pyproject.toml +483 -0
  8. spec_kitty_cli-3.2.0rc30/scripts/release/README.md +223 -0
  9. spec_kitty_cli-3.2.0rc30/src/charter/extractor.py +789 -0
  10. spec_kitty_cli-3.2.0rc30/src/charter/hasher.py +71 -0
  11. spec_kitty_cli-3.2.0rc30/src/charter/sync.py +395 -0
  12. spec_kitty_cli-3.2.0rc30/src/charter/synthesizer/interview_mapping.py +403 -0
  13. spec_kitty_cli-3.2.0rc30/src/charter/synthesizer/manifest.py +314 -0
  14. spec_kitty_cli-3.2.0rc30/src/charter/synthesizer/orchestrator.py +275 -0
  15. spec_kitty_cli-3.2.0rc30/src/charter/synthesizer/project_drg.py +381 -0
  16. spec_kitty_cli-3.2.0rc30/src/charter/synthesizer/request.py +301 -0
  17. spec_kitty_cli-3.2.0rc30/src/charter/synthesizer/resynthesize_pipeline.py +603 -0
  18. spec_kitty_cli-3.2.0rc30/src/charter/synthesizer/synthesize_pipeline.py +595 -0
  19. spec_kitty_cli-3.2.0rc30/src/charter/synthesizer/topic_resolver.py +403 -0
  20. spec_kitty_cli-3.2.0rc30/src/charter/synthesizer/write_pipeline.py +596 -0
  21. spec_kitty_cli-3.2.0rc30/src/charter/versioning.py +30 -0
  22. spec_kitty_cli-3.2.0rc30/src/doctrine/drg/migration/extractor.py +686 -0
  23. spec_kitty_cli-3.2.0rc30/src/doctrine/drg/org_pack_config.py +254 -0
  24. spec_kitty_cli-3.2.0rc30/src/doctrine/graph.yaml +2240 -0
  25. spec_kitty_cli-3.2.0rc30/src/doctrine/mission_step_contracts/built-in/documentation-accept.step-contract.yaml +47 -0
  26. spec_kitty_cli-3.2.0rc30/src/doctrine/missions/action_index.py +66 -0
  27. spec_kitty_cli-3.2.0rc30/src/doctrine/missions/documentation/actions/accept/guidelines.md +21 -0
  28. spec_kitty_cli-3.2.0rc30/src/doctrine/missions/documentation/actions/accept/index.yaml +9 -0
  29. spec_kitty_cli-3.2.0rc30/src/doctrine/missions/documentation/actions/retrospect/index.yaml +16 -0
  30. spec_kitty_cli-3.2.0rc30/src/doctrine/missions/documentation/expected-artifacts.yaml +87 -0
  31. spec_kitty_cli-3.2.0rc30/src/doctrine/missions/documentation/mission-runtime.yaml +67 -0
  32. spec_kitty_cli-3.2.0rc30/src/doctrine/missions/research/actions/retrospect/index.yaml +16 -0
  33. spec_kitty_cli-3.2.0rc30/src/doctrine/missions/software-dev/actions/implement/index.yaml +38 -0
  34. spec_kitty_cli-3.2.0rc30/src/doctrine/missions/software-dev/actions/retrospect/index.yaml +16 -0
  35. spec_kitty_cli-3.2.0rc30/src/doctrine/skills/README.md +71 -0
  36. spec_kitty_cli-3.2.0rc30/src/doctrine/skills/paula-patterns/SKILL.md +191 -0
  37. spec_kitty_cli-3.2.0rc30/src/doctrine/skills/paula-patterns/references/scout-prompts.md +85 -0
  38. spec_kitty_cli-3.2.0rc30/src/doctrine/skills/paula-patterns/references/synthesis-matrix.md +38 -0
  39. spec_kitty_cli-3.2.0rc30/src/doctrine/skills/spec-kitty-implement-review/SKILL.md +900 -0
  40. spec_kitty_cli-3.2.0rc30/src/doctrine/skills/spec-kitty-implement-review/references/agent-dispatch-matrix.md +63 -0
  41. spec_kitty_cli-3.2.0rc30/src/doctrine/skills/spec-kitty-mission-review/SKILL.md +856 -0
  42. spec_kitty_cli-3.2.0rc30/src/doctrine/skills/spec-kitty-orchestrator-api-operator/references/orchestrator-api-contract.md +444 -0
  43. spec_kitty_cli-3.2.0rc30/src/doctrine/skills/spec-kitty-program-orchestrate/SKILL.md +424 -0
  44. spec_kitty_cli-3.2.0rc30/src/doctrine/skills/spec-kitty-runtime-next/SKILL.md +583 -0
  45. spec_kitty_cli-3.2.0rc30/src/doctrine/tactics/built-in/architecture/paula-patterns-architecture-scout-review.tactic.yaml +83 -0
  46. spec_kitty_cli-3.2.0rc30/src/doctrine/tactics/built-in/five-paradigm-parallel-debugging.tactic.yaml +84 -0
  47. spec_kitty_cli-3.2.0rc30/src/doctrine/versioning.py +486 -0
  48. spec_kitty_cli-3.2.0rc30/src/specify_cli/__init__.py +318 -0
  49. spec_kitty_cli-3.2.0rc30/src/specify_cli/acceptance/__init__.py +1133 -0
  50. spec_kitty_cli-3.2.0rc30/src/specify_cli/acceptance/matrix.py +442 -0
  51. spec_kitty_cli-3.2.0rc30/src/specify_cli/agent_utils/__init__.py +17 -0
  52. spec_kitty_cli-3.2.0rc30/src/specify_cli/audit/classifiers/wp_files.py +118 -0
  53. spec_kitty_cli-3.2.0rc30/src/specify_cli/auth/loopback/pkce.py +60 -0
  54. spec_kitty_cli-3.2.0rc30/src/specify_cli/bulk_edit/gate.py +263 -0
  55. spec_kitty_cli-3.2.0rc30/src/specify_cli/charter_runtime/lint/checks/contradiction.py +154 -0
  56. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/__init__.py +139 -0
  57. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/accept.py +403 -0
  58. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/agent/README.md +258 -0
  59. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/agent/mission.py +2871 -0
  60. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/agent/tasks.py +3951 -0
  61. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/agent/workflow.py +2304 -0
  62. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/charter/__init__.py +196 -0
  63. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/charter/_fresh_doctrine.py +131 -0
  64. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/charter/_synthesis.py +481 -0
  65. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/charter/context.py +112 -0
  66. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/charter/interview.py +364 -0
  67. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/charter/lint.py +240 -0
  68. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/charter/resynthesize.py +228 -0
  69. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/charter/sync.py +69 -0
  70. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/charter/synthesize.py +477 -0
  71. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/charter_bundle.py +454 -0
  72. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/decision.py +469 -0
  73. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/doctor.py +2753 -0
  74. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/glossary.py +928 -0
  75. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/implement.py +865 -0
  76. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/init.py +1155 -0
  77. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/merge.py +2249 -0
  78. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/mission_type.py +761 -0
  79. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/retrospect.py +1063 -0
  80. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/review/ERROR_CODES.md +257 -0
  81. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/review/__init__.py +656 -0
  82. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/review/_report.py +178 -0
  83. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/safe_commit_cmd.py +200 -0
  84. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/commands/upgrade.py +823 -0
  85. spec_kitty_cli-3.2.0rc30/src/specify_cli/cli/helpers.py +365 -0
  86. spec_kitty_cli-3.2.0rc30/src/specify_cli/compat/_detect/install_method.py +389 -0
  87. spec_kitty_cli-3.2.0rc30/src/specify_cli/compat/cache.py +629 -0
  88. spec_kitty_cli-3.2.0rc30/src/specify_cli/compat/messages.py +216 -0
  89. spec_kitty_cli-3.2.0rc30/src/specify_cli/compat/planner.py +965 -0
  90. spec_kitty_cli-3.2.0rc30/src/specify_cli/compat/safety_modes.py +209 -0
  91. spec_kitty_cli-3.2.0rc30/src/specify_cli/compat/upgrade_hint.py +144 -0
  92. spec_kitty_cli-3.2.0rc30/src/specify_cli/configured_command.py +228 -0
  93. spec_kitty_cli-3.2.0rc30/src/specify_cli/coordination/__init__.py +75 -0
  94. spec_kitty_cli-3.2.0rc30/src/specify_cli/coordination/outbound.py +102 -0
  95. spec_kitty_cli-3.2.0rc30/src/specify_cli/coordination/policy.py +217 -0
  96. spec_kitty_cli-3.2.0rc30/src/specify_cli/coordination/transaction.py +884 -0
  97. spec_kitty_cli-3.2.0rc30/src/specify_cli/coordination/types.py +132 -0
  98. spec_kitty_cli-3.2.0rc30/src/specify_cli/coordination/workspace.py +260 -0
  99. spec_kitty_cli-3.2.0rc30/src/specify_cli/core/dependency_graph.py +397 -0
  100. spec_kitty_cli-3.2.0rc30/src/specify_cli/core/execution_context.py +309 -0
  101. spec_kitty_cli-3.2.0rc30/src/specify_cli/core/mission_creation.py +607 -0
  102. spec_kitty_cli-3.2.0rc30/src/specify_cli/core/upstream_contract.json +41 -0
  103. spec_kitty_cli-3.2.0rc30/src/specify_cli/dashboard/handlers/glossary.py +313 -0
  104. spec_kitty_cli-3.2.0rc30/src/specify_cli/dashboard/templates/glossary.html +713 -0
  105. spec_kitty_cli-3.2.0rc30/src/specify_cli/doctrine_synthesizer/provenance.py +184 -0
  106. spec_kitty_cli-3.2.0rc30/src/specify_cli/dossier/drift_detector.py +471 -0
  107. spec_kitty_cli-3.2.0rc30/src/specify_cli/dossier/hasher.py +217 -0
  108. spec_kitty_cli-3.2.0rc30/src/specify_cli/dossier/snapshot.py +179 -0
  109. spec_kitty_cli-3.2.0rc30/src/specify_cli/git/commit_helpers.py +967 -0
  110. spec_kitty_cli-3.2.0rc30/src/specify_cli/glossary/checkpoint.py +387 -0
  111. spec_kitty_cli-3.2.0rc30/src/specify_cli/glossary/drg_builder.py +294 -0
  112. spec_kitty_cli-3.2.0rc30/src/specify_cli/glossary/scope.py +299 -0
  113. spec_kitty_cli-3.2.0rc30/src/specify_cli/glossary/seed_schema.py +80 -0
  114. spec_kitty_cli-3.2.0rc30/src/specify_cli/identity/project.py +339 -0
  115. spec_kitty_cli-3.2.0rc30/src/specify_cli/invocation/executor.py +382 -0
  116. spec_kitty_cli-3.2.0rc30/src/specify_cli/lanes/compute.py +647 -0
  117. spec_kitty_cli-3.2.0rc30/src/specify_cli/lanes/merge.py +474 -0
  118. spec_kitty_cli-3.2.0rc30/src/specify_cli/lanes/worktree_allocator.py +271 -0
  119. spec_kitty_cli-3.2.0rc30/src/specify_cli/migration/mission_state.py +1758 -0
  120. spec_kitty_cli-3.2.0rc30/src/specify_cli/migration/rebuild_state.py +795 -0
  121. spec_kitty_cli-3.2.0rc30/src/specify_cli/migration/schema_version.py +196 -0
  122. spec_kitty_cli-3.2.0rc30/src/specify_cli/mission_brief.py +232 -0
  123. spec_kitty_cli-3.2.0rc30/src/specify_cli/mission_loader/command.py +319 -0
  124. spec_kitty_cli-3.2.0rc30/src/specify_cli/mission_step_contracts/executor.py +350 -0
  125. spec_kitty_cli-3.2.0rc30/src/specify_cli/missions/_create.py +317 -0
  126. spec_kitty_cli-3.2.0rc30/src/specify_cli/missions/_read_path_resolver.py +162 -0
  127. spec_kitty_cli-3.2.0rc30/src/specify_cli/missions/_resolve_planning_branch.py +116 -0
  128. spec_kitty_cli-3.2.0rc30/src/specify_cli/missions/software-dev/command-templates/accept.md +88 -0
  129. spec_kitty_cli-3.2.0rc30/src/specify_cli/missions/software-dev/command-templates/implement.md +332 -0
  130. spec_kitty_cli-3.2.0rc30/src/specify_cli/missions/software-dev/command-templates/tasks-finalize.md +107 -0
  131. spec_kitty_cli-3.2.0rc30/src/specify_cli/next/_internal_runtime/engine.py +1476 -0
  132. spec_kitty_cli-3.2.0rc30/src/specify_cli/next/_internal_runtime/planner.py +396 -0
  133. spec_kitty_cli-3.2.0rc30/src/specify_cli/next/decision.py +616 -0
  134. spec_kitty_cli-3.2.0rc30/src/specify_cli/next/discovery.py +187 -0
  135. spec_kitty_cli-3.2.0rc30/src/specify_cli/next/runtime_bridge.py +3037 -0
  136. spec_kitty_cli-3.2.0rc30/src/specify_cli/orchestrator_api/commands.py +1232 -0
  137. spec_kitty_cli-3.2.0rc30/src/specify_cli/ownership/models.py +129 -0
  138. spec_kitty_cli-3.2.0rc30/src/specify_cli/paths/windows_paths.py +119 -0
  139. spec_kitty_cli-3.2.0rc30/src/specify_cli/readiness/upgrade_ux.py +731 -0
  140. spec_kitty_cli-3.2.0rc30/src/specify_cli/retrospective/__init__.py +116 -0
  141. spec_kitty_cli-3.2.0rc30/src/specify_cli/review/baseline.py +425 -0
  142. spec_kitty_cli-3.2.0rc30/src/specify_cli/review/prompt_metadata.py +205 -0
  143. spec_kitty_cli-3.2.0rc30/src/specify_cli/scripts/tasks/acceptance_support.py +82 -0
  144. spec_kitty_cli-3.2.0rc30/src/specify_cli/skills/command_installer.py +601 -0
  145. spec_kitty_cli-3.2.0rc30/src/specify_cli/skills/command_renderer.py +490 -0
  146. spec_kitty_cli-3.2.0rc30/src/specify_cli/skills/manifest.py +123 -0
  147. spec_kitty_cli-3.2.0rc30/src/specify_cli/skills/manifest_store.py +358 -0
  148. spec_kitty_cli-3.2.0rc30/src/specify_cli/skills/verifier.py +277 -0
  149. spec_kitty_cli-3.2.0rc30/src/specify_cli/status/emit.py +755 -0
  150. spec_kitty_cli-3.2.0rc30/src/specify_cli/sync/__init__.py +321 -0
  151. spec_kitty_cli-3.2.0rc30/src/specify_cli/sync/body_upload.py +272 -0
  152. spec_kitty_cli-3.2.0rc30/src/specify_cli/sync/clock.py +99 -0
  153. spec_kitty_cli-3.2.0rc30/src/specify_cli/sync/daemon.py +1180 -0
  154. spec_kitty_cli-3.2.0rc30/src/specify_cli/sync/owner.py +519 -0
  155. spec_kitty_cli-3.2.0rc30/src/specify_cli/sync/queue.py +1844 -0
  156. spec_kitty_cli-3.2.0rc30/src/specify_cli/sync/restart.py +323 -0
  157. spec_kitty_cli-3.2.0rc30/src/specify_cli/template/asset_generator.py +280 -0
  158. spec_kitty_cli-3.2.0rc30/src/specify_cli/tracker/store.py +508 -0
  159. spec_kitty_cli-3.2.0rc30/src/specify_cli/upgrade/migrations/m_3_2_0_codex_to_skills.py +351 -0
  160. spec_kitty_cli-3.2.0rc30/src/specify_cli/upgrade/migrations/m_3_2_0rc28_github_diff_attributes.py +78 -0
  161. spec_kitty_cli-3.2.0rc30/src/specify_cli/upgrade/migrations/m_3_2_6_charter_bundle_v2.py +115 -0
  162. spec_kitty_cli-3.2.0rc30/src/specify_cli/upgrade/migrations/m_3_2_6_charter_manifest_defaults_repair.py +68 -0
  163. spec_kitty_cli-3.2.0rc28/CHANGELOG.md +0 -4242
  164. spec_kitty_cli-3.2.0rc28/PKG-INFO +0 -302
  165. spec_kitty_cli-3.2.0rc28/README.md +0 -202
  166. spec_kitty_cli-3.2.0rc28/pyproject.toml +0 -446
  167. spec_kitty_cli-3.2.0rc28/scripts/release/README.md +0 -211
  168. spec_kitty_cli-3.2.0rc28/src/charter/extractor.py +0 -788
  169. spec_kitty_cli-3.2.0rc28/src/charter/hasher.py +0 -71
  170. spec_kitty_cli-3.2.0rc28/src/charter/sync.py +0 -395
  171. spec_kitty_cli-3.2.0rc28/src/charter/synthesizer/interview_mapping.py +0 -278
  172. spec_kitty_cli-3.2.0rc28/src/charter/synthesizer/manifest.py +0 -282
  173. spec_kitty_cli-3.2.0rc28/src/charter/synthesizer/orchestrator.py +0 -273
  174. spec_kitty_cli-3.2.0rc28/src/charter/synthesizer/project_drg.py +0 -367
  175. spec_kitty_cli-3.2.0rc28/src/charter/synthesizer/request.py +0 -301
  176. spec_kitty_cli-3.2.0rc28/src/charter/synthesizer/resynthesize_pipeline.py +0 -603
  177. spec_kitty_cli-3.2.0rc28/src/charter/synthesizer/synthesize_pipeline.py +0 -593
  178. spec_kitty_cli-3.2.0rc28/src/charter/synthesizer/topic_resolver.py +0 -399
  179. spec_kitty_cli-3.2.0rc28/src/charter/synthesizer/write_pipeline.py +0 -596
  180. spec_kitty_cli-3.2.0rc28/src/charter/versioning.py +0 -28
  181. spec_kitty_cli-3.2.0rc28/src/doctrine/drg/migration/extractor.py +0 -545
  182. spec_kitty_cli-3.2.0rc28/src/doctrine/drg/org_pack_config.py +0 -255
  183. spec_kitty_cli-3.2.0rc28/src/doctrine/graph.yaml +0 -2251
  184. spec_kitty_cli-3.2.0rc28/src/doctrine/missions/action_index.py +0 -64
  185. spec_kitty_cli-3.2.0rc28/src/doctrine/missions/documentation/actions/retrospect/index.yaml +0 -12
  186. spec_kitty_cli-3.2.0rc28/src/doctrine/missions/research/actions/retrospect/index.yaml +0 -12
  187. spec_kitty_cli-3.2.0rc28/src/doctrine/missions/software-dev/actions/implement/index.yaml +0 -19
  188. spec_kitty_cli-3.2.0rc28/src/doctrine/missions/software-dev/actions/retrospect/index.yaml +0 -12
  189. spec_kitty_cli-3.2.0rc28/src/doctrine/paradigms/built-in/__init__.py +0 -2
  190. spec_kitty_cli-3.2.0rc28/src/doctrine/procedures/built-in/__init__.py +0 -1
  191. spec_kitty_cli-3.2.0rc28/src/doctrine/skills/README.md +0 -70
  192. spec_kitty_cli-3.2.0rc28/src/doctrine/skills/spec-kitty-implement-review/SKILL.md +0 -897
  193. spec_kitty_cli-3.2.0rc28/src/doctrine/skills/spec-kitty-implement-review/references/agent-dispatch-matrix.md +0 -63
  194. spec_kitty_cli-3.2.0rc28/src/doctrine/skills/spec-kitty-mission-review/SKILL.md +0 -856
  195. spec_kitty_cli-3.2.0rc28/src/doctrine/skills/spec-kitty-orchestrator-api-operator/references/orchestrator-api-contract.md +0 -433
  196. spec_kitty_cli-3.2.0rc28/src/doctrine/skills/spec-kitty-program-orchestrate/SKILL.md +0 -422
  197. spec_kitty_cli-3.2.0rc28/src/doctrine/skills/spec-kitty-runtime-next/SKILL.md +0 -583
  198. spec_kitty_cli-3.2.0rc28/src/doctrine/tactics/built-in/five-paradigm-parallel-debugging.tactic.yaml +0 -88
  199. spec_kitty_cli-3.2.0rc28/src/doctrine/toolguides/built-in/__init__.py +0 -2
  200. spec_kitty_cli-3.2.0rc28/src/doctrine/toolguides/built-in/system_tools/__init__.py +0 -0
  201. spec_kitty_cli-3.2.0rc28/src/doctrine/versioning.py +0 -400
  202. spec_kitty_cli-3.2.0rc28/src/specify_cli/__init__.py +0 -237
  203. spec_kitty_cli-3.2.0rc28/src/specify_cli/acceptance/__init__.py +0 -981
  204. spec_kitty_cli-3.2.0rc28/src/specify_cli/acceptance/matrix.py +0 -353
  205. spec_kitty_cli-3.2.0rc28/src/specify_cli/agent_utils/__init__.py +0 -19
  206. spec_kitty_cli-3.2.0rc28/src/specify_cli/audit/classifiers/wp_files.py +0 -105
  207. spec_kitty_cli-3.2.0rc28/src/specify_cli/auth/loopback/pkce.py +0 -60
  208. spec_kitty_cli-3.2.0rc28/src/specify_cli/bulk_edit/gate.py +0 -200
  209. spec_kitty_cli-3.2.0rc28/src/specify_cli/charter_runtime/lint/checks/contradiction.py +0 -154
  210. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/__init__.py +0 -119
  211. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/accept.py +0 -282
  212. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/agent/README.md +0 -257
  213. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/agent/mission.py +0 -2711
  214. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/agent/tasks.py +0 -3894
  215. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/agent/workflow.py +0 -1880
  216. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/charter/__init__.py +0 -197
  217. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/charter/_fresh_doctrine.py +0 -131
  218. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/charter/_synthesis.py +0 -480
  219. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/charter/context.py +0 -111
  220. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/charter/interview.py +0 -356
  221. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/charter/lint.py +0 -222
  222. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/charter/resynthesize.py +0 -216
  223. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/charter/sync.py +0 -64
  224. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/charter/synthesize.py +0 -456
  225. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/charter_bundle.py +0 -444
  226. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/decision.py +0 -455
  227. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/doctor.py +0 -2026
  228. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/glossary.py +0 -928
  229. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/implement.py +0 -739
  230. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/init.py +0 -1134
  231. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/merge.py +0 -1869
  232. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/mission_type.py +0 -500
  233. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/retrospect.py +0 -1063
  234. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/review/ERROR_CODES.md +0 -256
  235. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/review/__init__.py +0 -351
  236. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/review/_report.py +0 -148
  237. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/safe_commit_cmd.py +0 -106
  238. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/commands/upgrade.py +0 -810
  239. spec_kitty_cli-3.2.0rc28/src/specify_cli/cli/helpers.py +0 -370
  240. spec_kitty_cli-3.2.0rc28/src/specify_cli/compat/_adapters/__init__.py +0 -0
  241. spec_kitty_cli-3.2.0rc28/src/specify_cli/compat/_detect/__init__.py +0 -0
  242. spec_kitty_cli-3.2.0rc28/src/specify_cli/compat/_detect/install_method.py +0 -329
  243. spec_kitty_cli-3.2.0rc28/src/specify_cli/compat/cache.py +0 -567
  244. spec_kitty_cli-3.2.0rc28/src/specify_cli/compat/messages.py +0 -214
  245. spec_kitty_cli-3.2.0rc28/src/specify_cli/compat/planner.py +0 -951
  246. spec_kitty_cli-3.2.0rc28/src/specify_cli/compat/safety_modes.py +0 -207
  247. spec_kitty_cli-3.2.0rc28/src/specify_cli/compat/upgrade_hint.py +0 -140
  248. spec_kitty_cli-3.2.0rc28/src/specify_cli/core/dependency_graph.py +0 -323
  249. spec_kitty_cli-3.2.0rc28/src/specify_cli/core/execution_context.py +0 -288
  250. spec_kitty_cli-3.2.0rc28/src/specify_cli/core/mission_creation.py +0 -578
  251. spec_kitty_cli-3.2.0rc28/src/specify_cli/core/upstream_contract.json +0 -41
  252. spec_kitty_cli-3.2.0rc28/src/specify_cli/dashboard/handlers/glossary.py +0 -213
  253. spec_kitty_cli-3.2.0rc28/src/specify_cli/dashboard/templates/glossary.html +0 -653
  254. spec_kitty_cli-3.2.0rc28/src/specify_cli/doctrine_synthesizer/provenance.py +0 -184
  255. spec_kitty_cli-3.2.0rc28/src/specify_cli/dossier/drift_detector.py +0 -471
  256. spec_kitty_cli-3.2.0rc28/src/specify_cli/dossier/hasher.py +0 -217
  257. spec_kitty_cli-3.2.0rc28/src/specify_cli/dossier/snapshot.py +0 -179
  258. spec_kitty_cli-3.2.0rc28/src/specify_cli/git/commit_helpers.py +0 -528
  259. spec_kitty_cli-3.2.0rc28/src/specify_cli/glossary/checkpoint.py +0 -387
  260. spec_kitty_cli-3.2.0rc28/src/specify_cli/glossary/drg_builder.py +0 -294
  261. spec_kitty_cli-3.2.0rc28/src/specify_cli/glossary/scope.py +0 -251
  262. spec_kitty_cli-3.2.0rc28/src/specify_cli/glossary/seed_schema.py +0 -73
  263. spec_kitty_cli-3.2.0rc28/src/specify_cli/identity/project.py +0 -339
  264. spec_kitty_cli-3.2.0rc28/src/specify_cli/invocation/executor.py +0 -382
  265. spec_kitty_cli-3.2.0rc28/src/specify_cli/lanes/compute.py +0 -638
  266. spec_kitty_cli-3.2.0rc28/src/specify_cli/lanes/merge.py +0 -439
  267. spec_kitty_cli-3.2.0rc28/src/specify_cli/lanes/worktree_allocator.py +0 -180
  268. spec_kitty_cli-3.2.0rc28/src/specify_cli/migration/mission_state.py +0 -1758
  269. spec_kitty_cli-3.2.0rc28/src/specify_cli/migration/rebuild_state.py +0 -795
  270. spec_kitty_cli-3.2.0rc28/src/specify_cli/migration/schema_version.py +0 -195
  271. spec_kitty_cli-3.2.0rc28/src/specify_cli/mission_brief.py +0 -232
  272. spec_kitty_cli-3.2.0rc28/src/specify_cli/mission_loader/command.py +0 -321
  273. spec_kitty_cli-3.2.0rc28/src/specify_cli/mission_step_contracts/executor.py +0 -349
  274. spec_kitty_cli-3.2.0rc28/src/specify_cli/missions/documentation/expected-artifacts.yaml +0 -83
  275. spec_kitty_cli-3.2.0rc28/src/specify_cli/missions/documentation/mission-runtime.yaml +0 -66
  276. spec_kitty_cli-3.2.0rc28/src/specify_cli/missions/software-dev/command-templates/implement.md +0 -332
  277. spec_kitty_cli-3.2.0rc28/src/specify_cli/missions/software-dev/command-templates/tasks-finalize.md +0 -109
  278. spec_kitty_cli-3.2.0rc28/src/specify_cli/next/_internal_runtime/engine.py +0 -1476
  279. spec_kitty_cli-3.2.0rc28/src/specify_cli/next/_internal_runtime/planner.py +0 -396
  280. spec_kitty_cli-3.2.0rc28/src/specify_cli/next/decision.py +0 -571
  281. spec_kitty_cli-3.2.0rc28/src/specify_cli/next/discovery.py +0 -158
  282. spec_kitty_cli-3.2.0rc28/src/specify_cli/next/runtime_bridge.py +0 -3024
  283. spec_kitty_cli-3.2.0rc28/src/specify_cli/orchestrator_api/commands.py +0 -1135
  284. spec_kitty_cli-3.2.0rc28/src/specify_cli/ownership/models.py +0 -126
  285. spec_kitty_cli-3.2.0rc28/src/specify_cli/paths/windows_paths.py +0 -114
  286. spec_kitty_cli-3.2.0rc28/src/specify_cli/readiness/upgrade_ux.py +0 -645
  287. spec_kitty_cli-3.2.0rc28/src/specify_cli/retrospective/__init__.py +0 -119
  288. spec_kitty_cli-3.2.0rc28/src/specify_cli/review/baseline.py +0 -422
  289. spec_kitty_cli-3.2.0rc28/src/specify_cli/review/prompt_metadata.py +0 -205
  290. spec_kitty_cli-3.2.0rc28/src/specify_cli/scripts/tasks/acceptance_support.py +0 -78
  291. spec_kitty_cli-3.2.0rc28/src/specify_cli/skills/command_installer.py +0 -498
  292. spec_kitty_cli-3.2.0rc28/src/specify_cli/skills/command_renderer.py +0 -490
  293. spec_kitty_cli-3.2.0rc28/src/specify_cli/skills/manifest.py +0 -123
  294. spec_kitty_cli-3.2.0rc28/src/specify_cli/skills/manifest_store.py +0 -358
  295. spec_kitty_cli-3.2.0rc28/src/specify_cli/skills/verifier.py +0 -277
  296. spec_kitty_cli-3.2.0rc28/src/specify_cli/status/emit.py +0 -663
  297. spec_kitty_cli-3.2.0rc28/src/specify_cli/sync/__init__.py +0 -317
  298. spec_kitty_cli-3.2.0rc28/src/specify_cli/sync/body_upload.py +0 -272
  299. spec_kitty_cli-3.2.0rc28/src/specify_cli/sync/clock.py +0 -99
  300. spec_kitty_cli-3.2.0rc28/src/specify_cli/sync/daemon.py +0 -1091
  301. spec_kitty_cli-3.2.0rc28/src/specify_cli/sync/owner.py +0 -512
  302. spec_kitty_cli-3.2.0rc28/src/specify_cli/sync/queue.py +0 -1835
  303. spec_kitty_cli-3.2.0rc28/src/specify_cli/sync/restart.py +0 -256
  304. spec_kitty_cli-3.2.0rc28/src/specify_cli/template/asset_generator.py +0 -273
  305. spec_kitty_cli-3.2.0rc28/src/specify_cli/tracker/store.py +0 -508
  306. spec_kitty_cli-3.2.0rc28/src/specify_cli/upgrade/migrations/m_3_2_0_codex_to_skills.py +0 -351
  307. spec_kitty_cli-3.2.0rc28/src/specify_cli/upgrade/migrations/m_3_2_6_charter_bundle_v2.py +0 -104
  308. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/.gitignore +0 -0
  309. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/LICENSE +0 -0
  310. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/1.x/README.md +0 -0
  311. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/1.x/adr/README.md +0 -0
  312. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/1.x/notes/README.md +0 -0
  313. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/00_landscape/README.md +0 -0
  314. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/01_context/README.md +0 -0
  315. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/02_containers/README.md +0 -0
  316. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/03_components/README.md +0 -0
  317. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/04_implementation_mapping/README.md +0 -0
  318. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/README.md +0 -0
  319. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/adr/README.md +0 -0
  320. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/initiatives/2026-02-architecture-discovery-and-restructure/README.md +0 -0
  321. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/initiatives/2026-03-054-postmortem/README.md +0 -0
  322. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/initiatives/2026-03-doctrine-execution-integration/README.md +0 -0
  323. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/initiatives/2026-04-mission-nomenclature-reconciliation/README.md +0 -0
  324. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/initiatives/2026-04-tracker-binding-context-discovery/README.md +0 -0
  325. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/initiatives/README.md +0 -0
  326. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/initiatives/next-mission-mappings/README.md +0 -0
  327. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/initiatives/test_improvement/README.md +0 -0
  328. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/2.x/user_journey/README.md +0 -0
  329. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/3.x/README.md +0 -0
  330. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/3.x/adr/README.md +0 -0
  331. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/README.md +0 -0
  332. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/adrs/README.md +0 -0
  333. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/audience/README.md +0 -0
  334. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/audience/external/README.md +0 -0
  335. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/audience/internal/README.md +0 -0
  336. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/calibration/README.md +0 -0
  337. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/architecture/glossary/README.md +0 -0
  338. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/docs/development/tracking/next-mission-mappings/README.md +0 -0
  339. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/docs/doctrine/README.md +0 -0
  340. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/docs/engineering_notes/architectural-review/README.md +0 -0
  341. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/docs/engineering_notes/finding/README.md +0 -0
  342. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/docs/engineering_notes/reflections/README.md +0 -0
  343. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/docs/engineering_notes/triage/README.md +0 -0
  344. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/docs/reference/README.md +0 -0
  345. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/glossary/README.md +0 -0
  346. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/007-frontmatter-only-lane/tasks/README.md +0 -0
  347. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/008-unified-python-cli/tasks/README.md +0 -0
  348. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/010-workspace-per-work-package-for-parallel-development/tasks/README.md +0 -0
  349. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/011-constitution-packaging-safety-and-redesign/tasks/README.md +0 -0
  350. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/012-documentation-mission/tasks/README.md +0 -0
  351. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/014-comprehensive-end-user-documentation/tasks/README.md +0 -0
  352. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/017-smarter-feature-merge-with-preflight/tasks/README.md +0 -0
  353. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/018-merge-preflight-documentation/tasks/README.md +0 -0
  354. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/019-autonomous-multi-agent-orchestration-research/tasks/README.md +0 -0
  355. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/020-autonomous-multi-agent-orchestrator/tasks/README.md +0 -0
  356. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/021-orchestrator-end-to-end-testing-suite/tasks/README.md +0 -0
  357. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/028-cli-event-emission-sync/tasks/README.md +0 -0
  358. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/032-identity-aware-cli-event-sync/tasks/README.md +0 -0
  359. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/034-feature-status-state-model-remediation/tasks/README.md +0 -0
  360. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/039-cli-2x-readiness/tasks/README.md +0 -0
  361. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/041-enable-plan-mission-runtime-support/tasks/README.md +0 -0
  362. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/045-mission-handoff-package-version-matrix/handoff/README.md +0 -0
  363. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/045-mission-handoff-package-version-matrix/tasks/README.md +0 -0
  364. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/047-mutmut-mutation-testing-ci/tasks/README.md +0 -0
  365. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/047-namespace-aware-artifact-body-sync/tasks/README.md +0 -0
  366. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/048-tracker-publish-resource-routing/tasks/README.md +0 -0
  367. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/049-fix-merge-target-resolution/tasks/README.md +0 -0
  368. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/050-state-model-cleanup-foundations/tasks/README.md +0 -0
  369. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/051-canonical-state-authority-single-metadata-writer/tasks/README.md +0 -0
  370. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/052-acceptance-pipeline-regression-fixes/tasks/README.md +0 -0
  371. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/053-orchestrator-api-json-contract-fidelity/tasks/README.md +0 -0
  372. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/054-constitution-interview-compiler-and-bootstrap/tasks/README.md +0 -0
  373. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/054-state-architecture-cleanup-phase-2/tasks/README.md +0 -0
  374. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/055-agent-skills-pack/tasks/README.md +0 -0
  375. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/056-documentation-parity-sprint/tasks/README.md +0 -0
  376. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/057-canonical-context-architecture-cleanup/tasks/README.md +0 -0
  377. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/058-hybrid-prompt-and-shim-agent-surface/tasks/README.md +0 -0
  378. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/059-saas-mediated-cli-tracker-reflow/tasks/README.md +0 -0
  379. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/060-canonical-status-model-cleanup/tasks/README.md +0 -0
  380. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/061-ticket-first-mission-origin-binding/tasks/README.md +0 -0
  381. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/062-fix-doctrine-migration-test-failures/tasks/README.md +0 -0
  382. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/062-tracker-binding-context-discovery/tasks/README.md +0 -0
  383. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/063-universal-charter-rename/tasks/README.md +0 -0
  384. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/064-complete-mission-identity-cutover/tasks/README.md +0 -0
  385. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/065-tasks-and-lane-stabilization/tasks/README.md +0 -0
  386. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/065-wp-metadata-state-type-hardening/tasks/README.md +0 -0
  387. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/066-review-loop-stabilization/tasks/README.md +0 -0
  388. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/067-runtime-recovery-and-audit-safety/tasks/README.md +0 -0
  389. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/068-post-merge-reliability-and-release-hardening/tasks/README.md +0 -0
  390. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/069-planning-pipeline-integrity/tasks/README.md +0 -0
  391. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/076-init-command-overhaul/tasks/README.md +0 -0
  392. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/077-mission-terminology-cleanup/tasks/README.md +0 -0
  393. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/078-planning-artifact-and-query-consistency/tasks/README.md +0 -0
  394. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/079-post-555-release-hardening/tasks/README.md +0 -0
  395. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/080-ci-hardening-and-lint-cleanup/tasks/README.md +0 -0
  396. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/080-wpstate-lane-consumer-strangler-fig-phase-2/tasks/README.md +0 -0
  397. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/081-canonical-baseline-and-repository-boundary/tasks/README.md +0 -0
  398. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/082-stealth-gated-saas-sync-hardening/tasks/README.md +0 -0
  399. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/083-agent-skills-codex-vibe/tasks/README.md +0 -0
  400. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/auth-local-trust-and-multi-process-hardening-01KQW587/tasks/README.md +0 -0
  401. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/auth-readiness-from-any-command-01KS7PQZ/tasks/README.md +0 -0
  402. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/auth-tranche-2-5-cli-contract-consumption-01KQEJZK/tasks/README.md +0 -0
  403. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/autonomous-runtime-safety-followups-01KS52BD/tasks/README.md +0 -0
  404. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/backward-transition-cli-emit-01KRV8GC/tasks/README.md +0 -0
  405. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/bulk-edit-occurrence-classification-guardrail-01KP423X/tasks/README.md +0 -0
  406. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/canonical-producer-lint-01KS4XX4/tasks/README.md +0 -0
  407. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/charter-828-implementation-sprint-01KQD7VB/tasks/README.md +0 -0
  408. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/charter-contract-cleanup-tranche-1-01KQATS4/contracts/README.md +0 -0
  409. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/charter-contract-cleanup-tranche-1-01KQATS4/tasks/README.md +0 -0
  410. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/charter-e2e-827-followups-01KQAJA0/tasks/README.md +0 -0
  411. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/charter-end-user-docs-828-01KQCSYD/tasks/README.md +0 -0
  412. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/charter-golden-path-e2e-tranche-1-01KQ806X/tasks/README.md +0 -0
  413. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/charter-mediated-doctrine-selection-01KRTZCA/tasks/README.md +0 -0
  414. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/charter-ownership-consolidation-and-neutrality-hardening-01KPD880/contracts/README.md +0 -0
  415. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/charter-ownership-consolidation-and-neutrality-hardening-01KPD880/tasks/README.md +0 -0
  416. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/charter-p7-release-closure-01KQF9B9/tasks/README.md +0 -0
  417. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/charter-p7-schema-versioning-provenance-01KQEG13/tasks/README.md +0 -0
  418. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/charter-ux-and-org-pack-vocabulary-01KSAF14/tasks/README.md +0 -0
  419. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/cli-decision-moment-widen-mode-readiness-01KRC12S/tasks/README.md +0 -0
  420. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/cli-interview-decision-moments-01KPWT8P/contracts/README.md +0 -0
  421. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/cli-interview-decision-moments-01KPWT8P/tasks/README.md +0 -0
  422. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/cli-saas-fanout-preserves-local-at-01KRNS87/tasks/README.md +0 -0
  423. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/cli-session-survival-daemon-singleton-01KQ9M3M/tasks/README.md +0 -0
  424. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/cli-startup-readiness-coordinator-skeleton-01KS7JRV/tasks/README.md +0 -0
  425. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/cli-upgrade-nag-lazy-project-migrations-01KQ6YDN/tasks/README.md +0 -0
  426. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/cli-widen-mode-and-write-back-01KPXFGJ/contracts/README.md +0 -0
  427. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/cli-widen-mode-and-write-back-01KPXFGJ/tasks/README.md +0 -0
  428. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/complexity-code-smell-remediation-01KP15HB/tasks/README.md +0 -0
  429. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/doctrine-enrichment-frontend-brownfield-normalization-01KQ48XA/tasks/README.md +0 -0
  430. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/documentation-mission-composition-fixup-01KQ6N5X/tasks/README.md +0 -0
  431. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/documentation-mission-composition-rewrite-01KQ5M1Y/tasks/README.md +0 -0
  432. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/drg-phase-zero-01KP2YCE/tasks/README.md +0 -0
  433. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/excise-doctrine-curation-and-inline-references-01KP54J6/tasks/README.md +0 -0
  434. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/functional-ownership-map-01KPDY72/tasks/README.md +0 -0
  435. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/glossary-drg-chokepoint-01KPTE0P/tasks/README.md +0 -0
  436. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/glossary-drg-surfaces-and-charter-lint-01KPTY5Y/designs/README.md +0 -0
  437. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/glossary-drg-surfaces-and-charter-lint-01KPTY5Y/tasks/README.md +0 -0
  438. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/glossary-functional-module-extraction-01KPDYM9/tasks/README.md +0 -0
  439. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/glossary-seed-file-schema-validation-01KSN752/tasks/README.md +0 -0
  440. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/identity-boundary-ci-gate-rerun-01KS51YK/tasks/README.md +0 -0
  441. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/implement-review-retrospect-reliability-01KQQSCW/tasks/README.md +0 -0
  442. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/intake-auto-detect-01KPNGCX/tasks/README.md +0 -0
  443. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/investigate-canary-followups-1142-1141-01KS02TV/tasks/README.md +0 -0
  444. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/layered-doctrine-org-layer-01KRNPEE/tasks/README.md +0 -0
  445. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/legacy-sparse-and-review-lock-hardening-01KP54ZW/tasks/README.md +0 -0
  446. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/local-custom-mission-loader-01KQ2VNJ/tasks/README.md +0 -0
  447. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/logged-out-teamspace-cli-recovery-01KRC6CY/tasks/README.md +0 -0
  448. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/merge-review-status-hardening-sprint-01KQFF35/tasks/README.md +0 -0
  449. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/migration-shim-ownership-rules-01KPDYDW/tasks/README.md +0 -0
  450. {spec_kitty_cli-3.2.0rc28/kitty-specs/mission-retrospective-learning-loop-01KQ6YEG → spec_kitty_cli-3.2.0rc30/kitty-specs/mission-coordination-branch-atomic-event-log-01KSPTVW}/tasks/README.md +0 -0
  451. {spec_kitty_cli-3.2.0rc28/kitty-specs/mission-state-migration-determinism-cleanup-01KRC7JG → spec_kitty_cli-3.2.0rc30/kitty-specs/mission-retrospective-learning-loop-01KQ6YEG}/tasks/README.md +0 -0
  452. {spec_kitty_cli-3.2.0rc28/kitty-specs/mvp-sync-boundary-cli-01KRVCQS → spec_kitty_cli-3.2.0rc30/kitty-specs/mission-state-migration-determinism-cleanup-01KRC7JG}/tasks/README.md +0 -0
  453. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/mvp-cli-sync-boundary-completion-01KRX11M/tasks/README.md +0 -0
  454. {spec_kitty_cli-3.2.0rc28/kitty-specs/offline-queue-enqueue-performance-01KRC4HN → spec_kitty_cli-3.2.0rc30/kitty-specs/mvp-sync-boundary-cli-01KRVCQS}/tasks/README.md +0 -0
  455. {spec_kitty_cli-3.2.0rc28/kitty-specs/p1-dependency-cycle-cleanup-01KQFXVC → spec_kitty_cli-3.2.0rc30/kitty-specs/offline-queue-enqueue-performance-01KRC4HN}/tasks/README.md +0 -0
  456. {spec_kitty_cli-3.2.0rc28/kitty-specs/phase-3-charter-synthesizer-pipeline-01KPE222 → spec_kitty_cli-3.2.0rc30/kitty-specs/p1-dependency-cycle-cleanup-01KQFXVC}/tasks/README.md +0 -0
  457. {spec_kitty_cli-3.2.0rc28/kitty-specs/phase-4-cli-blockers-1141-1142-01KS0H5Y → spec_kitty_cli-3.2.0rc30/kitty-specs/phase-3-charter-synthesizer-pipeline-01KPE222}/tasks/README.md +0 -0
  458. {spec_kitty_cli-3.2.0rc28/kitty-specs/phase-4-closeout-host-surfaces-and-trail-01KPWA5X → spec_kitty_cli-3.2.0rc30/kitty-specs/phase-4-cli-blockers-1141-1142-01KS0H5Y}/tasks/README.md +0 -0
  459. {spec_kitty_cli-3.2.0rc28/kitty-specs/phase4-canary-gate-01KS1W46 → spec_kitty_cli-3.2.0rc30/kitty-specs/phase-4-closeout-host-surfaces-and-trail-01KPWA5X}/tasks/README.md +0 -0
  460. {spec_kitty_cli-3.2.0rc28/kitty-specs/phase6-composition-stabilization-01KQ2JAS → spec_kitty_cli-3.2.0rc30/kitty-specs/phase4-canary-gate-01KS1W46}/tasks/README.md +0 -0
  461. {spec_kitty_cli-3.2.0rc28/kitty-specs/private-teamspace-ingress-safeguards-01KQH03Y → spec_kitty_cli-3.2.0rc30/kitty-specs/phase6-composition-stabilization-01KQ2JAS}/tasks/README.md +0 -0
  462. {spec_kitty_cli-3.2.0rc28/kitty-specs/profile-invocation-runtime-audit-trail-01KPQRX2 → spec_kitty_cli-3.2.0rc30/kitty-specs/private-teamspace-ingress-safeguards-01KQH03Y}/tasks/README.md +0 -0
  463. {spec_kitty_cli-3.2.0rc28/kitty-specs/release-320-workflow-reliability-01KQKV85 → spec_kitty_cli-3.2.0rc30/kitty-specs/profile-invocation-runtime-audit-trail-01KPQRX2}/tasks/README.md +0 -0
  464. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/profile-roles-as-value-object-01KPRJRY/tasks/README.md +0 -0
  465. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/quality-devex-hardening-3-2-01KRJGKH/tasks/README.md +0 -0
  466. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/release-3-2-0a5-tranche-1-01KQ7YXH/tasks/README.md +0 -0
  467. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/release-3-2-0a6-tranche-2-01KQ9MKP/tasks/README.md +0 -0
  468. {spec_kitty_cli-3.2.0rc28/kitty-specs/research-mission-composition-rewrite-v2-01KQ4QVV → spec_kitty_cli-3.2.0rc30/kitty-specs/release-320-workflow-reliability-01KQKV85}/tasks/README.md +0 -0
  469. {spec_kitty_cli-3.2.0rc28/kitty-specs/retire-mission-identity-drift-window-01KP2JNZ → spec_kitty_cli-3.2.0rc30/kitty-specs/rename-ceremony-to-status-commit-01KSPN6C}/tasks/README.md +0 -0
  470. {spec_kitty_cli-3.2.0rc28/kitty-specs/retrospective-default-policy-01KS049J → spec_kitty_cli-3.2.0rc30/kitty-specs/research-mission-composition-rewrite-v2-01KQ4QVV}/tasks/README.md +0 -0
  471. {spec_kitty_cli-3.2.0rc28/kitty-specs/runtime-mission-execution-extraction-01KPDYGW → spec_kitty_cli-3.2.0rc30/kitty-specs/retire-mission-identity-drift-window-01KP2JNZ}/tasks/README.md +0 -0
  472. {spec_kitty_cli-3.2.0rc28/kitty-specs/shared-package-boundary-cutover-01KQ22DS → spec_kitty_cli-3.2.0rc30/kitty-specs/retrospective-default-policy-01KS049J}/tasks/README.md +0 -0
  473. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/review-merge-gate-hardening-3-2-x-01KRC57C/tasks/README.md +0 -0
  474. {spec_kitty_cli-3.2.0rc28/kitty-specs/software-dev-composition-rewrite-01KQ26CY → spec_kitty_cli-3.2.0rc30/kitty-specs/runtime-mission-execution-extraction-01KPDYGW}/tasks/README.md +0 -0
  475. {spec_kitty_cli-3.2.0rc28/kitty-specs/spec-kitty-3-2-docs-01KS4KSZ → spec_kitty_cli-3.2.0rc30/kitty-specs/shared-package-boundary-cutover-01KQ22DS}/tasks/README.md +0 -0
  476. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/slice-f-multi-context-extensibility-01KRX5C8/tasks/README.md +0 -0
  477. {spec_kitty_cli-3.2.0rc28/kitty-specs/specify-brief-intake-mode-01KPMXQB → spec_kitty_cli-3.2.0rc30/kitty-specs/software-dev-composition-rewrite-01KQ26CY}/tasks/README.md +0 -0
  478. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/spdd-reasons-doctrine-pack-01KQC4AX/tasks/README.md +0 -0
  479. {spec_kitty_cli-3.2.0rc28/kitty-specs/stability-and-hygiene-hardening-2026-04-01KQ4ARB → spec_kitty_cli-3.2.0rc30/kitty-specs/spec-kitty-3-2-docs-01KS4KSZ}/tasks/README.md +0 -0
  480. {spec_kitty_cli-3.2.0rc28/kitty-specs/stabilization-release-core-bug-fixes-01KPQJAN → spec_kitty_cli-3.2.0rc30/kitty-specs/specify-brief-intake-mode-01KPMXQB}/tasks/README.md +0 -0
  481. {spec_kitty_cli-3.2.0rc28/kitty-specs/stable-320-release-blocker-cleanup-01KQW4DF → spec_kitty_cli-3.2.0rc30/kitty-specs/stability-and-hygiene-hardening-2026-04-01KQ4ARB}/tasks/README.md +0 -0
  482. {spec_kitty_cli-3.2.0rc28/kitty-specs/sync-diagnose-canonical-allowlist-01KS4F8H → spec_kitty_cli-3.2.0rc30/kitty-specs/stabilization-release-core-bug-fixes-01KPQJAN}/tasks/README.md +0 -0
  483. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/stable-320-p0-cli-stabilization-01KQSNGY/tasks/README.md +0 -0
  484. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/stable-320-p1-release-confidence-01KQTPZC/tasks/README.md +0 -0
  485. {spec_kitty_cli-3.2.0rc28/kitty-specs/sync-rejection-classification-and-queue-retry-hygiene-01KRC3TV → spec_kitty_cli-3.2.0rc30/kitty-specs/stable-320-release-blocker-cleanup-01KQW4DF}/tasks/README.md +0 -0
  486. {spec_kitty_cli-3.2.0rc28/kitty-specs/test-stabilization-and-debt-pass-01KSF9HJ → spec_kitty_cli-3.2.0rc30/kitty-specs/sync-diagnose-canonical-allowlist-01KS4F8H}/tasks/README.md +0 -0
  487. {spec_kitty_cli-3.2.0rc28/kitty-specs/unblock-sync-identity-boundary-canary-01KRZJ07 → spec_kitty_cli-3.2.0rc30/kitty-specs/sync-rejection-classification-and-queue-retry-hygiene-01KRC3TV}/tasks/README.md +0 -0
  488. {spec_kitty_cli-3.2.0rc28/kitty-specs/unified-charter-bundle-chokepoint-01KP5Q2G → spec_kitty_cli-3.2.0rc30/kitty-specs/test-stabilization-and-debt-pass-01KSF9HJ}/tasks/README.md +0 -0
  489. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/unblock-sync-identity-boundary-canary-01KRZJ07/canary-evidence/README.md +0 -0
  490. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/workflow-parity-988-989-991-01KRKTT5/tasks/README.md +0 -0
  491. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/kitty-specs/wp-prompt-governance-payload-01KRR8HS/tasks/README.md +0 -0
  492. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/scripts/tool_configs/README.md +0 -0
  493. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/ERROR_CODES.md +0 -0
  494. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/README.md +0 -0
  495. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/__init__.py +0 -0
  496. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/_activation_render.py +0 -0
  497. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/_catalog_miss.py +0 -0
  498. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/_diagnostics.py +0 -0
  499. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/_doctrine_paths.py +0 -0
  500. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/_drg_helpers.py +0 -0
  501. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/_io.py +0 -0
  502. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/activations.py +0 -0
  503. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/bundle.py +0 -0
  504. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/catalog.py +0 -0
  505. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/compact.py +0 -0
  506. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/compiler.py +0 -0
  507. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/context.py +0 -0
  508. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/context_renderers/__init__.py +0 -0
  509. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/context_renderers/authority_paths.py +0 -0
  510. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/context_renderers/fetch_stanza.py +0 -0
  511. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/context_renderers/section_bodies.py +0 -0
  512. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/context_renderers/token_budget.py +0 -0
  513. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/corpus/__init__.py +0 -0
  514. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/corpus/generic.corpus.yaml +0 -0
  515. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/corpus/javascript.corpus.yaml +0 -0
  516. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/corpus/python.corpus.yaml +0 -0
  517. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/defaults.yaml +0 -0
  518. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/drg.py +0 -0
  519. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/evidence/__init__.py +0 -0
  520. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/evidence/code_reader.py +0 -0
  521. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/evidence/corpus_loader.py +0 -0
  522. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/evidence/orchestrator.py +0 -0
  523. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/generator.py +0 -0
  524. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/interview.py +0 -0
  525. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/language_scope.py +0 -0
  526. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/mission_steps.py +0 -0
  527. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/mission_type_profiles.py +0 -0
  528. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/neutrality/__init__.py +0 -0
  529. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/neutrality/banned_terms.yaml +0 -0
  530. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/neutrality/language_scoped_allowlist.yaml +0 -0
  531. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/neutrality/lint.py +0 -0
  532. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/parser.py +0 -0
  533. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/primitives.py +0 -0
  534. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/profiles.py +0 -0
  535. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/reference_resolver.py +0 -0
  536. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/resolution.py +0 -0
  537. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/resolver.py +0 -0
  538. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/schemas.py +0 -0
  539. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/scope.py +0 -0
  540. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/scope_router.py +0 -0
  541. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/synthesizer/__init__.py +0 -0
  542. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/synthesizer/adapter.py +0 -0
  543. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/synthesizer/artifact_naming.py +0 -0
  544. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/synthesizer/errors.py +0 -0
  545. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/synthesizer/evidence.py +0 -0
  546. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/synthesizer/fixture_adapter.py +0 -0
  547. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/synthesizer/generated_artifact_adapter.py +0 -0
  548. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/synthesizer/path_guard.py +0 -0
  549. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/synthesizer/provenance.py +0 -0
  550. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/synthesizer/staging.py +0 -0
  551. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/synthesizer/targets.py +0 -0
  552. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/synthesizer/validation_gate.py +0 -0
  553. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/charter/template_resolver.py +0 -0
  554. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/README.md +0 -0
  555. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/__init__.py +0 -0
  556. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/README.md +0 -0
  557. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/__init__.py +0 -0
  558. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/README.md +0 -0
  559. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/architect-alphonso.agent.yaml +0 -0
  560. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/curator-carla.agent.yaml +0 -0
  561. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/debugger-debbie.agent.yaml +0 -0
  562. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/designer-dagmar.agent.yaml +0 -0
  563. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/frontend-freddy.agent.yaml +0 -0
  564. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/generic-agent.agent.yaml +0 -0
  565. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/human-in-charge.agent.yaml +0 -0
  566. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/implementer-ivan.agent.yaml +0 -0
  567. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/java-jenny.agent.yaml +0 -0
  568. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/node-norris.agent.yaml +0 -0
  569. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/planner-priti.agent.yaml +0 -0
  570. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/python-pedro.agent.yaml +0 -0
  571. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/researcher-robbie.agent.yaml +0 -0
  572. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/retrospective-facilitator.agent.yaml +0 -0
  573. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/built-in/reviewer-renata.agent.yaml +0 -0
  574. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/capabilities.py +0 -0
  575. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/profile.py +0 -0
  576. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/repository.py +0 -0
  577. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/schema_models.py +0 -0
  578. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/agent_profiles/validation.py +0 -0
  579. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/artifact_kinds.py +0 -0
  580. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/base.py +0 -0
  581. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/README.md +0 -0
  582. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/__init__.py +0 -0
  583. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/001-architectural-integrity-standard.directive.yaml +0 -0
  584. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/003-decision-documentation-requirement.directive.yaml +0 -0
  585. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/010-specification-fidelity-requirement.directive.yaml +0 -0
  586. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/018-doctrine-versioning-requirement.directive.yaml +0 -0
  587. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/024-locality-of-change.directive.yaml +0 -0
  588. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/025-boy-scout-rule.directive.yaml +0 -0
  589. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/028-search-tool-discipline.directive.yaml +0 -0
  590. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/029-agent-commit-signing-policy.directive.yaml +0 -0
  591. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/030-test-and-typecheck-quality-gate.directive.yaml +0 -0
  592. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/031-context-aware-design.directive.yaml +0 -0
  593. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/032-conceptual-alignment.directive.yaml +0 -0
  594. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/033-targeted-staging-policy.directive.yaml +0 -0
  595. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/034-test-first-development.directive.yaml +0 -0
  596. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/035-bulk-edit-occurrence-classification.directive.yaml +0 -0
  597. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/036-black-box-integration-testing.directive.yaml +0 -0
  598. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/037-living-documentation-sync.directive.yaml +0 -0
  599. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/038-structured-prompt-boundary.directive.yaml +0 -0
  600. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/039-lynn-cole-engineering-culture.directive.yaml +0 -0
  601. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/built-in/040-recurring-bug-structural-intervention.directive.yaml +0 -0
  602. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/models.py +0 -0
  603. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/repository.py +0 -0
  604. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/test-first.directive.yaml +0 -0
  605. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/directives/validation.py +0 -0
  606. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/drg/__init__.py +0 -0
  607. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/drg/loader.py +0 -0
  608. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/drg/migration/__init__.py +0 -0
  609. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/drg/migration/calibrator.py +0 -0
  610. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/drg/migration/id_normalizer.py +0 -0
  611. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/drg/models.py +0 -0
  612. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/drg/org_pack_loader.py +0 -0
  613. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/drg/query.py +0 -0
  614. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/drg/validator.py +0 -0
  615. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/import_candidates/__init__.py +0 -0
  616. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/import_candidates/models.py +0 -0
  617. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/__init__.py +0 -0
  618. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/documentation-audit.step-contract.yaml +0 -0
  619. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/documentation-design.step-contract.yaml +0 -0
  620. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/documentation-discover.step-contract.yaml +0 -0
  621. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/documentation-generate.step-contract.yaml +0 -0
  622. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/documentation-publish.step-contract.yaml +0 -0
  623. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/documentation-validate.step-contract.yaml +0 -0
  624. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/implement.step-contract.yaml +0 -0
  625. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/plan.step-contract.yaml +0 -0
  626. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/research-gathering.step-contract.yaml +0 -0
  627. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/research-methodology.step-contract.yaml +0 -0
  628. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/research-output.step-contract.yaml +0 -0
  629. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/research-scoping.step-contract.yaml +0 -0
  630. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/research-synthesis.step-contract.yaml +0 -0
  631. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/review.step-contract.yaml +0 -0
  632. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/specify.step-contract.yaml +0 -0
  633. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/built-in/tasks.step-contract.yaml +0 -0
  634. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/models.py +0 -0
  635. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/mission_step_contracts/repository.py +0 -0
  636. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/README.md +0 -0
  637. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/__init__.py +0 -0
  638. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/README.md +0 -0
  639. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/actions/audit/guidelines.md +0 -0
  640. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/actions/audit/index.yaml +0 -0
  641. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/actions/design/guidelines.md +0 -0
  642. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/actions/design/index.yaml +0 -0
  643. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/actions/discover/guidelines.md +0 -0
  644. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/actions/discover/index.yaml +0 -0
  645. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/actions/generate/guidelines.md +0 -0
  646. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/actions/generate/index.yaml +0 -0
  647. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/actions/publish/guidelines.md +0 -0
  648. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/actions/publish/index.yaml +0 -0
  649. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/actions/validate/guidelines.md +0 -0
  650. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/actions/validate/index.yaml +0 -0
  651. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/governance-profile.yaml +0 -0
  652. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/mission.yaml +0 -0
  653. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/README.md +0 -0
  654. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/divio/README.md +0 -0
  655. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/divio/explanation-template.md +0 -0
  656. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/divio/howto-template.md +0 -0
  657. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/divio/reference-template.md +0 -0
  658. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/divio/tutorial-template.md +0 -0
  659. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/generators/README.md +0 -0
  660. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/generators/jsdoc.json.template +0 -0
  661. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/generators/sphinx-conf.py.template +0 -0
  662. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/plan-template.md +0 -0
  663. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/release-template.md +0 -0
  664. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/spec-template.md +0 -0
  665. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/task-prompt-template.md +0 -0
  666. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/documentation/templates/tasks-template.md +0 -0
  667. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/glossary_hook.py +0 -0
  668. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/models.py +0 -0
  669. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/plan/README.md +0 -0
  670. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/plan/governance-profile.yaml +0 -0
  671. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/plan/mission-runtime.yaml +0 -0
  672. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/plan/mission.yaml +0 -0
  673. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/plan/templates/.gitkeep +0 -0
  674. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/plan/templates/README.md +0 -0
  675. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/primitives.py +0 -0
  676. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/repository.py +0 -0
  677. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/README.md +0 -0
  678. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/actions/gathering/guidelines.md +0 -0
  679. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/actions/gathering/index.yaml +0 -0
  680. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/actions/methodology/guidelines.md +0 -0
  681. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/actions/methodology/index.yaml +0 -0
  682. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/actions/output/guidelines.md +0 -0
  683. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/actions/output/index.yaml +0 -0
  684. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/actions/scoping/guidelines.md +0 -0
  685. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/actions/scoping/index.yaml +0 -0
  686. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/actions/synthesis/guidelines.md +0 -0
  687. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/actions/synthesis/index.yaml +0 -0
  688. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/expected-artifacts.yaml +0 -0
  689. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/governance-profile.yaml +0 -0
  690. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/mission-runtime.yaml +0 -0
  691. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/mission.yaml +0 -0
  692. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/templates/README.md +0 -0
  693. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/templates/data-model-template.md +0 -0
  694. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/templates/plan-template.md +0 -0
  695. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/templates/research/README.md +0 -0
  696. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/templates/research/evidence-log.csv +0 -0
  697. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/templates/research/source-register.csv +0 -0
  698. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/templates/research-template.md +0 -0
  699. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/templates/spec-template.md +0 -0
  700. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/templates/task-prompt-template.md +0 -0
  701. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/research/templates/tasks-template.md +0 -0
  702. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/README.md +0 -0
  703. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/actions/implement/guidelines.md +0 -0
  704. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/actions/plan/guidelines.md +0 -0
  705. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/actions/plan/index.yaml +0 -0
  706. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/actions/review/guidelines.md +0 -0
  707. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/actions/review/index.yaml +0 -0
  708. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/actions/specify/guidelines.md +0 -0
  709. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/actions/specify/index.yaml +0 -0
  710. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/actions/tasks/guidelines.md +0 -0
  711. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/actions/tasks/index.yaml +0 -0
  712. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/expected-artifacts.yaml +0 -0
  713. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/governance-profile.yaml +0 -0
  714. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/mission-runtime.yaml +0 -0
  715. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/mission.yaml +0 -0
  716. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/templates/README.md +0 -0
  717. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/templates/plan-template.md +0 -0
  718. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/templates/spec-template.md +0 -0
  719. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/templates/task-prompt-template.md +0 -0
  720. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/missions/software-dev/templates/tasks-template.md +0 -0
  721. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/model_task_routing/__init__.py +0 -0
  722. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/model_task_routing/models.py +0 -0
  723. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/README.md +0 -0
  724. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/__init__.py +0 -0
  725. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/built-in/atomic-design.paradigm.yaml +0 -0
  726. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/built-in/behaviour-driven-development.paradigm.yaml +0 -0
  727. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/built-in/brownfield-onboarding.paradigm.yaml +0 -0
  728. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/built-in/c4-incremental-detail-modeling.paradigm.yaml +0 -0
  729. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/built-in/deep-module-design.paradigm.yaml +0 -0
  730. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/built-in/domain-driven-design.paradigm.yaml +0 -0
  731. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/built-in/specification-by-example.paradigm.yaml +0 -0
  732. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/built-in/structured-prompt-driven-development.paradigm.yaml +0 -0
  733. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/models.py +0 -0
  734. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/repository.py +0 -0
  735. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/test-first.paradigm.yaml +0 -0
  736. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/paradigms/validation.py +0 -0
  737. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/README.md +0 -0
  738. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/__init__.py +0 -0
  739. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/bdd-scenario-lifecycle.procedure.yaml +0 -0
  740. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/disciplined-defect-diagnosis.procedure.yaml +0 -0
  741. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/documentation-gap-prioritization.procedure.yaml +0 -0
  742. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/domain-aware-decision-interview.procedure.yaml +0 -0
  743. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/drill-down-documentation.procedure.yaml +0 -0
  744. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/event-storming-discovery.procedure.yaml +0 -0
  745. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/example-mapping-workshop.procedure.yaml +0 -0
  746. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/issue-triage-state-machine.procedure.yaml +0 -0
  747. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/legacy-codebase-triage.procedure.yaml +0 -0
  748. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/migrate-project-guidance-to-spec-kitty-charter.procedure.yaml +0 -0
  749. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/refactoring.procedure.yaml +0 -0
  750. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/situational-assessment.procedure.yaml +0 -0
  751. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/built-in/test-first-bug-fixing.procedure.yaml +0 -0
  752. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/models.py +0 -0
  753. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/repository.py +0 -0
  754. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/procedures/validation.py +0 -0
  755. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/pyproject.toml +0 -0
  756. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/resolver.py +0 -0
  757. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/schemas/README.md +0 -0
  758. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/schemas/agent-profile.schema.yaml +0 -0
  759. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/schemas/directive.schema.yaml +0 -0
  760. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/schemas/import-candidate.schema.yaml +0 -0
  761. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/schemas/mission.schema.yaml +0 -0
  762. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/schemas/model-to-task_type.schema.yaml +0 -0
  763. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/schemas/occurrence-map.schema.yaml +0 -0
  764. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/schemas/paradigm.schema.yaml +0 -0
  765. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/schemas/procedure.schema.yaml +0 -0
  766. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/schemas/styleguide.schema.yaml +0 -0
  767. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/schemas/tactic.schema.yaml +0 -0
  768. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/schemas/toolguide.schema.yaml +0 -0
  769. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/service.py +0 -0
  770. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/shared/__init__.py +0 -0
  771. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/shared/errors.py +0 -0
  772. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/shared/exceptions.py +0 -0
  773. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/shared/models.py +0 -0
  774. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/shared/schema_utils.py +0 -0
  775. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/shared/scoping.py +0 -0
  776. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/ad-hoc-profile-load/SKILL.md +0 -0
  777. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/debugger-debbie/SKILL.md +0 -0
  778. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/debugger-debbie/references/orthogonality-matrix.md +0 -0
  779. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/debugger-debbie/references/paradigm-prompts.md +0 -0
  780. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-bulk-edit-classification/SKILL.md +0 -0
  781. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-charter-doctrine/SKILL.md +0 -0
  782. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-charter-doctrine/references/charter-command-map.md +0 -0
  783. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-charter-doctrine/references/doctrine-artifact-structure.md +0 -0
  784. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-git-workflow/SKILL.md +0 -0
  785. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-git-workflow/references/git-operations-matrix.md +0 -0
  786. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-glossary-context/SKILL.md +0 -0
  787. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-glossary-context/references/glossary-field-guide.md +0 -0
  788. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-glossary-context/references/semantic-drift-examples.md +0 -0
  789. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-implement-review/references/rejection-loop-checklist.md +0 -0
  790. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-mission-review/references/mission-review-fr-trace-guide.md +0 -0
  791. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-mission-system/SKILL.md +0 -0
  792. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-mission-system/references/mission-comparison-matrix.md +0 -0
  793. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-orchestrator-api-operator/SKILL.md +0 -0
  794. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-orchestrator-api-operator/references/host-boundary-rules.md +0 -0
  795. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-runtime-next/references/blocked-state-recovery.md +0 -0
  796. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-runtime-next/references/runtime-result-taxonomy.md +0 -0
  797. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-runtime-review/SKILL.md +0 -0
  798. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-runtime-review/references/review-checklist.md +0 -0
  799. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-setup-doctor/SKILL.md +0 -0
  800. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-setup-doctor/references/agent-path-matrix.md +0 -0
  801. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-setup-doctor/references/common-failure-signatures.md +0 -0
  802. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-setup-doctor/scripts/.gitkeep +0 -0
  803. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/skills/spec-kitty-spdd-reasons/SKILL.md +0 -0
  804. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/spdd_reasons/__init__.py +0 -0
  805. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/spdd_reasons/activation.py +0 -0
  806. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/spdd_reasons/charter_context.py +0 -0
  807. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/spdd_reasons/template_renderer.py +0 -0
  808. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/README.md +0 -0
  809. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/__init__.py +0 -0
  810. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/built-in/aggregate-design-rules.styleguide.yaml +0 -0
  811. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/built-in/deployable-skill-authoring.styleguide.yaml +0 -0
  812. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/built-in/java-conventions.styleguide.yaml +0 -0
  813. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/built-in/mutation-aware-test-design.styleguide.yaml +0 -0
  814. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/built-in/python-conventions.styleguide.yaml +0 -0
  815. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/built-in/reasons-canvas-writing.styleguide.yaml +0 -0
  816. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/built-in/testing-principles.styleguide.yaml +0 -0
  817. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/built-in/writing/kitty-glossary-writing.styleguide.yaml +0 -0
  818. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/models.py +0 -0
  819. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/python-implementation.styleguide.yaml +0 -0
  820. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/repository.py +0 -0
  821. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/validation.py +0 -0
  822. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/writing/README.md +0 -0
  823. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/styleguides/writing/kitty-glossary-writing.styleguide.yaml +0 -0
  824. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/README.md +0 -0
  825. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/__init__.py +0 -0
  826. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/acceptance-test-first.tactic.yaml +0 -0
  827. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/adversarial-qa-handoff.tactic.yaml +0 -0
  828. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/ammerse-impact-analysis.tactic.yaml +0 -0
  829. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/analysis-extract-before-interpret.tactic.yaml +0 -0
  830. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/bounded-context-canvas-fill.tactic.yaml +0 -0
  831. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/bounded-context-identification.tactic.yaml +0 -0
  832. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/code-documentation-analysis.tactic.yaml +0 -0
  833. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/connascence-analysis.tactic.yaml +0 -0
  834. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/context-boundary-inference.tactic.yaml +0 -0
  835. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/context-mapping-classification.tactic.yaml +0 -0
  836. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/entity-value-object-classification.tactic.yaml +0 -0
  837. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/forensic-repository-audit.tactic.yaml +0 -0
  838. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/premortem-risk-identification.tactic.yaml +0 -0
  839. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/requirements-validation-workflow.tactic.yaml +0 -0
  840. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/reverse-speccing.tactic.yaml +0 -0
  841. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/safe-to-fail-experiment.tactic.yaml +0 -0
  842. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/strategic-domain-classification.tactic.yaml +0 -0
  843. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/analysis/terminology-extraction-mapping.tactic.yaml +0 -0
  844. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/aggregate-boundary-design.tactic.yaml +0 -0
  845. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/anti-corruption-layer.tactic.yaml +0 -0
  846. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/architecture-diagram-review-checklist.tactic.yaml +0 -0
  847. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/atomic-design-review-checklist.tactic.yaml +0 -0
  848. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/atomic-state-ownership.tactic.yaml +0 -0
  849. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/c4-zoom-in-architecture-documentation.tactic.yaml +0 -0
  850. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/compositional-stream-boundaries.tactic.yaml +0 -0
  851. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/cross-cutting-state-via-store.tactic.yaml +0 -0
  852. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/deepening-opportunity-assessment.tactic.yaml +0 -0
  853. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/dependency-hygiene.tactic.yaml +0 -0
  854. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/development-bdd.tactic.yaml +0 -0
  855. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/domain-event-capture.tactic.yaml +0 -0
  856. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/interface-variation-design.tactic.yaml +0 -0
  857. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/language-driven-design.tactic.yaml +0 -0
  858. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/problem-decomposition.tactic.yaml +0 -0
  859. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/architecture/reference-architectural-patterns.tactic.yaml +0 -0
  860. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/autonomous-operation-protocol.tactic.yaml +0 -0
  861. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/avoid-gold-plating.tactic.yaml +0 -0
  862. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/behavior-driven-development.tactic.yaml +0 -0
  863. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/boring-code-review.tactic.yaml +0 -0
  864. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/change-apply-smallest-viable-diff.tactic.yaml +0 -0
  865. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/code-patterns/chain-of-responsibility-rule-pipeline.tactic.yaml +0 -0
  866. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/code-review-incremental.tactic.yaml +0 -0
  867. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/communication/adr-drafting-workflow.tactic.yaml +0 -0
  868. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/communication/decision-marker-capture.tactic.yaml +0 -0
  869. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/communication/documentation-curation-audit.tactic.yaml +0 -0
  870. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/communication/glossary-curation-interview.tactic.yaml +0 -0
  871. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/communication/stakeholder-alignment.tactic.yaml +0 -0
  872. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/communication/traceable-decisions.tactic.yaml +0 -0
  873. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/communication/usage-examples-sync.tactic.yaml +0 -0
  874. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/easy-to-change.tactic.yaml +0 -0
  875. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/eisenhower-prioritisation.tactic.yaml +0 -0
  876. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/focused-function-complexity-check.tactic.yaml +0 -0
  877. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/generated-code-stewardship.tactic.yaml +0 -0
  878. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/input-validation-fail-fast.tactic.yaml +0 -0
  879. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/locality-of-change.tactic.yaml +0 -0
  880. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/occurrence-classification-workflow.tactic.yaml +0 -0
  881. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/reasons-canvas-fill.tactic.yaml +0 -0
  882. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/reasons-canvas-review.tactic.yaml +0 -0
  883. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-change-function-declaration.tactic.yaml +0 -0
  884. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-combine-functions-into-transform.tactic.yaml +0 -0
  885. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-conditional-to-strategy.tactic.yaml +0 -0
  886. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-consolidate-conditional-expression.tactic.yaml +0 -0
  887. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-encapsulate-record.tactic.yaml +0 -0
  888. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-encapsulate-variable.tactic.yaml +0 -0
  889. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-extract-class-by-responsibility-split.tactic.yaml +0 -0
  890. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-extract-first-order-concept.tactic.yaml +0 -0
  891. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-guard-clauses-before-polymorphism.tactic.yaml +0 -0
  892. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-inline-temp.tactic.yaml +0 -0
  893. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-introduce-null-object.tactic.yaml +0 -0
  894. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-move-field.tactic.yaml +0 -0
  895. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-move-method.tactic.yaml +0 -0
  896. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-replace-magic-number-with-symbolic-constant.tactic.yaml +0 -0
  897. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-replace-temp-with-query.tactic.yaml +0 -0
  898. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-retry-pattern.tactic.yaml +0 -0
  899. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-state-pattern-for-behavior.tactic.yaml +0 -0
  900. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/refactoring/refactoring-strangler-fig.tactic.yaml +0 -0
  901. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/review-intent-and-risk-first.tactic.yaml +0 -0
  902. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/secure-design-checklist.tactic.yaml +0 -0
  903. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/secure-regex-catastrophic-backtracking.tactic.yaml +0 -0
  904. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/stopping-conditions.tactic.yaml +0 -0
  905. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/acceptance-test-first.tactic.yaml +0 -0
  906. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/atdd-adversarial-acceptance.tactic.yaml +0 -0
  907. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/black-box-integration-testing.tactic.yaml +0 -0
  908. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/bug-fixing-checklist.tactic.yaml +0 -0
  909. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/formalized-constraint-testing.tactic.yaml +0 -0
  910. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/function-over-form-testing.tactic.yaml +0 -0
  911. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/mutation-testing-workflow.tactic.yaml +0 -0
  912. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/no-parallel-duplicate-test-runs.tactic.yaml +0 -0
  913. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/quality-gate-verification.tactic.yaml +0 -0
  914. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/tdd-red-green-refactor.tactic.yaml +0 -0
  915. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/test-boundaries-by-responsibility.tactic.yaml +0 -0
  916. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/test-minimisation.tactic.yaml +0 -0
  917. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/test-pyramid-progression.tactic.yaml +0 -0
  918. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/test-readability-clarity-check.tactic.yaml +0 -0
  919. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/test-to-system-reconstruction.tactic.yaml +0 -0
  920. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/testing-select-appropriate-level.tactic.yaml +0 -0
  921. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/testing/zombies-tdd.tactic.yaml +0 -0
  922. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/built-in/work-package-completion-validation.tactic.yaml +0 -0
  923. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/glossary-curation-interview.tactic.yaml +0 -0
  924. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/models.py +0 -0
  925. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/repository.py +0 -0
  926. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/tdd-red-green-refactor.tactic.yaml +0 -0
  927. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/validation.py +0 -0
  928. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/tactics/zombies-tdd.tactic.yaml +0 -0
  929. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/AGENTS.md +0 -0
  930. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/README.md +0 -0
  931. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/agent-file-template.md +0 -0
  932. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/README.md +0 -0
  933. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/adr-template.md +0 -0
  934. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/ammerse-analysis-template.md +0 -0
  935. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/bounded-context-canvas-template.md +0 -0
  936. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/c4-component-mermaid-template.md +0 -0
  937. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/c4-container-mermaid-template.md +0 -0
  938. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/c4-context-mermaid-template.md +0 -0
  939. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/glossary-template.md +0 -0
  940. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/lightweight-prestudy-template.md +0 -0
  941. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/quality-attribute-assessment-template.md +0 -0
  942. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/risk-identification-assessment-template.md +0 -0
  943. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/stakeholder-persona-template.md +0 -0
  944. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/swot-analysis-template.md +0 -0
  945. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/system-context-canvas-template.md +0 -0
  946. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/architecture/user-journey-template.md +0 -0
  947. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/checklist-template.md +0 -0
  948. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/claudeignore-template +0 -0
  949. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/README.md +0 -0
  950. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/mermaid/README.md +0 -0
  951. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/mermaid/examples/causal-map-mermaid-template.md +0 -0
  952. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/mermaid/examples/content-map-mermaid-template.md +0 -0
  953. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/mermaid/examples/frontend-architecture-mermaid-template.md +0 -0
  954. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/mermaid/examples/repo-content-graph-mermaid-template.md +0 -0
  955. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/mermaid/examples/request-lifecycle-sequence-mermaid-template.md +0 -0
  956. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/mermaid/examples/structure-meta-model-mermaid-template.md +0 -0
  957. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/mermaid/examples/system-map-mermaid-template.md +0 -0
  958. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/mermaid/themes/mermaid-theme-bluegray-conversation-template.md +0 -0
  959. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/mermaid/themes/mermaid-theme-common-template.md +0 -0
  960. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/plantuml/README.md +0 -0
  961. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/plantuml/examples/causal-map-plantuml-template.md +0 -0
  962. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/plantuml/examples/content-map-plantuml-template.md +0 -0
  963. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/plantuml/examples/event-storming-plantuml-template.md +0 -0
  964. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/plantuml/examples/frontend-architecture-plantuml-template.md +0 -0
  965. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/plantuml/examples/repo-content-graph-plantuml-template.md +0 -0
  966. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/plantuml/examples/request-lifecycle-plantuml-template.md +0 -0
  967. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/plantuml/examples/structure-meta-model-plantuml-template.md +0 -0
  968. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/plantuml/examples/system-map-plantuml-template.md +0 -0
  969. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/plantuml/themes/plantuml-theme-bluegray-conversation-template.md +0 -0
  970. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/plantuml/themes/plantuml-theme-common-template.md +0 -0
  971. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/plantuml/themes/plantuml-theme-stickies-template.md +0 -0
  972. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/themes/mermaid-theme-bluegray-conversation-template.md +0 -0
  973. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/diagrams/themes/mermaid-theme-common-template.md +0 -0
  974. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/fragments/reasons-canvas-template.md +0 -0
  975. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/guides/HOW-TO.template.md +0 -0
  976. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/occurrence-map-template.yaml +0 -0
  977. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/plan-template.md +0 -0
  978. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/profile-context.md +0 -0
  979. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/sets/README.md +0 -0
  980. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/spec-template.md +0 -0
  981. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/structure/README.md +0 -0
  982. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/structure/REPO_MAP.md +0 -0
  983. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/structure/SURFACES.md +0 -0
  984. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/task-prompt-template.md +0 -0
  985. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/tasks-template.md +0 -0
  986. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/triage/agent-brief-template.md +0 -0
  987. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/triage/out-of-scope-record-template.md +0 -0
  988. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/templates/vscode-settings.json +0 -0
  989. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/POWERSHELL_SYNTAX.md +0 -0
  990. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/README.md +0 -0
  991. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/__init__.py +0 -0
  992. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/CONTEXTIVE.md +0 -0
  993. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/EFFICIENT_LOCAL_TOOLING.md +0 -0
  994. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/GIT_AGENT_COMMIT_SIGNING.md +0 -0
  995. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/MAVEN_REVIEW_CHECKS.md +0 -0
  996. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/MERMAID_DIAGRAMMING.md +0 -0
  997. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/PLANTUML_DIAGRAMMING.md +0 -0
  998. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/PYTHON_MUTATION_TOOLS.md +0 -0
  999. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/PYTHON_REVIEW_CHECKS.md +0 -0
  1000. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/TYPESCRIPT_MUTATION_TOOLS.md +0 -0
  1001. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/contextive.toolguide.yaml +0 -0
  1002. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/efficient-local-tooling.toolguide.yaml +0 -0
  1003. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/git-agent-commit-signing.toolguide.yaml +0 -0
  1004. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/maven-review-checks.toolguide.yaml +0 -0
  1005. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/mermaid-diagramming.toolguide.yaml +0 -0
  1006. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/plantuml-diagramming.toolguide.yaml +0 -0
  1007. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/python-mutation-tools.toolguide.yaml +0 -0
  1008. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/python-review-checks.toolguide.yaml +0 -0
  1009. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/system_tools/RTK_SEARCH_TOOLING.md +0 -0
  1010. {spec_kitty_cli-3.2.0rc28/src/doctrine/directives/built-in → spec_kitty_cli-3.2.0rc30/src/doctrine/toolguides/built-in/system_tools}/__init__.py +0 -0
  1011. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/system_tools/rtk-search-tooling.toolguide.yaml +0 -0
  1012. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/built-in/typescript-mutation-tools.toolguide.yaml +0 -0
  1013. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/models.py +0 -0
  1014. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/powershell-syntax.toolguide.yaml +0 -0
  1015. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/repository.py +0 -0
  1016. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/toolguides/validation.py +0 -0
  1017. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/workflows/_fixtures/our-team-design-first.workflow.yaml +0 -0
  1018. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/workflows/software-dev-default.workflow.yaml +0 -0
  1019. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/doctrine/yaml_utils.py +0 -0
  1020. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/kernel/README.md +0 -0
  1021. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/kernel/__init__.py +0 -0
  1022. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/kernel/_safe_re.py +0 -0
  1023. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/kernel/atomic.py +0 -0
  1024. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/kernel/errors.py +0 -0
  1025. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/kernel/glossary_runner.py +0 -0
  1026. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/kernel/glossary_types.py +0 -0
  1027. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/kernel/paths.py +0 -0
  1028. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/kernel/schema_utils.py +0 -0
  1029. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/.contextive/dossier.yml +0 -0
  1030. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/.contextive/execution.yml +0 -0
  1031. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/.contextive/governance.yml +0 -0
  1032. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/.contextive/lexical.yml +0 -0
  1033. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/.contextive/orchestration.yml +0 -0
  1034. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/.contextive/system-events.yml +0 -0
  1035. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/.contextive/technology-foundations.yml +0 -0
  1036. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/__main__.py +0 -0
  1037. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/acceptance/__main__.py +0 -0
  1038. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/acceptance_matrix.py +0 -0
  1039. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/agent_utils/README.md +0 -0
  1040. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/agent_utils/directories.py +0 -0
  1041. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/agent_utils/status.py +0 -0
  1042. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/__init__.py +0 -0
  1043. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/classifiers/__init__.py +0 -0
  1044. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/classifiers/decisions_events.py +0 -0
  1045. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/classifiers/handoff_events.py +0 -0
  1046. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/classifiers/meta.py +0 -0
  1047. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/classifiers/mission_events.py +0 -0
  1048. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/classifiers/status_events.py +0 -0
  1049. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/classifiers/status_json.py +0 -0
  1050. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/detectors.py +0 -0
  1051. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/engine.py +0 -0
  1052. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/fixtures/clean_modern/meta.json +0 -0
  1053. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/fixtures/corrupt_jsonl/meta.json +0 -0
  1054. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/fixtures/corrupt_jsonl/status.events.jsonl +0 -0
  1055. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/fixtures/forbidden_event_type/meta.json +0 -0
  1056. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/fixtures/forbidden_event_type/status.events.jsonl +0 -0
  1057. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/fixtures/legacy_feature_slug/meta.json +0 -0
  1058. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/fixtures/legacy_feature_slug/status.events.jsonl +0 -0
  1059. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/identity_adapter.py +0 -0
  1060. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/models.py +0 -0
  1061. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/serializer.py +0 -0
  1062. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/audit/shape_registry.py +0 -0
  1063. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/__init__.py +0 -0
  1064. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/config.py +0 -0
  1065. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/device_flow/__init__.py +0 -0
  1066. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/device_flow/poller.py +0 -0
  1067. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/device_flow/state.py +0 -0
  1068. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/errors.py +0 -0
  1069. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/flows/__init__.py +0 -0
  1070. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/flows/authorization_code.py +0 -0
  1071. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/flows/device_code.py +0 -0
  1072. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/flows/refresh.py +0 -0
  1073. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/flows/revoke.py +0 -0
  1074. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/http/__init__.py +0 -0
  1075. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/http/me_fetch.py +0 -0
  1076. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/http/transport.py +0 -0
  1077. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/loopback/__init__.py +0 -0
  1078. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/loopback/browser_launcher.py +0 -0
  1079. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/loopback/callback_handler.py +0 -0
  1080. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/loopback/callback_server.py +0 -0
  1081. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/loopback/state.py +0 -0
  1082. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/loopback/state_manager.py +0 -0
  1083. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/manager.py +0 -0
  1084. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/refresh_transaction.py +0 -0
  1085. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/secure_storage/__init__.py +0 -0
  1086. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/secure_storage/abstract.py +0 -0
  1087. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/secure_storage/file_fallback.py +0 -0
  1088. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/secure_storage/windows_storage.py +0 -0
  1089. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/session.py +0 -0
  1090. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/session_hot_path.py +0 -0
  1091. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/token_manager.py +0 -0
  1092. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/transport.py +0 -0
  1093. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/websocket/__init__.py +0 -0
  1094. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/auth/websocket/token_provisioning.py +0 -0
  1095. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/bulk_edit/__init__.py +0 -0
  1096. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/bulk_edit/diff_check.py +0 -0
  1097. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/bulk_edit/inference.py +0 -0
  1098. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/bulk_edit/occurrence_map.py +0 -0
  1099. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/calibration/__init__.py +0 -0
  1100. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/calibration/inequality.py +0 -0
  1101. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/calibration/walker.py +0 -0
  1102. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_freshness/__init__.py +0 -0
  1103. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_lint/__init__.py +0 -0
  1104. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_preflight/__init__.py +0 -0
  1105. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/__init__.py +0 -0
  1106. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/facade/__init__.py +0 -0
  1107. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/freshness/__init__.py +0 -0
  1108. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/freshness/computer.py +0 -0
  1109. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/lint/__init__.py +0 -0
  1110. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/lint/_drg.py +0 -0
  1111. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/lint/checks/__init__.py +0 -0
  1112. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/lint/checks/org_layer.py +0 -0
  1113. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/lint/checks/orphan.py +0 -0
  1114. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/lint/checks/reference_integrity.py +0 -0
  1115. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/lint/checks/staleness.py +0 -0
  1116. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/lint/engine.py +0 -0
  1117. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/lint/findings.py +0 -0
  1118. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/preflight/__init__.py +0 -0
  1119. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/preflight/cli.py +0 -0
  1120. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/preflight/config.py +0 -0
  1121. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/preflight/dashboard_warning.py +0 -0
  1122. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/preflight/hook.py +0 -0
  1123. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/preflight/result.py +0 -0
  1124. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/charter_runtime/preflight/runner.py +0 -0
  1125. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/.contextive.yml +0 -0
  1126. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/__init__.py +0 -0
  1127. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/_auth_doctor.py +0 -0
  1128. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/_auth_login.py +0 -0
  1129. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/_auth_logout.py +0 -0
  1130. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/_auth_recovery.py +0 -0
  1131. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/_auth_status.py +0 -0
  1132. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/_auth_whoami.py +0 -0
  1133. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/_branch_strategy_gate.py +0 -0
  1134. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/_teamspace_mission_state_gate.py +0 -0
  1135. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/_test_env_check.py +0 -0
  1136. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/advise.py +0 -0
  1137. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/agent/__init__.py +0 -0
  1138. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/agent/config.py +0 -0
  1139. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/agent/context.py +0 -0
  1140. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/agent/release.py +0 -0
  1141. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/agent/status.py +0 -0
  1142. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/agent/tests.py +0 -0
  1143. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/agent_retrospect.py +0 -0
  1144. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/auth.py +0 -0
  1145. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/charter/_app.py +0 -0
  1146. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/charter/_common.py +0 -0
  1147. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/charter/_status_collectors.py +0 -0
  1148. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/charter/_widen.py +0 -0
  1149. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/charter/generate.py +0 -0
  1150. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/charter/status.py +0 -0
  1151. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/config_cmd.py +0 -0
  1152. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/context.py +0 -0
  1153. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/dashboard.py +0 -0
  1154. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/do_cmd.py +0 -0
  1155. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/doctrine.py +0 -0
  1156. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/init_help.py +0 -0
  1157. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/intake.py +0 -0
  1158. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/invocations_cmd.py +0 -0
  1159. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/lifecycle.py +0 -0
  1160. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/materialize.py +0 -0
  1161. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/merge_driver.py +0 -0
  1162. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/migrate/__init__.py +0 -0
  1163. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/migrate/charter_encoding.py +0 -0
  1164. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/migrate_cmd.py +0 -0
  1165. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/mission.py +0 -0
  1166. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/next_cmd.py +0 -0
  1167. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/ops.py +0 -0
  1168. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/profiles_cmd.py +0 -0
  1169. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/research.py +0 -0
  1170. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/review/_ble001_audit.py +0 -0
  1171. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/review/_dead_code.py +0 -0
  1172. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/review/_diagnostics.py +0 -0
  1173. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/review/_issue_matrix.py +0 -0
  1174. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/review/_lane_gate.py +0 -0
  1175. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/review/_mode.py +0 -0
  1176. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/sync.py +0 -0
  1177. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/tracker.py +0 -0
  1178. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/validate_encoding.py +0 -0
  1179. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/validate_tasks.py +0 -0
  1180. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/commands/verify.py +0 -0
  1181. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/logging_bootstrap.py +0 -0
  1182. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/selector_resolution.py +0 -0
  1183. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/step_tracker.py +0 -0
  1184. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/cli/ui.py +0 -0
  1185. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/compat/__init__.py +0 -0
  1186. {spec_kitty_cli-3.2.0rc28/src/doctrine/styleguides/built-in → spec_kitty_cli-3.2.0rc30/src/specify_cli/compat/_adapters}/__init__.py +0 -0
  1187. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/compat/_adapters/detector.py +0 -0
  1188. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/compat/_adapters/gate.py +0 -0
  1189. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/compat/_adapters/version_checker.py +0 -0
  1190. {spec_kitty_cli-3.2.0rc28/src/doctrine/tactics/built-in → spec_kitty_cli-3.2.0rc30/src/specify_cli/compat/_detect}/__init__.py +0 -0
  1191. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/compat/config.py +0 -0
  1192. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/compat/doctor.py +0 -0
  1193. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/compat/provider.py +0 -0
  1194. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/compat/registry.py +0 -0
  1195. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/compat/safety.py +0 -0
  1196. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/context/__init__.py +0 -0
  1197. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/context/errors.py +0 -0
  1198. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/context/middleware.py +0 -0
  1199. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/context/mission_resolver.py +0 -0
  1200. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/context/models.py +0 -0
  1201. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/context/resolver.py +0 -0
  1202. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/context/store.py +0 -0
  1203. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/__init__.py +0 -0
  1204. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/agent_config.py +0 -0
  1205. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/atomic.py +0 -0
  1206. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/config.py +0 -0
  1207. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/constants.py +0 -0
  1208. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/context_validation.py +0 -0
  1209. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/contract_gate.py +0 -0
  1210. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/dependency_parser.py +0 -0
  1211. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/file_lock.py +0 -0
  1212. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/git_ops.py +0 -0
  1213. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/git_preflight.py +0 -0
  1214. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/identity_aliases.py +0 -0
  1215. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/paths.py +0 -0
  1216. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/project_resolver.py +0 -0
  1217. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/stale_detection.py +0 -0
  1218. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/tool_checker.py +0 -0
  1219. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/upgrade_notifier.py +0 -0
  1220. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/upgrade_probe.py +0 -0
  1221. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/utils.py +0 -0
  1222. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/vcs/__init__.py +0 -0
  1223. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/vcs/detection.py +0 -0
  1224. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/vcs/exceptions.py +0 -0
  1225. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/vcs/git.py +0 -0
  1226. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/vcs/protocol.py +0 -0
  1227. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/vcs/types.py +0 -0
  1228. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/version_checker.py +0 -0
  1229. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/worktree.py +0 -0
  1230. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/worktree_topology.py +0 -0
  1231. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/core/wps_manifest.py +0 -0
  1232. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/__init__.py +0 -0
  1233. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/api_types.py +0 -0
  1234. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/charter_path.py +0 -0
  1235. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/diagnostics.py +0 -0
  1236. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/handlers/__init__.py +0 -0
  1237. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/handlers/api.py +0 -0
  1238. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/handlers/base.py +0 -0
  1239. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/handlers/features.py +0 -0
  1240. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/handlers/lint.py +0 -0
  1241. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/handlers/router.py +0 -0
  1242. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/handlers/static.py +0 -0
  1243. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/lifecycle.py +0 -0
  1244. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/scanner.py +0 -0
  1245. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/server.py +0 -0
  1246. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/static/dashboard/dashboard.css +0 -0
  1247. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/static/dashboard/dashboard.js +0 -0
  1248. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/static/js/dossier-panel.js +0 -0
  1249. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/static/spec-kitty.png +0 -0
  1250. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/templates/__init__.py +0 -0
  1251. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dashboard/templates/index.html +0 -0
  1252. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/decisions/__init__.py +0 -0
  1253. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/decisions/emit.py +0 -0
  1254. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/decisions/models.py +0 -0
  1255. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/decisions/service.py +0 -0
  1256. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/decisions/store.py +0 -0
  1257. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/decisions/verify.py +0 -0
  1258. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/diagnostics/__init__.py +0 -0
  1259. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/diagnostics/dedup.py +0 -0
  1260. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doc_analysis/__init__.py +0 -0
  1261. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doc_analysis/doc_generators.py +0 -0
  1262. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doc_analysis/doc_state.py +0 -0
  1263. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doc_analysis/gap_analysis.py +0 -0
  1264. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doc_generators.py +0 -0
  1265. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doc_state.py +0 -0
  1266. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine/__init__.py +0 -0
  1267. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine/config.py +0 -0
  1268. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine/org_charter.py +0 -0
  1269. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine/org_charter_loader.py +0 -0
  1270. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine/pack_assembler.py +0 -0
  1271. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine/pack_validator.py +0 -0
  1272. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine/snapshot.py +0 -0
  1273. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine/sources/__init__.py +0 -0
  1274. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine/sources/api_source.py +0 -0
  1275. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine/sources/git_source.py +0 -0
  1276. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine/sources/https_source.py +0 -0
  1277. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine/sources/protocol.py +0 -0
  1278. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine_synthesizer/__init__.py +0 -0
  1279. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine_synthesizer/apply.py +0 -0
  1280. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/doctrine_synthesizer/conflict.py +0 -0
  1281. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dossier/.contextive.yml +0 -0
  1282. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dossier/__init__.py +0 -0
  1283. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dossier/api.py +0 -0
  1284. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dossier/emitter_adapter.py +0 -0
  1285. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dossier/events.py +0 -0
  1286. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dossier/indexer.py +0 -0
  1287. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dossier/manifest.py +0 -0
  1288. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/dossier/models.py +0 -0
  1289. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/encoding.py +0 -0
  1290. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/events/__init__.py +0 -0
  1291. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/events/adapter.py +0 -0
  1292. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/frontmatter.py +0 -0
  1293. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/gap_analysis.py +0 -0
  1294. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/git/__init__.py +0 -0
  1295. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/git/sparse_checkout.py +0 -0
  1296. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/git/sparse_checkout_remediation.py +0 -0
  1297. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/gitignore_manager.py +0 -0
  1298. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/.contextive.yml +0 -0
  1299. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/__init__.py +0 -0
  1300. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/attachment.py +0 -0
  1301. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/chokepoint.py +0 -0
  1302. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/clarification.py +0 -0
  1303. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/conflict.py +0 -0
  1304. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/entity_pages.py +0 -0
  1305. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/events.py +0 -0
  1306. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/exceptions.py +0 -0
  1307. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/extraction.py +0 -0
  1308. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/middleware.py +0 -0
  1309. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/models.py +0 -0
  1310. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/observation.py +0 -0
  1311. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/pipeline.py +0 -0
  1312. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/py.typed +0 -0
  1313. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/resolution.py +0 -0
  1314. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/seed_validation.py +0 -0
  1315. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/semantic_events.py +0 -0
  1316. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/store.py +0 -0
  1317. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/glossary/strictness.py +0 -0
  1318. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/identity/__init__.py +0 -0
  1319. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/identity/aliases.py +0 -0
  1320. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/intake/__init__.py +0 -0
  1321. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/intake/brief_writer.py +0 -0
  1322. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/intake/errors.py +0 -0
  1323. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/intake/provenance.py +0 -0
  1324. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/intake/scanner.py +0 -0
  1325. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/intake_sources.py +0 -0
  1326. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/invocation/__init__.py +0 -0
  1327. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/invocation/errors.py +0 -0
  1328. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/invocation/lifecycle.py +0 -0
  1329. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/invocation/modes.py +0 -0
  1330. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/invocation/projection_policy.py +0 -0
  1331. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/invocation/propagator.py +0 -0
  1332. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/invocation/record.py +0 -0
  1333. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/invocation/registry.py +0 -0
  1334. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/invocation/router.py +0 -0
  1335. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/invocation/writer.py +0 -0
  1336. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/lanes/__init__.py +0 -0
  1337. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/lanes/auto_rebase.py +0 -0
  1338. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/lanes/branch_naming.py +0 -0
  1339. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/lanes/implement_support.py +0 -0
  1340. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/lanes/lane_env.py +0 -0
  1341. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/lanes/models.py +0 -0
  1342. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/lanes/persistence.py +0 -0
  1343. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/lanes/recovery.py +0 -0
  1344. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/lanes/stale_check.py +0 -0
  1345. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/legacy_detector.py +0 -0
  1346. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/manifest.py +0 -0
  1347. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/merge/.contextive.yml +0 -0
  1348. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/merge/__init__.py +0 -0
  1349. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/merge/config.py +0 -0
  1350. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/merge/conflict_classifier.py +0 -0
  1351. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/merge/conflict_resolver.py +0 -0
  1352. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/merge/ordering.py +0 -0
  1353. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/merge/preflight.py +0 -0
  1354. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/merge/state.py +0 -0
  1355. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/merge/workspace.py +0 -0
  1356. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/migration/__init__.py +0 -0
  1357. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/migration/backfill_identity.py +0 -0
  1358. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/migration/backfill_ownership.py +0 -0
  1359. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/migration/canonicalization.py +0 -0
  1360. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/migration/gate.py +0 -0
  1361. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/migration/normalize_mission_lifecycle.py +0 -0
  1362. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/migration/rewrite_shims.py +0 -0
  1363. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/migration/runner.py +0 -0
  1364. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/migration/strip_frontmatter.py +0 -0
  1365. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission.py +0 -0
  1366. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_loader/__init__.py +0 -0
  1367. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_loader/contract_synthesis.py +0 -0
  1368. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_loader/errors.py +0 -0
  1369. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_loader/registry.py +0 -0
  1370. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_loader/retrospective.py +0 -0
  1371. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_loader/validator.py +0 -0
  1372. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_metadata.py +0 -0
  1373. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_step_contracts/__init__.py +0 -0
  1374. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_v1/__init__.py +0 -0
  1375. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_v1/compat.py +0 -0
  1376. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_v1/events.py +0 -0
  1377. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_v1/guards.py +0 -0
  1378. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_v1/runner.py +0 -0
  1379. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/mission_v1/schema.py +0 -0
  1380. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/.contextive.yml +0 -0
  1381. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/__init__.py +0 -0
  1382. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/_legacy_aliases.py +0 -0
  1383. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/_substantive.py +0 -0
  1384. {spec_kitty_cli-3.2.0rc28/src/doctrine → spec_kitty_cli-3.2.0rc30/src/specify_cli}/missions/documentation/expected-artifacts.yaml +0 -0
  1385. {spec_kitty_cli-3.2.0rc28/src/doctrine → spec_kitty_cli-3.2.0rc30/src/specify_cli}/missions/documentation/mission-runtime.yaml +0 -0
  1386. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/documentation/mission.yaml +0 -0
  1387. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/documentation/templates/divio/explanation-template.md +0 -0
  1388. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/documentation/templates/divio/howto-template.md +0 -0
  1389. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/documentation/templates/divio/reference-template.md +0 -0
  1390. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/documentation/templates/divio/tutorial-template.md +0 -0
  1391. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/documentation/templates/generators/jsdoc.json.template +0 -0
  1392. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/documentation/templates/generators/sphinx-conf.py.template +0 -0
  1393. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/documentation/templates/plan-template.md +0 -0
  1394. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/documentation/templates/release-template.md +0 -0
  1395. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/documentation/templates/spec-template.md +0 -0
  1396. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/documentation/templates/task-prompt-template.md +0 -0
  1397. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/documentation/templates/tasks-template.md +0 -0
  1398. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/plan/__init__.py +0 -0
  1399. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/plan/mission-runtime.yaml +0 -0
  1400. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/plan/mission.yaml +0 -0
  1401. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/plan/plan_interview.py +0 -0
  1402. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/plan/specify_interview.py +0 -0
  1403. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/plan/templates/.gitkeep +0 -0
  1404. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/research/expected-artifacts.yaml +0 -0
  1405. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/research/mission-runtime.yaml +0 -0
  1406. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/research/mission.yaml +0 -0
  1407. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/research/templates/data-model-template.md +0 -0
  1408. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/research/templates/plan-template.md +0 -0
  1409. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/research/templates/research/evidence-log.csv +0 -0
  1410. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/research/templates/research/source-register.csv +0 -0
  1411. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/research/templates/research-template.md +0 -0
  1412. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/research/templates/spec-template.md +0 -0
  1413. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/research/templates/task-prompt-template.md +0 -0
  1414. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/research/templates/tasks-template.md +0 -0
  1415. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/command-templates/analyze.md +0 -0
  1416. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/command-templates/charter.md +0 -0
  1417. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/command-templates/plan.md +0 -0
  1418. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/command-templates/research.md +0 -0
  1419. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/command-templates/review.md +0 -0
  1420. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/command-templates/specify.md +0 -0
  1421. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/command-templates/tasks-outline.md +0 -0
  1422. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/command-templates/tasks-packages.md +0 -0
  1423. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/command-templates/tasks.md +0 -0
  1424. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/expected-artifacts.yaml +0 -0
  1425. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/mission-runtime.yaml +0 -0
  1426. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/mission.yaml +0 -0
  1427. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/templates/plan-template.md +0 -0
  1428. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/templates/spec-template.md +0 -0
  1429. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/templates/task-prompt-template.md +0 -0
  1430. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/missions/software-dev/templates/tasks-template.md +0 -0
  1431. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/__init__.py +0 -0
  1432. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/__init__.py +0 -0
  1433. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/contracts.py +0 -0
  1434. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/discovery.py +0 -0
  1435. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/emitter.py +0 -0
  1436. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/events.py +0 -0
  1437. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/lifecycle.py +0 -0
  1438. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/models.py +0 -0
  1439. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/raci.py +0 -0
  1440. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/retrospective_hook.py +0 -0
  1441. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/retrospective_terminus.py +0 -0
  1442. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/schema.py +0 -0
  1443. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/significance.py +0 -0
  1444. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/workflow_registry.py +0 -0
  1445. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_internal_runtime/workflow_schema.py +0 -0
  1446. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/_runtime_pkg_notice.py +0 -0
  1447. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/next/prompt_builder.py +0 -0
  1448. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/orchestrator_api/__init__.py +0 -0
  1449. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/orchestrator_api/envelope.py +0 -0
  1450. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/ownership/__init__.py +0 -0
  1451. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/ownership/audit_targets.py +0 -0
  1452. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/ownership/inference.py +0 -0
  1453. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/ownership/validation.py +0 -0
  1454. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/ownership/workspace_strategy.py +0 -0
  1455. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/paths/__init__.py +0 -0
  1456. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/paths/windows_migrate.py +0 -0
  1457. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/plan_validation.py +0 -0
  1458. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/policy/__init__.py +0 -0
  1459. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/policy/audit.py +0 -0
  1460. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/policy/commit_guard.py +0 -0
  1461. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/policy/commit_guard_hook.py +0 -0
  1462. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/policy/config.py +0 -0
  1463. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/policy/hook_installer.py +0 -0
  1464. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/policy/merge_gates.py +0 -0
  1465. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/policy/risk_scorer.py +0 -0
  1466. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/post_merge/__init__.py +0 -0
  1467. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/post_merge/review_artifact_consistency.py +0 -0
  1468. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/post_merge/stale_assertions.py +0 -0
  1469. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/readiness/__init__.py +0 -0
  1470. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/readiness/auth.py +0 -0
  1471. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/readiness/coordinator.py +0 -0
  1472. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/readiness/render.py +0 -0
  1473. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/release/__init__.py +0 -0
  1474. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/release/changelog.py +0 -0
  1475. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/release/payload.py +0 -0
  1476. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/release/version.py +0 -0
  1477. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/requirement_mapping.py +0 -0
  1478. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/cli.py +0 -0
  1479. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/config.py +0 -0
  1480. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/deprecation.py +0 -0
  1481. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/events.py +0 -0
  1482. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/gate.py +0 -0
  1483. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/generator.py +0 -0
  1484. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/lifecycle.py +0 -0
  1485. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/lifecycle_events.py +0 -0
  1486. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/mode.py +0 -0
  1487. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/policy.py +0 -0
  1488. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/reader.py +0 -0
  1489. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/schema.py +0 -0
  1490. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/summary.py +0 -0
  1491. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/retrospective/writer.py +0 -0
  1492. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/review/__init__.py +0 -0
  1493. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/review/antipattern_checklist.py +0 -0
  1494. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/review/arbiter.py +0 -0
  1495. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/review/artifacts.py +0 -0
  1496. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/review/cycle.py +0 -0
  1497. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/review/dirty_classifier.py +0 -0
  1498. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/review/fix_prompt.py +0 -0
  1499. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/review/lock.py +0 -0
  1500. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/runtime/__init__.py +0 -0
  1501. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/runtime/agent_commands.py +0 -0
  1502. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/runtime/agent_skills.py +0 -0
  1503. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/runtime/bootstrap.py +0 -0
  1504. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/runtime/doctor.py +0 -0
  1505. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/runtime/home.py +0 -0
  1506. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/runtime/merge.py +0 -0
  1507. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/runtime/migrate.py +0 -0
  1508. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/runtime/resolver.py +0 -0
  1509. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/runtime/show_origin.py +0 -0
  1510. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/saas/__init__.py +0 -0
  1511. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/saas/readiness.py +0 -0
  1512. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/saas/rollout.py +0 -0
  1513. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/saas_client/__init__.py +0 -0
  1514. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/saas_client/auth.py +0 -0
  1515. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/saas_client/client.py +0 -0
  1516. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/saas_client/endpoints.py +0 -0
  1517. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/saas_client/errors.py +0 -0
  1518. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/schemas/wps.schema.json +0 -0
  1519. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/scripts/tasks/task_helpers.py +0 -0
  1520. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/scripts/tasks/tasks_cli.py +0 -0
  1521. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/shims/__init__.py +0 -0
  1522. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/shims/generator.py +0 -0
  1523. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/shims/registry.py +0 -0
  1524. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/skills/__init__.py +0 -0
  1525. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/skills/_user_input_block.py +0 -0
  1526. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/skills/data/__init__.py +0 -0
  1527. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/skills/data/skills-manifest.schema.json +0 -0
  1528. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/skills/installer.py +0 -0
  1529. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/skills/manifest_errors.py +0 -0
  1530. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/skills/paths.py +0 -0
  1531. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/skills/registry.py +0 -0
  1532. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/skills/vibe_config.py +0 -0
  1533. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/state/__init__.py +0 -0
  1534. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/state/contract.py +0 -0
  1535. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/state/doctor.py +0 -0
  1536. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/state_contract.py +0 -0
  1537. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/.contextive.yml +0 -0
  1538. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/__init__.py +0 -0
  1539. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/adapters.py +0 -0
  1540. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/bootstrap.py +0 -0
  1541. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/doctor.py +0 -0
  1542. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/event_log_merge.py +0 -0
  1543. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/history_parser.py +0 -0
  1544. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/identity_audit.py +0 -0
  1545. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/lane_reader.py +0 -0
  1546. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/lifecycle.py +0 -0
  1547. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/lifecycle_events.py +0 -0
  1548. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/locking.py +0 -0
  1549. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/models.py +0 -0
  1550. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/preflight.py +0 -0
  1551. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/progress.py +0 -0
  1552. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/reducer.py +0 -0
  1553. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/store.py +0 -0
  1554. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/transition_context.py +0 -0
  1555. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/transitions.py +0 -0
  1556. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/validate.py +0 -0
  1557. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/views.py +0 -0
  1558. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/work_package_lifecycle.py +0 -0
  1559. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/wp_metadata.py +0 -0
  1560. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/status/wp_state.py +0 -0
  1561. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/_team.py +0 -0
  1562. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/background.py +0 -0
  1563. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/batch.py +0 -0
  1564. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/body_queue.py +0 -0
  1565. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/body_transport.py +0 -0
  1566. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/client.py +0 -0
  1567. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/config.py +0 -0
  1568. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/diagnose.py +0 -0
  1569. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/diagnostics.py +0 -0
  1570. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/dossier_pipeline.py +0 -0
  1571. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/emitter.py +0 -0
  1572. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/events.py +0 -0
  1573. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/feature_flags.py +0 -0
  1574. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/git_metadata.py +0 -0
  1575. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/namespace.py +0 -0
  1576. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/orphan_sweep.py +0 -0
  1577. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/preflight.py +0 -0
  1578. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/project_identity.py +0 -0
  1579. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/replay.py +0 -0
  1580. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/routing.py +0 -0
  1581. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/runtime.py +0 -0
  1582. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/runtime_event_emitter.py +0 -0
  1583. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/sharing_client.py +0 -0
  1584. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/sync/tracker_client_glue.py +0 -0
  1585. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/task_metadata_validation.py +0 -0
  1586. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/task_profile.py +0 -0
  1587. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/task_utils/__init__.py +0 -0
  1588. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/task_utils/support.py +0 -0
  1589. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tasks/__init__.py +0 -0
  1590. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tasks/issue_matrix.py +0 -0
  1591. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tasks_support.py +0 -0
  1592. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/template/__init__.py +0 -0
  1593. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/template/manager.py +0 -0
  1594. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/template/renderer.py +0 -0
  1595. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/templates/AGENTS.md +0 -0
  1596. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/templates/POWERSHELL_SYNTAX.md +0 -0
  1597. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/templates/agent-file-template.md +0 -0
  1598. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/templates/checklist-template.md +0 -0
  1599. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/templates/claudeignore-template +0 -0
  1600. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/templates/plan-template.md +0 -0
  1601. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/templates/spec-template.md +0 -0
  1602. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/templates/task-prompt-template.md +0 -0
  1603. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/templates/tasks-template.md +0 -0
  1604. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/templates/vscode-settings.json +0 -0
  1605. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/text_sanitization.py +0 -0
  1606. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/__init__.py +0 -0
  1607. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/config.py +0 -0
  1608. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/credentials.py +0 -0
  1609. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/discovery.py +0 -0
  1610. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/factory.py +0 -0
  1611. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/feature_flags.py +0 -0
  1612. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/local_service.py +0 -0
  1613. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/origin.py +0 -0
  1614. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/origin_models.py +0 -0
  1615. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/saas_client.py +0 -0
  1616. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/saas_service.py +0 -0
  1617. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/service.py +0 -0
  1618. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/tracker/ticket_context.py +0 -0
  1619. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/__init__.py +0 -0
  1620. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/compat.py +0 -0
  1621. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/detector.py +0 -0
  1622. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/feature_meta.py +0 -0
  1623. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/metadata.py +0 -0
  1624. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/README.md +0 -0
  1625. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/__init__.py +0 -0
  1626. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/_legacy_codex_hashes.py +0 -0
  1627. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/base.py +0 -0
  1628. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_10_0_python_only.py +0 -0
  1629. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_10_12_charter_cleanup.py +0 -0
  1630. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_10_14_update_implement_slash_command.py +0 -0
  1631. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_10_1_populate_slash_commands.py +0 -0
  1632. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_10_2_update_slash_commands.py +0 -0
  1633. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_10_6_workflow_simplification.py +0 -0
  1634. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_10_8_fix_memory_structure.py +0 -0
  1635. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_10_9_repair_templates.py +0 -0
  1636. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_11_1_improved_workflow_templates.py +0 -0
  1637. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_11_1_update_implement_slash_command.py +0 -0
  1638. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_11_2_improved_workflow_templates.py +0 -0
  1639. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_11_3_workflow_agent_flag.py +0 -0
  1640. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_12_0_documentation_mission.py +0 -0
  1641. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_12_1_remove_kitty_specs_from_gitignore.py +0 -0
  1642. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_13_0_research_csv_schema_check.py +0 -0
  1643. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_13_0_update_charter_templates.py +0 -0
  1644. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_13_0_update_research_implement_templates.py +0 -0
  1645. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_13_1_exclude_worktrees.py +0 -0
  1646. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_13_5_add_commit_workflow_to_templates.py +0 -0
  1647. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_13_8_target_branch.py +0 -0
  1648. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_14_0_centralized_feature_detection.py +0 -0
  1649. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_16_2_remove_wp_status_gitignore_rule.py +0 -0
  1650. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_2_0_specify_to_kittify.py +0 -0
  1651. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_4_8_gitignore_agents.py +0 -0
  1652. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_6_5_commands_rename.py +0 -0
  1653. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_6_7_ensure_missions.py +0 -0
  1654. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_7_2_worktree_commands_dedup.py +0 -0
  1655. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_7_3_update_scripts.py +0 -0
  1656. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_8_0_remove_active_mission.py +0 -0
  1657. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_8_0_worktree_agents_symlink.py +0 -0
  1658. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_9_0_frontmatter_only_lanes.py +0 -0
  1659. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_9_1_complete_lane_migration.py +0 -0
  1660. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_0_9_2_research_mission_templates.py +0 -0
  1661. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_0_0_charter_directory.py +0 -0
  1662. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_0_0_historical_status_migration.py +0 -0
  1663. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_0_0_retire_git_hooks.py +0 -0
  1664. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_0_11_install_skills.py +0 -0
  1665. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_0_11_remove_clarify_command.py +0 -0
  1666. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_0_1_fix_generated_command_templates.py +0 -0
  1667. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_0_1_tool_config_key_rename.py +0 -0
  1668. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_0_2_charter_context_bootstrap.py +0 -0
  1669. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_0_6_consistency_sweep.py +0 -0
  1670. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_0_7_fix_stale_overrides.py +0 -0
  1671. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_0_9_state_gitignore.py +0 -0
  1672. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_1_1_repair_skill_pack.py +0 -0
  1673. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_1_2_fix_charter_doctrine_skill.py +0 -0
  1674. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_1_2_fix_glossary_context_skill.py +0 -0
  1675. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_1_2_fix_orchestrator_api_skill.py +0 -0
  1676. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_1_2_fix_runtime_next_skill.py +0 -0
  1677. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_1_2_install_git_workflow_skill.py +0 -0
  1678. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_1_2_install_mission_system_skill.py +0 -0
  1679. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_1_2_remove_release_skill.py +0 -0
  1680. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_1_3_fix_planning_repository_terminology.py +0 -0
  1681. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_1_3_restore_prompt_commands.py +0 -0
  1682. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_1_4_enforce_command_file_state.py +0 -0
  1683. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_2_2_0_profile_context_deployment.py +0 -0
  1684. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_0_0_canonical_context.py +0 -0
  1685. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_0_2_restore_prompt_commands.py +0 -0
  1686. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_0_3_globalize_skill_pack.py +0 -0
  1687. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_1_1_charter_rename.py +0 -0
  1688. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_1_1_direct_canonical_commands.py +0 -0
  1689. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_1_1_event_log_merge_driver.py +0 -0
  1690. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_1_1_normalize_status_json.py +0 -0
  1691. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_1_2_globalize_commands.py +0 -0
  1692. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_2_0_update_planning_templates.py +0 -0
  1693. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_2_0a4_normalize_mission_lifecycle.py +0 -0
  1694. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_2_0a4_safe_globalize_commands.py +0 -0
  1695. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_2_1_strip_selection_config.py +0 -0
  1696. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_2_3_unified_bundle.py +0 -0
  1697. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_2_4_kittify_profile_handoff.py +0 -0
  1698. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_2_4_repository_root_checkout_terminology.py +0 -0
  1699. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/migrations/m_3_2_5_fix_prompt_file_workaround.py +0 -0
  1700. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/registry.py +0 -0
  1701. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/runner.py +0 -0
  1702. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/upgrade/skill_update.py +0 -0
  1703. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/validators/__init__.py +0 -0
  1704. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/validators/csv_schema.py +0 -0
  1705. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/validators/paths.py +0 -0
  1706. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/validators/research.py +0 -0
  1707. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/verify_enhanced.py +0 -0
  1708. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/version_utils.py +0 -0
  1709. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/widen/__init__.py +0 -0
  1710. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/widen/audience.py +0 -0
  1711. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/widen/flow.py +0 -0
  1712. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/widen/interview_helpers.py +0 -0
  1713. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/widen/models.py +0 -0
  1714. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/widen/prereq.py +0 -0
  1715. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/widen/review.py +0 -0
  1716. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/widen/state.py +0 -0
  1717. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/workspace/__init__.py +0 -0
  1718. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/workspace/assert_initialized.py +0 -0
  1719. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/workspace/context.py +0 -0
  1720. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/workspace/root_resolver.py +0 -0
  1721. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/src/specify_cli/workspace_context.py +0 -0
  1722. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/tests/README.md +0 -0
  1723. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/tests/architectural/README.md +0 -0
  1724. {spec_kitty_cli-3.2.0rc28 → spec_kitty_cli-3.2.0rc30}/tests/reliability/fixtures/README.md +0 -0
@@ -0,0 +1,4371 @@
1
+ # Changelog
2
+
3
+ <!-- markdownlint-disable MD024 -->
4
+
5
+ All notable changes to the Spec Kitty CLI and templates are documented here.
6
+
7
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
+
10
+ ## [Unreleased]
11
+
12
+ No notable changes yet.
13
+
14
+ ## [3.2.0rc30] - 2026-05-29
15
+
16
+ ### Added
17
+
18
+ - **ADR 2026-05-28-1**: Documents CI dependency resolution and test surface consistency —
19
+ five structural gaps identified from CI run 26558837157, chosen remediations, and
20
+ confirmation criteria.
21
+ (`architecture/adrs/2026-05-28-1-ci-dependency-resolution-and-test-surface-consistency.md`)
22
+ - Typer-surface smoke test (`tests/agent/test_json_group_typer_surface.py`) that exercises
23
+ the `_JSONErrorGroup` / JSON-envelope contract end-to-end using `typer.Exit` (not
24
+ `click.exceptions.Exit`). Acts as a canary for the typer 0.26+ vendored-click regression.
25
+ - `agent` pytest marker for orchestrator-api / agent-facing contract surface tests.
26
+
27
+ ### Changed
28
+
29
+ - **CI: all test and lint jobs now use `uv sync --frozen --all-extras`** instead of
30
+ `pip install -e .[test]`. The lockfile is the single environment contract for both
31
+ local and CI, eliminating resolver drift between `uv.lock` and `pyproject.toml` bounds.
32
+ Three infrastructure jobs (`uv-lock-check`, `build-wheel`, `clean-install-verification`)
33
+ are unaffected.
34
+ - Python version pinned to `3.11.15` in `.python-version` for reproducibility.
35
+
36
+ ### Fixed
37
+
38
+ - `_JSONErrorGroup` exception handlers now use `_CLICK_USAGE_ERRORS` / `_CLICK_ABORTS`
39
+ tuples that include both `click.exceptions.*` and `typer._click.exceptions.*` variants,
40
+ fixing silent miss of all exceptions raised by typer 0.26+ which vendors click
41
+ internally as `typer._click`.
42
+ - Charter-preflight test fixtures (`tests/specify_cli/charter_preflight/_fixtures.py`)
43
+ now use `charter.hasher.hash_content()` instead of raw `hashlib.sha256(bytes)`,
44
+ aligning with the production algorithm and eliminating hash-format divergence.
45
+ - E2e conftest synthesises `.kittify/charter/metadata.yaml` after `copytree` using
46
+ the production `charter.hasher.hash_content()` helper, making fixtures self-contained
47
+ and reproducible on clean clones without gitignored runtime state.
48
+ - Missing `import click` in `orchestrator_api/commands.py` that caused `NameError` in the
49
+ `except ImportError` fallback when importing the module on typer < 0.26.
50
+ - Restored `doctrine` CLI group registration (incorrectly removed when a stale regression
51
+ test was treated as a contract); narrowed the curation-excision guard to `curate`/`promote`
52
+ only; restored `spec-kitty doctrine` sections in `docs/reference/cli-commands.md`.
53
+
54
+ ### Security / Lint
55
+
56
+ - `TID251` (`flake8-tidy-imports` banned-api) added to ruff: `hashlib.sha256` usage in
57
+ `tests/` must go through `charter.hasher.hash_content()`; `click.exceptions.Exit`,
58
+ `UsageError`, and `Abort` in tests must use `typer.*` equivalents instead.
59
+ - `TID251` is now **enforced**, not advisory: a dedicated `[ENFORCED] banned-API lint
60
+ gate (TID251)` step in `ci-quality.yml` runs `ruff check src tests --select TID251`
61
+ without `continue-on-error`, so an unannotated banned call fails the build. The
62
+ previous whole-directory `per-file-ignores` (which silently exempted 10 test trees and
63
+ defeated the "new sha256 still needs a `# noqa`" policy) were removed; every legitimate
64
+ raw `hashlib.sha256` now carries an inline `# noqa: TID251 — <justification>`. A guard
65
+ test (`tests/architectural/test_tid251_enforcement.py`) pins the enforcement so it
66
+ cannot silently regress to advisory. (Closes the adversarial review block on #1395.)
67
+
68
+ ## [Unreleased - 3.2.0]
69
+
70
+ ### Changed
71
+
72
+ - Documented the host-surface parity matrix and Mode of Work governance layer
73
+ so advise/ask/do behavior has a visible README entry point.
74
+ - Clarified correlation link and projection policy / read-model policy coverage
75
+ for the 3.2.0 trail-model tranche, including deferred Tier 2 items.
76
+
77
+ ### Deferred
78
+
79
+ - Continued tracking deferred follow-up work such as
80
+ [#534](https://github.com/Priivacy-ai/spec-kitty/issues/534) outside the
81
+ 3.2.0 readiness tranche.
82
+
83
+ ## [3.2.0rc29] - 2026-05-29
84
+
85
+ 3.2.0rc29 rerolls the coordination branch atomic event-log candidate after
86
+ PR review and publishes the launch-readiness hardening merged after the yanked
87
+ 3.2.0rc28 candidate.
88
+
89
+ ### Added
90
+
91
+ - Added mission coordination branches, sparse coordination worktrees,
92
+ `BookkeepingTransaction`, and `WorkflowMutationPolicy` so mission status
93
+ mutations are staged, audited, and committed away from protected target
94
+ branches.
95
+ - Added regression, integration, stress, and architectural coverage for
96
+ coordination worktree creation, safe-commit branch assertions, legacy mission
97
+ fallback, workflow rollback, post-merge indexing, and concurrent status
98
+ emission.
99
+ - Added `mission close --discard` and doctor diagnostics for coordination
100
+ workspace health, restart-daemon timing, command/skill manifest drift, and
101
+ upgrade remediation provenance.
102
+ - Added external-orchestrator install and compatibility documentation, including
103
+ PyPI installation paths, orchestrator API JSON-error guidance, host-surface
104
+ governance docs, and environment-variable references.
105
+
106
+ ### Changed
107
+
108
+ - **BREAKING (CLI)**: `spec-kitty safe-commit` now requires
109
+ `--to-branch <ref>`. The temporary `SPEC_KITTY_INFER_DESTINATION_REF=1`
110
+ compatibility path lets the CLI resolve and pass the destination explicitly
111
+ during rollout; the helper itself never infers it.
112
+ - **BREAKING (internal)**: `safe_commit()` now requires keyword-only
113
+ `worktree_root`, `destination_ref`, and `paths`, and structurally verifies
114
+ that the worktree HEAD matches the declared destination before staging.
115
+ - Removed Spec Kitty internal protected-branch commit exceptions for planning
116
+ artifacts and merged-WP done records. Remaining exceptions are limited to
117
+ documented non-Spec-Kitty upgrade/release workflows.
118
+ - Hardened release CI ownership by deduplicating release-readiness checks,
119
+ adding installed-entrypoint smoke coverage, and preserving clean-install
120
+ latency evidence.
121
+
122
+ ### Fixed
123
+
124
+ - Migrated remaining production `safe_commit()` call sites to the
125
+ destination-ref-aware API so agent task, mission, merge, upgrade, and
126
+ orchestrator paths no longer crash on the removed legacy signature.
127
+ - Fixed protected-branch leakage from `agent action implement` by routing
128
+ planning artifacts and workflow status writes through coordination-owned
129
+ commit paths instead of target-branch bypasses.
130
+ - Serialized first-time coordination worktree creation under the feature
131
+ status lock to prevent concurrent emitters from racing on `git worktree add`.
132
+ - Fixed idempotent squash-merge retry behavior, finalize-tasks dependency
133
+ source precedence, safe-commit recovery reporting, workflow path mirroring,
134
+ configured command execution on Windows, charter JSON error envelopes, and
135
+ command/skill manifest repair drift.
136
+ - Restored upgrade-readiness preference preservation and compatibility hints,
137
+ including uv-tool pytest remediation provenance fallbacks.
138
+ - Restored compatibility for older unit-test fakes that do not expose the new
139
+ coordination branch or commit-result fields.
140
+
141
+ ## [3.2.0rc28] - 2026-05-27
142
+
143
+ 3.2.0rc28 fixes acceptance lane ownership and a clean-install dependency gap.
144
+
145
+ ### Changed
146
+
147
+ - `accept` and orchestrator-api `accept-mission` now keep `approved` and
148
+ `done` distinct: acceptance reports accepted-ready, approved,
149
+ merge-pending, and already-merged WPs without closing approved WPs. Merge
150
+ remains the owner of the `approved -> done` integration transition.
151
+ - Software-dev mission guards now treat `approved` and `done` as
152
+ accepted-ready for mission advancement.
153
+
154
+ ### Fixed
155
+
156
+ - Declared `click` as a direct runtime dependency because CLI modules import it
157
+ directly. This fixes pipx/Windows clean-install import failures.
158
+
159
+ ## [3.2.0rc27] - 2026-05-26
160
+
161
+ 3.2.0rc27 fixes a charter freshness/preflight false positive found in the
162
+ post-rc26 mainline checks.
163
+
164
+ ### Fixed
165
+
166
+ - Charter freshness now uses the same canonical hash semantics as
167
+ `charter sync`, so whitespace-normalized stored hashes do not falsely mark a
168
+ project stale.
169
+ - Fresh built-in doctrine seeds now produce the charter synthesis manifest
170
+ expected by preflight, preventing new projects from failing with
171
+ `charter_source stale` before any local charter exists.
172
+ - Synced charter bundles no longer become stale from source mtime drift when
173
+ metadata hashes and required bundle files already prove the source is fresh.
174
+
175
+ ## [3.2.0rc26] - 2026-05-26
176
+
177
+ Rolls up the charter preflight, built-in vocabulary, and CI stabilization
178
+ guardrails merged after rc25.
179
+
180
+ ### Breaking changes
181
+
182
+ - **`shipped` → `built-in` vocabulary rename.** Public CLI JSON surfaces that
183
+ previously emitted `"shipped"` as a doctrine layer label now emit `"built-in"`.
184
+ This aligns user-facing terminology with the on-disk `built-in/` directory
185
+ layout that already existed. Affected commands:
186
+ - `spec-kitty charter status --json`
187
+ - `spec-kitty charter lint --json`
188
+ - `spec-kitty charter preflight --json` (new in this release)
189
+ - `spec-kitty agent profile list --json`
190
+ - `spec-kitty doctrine pack validate --json`
191
+
192
+ External tooling that pattern-matched the string `"shipped"` MUST be updated.
193
+ No deprecation period: the rename is mechanical and the architectural test
194
+ `tests/architectural/test_no_shipped_layer_label.py` prevents regression.
195
+
196
+ Related: ADR `architecture/3.x/adr/2026-05-24-3-shipped-to-built-in-cutover.md`.
197
+
198
+ ### Changed
199
+
200
+ - **Deprecated paths:** `specify_cli.charter_lint`, `specify_cli.charter_freshness`,
201
+ and `specify_cli.charter_preflight` now re-export from
202
+ `specify_cli.charter_runtime.{lint,freshness,preflight}` under a shared
203
+ charter-runtime umbrella (LD-5 / FR-014). The old paths emit no
204
+ `DeprecationWarning` yet; they will in the next minor release. External
205
+ importers should update to the new paths during this deprecation window
206
+ (spec C-008). The `charter_runtime.facade` slot is reserved for a future
207
+ charter-facade consolidation.
208
+
209
+ ### Added
210
+
211
+ - **`spec-kitty charter preflight` command.** Caller-facing preflight contract
212
+ for governance freshness (FR-006, FR-007, FR-008). Returns a structured JSON
213
+ report that `next`, `implement`, and the dashboard consume to decide whether
214
+ to proceed, prompt for `charter synthesize`, or block. See
215
+ `docs/reference/charter-commands.md` and ADR
216
+ `architecture/3.x/adr/2026-05-24-1-charter-freshness-ux-contract.md`.
217
+
218
+ - Pre-launch and launch-readiness operator docs for hosted SaaS
219
+ sync (#1095). Public docs remain local-first; hosted readiness
220
+ stays opt-in via `SPEC_KITTY_ENABLE_SAAS_SYNC=1`. The new
221
+ `docs/how-to/internal-hosted-readiness.md` covers the dogfooding
222
+ workflow for internal / pre-launch operators, and the new
223
+ `docs/explanation/launch-readiness-future.md` stages the launch-day
224
+ behavior shift behind an explicit "Status: pre-launch" banner.
225
+
226
+ ## [3.2.0rc25] - 2026-05-23
227
+
228
+ Rolls up the post-rc24 static-analysis and upgrade UX type-boundary fixes.
229
+
230
+ - Tightens acceptance package imports, compatibility cache typing, and
231
+ readiness upgrade UX helper boundaries after the overnight Sonar sweep.
232
+ - Keeps the 3.2.0 stable release candidate line current with `main`
233
+ after `#1293`.
234
+
235
+ ## [3.2.0rc24] - 2026-05-22
236
+
237
+ Ships the canonical SaaS-bound producer refactor for CLI lifecycle,
238
+ sync, decision, glossary, and migration emitters.
239
+
240
+ - Routes known SaaS-bound CLI payloads through the `spec-kitty-events`
241
+ 5.2 canonical models where those contracts exist, while preserving
242
+ transitional legacy wire payloads required by current SaaS consumers.
243
+ - Preserves local `artifact_path` metadata on artifact-phase Started
244
+ events and projects those payloads to the strict canonical SaaS wire
245
+ shape before queueing.
246
+ - Adds producer conformance coverage, strict lifecycle validation,
247
+ handler-reset isolation, and a documented canonical-producer lint
248
+ baseline for remaining local-only/test producers.
249
+
250
+ ## [3.2.0rc23] - 2026-05-21
251
+
252
+ Rolls up the autonomous-runtime safety sweep needed before the 3.2.0
253
+ stable cut, plus the documentation and CI guardrails merged after rc22.
254
+ The candidate focuses on removing operator-required workarounds from
255
+ fully autonomous local missions.
256
+
257
+ - Closes `#1255`: retrospective files written by `retrospect create`
258
+ are now accepted by `retrospect synthesize`, with regression coverage
259
+ for both dry-run and apply flows.
260
+ - Closes `#1256`: decisions deferred during planning can be resolved
261
+ cleanly at terminus, and `decision verify` no longer reports resolved
262
+ clarification markers as drift.
263
+ - Closes `#1235` and `#1257`: task finalization rejects
264
+ `kitty-specs/` paths in WP `owned_files` with a clear WP/path error,
265
+ while bulk-edit preflight treats WPs that author planning artifacts
266
+ such as `occurrence_map.yaml` as informational.
267
+ - Closes `#1236`: lane computation now preserves parallel lanes for
268
+ upstream WPs with disjoint `owned_files`; fan-in WPs remain the
269
+ synchronization point.
270
+ - Closes `#1258`: autonomous local mission docs now include the
271
+ focused-PR fallback for `TARGET_BRANCH_NOT_SYNCHRONIZED` when local
272
+ `main` contains orchestration commits.
273
+ - Adds the 3.2 documentation refresh, harness/install lifecycle pages,
274
+ docs freshness checks, drift-detector CI, canonical-producer linting,
275
+ acceptance-matrix extension preservation, and charter-context envelope
276
+ repair merged after rc22.
277
+
278
+ ## [3.2.0rc22] - 2026-05-21
279
+
280
+ Ships the `sync diagnose` canonical-allowlist fix so canary diagnostic
281
+ output stops flagging known event types (`TasksCompleted`,
282
+ `PlanCompleted`, `GatePassed`, etc.) as unknown. The `sync diagnose`
283
+ allowlist is replaced with delegation to
284
+ `spec_kitty_events.conformance.validators._EVENT_TYPE_TO_MODEL` — the
285
+ canonical registry shared with the SaaS strict validator. A
286
+ drift-detector regression test asserts the union remains in sync, so
287
+ future events releases self-validate. The CLI's outbound emission
288
+ gate (`emitter.VALID_EVENT_TYPES`) is intentionally untouched.
289
+
290
+ - Fixes `spec-kitty sync diagnose` false-positive "unknown event"
291
+ warnings by sourcing recognised types from the canonical events
292
+ registry (`Priivacy-ai/spec-kitty#1222`).
293
+ - Adds a drift-detector regression test that fails when the events
294
+ package adds or removes an event type without the registry being
295
+ re-imported.
296
+
297
+ ## [3.2.0rc21] - 2026-05-20
298
+
299
+ Rolls up the minor issue-queue cleanup selected before the 3.2.0
300
+ stable release, plus the post-merge test hardening needed to keep
301
+ `main` green after those fixes landed.
302
+
303
+ - Fixes tasking help assertions to validate Typer option metadata
304
+ instead of Rich-rendered, platform-truncated help text, restoring
305
+ the full main test sweep after the task command cleanup.
306
+ - Refreshes the rc20 lockfile metadata so branch and release
307
+ validation agree on the packaged dependency graph.
308
+ - Improves task finalization and review-state behavior: rejected
309
+ review overrides are described with the canonical tasking language,
310
+ finalize-tasks dependency prose no longer produces false positives,
311
+ and the main test sweep covers those edge cases.
312
+ - Tightens CI and repository hygiene by requiring PR suffixes in the
313
+ protect-main check and tracking research evidence logs.
314
+ - Hardens sync, acceptance, retrospective, and dashboard edges found
315
+ during the pre-3.2.0 issue sweep: doctor daemon health checks are
316
+ isolated, acceptance clarification markers match the canonical
317
+ contract, retrospective event emission is materialized, and the
318
+ dashboard exposes the glossary shell.
319
+
320
+ ## [3.2.0rc20] - 2026-05-20
321
+
322
+ Closes the next dormant mask from epic `#1198`, surfaced by the
323
+ rc19 canary now that the `#1202` observability fix is in place.
324
+
325
+ - Closes `#1203` mask 1: `EventEmitter.emit_wp_created` in
326
+ `src/specify_cli/sync/emitter.py` now constructs the payload
327
+ matching the canonical events 5.1.0 `wp_created_payload` schema.
328
+ Four simultaneous violations are closed in a single change:
329
+ `title` renamed to `wp_title` at the payload boundary,
330
+ `dependencies` renamed to `depends_on`, required `actor`
331
+ parameter added (default `"cli"`) and placed in the payload,
332
+ and `mission_id` removed from the payload (the parameter is
333
+ still accepted for backward compatibility but is no longer
334
+ written to the wire — it isn't in the schema's allowed set).
335
+ The local emitter's per-event-type validator table is updated
336
+ to match the canonical required-fields contract; the
337
+ singleton-level `emit_wp_created` mirror in
338
+ `src/specify_cli/sync/events.py` gains an `actor` parameter and
339
+ passes it through; and the production caller in
340
+ `src/specify_cli/cli/commands/agent/mission.py:2448` passes
341
+ `actor="spec-kitty agent mission finalize-tasks"`.
342
+
343
+ This was the four-violation drift P4 predicted in the differential
344
+ matrix and that the rc19 canary surfaced in full detail thanks to
345
+ the per-event-violation observability restored in `#1202`. The
346
+ structural follow-up `#1200` (construct payloads via pydantic
347
+ models across every `emit_*` site) still pending; this surgical
348
+ close prevents the immediate canary blocker while that work
349
+ proceeds.
350
+
351
+ ## [3.2.0rc19] - 2026-05-20
352
+
353
+ Ships the combined `#1199` + `#1202` surgical fix from epic `#1198`:
354
+ the immediate Phase 4 canary blocker plus the observability fix that
355
+ restores the SaaS's per-event violation diversity to operators.
356
+
357
+ - Closes `#1199`: `emit_mission_created_local` in
358
+ `src/specify_cli/status/lifecycle_events.py` now accepts
359
+ `mission_type` (required) and `wp_count` (default 0) and places
360
+ both in the payload. The canonical events 5.1.0 schema for
361
+ `mission_created_payload` lists both as required; the deployed
362
+ SaaS jsonschema gate rejects payloads without them with
363
+ `'mission_type' is a required property`. The sibling call site in
364
+ `src/specify_cli/core/mission_creation.py:412` now passes both
365
+ fields, matching the sync-events path at `:468-470`.
366
+ - `_validate_lifecycle_payload` widened from `extra_forbidden`-only
367
+ to fail on ALL model violations (extras + missing-required +
368
+ every other `violation_type`). The historical comment block that
369
+ rationalised the narrow scope as matching SaaS tolerance was
370
+ based on the SaaS-side `_should_validate_strict_envelope` hole
371
+ (`Priivacy-ai/spec-kitty-saas#217`) and is no longer true. The
372
+ widened validator catches MissionCreated, WPStatusChanged,
373
+ MissionDossierArtifactIndexed, and every other event type the
374
+ events package recognises, preventing the next analogous drift
375
+ from reaching the offline queue.
376
+ - Closes `#1202`: `_parse_error_response` in
377
+ `src/specify_cli/sync/batch.py` now reads `details[*].detail`
378
+ (the key the SaaS actually ships) before falling back to
379
+ `.error` / `.reason`. Without this fix, every per-event line
380
+ in a SaaS rejection collapsed to the outer `error_msg` —
381
+ hiding the SaaS's full per-event violation diversity for the
382
+ entire `rc12 → rc18` drift-chain investigation. With the fix,
383
+ the next failed batch surfaces every distinct violation per
384
+ event, dramatically compressing any remaining mask-peeling.
385
+
386
+ Sequenced first per epic `#1198`. The structural follow-up
387
+ `#1200` (pydantic-construct payloads across all `emit_*` sites +
388
+ CI conformance gate) and `#1203` (dormant masks sweep) are next,
389
+ with `spec-kitty-saas#217` (close the strict-envelope hole)
390
+ sequenced after.
391
+
392
+ ## [3.2.0rc18] - 2026-05-20
393
+
394
+ Ships the final observed Phase 4 launch-gate payload drift fix after the
395
+ rc17 `WPStatusChanged` envelope cleanup.
396
+
397
+ - Closes `#1190` via `#1191`: `emit_mission_created_local` no longer writes
398
+ `actor` into the `MissionCreated` payload. The canonical
399
+ `spec-kitty-events` 5.1.0 schema declares `additionalProperties: false` for
400
+ `mission_created_payload` and does not allow `actor`, so deployed SaaS batch
401
+ ingest rejected every batch containing one of these events.
402
+ - Refactors `_validate_lifecycle_payload` to delegate to
403
+ `spec_kitty_events.conformance.validate_event`, replacing the previous
404
+ hand-maintained lifecycle payload map that missed `MissionCreated` and other
405
+ known event types. The local guard now catches extra-property drift before
406
+ queue fan-out while still tolerating currently accepted missing-field
407
+ violations.
408
+ - Adds regression coverage for the cleaned `MissionCreated` payload, the
409
+ conformance guard's extra-field rejection, valid-payload pass-through, and
410
+ graceful fallback for event types not recognised by the installed events
411
+ package.
412
+
413
+ ## [3.2.0rc17] - 2026-05-20
414
+
415
+ Ships the third Phase 4 launch-gate fix: the actual SaaS-side schema
416
+ violation that was hiding behind the parser and canary issues fixed in
417
+ rc16.
418
+
419
+ - Closes `#1188`: `emit_wp_status_changed` in
420
+ `src/specify_cli/sync/emitter.py` no longer passes
421
+ `envelope_fields=` to `_emit`. The payload-only keys (`from_lane`,
422
+ `to_lane`, `actor`, `force`, `reason`, `review_ref`,
423
+ `execution_mode`, `evidence`) were being duplicated at the envelope
424
+ level alongside the canonical envelope keys, and the SaaS schema at
425
+ `/api/v1/events/batch/` rejected every batch containing a
426
+ `WPStatusChanged` event with
427
+ `Additional properties are not allowed ('actor' was unexpected)`
428
+ (HTTP 400). On rc16 this surfaced as scenarios 1, 2, and 4 of the
429
+ deployed-dev identity-boundary canary failing with
430
+ `Synced: 0 Duplicates: 0 Errors: N (unknown: N)`; scenario 3 passed
431
+ because it never emits events through the batch endpoint.
432
+ - Extends `envelope.forbidden_fields` in
433
+ `src/specify_cli/core/upstream_contract.json` to include the
434
+ payload-only keys, so the existing
435
+ `test_no_forbidden_fields_in_envelope` contract test now guards
436
+ against regressions.
437
+ - Updates the unit tests in `tests/sync/test_events.py` that
438
+ previously asserted the top-level duplicates; the new assertions
439
+ pin the contract that those keys live in `payload` only.
440
+
441
+ The bug has been on `main` since commit `533e47d2` (2026-04-14,
442
+ "Harden SaaS auth and restore build sync emission"). It was masked on
443
+ earlier RCs by the audit-predicate gap fixed in rc15
444
+ (`#1142`), the parser misclassification fixed in rc16 (`#1182`), and
445
+ the canary-command shape fixed in
446
+ `spec-kitty-end-to-end-testing#45` (`#1141`). With those three out of
447
+ the way, the underlying envelope drift was finally visible end-to-end
448
+ and could be fixed.
449
+
450
+ ## [3.2.0rc16] - 2026-05-20
451
+
452
+ Ships the Phase 4 canary launch-gate unblock: the actual root-cause fix for
453
+ `#1141` and the parser/classification fix for `#1182`.
454
+
455
+ - Closes `#1182`: `_parse_event_results` in `src/specify_cli/sync/batch.py`
456
+ now routes per-event `status="queued"` / `status="pending"` responses to a
457
+ new `pending_count` bucket on `BatchSyncResult` instead of folding them
458
+ into the rejected catch-all with `category=unknown`. `sync now` previously
459
+ reported durably-queued events as `Errors: N (unknown: N)` and exited
460
+ non-zero when the in-process final-sync hit its 5s timeout; pending-only
461
+ drains now exit 0 and surface as `Pending: N` in the summary. Queue
462
+ mutation policy unchanged (pending rows are left for the next daemon tick,
463
+ same disposition as `failed_transient`).
464
+ - Closes `#1141` (companion fix in `spec-kitty-end-to-end-testing#45`): the
465
+ canary scenario 4 `move-task --to planned` invocation was omitting
466
+ `--review-feedback-file`, so the CLI hard-rejected the command at the
467
+ argument-validation layer before reaching `emit_status_transition`. The
468
+ rc15 diagnostic breadcrumb in `fire_saas_fanout` could never fire because
469
+ the codepath never reached fan-out. The e2e fix passes a structured
470
+ feedback markdown so the backward emit actually lands. No CLI change is
471
+ required; the events #32 force-required contract and the CLI's
472
+ review-feedback hardening are both intentional and remain in force.
473
+ - New unit coverage in `tests/sync/test_batch_error_surfacing.py` pins the
474
+ contract: per-event `queued` / `pending` are not errors, never count
475
+ toward `success_count` (they are durable in-flight, not terminal), but
476
+ do count toward sync activity so the "no progress" guard does not fire
477
+ on a pending-only drain.
478
+
479
+ ## [3.2.0rc15] - 2026-05-19
480
+
481
+ Ships the Phase 4 canary unblock work landed via PR `#1180`:
482
+
483
+ - Closes `#1142`: broadens `is_mission_lifecycle_row` in
484
+ `src/specify_cli/audit/shape_registry.py` to accept all four canonical
485
+ aggregate types (`Project`, `Mission`, `WorkPackage`, `MissionDossier`)
486
+ rather than `Mission` alone. Fresh missions no longer trip the
487
+ `FORBIDDEN_KEY` TeamSpace gate when `sync now` runs.
488
+ - Closes `#1141`: adds a diagnostic breadcrumb at `fire_saas_fanout` entry in
489
+ `src/specify_cli/status/adapters.py` plus regression coverage that the
490
+ backward `in_review → planned` rollback reaches fanout with the expected
491
+ shape. **Note**: this is a diagnostic landing, not the full root-cause fix
492
+ — the silent replacement that the canary scenario 4 peek catches likely
493
+ lives downstream in `OfflineQueue.queue_event` and is expected to be
494
+ chased on a follow-up RC if it reproduces.
495
+ - Bundles the +30 targeted audit / status-emit-sequence tests from `#1180`.
496
+
497
+ ## [3.2.0rc14] - 2026-05-19
498
+
499
+ Ships the next 3.2 release candidate after the doctrine/charter and
500
+ sync-boundary follow-up window:
501
+
502
+ - Adds the three-layer doctrine and charter DRG work: org-pack loading across
503
+ every configured pack, project/org/built-in precedence diagnostics,
504
+ org-charter interview pre-fill, collision warnings, and the related
505
+ workflow/governance payload hardening.
506
+ - Closes the org-pack and charter-scope safety follow-ups by blocking archive
507
+ traversal, unsafe server-provided filenames, symlink/hardlink extraction, and
508
+ scope roots that escape the repository.
509
+ - Documents recovery from partially installed command namespace packages for
510
+ `spec-kitty-events`, including the concrete import error signature and
511
+ reinstall path.
512
+ - Keeps local workflow test suites honest under the hosted sync preflight:
513
+ e2e workflow tests now opt out of `SPEC_KITTY_ENABLE_SAAS_SYNC` the same way
514
+ integration and tasks suites do, while sync/auth suites retain hosted-sync
515
+ coverage.
516
+ - Restores strict mission-step-contract type checking by making ambiguous DRG
517
+ URN matches explicitly typed.
518
+ - Carries review and release hygiene fixes for unsafe target-branch merge
519
+ guidance, retrospective workflow wording, doctrine language-bias lint, fresh
520
+ sync Sonar findings, and Windows/main CI health.
521
+ - Aligns the release checklist with the main-branch protection workflow:
522
+ release PRs should be squash-merged so the resulting commit retains the PR
523
+ marker that `Protect Main Branch` recognizes.
524
+
525
+ ## [3.2.0rc13] - 2026-05-19
526
+
527
+ Ships a focused sync-boundary hotfix for pipx-style CLI installs:
528
+
529
+ - Fixes `#1120`: daemon owner records now canonicalize
530
+ `executable_path` at the `DaemonOwnerRecord` boundary, and foreground
531
+ sync identity uses the same canonicalization helper. Pipx-installed CLIs
532
+ whose `sys.executable` flows through a symlink no longer report a spurious
533
+ `daemon_executable_path` mismatch during `sync status --check` or
534
+ sync-producing command preflight.
535
+ - Adds adversarial coverage for owner-record dataclass canonicalization,
536
+ resolve-failure fallback behavior, and the asymmetric one-sided resolve
537
+ failure class that could reintroduce false split-brain detection.
538
+
539
+ ## [3.2.0rc12] - 2026-05-18
540
+
541
+ Ships the MVP CLI sync-boundary preflight surface required by the Teamspace
542
+ auth-boundary hardening launch gate:
543
+
544
+ - Includes `#1115`: `specify_cli.sync.owner` daemon owner record with
545
+ mismatch / orphan detection, `specify_cli.sync.preflight` read-only
546
+ auth/daemon/queue boundary preflight, and the new identity-boundary rows
547
+ exposed by `sync status --check` / `sync doctor`.
548
+ - Closes `#1087` (sync status/doctor expose auth/queue/daemon split brain),
549
+ `#1088` (sync daemon coherent machine-global owner), `#1089` (setup-plan
550
+ evidence enqueued in one sync scope), and `#1090` (scoped queue migration
551
+ does not strand authenticated work).
552
+ - Unblocks the deployed-dev sync identity-boundary canary
553
+ (`spec-kitty-end-to-end-testing#42` / `#41`) by providing a packaged CLI
554
+ whose `sync status --check` output is parseable by the canary harness.
555
+
556
+ ## [3.2.0rc11] - 2026-05-17
557
+
558
+ Closes the planning#16 backward-transition follow-up across the CLI release
559
+ surface:
560
+
561
+ - `spec-kitty backwards --note ...` now preserves the canonical
562
+ `backward rewind:` transition-reason prefix when callers supply a note,
563
+ keeping emitted `WPStatusChanged` events accepted by the shared contract and
564
+ SaaS ingestion.
565
+ - The resolved lockfile moves to `spec-kitty-events==5.1.0`, which ships the
566
+ review-rejection replay conformance fixture used to verify forced backward
567
+ transition handling.
568
+
569
+ ## [3.2.0rc10] - 2026-05-17
570
+
571
+ Rolls forward `3.2.0rc9` (never tagged) and adds the Teamspace MVP
572
+ canonical-lifecycle / sync-daemon launch-gate followups:
573
+
574
+ - **#1067 follow-up.** `core/mission_creation.py:create_mission_core`
575
+ now emits the canonical `SpecifyStarted` event immediately after
576
+ `MissionCreated`, referencing the freshly scaffolded `spec.md`
577
+ artifact path. Previously the constant was defined but never emitted,
578
+ so the canonical lifecycle stream skipped straight from
579
+ `MissionCreated` to `SpecifyCompleted` at setup-plan time — leaving
580
+ TeamSpace replay and the local dashboard blind to in-progress
581
+ specifying. Regression coverage in
582
+ `tests/specify_cli/core/test_mission_creation_specify_started.py`.
583
+ - **#1071 follow-up.** `sync status --check` and `sync doctor` now
584
+ surface the daemon PID/port and any orphan `run_sync_daemon`
585
+ processes (via the existing `scan_sync_daemons` helper), so operators
586
+ see cross-checkout daemon divergence without grepping `ps`.
587
+ `_kill_and_cleanup` now waits for the killed PID to actually exit
588
+ before clearing `DAEMON_STATE_FILE` — closing the AC bullet that
589
+ required version-mismatch replacement not leave older daemons live.
590
+ Module docstring updated to be honest about state-file-scoped
591
+ singleton semantics. Regression coverage in
592
+ `tests/cli/commands/test_sync_status_singleton_diagnostics.py` and
593
+ `tests/sync/test_daemon_replace_on_version_mismatch.py`.
594
+
595
+ Everything previously slated for rc9 (below) is included in rc10.
596
+
597
+ ## [3.2.0rc9] (rolled into rc10)
598
+
599
+ The `quality-devex-hardening-3-2-01KRJGKH` mission closes six epic-#822
600
+ tickets and lands the doctrine tactics, canonical-terminology glossary,
601
+ and code-patterns catalog that underpin the 3.2.0 stable release. Push-time
602
+ Sonar restoration (#825) is the only remaining operator-action gate.
603
+
604
+ ### Added
605
+
606
+ - **Stale-lane auto-rebase with conflict classification** (#771). New
607
+ `specify_cli.merge.conflict_classifier` rule pipeline (Validator-flavor;
608
+ 5 conflict shapes — pyproject deps union, `__init__.py` import-block
609
+ union, urls.py URL list union, `uv.lock` regenerate, default manual)
610
+ and `specify_cli.lanes.auto_rebase` orchestrator. `spec-kitty merge`
611
+ now attempts `git merge <mission-branch>` inside a stale lane worktree
612
+ before halting, auto-resolves additive-only conflicts via a union-merge
613
+ driver, regenerates `uv.lock` under a global file lock, runs
614
+ `ruff --fix --select I001` on touched `__init__.py` files, and reports
615
+ auto-resolved vs manual lanes. Semantic conflicts still halt with the
616
+ current actionable error. ADR
617
+ `architecture/2.x/adr/2026-05-14-1-stale-lane-auto-rebase-classifier-policy.md`
618
+ documents the fail-safe-default policy.
619
+ - **No-upgrade UX notification** (#740). New `core/upgrade_probe.py`
620
+ (PyPI probe + 2 s timeout-bounded channel classification:
621
+ ALREADY_CURRENT / AHEAD_OF_PYPI / NO_UPGRADE_PATH / UNKNOWN) and
622
+ `core/upgrade_notifier.py` (cache-aware emitter). Distinguishes
623
+ "already on the latest supported version" from "build/channel with no
624
+ upgrade path"; never blocks the CLI on network failure; rate-limited
625
+ to once per 24 h with `SPEC_KITTY_NO_UPGRADE_CHECK=1` opt-out; reuses
626
+ `should_check_version()` rather than introducing a parallel gate.
627
+ Cache-warm budget < 100 ms.
628
+ - **`secure-regex-catastrophic-backtracking` doctrine tactic** codifying
629
+ the four dangerous regex shapes, the rewrite ladder, and the escape
630
+ hatches. Every regex change now requires a wall-clock regression test
631
+ asserting linear runtime on adversarial input (default budget: < 100 ms
632
+ for 100 000 chars) per FR-008.
633
+ - **`chain-of-responsibility-rule-pipeline` doctrine tactic** with three
634
+ flavors (Validator / Transformer / Scorer) and the typed
635
+ `CanonicalRule` Protocol at
636
+ `src/specify_cli/migration/canonicalization.py` as the canonical
637
+ Transformer-flavor implementation.
638
+ - **Core code-patterns catalog** at
639
+ `architecture/2.x/04_implementation_mapping/code-patterns.md` listing
640
+ the recurring shapes used across the codebase (Rule-Based Pipeline,
641
+ Append-Only Event Log + Reducer, etc.) with doctrine cross-references.
642
+ - **Canonical-terminology glossary entries** for `characterization test`,
643
+ `pipeline-shape`, `rule pipeline`, `catastrophic backtracking`,
644
+ `structural debt`, `deliberate linearity`, and `Sonar quality gate`
645
+ in `.kittify/glossaries/spec_kitty_core.yaml`, each cross-referencing
646
+ the doctrine tactic or architectural document that codifies it
647
+ (FR-013).
648
+ - **Targeted symlink-fallback test** for the
649
+ `m_0_8_0_worktree_agents_symlink` migration's `OSError -> shutil.copy2`
650
+ fallback (#629). Runs on every CI pass via `monkeypatch`, not gated
651
+ by `windows_ci`. Covers both happy-fallback and dual-failure arms.
652
+ - **Behavior-driven coverage tests** for `cli/commands/charter.py`,
653
+ `cli/commands/charter_bundle.py`, `cli/commands/agent/config.py`,
654
+ `next/_internal_runtime/engine.py`, and `core/file_lock.py`
655
+ (Bucket A/B/C split; `CliRunner` + `tmp_path` real I/O; no
656
+ `mock.patch` on Path methods) per the `function-over-form-testing`
657
+ tactic (#595 workstream A).
658
+ - **Wall-clock regression guard** at
659
+ `tests/regressions/test_changelog_regex_redos.py` (20 tests; < 100 ms
660
+ on 100 000-line adversarial input) against future re-introduction of
661
+ the three Sonar-flagged patterns in `release/changelog.py` (pre-fixed
662
+ in PR #592) (#595 workstream B / FR-008).
663
+ - **`dev` dependency-group type stubs** (`types-jsonschema`,
664
+ `types-psutil`, `types-PyYAML`, `types-requests`, `types-toml`) in
665
+ `[dependency-groups] dev` so `uv run --with mypy mypy --strict`
666
+ resolves stubs from the default env.
667
+
668
+ ### Changed
669
+
670
+ - **mypy strict baseline** is now green for `src/specify_cli`,
671
+ `src/charter`, `src/doctrine` per decision moment
672
+ `DM-01KRJHT7QD7XQMY33Y5TDTQ80V` (option A — fix the existing target;
673
+ #971). Includes `doctor.py::_print_overdue_details` annotation fix
674
+ (typed `ShimRegistryReport` under `TYPE_CHECKING`) and
675
+ `_resolve_fail_on` return-type tightening to
676
+ `tuple[Severity | None, bool]`.
677
+ - **`_canonicalize_status_row` and `rebuild_state.py`** refactored onto
678
+ the typed `CanonicalRule` Protocol with characterization-test coverage
679
+ preceding the refactor commits (NFR-003 / `tdd-red-green-refactor`).
680
+ - **`doctor.py::mission_state`** refactored from cognitive complexity 57
681
+ to a CC 3 thin orchestrator plus per-mode runners
682
+ (`_validate_modes`, `_resolve_fail_on`, `_resolve_audit_root`,
683
+ `_emit_mission_state`, `_run_audit_mode`, `_run_mission_repair`,
684
+ `_run_teamspace_dry_run_mode`), with 17 characterization tests
685
+ guarding behavior across all three dispatch arms (`--audit`, `--fix`,
686
+ `--teamspace-dry-run`) (#595 workstream C).
687
+ - **`review.py` split into `cli/commands/review/` package** with sibling
688
+ files for cleaner ownership boundaries.
689
+
690
+ ### Fixed
691
+
692
+ - **`doctor.py:1092` `MissionRepairResult.findings` real-branch bug**:
693
+ `report` variable was dual-typed as `RepairReport` /
694
+ `RepoAuditReport` across mutually exclusive branches; runtime correct
695
+ but typing broken. Now closes mypy strict on `doctor.py`.
696
+ - **Pre-existing YAML scanner error** in
697
+ `.kittify/glossaries/spec_kitty_core.yaml` line 484: the `unsafe bypass`
698
+ definition contained an unquoted backtick-wrapped `bypass_used: true`
699
+ literal that `yaml.safe_load` interpreted as a nested mapping. The
700
+ definition value is now double-quoted; semantic content unchanged.
701
+ File now parses cleanly under `yaml.safe_load` and `ruamel.yaml`.
702
+
703
+ ### Documentation
704
+
705
+ - **Mission-review report** at
706
+ `kitty-specs/quality-devex-hardening-3-2-01KRJGKH/mission-review.md`
707
+ citing every doctrine tactic applied per WP and linking the
708
+ code-patterns catalog (NFR-006 / FR-012).
709
+ - **Post-merge audit report** at
710
+ `kitty-specs/quality-devex-hardening-3-2-01KRJGKH/post-merge-review.md` —
711
+ independent adversarial review confirming PASS WITH NOTES (no code
712
+ defects; release-readiness gated on three operator-action items:
713
+ Sonar hotspot rationale application, NFR-001 smoke execution, and the
714
+ push-time Sonar workflow flip). Documents FR coverage matrix, drift
715
+ findings, silent-failure scan, and security notes. All four
716
+ post-merge stale-assertion findings classified as false alarms.
717
+ - **NFR-001 release-stability smoke recipe** at
718
+ `kitty-specs/quality-devex-hardening-3-2-01KRJGKH/nfr-001-smoke-recipe.md`
719
+ for operator execution post-merge.
720
+ - **SonarCloud hotspot rationales** at
721
+ `kitty-specs/quality-devex-hardening-3-2-01KRJGKH/sonar-hotspot-rationales.md`
722
+ documenting the 4 encrypt-data hotspots for operator application in the
723
+ Sonar UI before push-time CI restoration (#825).
724
+ - **ADR `2026-05-14-1-stale-lane-auto-rebase-classifier-policy`** for #771.
725
+
726
+ ### Deferred
727
+
728
+ - **Push-time SonarCloud restoration** (#825 / FR-004): gated on the
729
+ operator applying the four hotspot rationales in the Sonar UI and the
730
+ Sonar quality gate flipping to `OK` (at audit time: ERROR —
731
+ `new_coverage` 58.9% vs threshold 80%; `new_security_hotspots_reviewed`
732
+ 0% vs threshold 100%). The
733
+ `.github/workflows/ci-quality.yml::sonarcloud` conditional remains on
734
+ `schedule || workflow_dispatch` until gate is OK. See
735
+ `kitty-specs/quality-devex-hardening-3-2-01KRJGKH/sonar-pre-flip-verification.txt`.
736
+
737
+ ### Removed
738
+
739
+ ## [3.2.0rc8] - 2026-05-14
740
+
741
+ 3.2.0rc8 rolls up the post-rc7 TeamSpace launch fixes and compatibility
742
+ cleanup needed before the final 3.2.0 cut. It includes defensive sync batching
743
+ for real edge-proxy limits, the Mission Dossier event-envelope migration for
744
+ `spec-kitty-events>=5.0.0`, and the small compatibility/quality fixes that
745
+ landed after rc7.
746
+
747
+ ### Changed
748
+
749
+ - Reduced the CLI's default sync batch decompressed byte budget to 256 KiB and
750
+ added a 512 KiB hard ceiling for over-generous server-advertised limits, so
751
+ large TeamSpace queue drains split into safe requests instead of relying on
752
+ HTTP 413 retry shrinkage.
753
+ - Migrated all four Mission Dossier event emitters to the namespaced envelope
754
+ required by `spec-kitty-events>=5.0.0`, including `namespace`,
755
+ `artifact_id`/`expected_identity`, content refs, and schema-compatible
756
+ diagnostics.
757
+ - Preserved legacy queued Mission Dossier events by migrating flat queued
758
+ payloads on drain when namespace data is available, and kept queue coalescing
759
+ scoped correctly across both legacy and namespaced payload shapes.
760
+
761
+ ### Fixed
762
+
763
+ - Restored agent profile list compatibility after the rc7 candidate.
764
+ - Reduced SonarCloud noise in path helper and charter synthesizer code without
765
+ changing runtime behavior.
766
+ - Fixed the deployed-dev TeamSpace sync canary failure where a 1200-event
767
+ backlog could cascade into 1000 HTTP 413 failures.
768
+ - Fixed SaaS ingestion rejection of CLI-emitted Mission Dossier artifact events
769
+ caused by the old flat payload shape being rejected with
770
+ `Additional properties are not allowed`.
771
+
772
+ ## [3.2.0rc7] - 2026-05-12
773
+
774
+ 3.2.0rc7 lands the `review-merge-gate-hardening-3-2-x-01KRC57C` mission
775
+ covering the remaining 3.2.x P1 release blockers plus a narrowed slice of the
776
+ charter encoding chokepoint, with post-merge remediation, SonarCloud
777
+ new-code gate cleanup, and CI portability fixes folded in.
778
+
779
+ ### Added
780
+
781
+ - New canonical `KittyInternalConsistencyError` base under
782
+ `src/kernel/errors.py`, with `CharterEncodingError` now inheriting from it
783
+ so any UI/CLI/TUI surface can render structured remediation uniformly.
784
+ - Reusable SonarCloud branch-review snippet at
785
+ `work/snippets/sonarcloud_branch_review.sh` (qualitygates/project_status +
786
+ measures/component_tree + issues/search via REST API).
787
+ - Architectural decision record
788
+ `architecture/adrs/2026-05-11-1-defer-391-structural-extraction-from-3-2-x.md`
789
+ deferring still-open `#391` sub-tickets (`#612` / `#613` / `#614`) from
790
+ 3.2.x scope, on top of the shared-package-boundary cutover precedent.
791
+
792
+ ### Changed
793
+
794
+ - Refactored `_bake_mission_number_into_mission_branch` in
795
+ `src/specify_cli/cli/commands/merge.py` from cognitive complexity 22 down
796
+ to a flat coordinator backed by six named predicate / effect helpers, with
797
+ no behavior change.
798
+ - Narrowed broad `except` clauses in `src/charter/_io.py`,
799
+ `src/charter/compiler.py`, and `src/charter/interview.py` so charter
800
+ encoding errors propagate to the canonical handler instead of being
801
+ swallowed.
802
+ - Wired `assert_pytest_available()` into the production review preflight in
803
+ `src/specify_cli/cli/commands/review/__init__.py`.
804
+
805
+ ### Fixed
806
+
807
+ - Pre-merge mission-review remediation of findings `D1`, `D2`, `D3`, `S1`,
808
+ and `S2` against the canonical issue matrix at
809
+ `kitty-specs/review-merge-gate-hardening-3-2-x-01KRC57C/issue-matrix.md`.
810
+ - Repaired 18 pre-existing test failures by extracting a shared
811
+ `setup_mocked_env()` context manager to `tests/mocked_env.py` and rewiring
812
+ the affected sites onto it.
813
+ - CI portability: `tests/integration/test_pytest_venv_concurrency.py` now
814
+ invokes pytest through `sys.executable` instead of relying on a bare `uv`
815
+ on `$PATH`, which is not guaranteed inside slow-test CI shards.
816
+ - Cleared the SonarCloud new-code coverage gate for the branch by adding 26
817
+ focused coverage tests under `tests/kernel/`, `tests/charter/`, and
818
+ `tests/core/test_paths_coverage_supplements.py`.
819
+ - Repaired dead links to the deleted `kitty-specs/_drafts/` directory in the
820
+ 3.2.x deferral ADR and the mission spec after the pre-PR cleanup pass.
821
+
822
+ ## [3.2.0rc6] - 2026-05-11
823
+
824
+ 3.2.0rc6 includes the post-rc5 TeamSpace migration enforcement and dry-run
825
+ compatibility fixes needed before publishing the next TeamSpace-ready CLI
826
+ candidate.
827
+
828
+ ### Changed
829
+
830
+ - Surface pending TeamSpace mission-state migration during `spec-kitty upgrade`
831
+ and require a clean migration before hosted TeamSpace connection flows.
832
+ - Allow the release compatibility gate to prove SaaS-supported dependency
833
+ versions when the candidate CLI declares a compatible range instead of an
834
+ exact pin.
835
+
836
+ ### Fixed
837
+
838
+ - Render user-friendly TeamSpace migration gate failures when mission-state
839
+ repair raises unexpected payload or filesystem errors.
840
+ - Preserve SaaS-disabled sync opt-in behavior while still enforcing
841
+ mission-state readiness for hosted sync paths.
842
+ - Synthesize historical approval evidence during TeamSpace dry-run conversion
843
+ so approved/done mission-state rows can validate against the canonical event
844
+ contract.
845
+
846
+ ## [3.2.0rc5] - 2026-05-11
847
+
848
+ 3.2.0rc5 closes the remaining CLI-side TeamSpace migration readiness gaps found
849
+ while rechecking the historical mission-state migration parent issue.
850
+
851
+ ### Changed
852
+
853
+ - Documented the deterministic historical mission-state repair contract and
854
+ safe release sequencing used before any repository-wide repair is required.
855
+
856
+ ### Fixed
857
+
858
+ - Block TeamSpace dry-run/import envelope synthesis when audit findings still
859
+ contain TeamSpace blockers, so legacy mission-state rows cannot bypass the
860
+ readiness audit.
861
+ - Reject historical mission-state sync batches with legacy status fields before
862
+ network submission, preserving the local queue and returning remediation.
863
+
864
+ ## [3.2.0rc4] - 2026-05-11
865
+
866
+ 3.2.0rc4 tightens the TeamSpace release candidate against the published
867
+ `spec-kitty-events` 5.0.0 contract and includes the latest migration rehearsal
868
+ diagnostics.
869
+
870
+ ### Changed
871
+
872
+ - Tightened the CLI `spec-kitty-events` dependency to `>=5.0.0,<6.0.0` now
873
+ that the 5.0.0 TeamSpace canonical event contract is published to PyPI
874
+ (#978).
875
+ - Included the TeamSpace dry-run row mapping diagnostics merged after rc3 so
876
+ migration rehearsals can trace source rows to synthesized TeamSpace envelopes
877
+ (#1014).
878
+
879
+ ## [3.2.0rc3] - 2026-05-06
880
+
881
+ 3.2.0rc3 fixes a TeamSpace dry-run compatibility gap found during the
882
+ historical mission-state migration rehearsal.
883
+
884
+ ### Fixed
885
+
886
+ - Synthesized minimal repo evidence for historical done rows that only
887
+ preserved review evidence, allowing `doctor mission-state --teamspace-dry-run`
888
+ to validate those rows against the `spec-kitty-events` 5.0.0 payload contract
889
+ (#997).
890
+
891
+ ## [3.2.0rc2] - 2026-05-05
892
+
893
+ 3.2.0rc2 adds the TeamSpace mission-state repair and validation surface needed
894
+ before public TeamSpace import. The repair command is available now; the
895
+ TeamSpace dry-run path requires `spec-kitty-events>=5.0.0` once that contract
896
+ package is published.
897
+
898
+ ### Added
899
+
900
+ - Added deterministic `doctor mission-state --fix` repair for historical
901
+ `kitty-specs/` state, including Git safety checks, migration manifests, legacy
902
+ key cleanup, typed-row quarantine, lane normalization, and production
903
+ `status.json` rematerialization (#980).
904
+ - Added `doctor mission-state --teamspace-dry-run` to synthesize canonical
905
+ TeamSpace envelopes in memory and validate them with the 5.0.0 event contract
906
+ when available (#980).
907
+ - Documented the distributed Git repair workflow for coordinated repository
908
+ migration before TeamSpace launch (#980).
909
+ - Added `doctor mission-state --include-fixtures` and the packaged
910
+ mission-state survey fixture pack used by the TeamSpace readiness audit
911
+ contract (#920, #922, #929).
912
+ - Added an opt-in `TeamSpace Mission-State Readiness` GitHub Actions workflow
913
+ that runs `doctor mission-state --audit --fail-on teamspace-blocker` and
914
+ uploads the JSON audit artifact (#920, #934).
915
+
916
+ ### Changed
917
+
918
+ - Aligned CLI sync emission for `WPStatusChanged` and `MissionClosed` with the
919
+ canonical TeamSpace event payload shape while keeping launch dry-run gated on
920
+ the published events contract (#980).
921
+ - `doctor mission-state --audit` JSON reports now expose TeamSpace blocker
922
+ counts, and `--fail-on teamspace-blocker` gates import/sync readiness
923
+ without requiring network access (#920, #934).
924
+
925
+ ## [3.2.0rc1] - 2026-05-05
926
+
927
+ 3.2.0rc1 is the first release candidate for the 3.2.0 line. It rolls up the
928
+ workflow stabilization work from the alpha series and the final release
929
+ confidence missions.
930
+
931
+ ### Fixed
932
+
933
+ - Hardened the mission status, review, and merge surfaces that block reliable
934
+ implement-review-retrospect loops, including stale review verdict handling,
935
+ finalized-board routing, canonical review feedback pointers, and first-class
936
+ retrospective synthesis paths.
937
+ - Fixed task-board progress semantics so done-only counts are no longer paired
938
+ with unlabeled weighted readiness percentages; JSON status output now exposes
939
+ explicit progress semantics and weighted readiness fields (#966).
940
+ - Added an installed dependency drift guard for shared packages so release and
941
+ review evidence fail when the active environment disagrees with `uv.lock` for
942
+ `spec-kitty-events` or `spec-kitty-tracker` (#848).
943
+ - Addressed final mission-review regressions around machine-facing contract
944
+ output, sync-control side effects, and the charter golden-path E2E assertion.
945
+
946
+ ### Release Validation
947
+
948
+ - Closed the stale ruff blocker after `uv run ruff check src tests` passed on
949
+ current `main` (#869).
950
+ - Re-ran final local release gates from fresh `origin/main`: dependency sync,
951
+ lock validation, installed shared-package drift guard, ruff, and the
952
+ contract/architectural/release pytest batch all passed.
953
+ - GitHub Actions on the release candidate base commit passed `CI Quality`,
954
+ `ci-windows`, and `Protect Main Branch`.
955
+
956
+ ### Known Limitations
957
+
958
+ - The broad strict mypy gate remains tracked for follow-up in #971 and is not a
959
+ blocking gate for this release candidate.
960
+ - Hosted sync drain reliability has a known SaaS-sync limitation tracked in
961
+ #889; do not treat this release candidate as proof of full hosted drain
962
+ reliability until that issue is fixed.
963
+
964
+ ## [3.2.0a10] - 2026-05-04
965
+
966
+ 3.2.0a10 is a prerelease that stabilizes the implement-review-retrospect
967
+ control loop after the 3.2.0 release-blocker triage.
968
+
969
+ ### Fixed
970
+
971
+ - Rejection transitions from `in_review` now derive or require structured
972
+ rejected review results before mutating task state, closing the gap where
973
+ reviewer feedback could fail without a durable review result (#960).
974
+ - Review feedback pointers are canonicalized to `review-cycle://...` URIs and
975
+ legacy `feedback://` references are normalized or resolved with a warning,
976
+ preserving focused fix-mode context across rejection cycles (#962).
977
+ - Written `review-cycle-N.md` artifacts now include required YAML frontmatter
978
+ before they can be referenced, and invalid review artifacts fail closed
979
+ instead of leaving dangling status pointers (#963).
980
+ - `spec-kitty next` now treats finalized task boards and work-package lane
981
+ state as authoritative in query mode without bypassing mutating runtime
982
+ composition or retrospective terminus handling (#961).
983
+ - Completed missions now have a usable `agent retrospect synthesize` path when
984
+ `retrospective.yaml` is missing, with JSON output that distinguishes created,
985
+ synthesized, insufficient-artifacts, and mission-not-found outcomes (#965).
986
+
987
+ ### Internal
988
+
989
+ - Added targeted regression coverage for the shared review-cycle domain,
990
+ rejection transitions, canonical feedback resolution, finalized routing,
991
+ retrospective synthesis, and the focused implement-review-retrospect smoke
992
+ path.
993
+
994
+ ## [3.2.0a9] - 2026-05-03
995
+
996
+ 3.2.0a9 is a prerelease that adds mission-state audit diagnostics and hardens
997
+ the 3.2.0 workflow reliability path for implementation, review, merge, and
998
+ release-blocker triage.
999
+
1000
+ ### Added
1001
+
1002
+ - Added a read-only mission-state audit engine for inspecting mission status,
1003
+ work package state, review artifacts, and lifecycle consistency without
1004
+ mutating project state.
1005
+ - Added reliability fixture coverage for branch, mission, review prompt, and
1006
+ sync workflows used by the 3.2.0 release-blocker tranche.
1007
+
1008
+ ### Fixed
1009
+
1010
+ - Implementation start is now idempotent across planned, claimed, and
1011
+ in-progress task states, preventing duplicate or inconsistent lifecycle
1012
+ transitions (#946).
1013
+ - Merge preflight now refreshes the target branch tracking ref before enforcing
1014
+ target-branch synchronization, so stale local `origin/main` state cannot
1015
+ allow an unsafe merge (#959).
1016
+ - Merge, review prompt, worktree ownership, sync finalization, and review
1017
+ artifact consistency checks now have tighter diagnostics and regression
1018
+ coverage for the 3.2.0 workflow reliability tranche (#959).
1019
+ - Command JSON output now avoids leaking non-serializable status event mocks in
1020
+ covered move-task paths, preserving strict JSON command contracts.
1021
+
1022
+ ### Internal
1023
+
1024
+ - Recorded the atomic work-package start lifecycle ADR and expanded regression
1025
+ coverage around status persistence, bootstrap seeding, merge preflight, and
1026
+ test sync isolation.
1027
+ - Restored CI release confidence by covering the previously failing
1028
+ `fast-tests-core-misc`, `integration-tests-merge`, `integration-tests-cli`,
1029
+ and `diff-coverage` gates.
1030
+
1031
+ ## [3.2.0a8] - 2026-05-01
1032
+
1033
+ 3.2.0a8 is a prerelease that hardens direct SaaS sync ingress around the
1034
+ Private Teamspace boundary. CLI sync side effects now resolve a canonical
1035
+ Private Teamspace target, rehydrate session membership once when needed, and
1036
+ skip direct ingress with a diagnostic instead of falling back to a shared team.
1037
+
1038
+ ### Fixed
1039
+
1040
+ - Direct sync ingress for `/api/v1/events/batch/` and `/api/v1/ws-token` now
1041
+ uses a strict Private Teamspace resolver and refuses shared-team fallbacks
1042
+ from stale `default_team_id`, `teams[0]`, or websocket state (#943).
1043
+ - Auth refresh and session rehydration now update team membership from
1044
+ `/api/v1/me`, recomputing `default_team_id` from the refreshed private team
1045
+ list instead of preserving stale shared defaults (#943).
1046
+ - `--json` command stdout remains parseable when SaaS sync cannot connect or
1047
+ cannot resolve a Private Teamspace; sync diagnostics route to stderr or
1048
+ structured logs rather than contaminating stdout (#943).
1049
+
1050
+ ### Internal
1051
+
1052
+ - Added strict resolver, sync call-site, websocket, offline queue, and
1053
+ strict-JSON regression coverage for the Private Teamspace ingress boundary.
1054
+ - Added mission review evidence for
1055
+ `private-teamspace-ingress-safeguards-01KQH03Y`.
1056
+
1057
+ ## [3.2.0a7] - 2026-05-01
1058
+
1059
+ 3.2.0a7 is a focused prerelease that bounds WebSocket sync startup and
1060
+ shutdown behavior. Short-lived agent commands now fail over to batch sync
1061
+ instead of hanging indefinitely when a local sync socket accepts the
1062
+ connection but never emits the initial snapshot.
1063
+
1064
+ ### Fixed
1065
+
1066
+ - WebSocket sync startup now has bounded open, initial snapshot, and close
1067
+ deadlines so `spec-kitty agent mission setup-plan` and other short-lived
1068
+ commands degrade to batch sync instead of blocking forever on a stalled
1069
+ sync socket (#936).
1070
+
1071
+ ### Internal
1072
+
1073
+ - Added regression coverage for a WebSocket connection that never sends the
1074
+ initial snapshot and for shutdown paths where the close handshake stalls.
1075
+ - Aligned existing Bandit suppressions in touched sync/readiness callsites so
1076
+ local and CI security scans recognize the intended safe dynamic SQL and
1077
+ localhost URL patterns.
1078
+
1079
+ ## [3.2.0a6] - 2026-04-30
1080
+
1081
+ 3.2.0a6 is a prerelease hardening sweep that restores the documented
1082
+ fresh-project golden path (`init` → charter `setup`/`generate`/
1083
+ `synthesize` → `next`), locks in strict JSON for covered `--json` commands
1084
+ under any SaaS state, fixes agent identity parsing and review-cycle
1085
+ accounting, adds paired profile-invocation lifecycle observability for
1086
+ `spec-kitty next`, and tightens merge/review/status recovery paths. The
1087
+ release introduces the new top-level `spec-kitty review` mission-review
1088
+ command and no new top-level runtime dependencies.
1089
+
1090
+ ### Fixed
1091
+
1092
+ - `charter bundle validate --json` now fail-closes on incomplete Charter
1093
+ synthesis state while preserving strict JSON stdout. Sidecar-only bundles,
1094
+ manifest-only bundles, incompatible bundle versions, missing provenance
1095
+ sidecars, dangling sidecar references, and synthesis manifest integrity
1096
+ failures all produce parseable failure envelopes with actionable
1097
+ `synthesis_state` details (#914, closes the final Phase 7 release gap for
1098
+ #469/#515).
1099
+ - Stamp `schema_version` and a `schema_capabilities` block in
1100
+ `.kittify/metadata.yaml` on `spec-kitty init` so a fresh project no
1101
+ longer requires hand-edits before subsequent CLI commands; existing
1102
+ schema fields are preserved (additive, idempotent) (#840, WP01).
1103
+ - Strict JSON envelope contract for covered `--json` commands: stdout is
1104
+ parseable by `json.loads` regardless of SaaS sync state (disabled,
1105
+ unauthorized, network-failed, success); sync/auth diagnostics route to
1106
+ stderr or nest inside the envelope (#842, WP02).
1107
+ - `WPMetadata.resolved_agent()` parses 4-segment colon-delimited agent
1108
+ strings (`tool:model:profile:role`) and preserves every supplied field
1109
+ through implement and review prompt rendering, with deterministic
1110
+ fallback for partial strings (#833, WP03).
1111
+ - Review-cycle counter advances exactly once per genuine reviewer
1112
+ rejection; reclaim/regenerate of an `implement` prompt no longer
1113
+ inflates the counter or writes a spurious `review-cycle-N.md`
1114
+ artifact (#676, WP04).
1115
+ - `spec-kitty next` writes paired `started`/`completed` profile-invocation
1116
+ lifecycle records keyed to the canonical mission step + action it
1117
+ issued, observable via `spec-kitty doctor invocation-pairing` (#843,
1118
+ WP05).
1119
+ - `charter generate` auto-tracks the produced `charter.md` and ensures
1120
+ the required `.gitignore` entries exist; `charter bundle validate`
1121
+ succeeds immediately afterwards with no operator `git add` between
1122
+ the two commands. Outside a git working tree, `generate` fails fast
1123
+ with an actionable error that names `git init` as the remediation
1124
+ (#841, WP06).
1125
+ - `charter synthesize` succeeds on a fresh project via the public CLI
1126
+ with no hand-seeded `.kittify/doctrine/`; the bounded fresh-project
1127
+ path materialises a minimal doctrine tree (`PROVENANCE.md`) so the
1128
+ shipped doctrine layer can supply content (#839, WP06).
1129
+ - `spec-kitty merge --abort` now clears the global merge lock, removes
1130
+ legacy merge-state files, aborts an in-progress Git merge when present,
1131
+ and remains idempotent when no merge is active (#903).
1132
+ - Approved/done work packages with stale `verdict: rejected` review
1133
+ artifacts are now surfaced across status views, including
1134
+ `spec-kitty agent tasks status` and `show_kanban_status()`. Review
1135
+ artifact lookup follows the real `tasks/<WP-slug>/review-cycle-N.md`
1136
+ layout, and `in_review` work packages now warn when reviewer movement
1137
+ stalls beyond the configured threshold (#904, #909).
1138
+ - Review lane-guard failures now name the planning branch and include a
1139
+ concrete `git show <planning-branch>:<path>` command for the first
1140
+ contaminated path, instead of a placeholder path (#905).
1141
+ - Work-package review definition-of-done coverage now includes real error
1142
+ path and artifact-deletion regressions, not only happy-path review
1143
+ behavior (#906).
1144
+ - Broad `except Exception` / BLE001 suppressions in touched runtime paths
1145
+ were audited and now carry inline justification where fail-open behavior
1146
+ is intentional (#907).
1147
+ - `spec-kitty review <mission>` is now a first-class mission-review CLI
1148
+ command with structured status/exit behavior for post-merge mission
1149
+ fidelity checks (#908).
1150
+
1151
+ ### Internal
1152
+
1153
+ - Consolidated golden-path E2E (`tests/e2e/test_charter_epic_golden_path.py`)
1154
+ rewritten to drive the fresh-project chain through the public CLI
1155
+ only — no hand seeding of `.kittify/doctrine/`, no edits to
1156
+ `.kittify/metadata.yaml`, no manual `git add` of charter artifacts
1157
+ between `generate` and `bundle validate`. Runs in well under the
1158
+ 120-second NFR-007 budget. Also exercises strict JSON parsability of
1159
+ `mission branch-context --json` (WP02 spot-check) and the `started`
1160
+ lifecycle record (WP05 spot-check) (WP07).
1161
+ - Governance setup docs (`docs/how-to/setup-governance.md`) note that
1162
+ `charter generate` now auto-tracks `charter.md`, removing any
1163
+ expectation that operators run `git add` between `generate` and
1164
+ `bundle validate` (WP07).
1165
+ - Added regression coverage for merge abort cleanup, stale rejected review
1166
+ artifacts, stalled in-review work packages, lane-guard remediation text,
1167
+ mission-review command behavior, review DoD deletion/error cases, and
1168
+ agent-shard coverage for status warning paths (#903-#909).
1169
+
1170
+ ### Tranche-2 acceptance pass (SC-001..SC-008)
1171
+
1172
+ - **SC-001 (Fresh-path completion)** — `tests/e2e/test_charter_epic_golden_path.py::test_charter_epic_golden_path` walks `init → charter interview → generate → bundle validate → synthesize → mission create → setup-plan → finalize-tasks → next` against a fresh project with no `.kittify/` hand-edits and no `git add` of charter artifacts. Passes locally in <20s.
1173
+ - **SC-002 (JSON parsability)** — `tests/integration/test_json_envelope_strict.py` (WP02) covers the SaaS state matrix; the consolidated E2E spot-checks `mission branch-context --json` via `json.loads(stdout)`.
1174
+ - **SC-003 (Identity preservation rate)** — WP03 unit + integration tests cover colon arities 1–4 and assert `model`/`profile_id`/`role` in rendered prompts.
1175
+ - **SC-004 (Review-cycle precision)** — WP04 tests assert the counter is unchanged across ≥3 reclaim/regenerate runs and advances by exactly 1 on a real rejection.
1176
+ - **SC-005 (Lifecycle observability)** — `tests/integration/test_next_lifecycle_records.py` (WP05) covers ≥5 issuances with mid-cycle orphan; the consolidated E2E asserts at least one `started` record after `next` issues an action and that the `canonical_action_id` matches the issued step id.
1177
+ - **SC-006 (Charter parity rate)** — `tests/specify_cli/cli/commands/test_charter_generate_autotrack.py` (WP06) covers the auto-track + non-git fail-fast contract; the consolidated E2E exercises `generate → bundle validate` with no intervening git ops.
1178
+ - **SC-007 (Documentation/CLI agreement)** — `docs/how-to/setup-governance.md` updated; no documented governance-setup flow contains a `git add charter.md` step between `charter generate` and `charter bundle validate`.
1179
+ - **SC-008 (Release-surface discipline)** — Diff inventory: one new top-level public CLI command, `spec-kitty review`, added for mission-review fidelity checks (#908); one new `spec-kitty doctor invocation-pairing` subcommand under the existing `doctor` group for lifecycle observability; zero new top-level runtime dependencies in `pyproject.toml` `[project.dependencies]`.
1180
+
1181
+ ## [3.2.0a5] - 2026-04-27
1182
+
1183
+ ### Fixed
1184
+
1185
+ - CLI auth now consumes the server Tranche 2 contract end to end: logout posts refresh tokens to `/oauth/revoke`, local credential cleanup failures are reported truthfully, refresh handles benign 409 replay without resubmitting a spent token, and `auth doctor --server` checks `/api/v1/session-status` with safe re-authentication guidance (#902).
1186
+ - Fix `spec-kitty upgrade` silently leaving projects in PROJECT_MIGRATION_NEEDED state by stamping `schema_version` after metadata save (#705, WP01).
1187
+ - `spec-kitty init` in a non-git directory now prints an actionable "run `git init`" message (#636, WP05).
1188
+ - Suppress misleading "shutdown / final-sync" red error lines after a successful `spec-kitty agent mission create --json` payload (#735, WP06).
1189
+ - Deduplicate "Not authenticated, skipping sync" / "token refresh failed" diagnostics to at most once per CLI invocation (#717, WP06).
1190
+ - Fix `read_events()` raising `KeyError('wp_id')` on `DecisionPointOpened` / `DecisionPointResolved` events that share `status.events.jsonl` with lane-transition events. Restores `finalize-tasks` / `materialize` / dashboard for any mission that uses the Decision Moment Protocol (#830, WP08).
1191
+
1192
+ ### Changed
1193
+
1194
+ - Loosen `.python-version` from a hard `3.13` pin to `3.11` (the floor declared by `pyproject.toml`) and restore `mypy --strict` cleanliness on `mission_step_contracts/executor.py` (#805, WP03).
1195
+
1196
+ ### Removed
1197
+
1198
+ - Retire the deprecated `/spec-kitty.checklist` command surface from every supported agent's rendered output. The canonical requirements checklist at `kitty-specs/<mission>/checklists/requirements.md` is unaffected (#815, supersedes #635, WP04).
1199
+
1200
+ ### Internal
1201
+
1202
+ - Add regression tests confirming `--feature` aliases stay hidden from `--help` while remaining accepted (#790, WP07).
1203
+ - Add regression test confirming `spec-kitty agent decision` command shape stays consistent across docs / help / skill snapshots (#774, WP07).
1204
+
1205
+ ### Added
1206
+
1207
+ - **Frontend Freddy agent profile** — browser-side implementer specialising in HTML/CSS/JavaScript/TypeScript, component frameworks (React, Vue, Svelte), WCAG 2.1 accessibility, Core Web Vitals performance, and frontend testing (vitest, Playwright). Specialises from `implementer-ivan`. Self-review protocol enforces lint, type-check, unit/component tests, e2e smoke, axe accessibility gate, and bundle budget. Avoidance boundary explicitly names Node Norris's server-side domain.
1208
+ - **Node Norris agent profile** — server-side Node.js implementer specialising in HTTP APIs (Express/Fastify/NestJS), async/Promise discipline, streaming, npm security (`npm audit`), and integration testing (supertest). Specialises from `implementer-ivan`. Avoidance boundary explicitly names Frontend Freddy's browser-rendering domain. The two profiles are mutually exclusive by design.
1209
+ - **BDD paradigm** (`behaviour-driven-development`) — encodes BDD as a three-phase collaboration practice: Discovery (Three Amigos conversations), Formulation (Given/When/Then specifications), and Automation (executable living documentation). References `DIRECTIVE_034` and `DIRECTIVE_037`.
1210
+ - **BDD Scenario Lifecycle procedure** (`bdd-scenario-lifecycle`) — covers the Formulation → Automation → Maintenance phases that follow an Example Mapping Workshop. Toolchain-agnostic (Cucumber-JVM, Cucumber-JS, Behave, SpecFlow). Encodes four anti-patterns: imperative Gherkin, rubber-stamp scenarios, shared mutable state, and orphaned step definitions.
1211
+ - **New tactics:**
1212
+ - `reference-architectural-patterns` — structured selection of named reference patterns (Layered, Hexagonal, Event-Driven, CQRS, Microservices, Modular Monolith) scored against coupling, scalability, and operational complexity constraints.
1213
+ - `development-bdd` — architecture-level BDD tactic for expressing observable behavioral contracts at system boundaries before implementation; distinct from the existing `behavior-driven-development` technique tactic.
1214
+ - `bug-fixing-checklist` — language-agnostic test-first defect resolution: write a reproduction test before touching production code.
1215
+ - `test-readability-clarity-check` — dual-perspective reconstruction check: read only tests, reconstruct system understanding, compare against spec to surface documentation gaps.
1216
+ - `code-documentation-analysis` — brownfield boundary discovery by extracting and clustering domain terminology from code and documentation artifacts. Contributes foundational analysis tactics toward the brownfield investigation skill described in [#666](https://github.com/Priivacy-ai/spec-kitty/issues/666).
1217
+ - `terminology-extraction-mapping` — systematic extraction and relationship mapping of domain terms across multiple sources to produce a maintainable glossary. Complementary artifact to the bounded-context linguistic discovery approach targeted by [#666](https://github.com/Priivacy-ai/spec-kitty/issues/666).
1218
+ - **Tactic directory normalization** — shipped tactics reorganised into four category subdirectories: `testing/` (15 tactics), `analysis/` (14), `communication/` (7), `architecture/` (14). Cross-cutting tactics remain in the `shipped/` root. The existing `rglob` loader requires no changes.
1219
+ - **`tasks-finalize` command skill** — added to `CANONICAL_COMMANDS` in the agent skills pipeline and deployed to `.agents/skills/spec-kitty.tasks-finalize/`. Closes the gap where this command was missing from Codex/Vibe skill packages.
1220
+
1221
+ ### Changed
1222
+
1223
+ - **Profile enrichment** — four existing profiles updated with additive tactic and paradigm references:
1224
+ - `implementer-ivan`: `bug-fixing-checklist` tactic reference (propagates to all specialist profiles via `resolve_profile()` union merge).
1225
+ - `reviewer-renata`: `test-readability-clarity-check` and `bdd-scenario-lifecycle` tactic references; `behaviour-driven-development` paradigm in context sources.
1226
+ - `architect-alphonso`: `development-bdd` tactic reference; BDD paradigm, example-mapping-workshop, and bdd-scenario-lifecycle in additional context sources.
1227
+ - `java-jenny`: `behavior-driven-development` and `bdd-scenario-lifecycle` tactic references; `bdd-scenarios` self-review step (Cucumber-JVM + Serenity BDD gate).
1228
+ - **`behavior-driven-development` tactic enriched** — extended `notes` with a toolchain landscape section (Cucumber family, Playwright, Selenium, Serenity BDD, custom DSLs; source: `patterns.sddevelopment.be/primers/toolchain-and-automation/bdd`); three new `failure_modes` (rubber-stamp scenarios, shared mutable state between scenarios, orphaned step definitions); cross-references to the new BDD paradigm and procedure.
1229
+ - **`tactic-references` union-merged in `resolve_profile()`** — `tactic-references` added to `_LIST_FIELDS` in `src/doctrine/agent_profiles/repository.py`. Specialist profiles now inherit base-profile tactic references via `_union_merge` at resolution time rather than overriding them.
1230
+ - **Tactic compliance test extended** — `test_tactic_compliance.py` `ARTIFACT_DIRS` now includes `procedure` and `paradigm` types, enabling cross-type reference validation for tactics that reference procedures or paradigms.
1231
+ - **Shared package boundary cutover** (mission `shared-package-boundary-cutover-01KQ22DS`) — `spec-kitty-runtime` is no longer a dependency of `spec-kitty-cli`. The CLI now owns its own runtime internally under `src/specify_cli/next/_internal_runtime/`; `spec-kitty next` works from a clean install of `spec-kitty-cli` alone. `spec-kitty-events` and `spec-kitty-tracker` are external PyPI dependencies consumed via their public import surfaces (`spec_kitty_events`, `spec_kitty_tracker`). The vendored events tree under `src/specify_cli/spec_kitty_events/` has been removed (~23 kLoC). Developers who relied on editable cross-package overrides should consult [`docs/development/local-overrides.md`](docs/development/local-overrides.md); operators upgrading from a pre-cutover release should consult [`docs/migration/shared-package-boundary-cutover.md`](docs/migration/shared-package-boundary-cutover.md). Decision rationale recorded in [ADR 2026-04-25-1](architecture/2.x/adr/2026-04-25-1-shared-package-boundary.md).
1232
+
1233
+ ### Removed
1234
+
1235
+ - **`constraints.txt`** — the file existed solely to paper over a transitive pin conflict with the retired `spec-kitty-runtime` package and is no longer needed.
1236
+
1237
+ ### Fixed
1238
+
1239
+ - `spec-kitty agent config list/status` now checks global command roots for slash-command agents instead of reporting missing project-local command directories after `init`.
1240
+ - `spec-kitty agent config add/sync --create-missing` no longer recreates retired project-local command directories for globally managed slash-command agents.
1241
+ - `spec-kitty agent config remove/sync` now removes only the managed command surface for project-local agent directories, preserving unrelated files such as `.github/workflows/`.
1242
+
1243
+ ### Added — Documentation mission composition rewrite (#502, #461, Phase 6 WP6.4)
1244
+
1245
+ - Documentation mission now runs on the StepContractExecutor composition substrate, mirroring research (#504) and software-dev (#503). The runtime resolves the new composed step contracts ahead of the legacy `mission.yaml` workflow via the existing `_resolve_runtime_template_in_root` precedence — no loader changes were required.
1246
+ - New runtime sidecar templates: `src/specify_cli/missions/documentation/mission-runtime.yaml` and `src/doctrine/missions/documentation/mission-runtime.yaml`.
1247
+ - Six shipped step contracts under `src/doctrine/mission_step_contracts/shipped/documentation-{discover,audit,design,generate,validate,publish}.step-contract.yaml`.
1248
+ - Six action doctrine bundles under `src/doctrine/missions/documentation/actions/{discover,audit,design,generate,validate,publish}/` (governance guidelines + directive/tactic indices).
1249
+ - DRG action nodes and edges for `action:documentation/{discover,audit,design,generate,validate,publish}` in `src/doctrine/graph.yaml`.
1250
+ - Composition wiring in `src/specify_cli/next/runtime_bridge.py`: `_COMPOSED_ACTIONS_BY_MISSION["documentation"]` and a fail-closed guard branch in `_check_composed_action_guard()` raising a structured error for unknown documentation actions. `src/specify_cli/mission_step_contracts/executor.py` adds six `_ACTION_PROFILE_DEFAULTS` entries (`researcher-robbie` for discover/audit, `architect-alphonso` for design, `implementer-ivan` for generate, `reviewer-renata` for validate/publish).
1251
+ - Real-runtime integration walk at `tests/integration/test_documentation_runtime_walk.py` proving SC-001 / SC-003 / SC-004 from a freshly initialized temp repo.
1252
+
1253
+ #### Backward compatibility
1254
+
1255
+ - The legacy `src/specify_cli/missions/documentation/mission.yaml` and `src/doctrine/missions/documentation/mission.yaml` files remain on disk for backward reference. Existing documentation-mission projects that authored against the legacy workflow continue to work; runtime template resolution prefers the new `mission-runtime.yaml` ahead of the legacy file via the existing precedence in `_resolve_runtime_template_in_root` (no loader changes in this PR).
1256
+
1257
+ ### Added
1258
+
1259
+ - **Upgrade compatibility planner** — `spec-kitty upgrade` now separates CLI
1260
+ update guidance from current-project schema compatibility. New flags
1261
+ `--cli`, `--project`, `--yes`, and `--no-nag` support CLI-only guidance,
1262
+ project-only migrations, non-interactive confirmation, and explicit nag
1263
+ suppression. `spec-kitty upgrade --dry-run --json` emits the stable
1264
+ compatibility-plan contract for automation.
1265
+ - **Host-surface parity matrix** at `docs/host-surface-parity.md` — authoritative record of how each of the 15 supported host surfaces teaches the advise/ask/do governance-injection contract. Closes the remaining `#496` host-surface breadth rollout.
1266
+ - **Mode of work runtime derivation** — every `advise`, `ask`, `do` invocation now records its `mode_of_work` (`advisory`, `task_execution`, `mission_step`, `query`) on the `started` event. Derivation is from the CLI entry command.
1267
+ - **Correlation links** — `spec-kitty profile-invocation complete` accepts `--artifact <path>` (repeatable) and `--commit <sha>` (singular); each appends an additive event to the invocation JSONL for single-file request→artifact/commit correlation.
1268
+ - **SaaS read-model policy** at `src/specify_cli/invocation/projection_policy.py` — typed module mapping `(mode, event)` to projection rules. Documented in `docs/trail-model.md`.
1269
+ - **Tier 2 SaaS projection decision** — decisively documented as deferred in `docs/trail-model.md`. Tier 2 evidence stays local-only in 3.2.x.
1270
+ - **README Governance layer subsection** — entry point for operators discovering the advise/ask/do surface.
1271
+ - **Decision Moment Ledger (V1)** — new `spec-kitty agent decision` subgroup with five
1272
+ subcommands: `open`, `resolve`, `defer`, `cancel`, `verify`. Mints ULID `decision_id`s
1273
+ at interview ask-time, writes paper trail under `kitty-specs/<mission>/decisions/`
1274
+ (`index.json` + `DM-<id>.md`), and appends `DecisionPointOpened(interview)` /
1275
+ `DecisionPointResolved(interview)` events to `status.events.jsonl`. Local-only;
1276
+ no SaaS sync required.
1277
+ - **Charter integration** — `spec-kitty charter interview` now calls `decision open`
1278
+ before each question and the appropriate terminal command after each answer.
1279
+ `answers.yaml` behavior is unchanged.
1280
+ - **Specify + Plan template updates** — `specify.md` and `plan.md` source templates
1281
+ gain a Decision Moment Protocol section instructing the LLM to call decision
1282
+ subcommands at ask/resolution time and write `<!-- decision_id: <id> -->` anchors
1283
+ for deferred decisions.
1284
+ - **`decision verify` gate** — scans `spec.md` / `plan.md` for
1285
+ `[NEEDS CLARIFICATION: ...] <!-- decision_id: <id> -->` sentinels and
1286
+ cross-checks against the decisions index. Exits non-zero on drift
1287
+ (`DEFERRED_WITHOUT_MARKER`, `MARKER_WITHOUT_DECISION`, `STALE_MARKER`).
1288
+ - **Widen Mode (#758)** — `spec-kitty agent decision widen` + `resolve --from-widen`
1289
+ lifecycle. Writes `widen-pending.jsonl`, emits `DecisionPointWidened` events,
1290
+ integrates with charter/specify/plan widen affordances. Surfaces decision
1291
+ write-back errors explicitly instead of silently suppressing them.
1292
+
1293
+ ### Changed
1294
+
1295
+ - Project schema compatibility is now enforced by the centralized compat
1296
+ planner. Out-of-date CLI notices are passive and throttled; incompatible
1297
+ project schemas block unsafe commands with exit codes 4, 5, or 6 and exact
1298
+ remediation guidance.
1299
+ - `spec-kitty profile-invocation complete --evidence` is now mode-gated: rejected on `advisory` / `query` invocations with `InvalidModeForEvidenceError`. Rejection occurs before any write; the invocation stays open.
1300
+ - `_propagate_one` consults the new projection policy after the sync-gate and authentication lookup. Existing `task_execution` / `mission_step` projection behaviour is preserved exactly.
1301
+ - Dashboard user-visible wording: the mission selector, current-mission header, overview heading, analysis heading, and empty-state prompt now read "Mission Run" / "mission" instead of "Feature". Backend identifiers (CSS classes, HTML IDs, cookie keys, API route segments, JSON field names) are unchanged.
1302
+ - **`spec-kitty-events` bumped to `==4.0.0`** — vendored copy at
1303
+ `src/specify_cli/spec_kitty_events/` refreshed. Introduces
1304
+ `DecisionPointOpenedInterviewPayload`, `DecisionPointResolvedInterviewPayload`,
1305
+ `OriginSurface.PLANNING_INTERVIEW` (`origin_surface: planning_interview`),
1306
+ `OriginFlow` enum (values `specify`, `plan`), `DecisionPointWidened`, and
1307
+ `TerminalOutcome` enum.
1308
+ - **`[tool.uv.sources]`** redirects `spec-kitty-events` to `../spec-kitty-events/`
1309
+ in editable mode for monorepo development. Dev-only; ignored by pip / PyPI.
1310
+
1311
+ ### Deferred
1312
+
1313
+ - `spec-kitty explain` (issue #534) remains deferred to Phase 5 pending DRG glossary addressability (#499, #759).
1314
+
1315
+ ### Out of scope (tracked separately)
1316
+
1317
+ - SaaS sync projection for widened decisions — tracked in spec-kitty-saas#110, #111.
1318
+ - Tasks-phase interview support — future mission.
1319
+
1320
+ ### Migration notes
1321
+
1322
+ **No operator action required for routine upgrade.** The trail model is additive:
1323
+
1324
+ - Pre-mission invocation records (no `mode_of_work`) continue to accept `--evidence` and project under legacy `task_execution` rules.
1325
+ - Existing SaaS dashboards see no change for `task_execution` / `mission_step` traffic.
1326
+ - New advisory events now appear in the SaaS timeline as minimal entries without body — this is a deliberate behaviour change documented in the SaaS Read-Model Policy table.
1327
+
1328
+ ### Added (Phase 4 trail follow-on)
1329
+
1330
+ - `docs/trail-model.md`: Formal operator documentation for the Phase 4 trail contract,
1331
+ mode-of-work taxonomy, tier promotion rules, SaaS projection policy, intake positioning,
1332
+ and explain deferral (WP04).
1333
+ - "Governance context injection" section in `.agents/skills/spec-kitty.advise/SKILL.md`
1334
+ for Codex/Vibe hosts, enabling Tier 1 trail recording without host-side SaaS auth (WP03).
1335
+ - "Standalone invocations (outside missions)" section in
1336
+ `src/doctrine/skills/spec-kitty-runtime-next/SKILL.md` for Claude Code and gstack hosts,
1337
+ covering when to open an invocation record outside the mission workflow (WP04).
1338
+ - End-to-end invocation integration tests in
1339
+ `tests/specify_cli/invocation/test_invocation_e2e.py` covering Tier 1 JSONL write,
1340
+ complete-event append, local-only list read, and sync-gate suppression (WP05).
1341
+
1342
+ ### Fixed
1343
+
1344
+ - `propagator.py` (`_propagate_one`): Invocation events are now suppressed when
1345
+ `effective_sync_enabled = False`, even when the user is authenticated. Previously,
1346
+ sync-disabled checkouts could still emit SaaS events if a WebSocket client was
1347
+ connected (WP01).
1348
+ - `executor.complete_invocation` now calls `promote_to_evidence()` when the
1349
+ `--evidence` flag is supplied, enabling correct Tier 2 artifact promotion (WP03).
1350
+
1351
+ ### Changed
1352
+
1353
+ - Issue #496: Priority-surface slice complete in 3.2.x (Claude Code via
1354
+ `spec-kitty-runtime-next` doctrine skill, Codex CLI via SKILL.md governance context
1355
+ injection). Remaining 9 surfaces tracked in #496 for a follow-on patch or Phase 5.
1356
+ - Issue #534: `spec-kitty explain` explicitly deferred to Phase 5 (requires DRG
1357
+ glossary addressability, issue #499). A partial implementation without glossary
1358
+ citations would be misleading.
1359
+
1360
+ ## [3.2.0a4] - 2026-04-21
1361
+
1362
+ ### Added
1363
+
1364
+ - **Mutation-aware test suites** — kill-the-survivor passes for `doctrine.resolver`, `doctrine.agent_profiles`, `doctrine.missions`, `doctrine.shared`, and `specify_cli.compat.registry`. Achieves 75–85 % kill rates per module; residuals documented as trampoline-equivalent, unloadable, or functionally equivalent in `docs/development/mutation-testing-findings.md`.
1365
+ - `_OPTIONAL_KEYS` / `_ALL_KNOWN_KEYS` constants in `specify_cli.compat.registry._validate_entry` — unknown YAML keys now raise `RegistrySchemaError` before `ShimEntry(**entry)` can raise `TypeError`.
1366
+ - `model_dump(mode="json")` on WP frontmatter serialization in `finalize_tasks` — prevents `Path` objects from reaching YAML serialization.
1367
+
1368
+ ### Added
1369
+
1370
+ ## [3.2.0a3] - 2026-04-21
1371
+
1372
+ ### Fixed
1373
+
1374
+ - Release publish no longer hard-fails when the private `SPEC_KITTY_SAAS_READ_TOKEN` secret is absent. The pipeline still enforces runtime drift and exact wheel installability, and it runs the SaaS consumer-contract check whenever the private compatibility reference can actually be fetched.
1375
+
1376
+ ## [3.2.0a2] - 2026-04-21
1377
+
1378
+ ### Changed
1379
+
1380
+ - `spec-kitty-runtime` is now pinned to `0.4.4`, matching the corrected published runtime line rather than the broken `0.4.3` metadata.
1381
+ - Release readiness and tag-time publish pipelines now verify shared-package drift, candidate-wheel installability with plain `pip`, and candidate compatibility against the SaaS consumer contract before publish.
1382
+
1383
+ ### Removed
1384
+
1385
+ - Temporary `tool.uv.override-dependencies` masking for `spec-kitty-events`. Release validation now requires the published runtime metadata to resolve cleanly without local overrides.
1386
+
1387
+ ## [3.2.0a1] - 2026-04-20
1388
+
1389
+ ### Added
1390
+
1391
+ - **Mutation testing** — `mutmut` 3.5.0 added to `[project.optional-dependencies.test]` and configured in `[tool.mutmut]` as a **local-only** quality gate. Includes a curated doctrine set: `tactic:mutation-testing-workflow`, `styleguide:mutation-aware-test-design`, and language-specific toolguides for Python (`mutmut`) and TypeScript (`stryker`), all anchored to `DIRECTIVE_034` in the DRG graph. ADR `2026-04-20-1-mutation-testing-as-local-only-quality-gate.md` records the decision, the sandbox constraints, and the two-marker exclusion taxonomy.
1392
+ - **`non_sandbox` / `flaky` pytest markers** — registered in `pytest.ini` and `pyproject.toml[tool.pytest.ini_options].markers`. Per-file `--ignore=` entries for sandbox-incompatible tests have been migrated to module-level `pytestmark` declarations; `[tool.mutmut].pytest_add_cli_args` now deselects via `-m "not non_sandbox and not flaky ..."`. Directory-level ignores remain only where tests fail during pytest *collection* (import errors that markers cannot intercept). 1 test is currently marked `flaky` as debt to be root-caused.
1393
+ - **`docs/how-to/run-mutation-tests.md`** — Contributor how-to covering local `mutmut run` invocation, the kill-the-survivor workflow, equivalent-mutant suppression, and the `non_sandbox` / `flaky` marker taxonomy.
1394
+ - Charter synthesizer now has a real harness-owned operator path: the new generated-artifact adapter reads agent-authored YAML from `.kittify/charter/generated/` and promotes validated doctrine into the live `.kittify/doctrine/` tree.
1395
+ - `spec-kitty charter resynthesize --list-topics` now lists valid project-artifact selectors, DRG URNs, and interview-section selectors, including hyphenated aliases for section names.
1396
+ - `spec-kitty charter status --provenance` now reports synthesis generation state, evidence summary, manifest health, and per-artifact provenance visibility alongside the older charter sync surface.
1397
+ - ADR `2026-04-19-6-harness-owned-generated-artifact-charter-handoff.md` now records the host-side charter handoff contract: exact file layout, identity rules, and CLI sequence.
1398
+ - **`architecture/2.x/06_migration_and_shim_rules.md`** — Authoritative compatibility shim lifecycle
1399
+ rulebook covering 4 rule families: schema/version gating, bundle/runtime migration authoring contract,
1400
+ shim lifecycle (with copy-paste template), and removal plans/registry contract. Required reading for
1401
+ all future extraction missions (#615).
1402
+ - **`architecture/2.x/shim-registry.yaml`** — Machine-readable registry of all known compatibility
1403
+ shims. Starts empty (zero-shim baseline confirmed at mission-615 start). Future shims must be
1404
+ registered here before merging. Validated by `spec-kitty doctor shim-registry` (#615).
1405
+ - **`spec-kitty doctor shim-registry`** — New CI enforcement subcommand that classifies each
1406
+ registered shim as `pending`, `overdue`, `grandfathered`, or `removed`. Exits 1 when any shim
1407
+ is overdue; exits 2 on configuration error. Supports `--json` for machine-readable CI output (#615).
1408
+
1409
+ ### Changed
1410
+
1411
+ - `spec-kitty charter synthesize` and `spec-kitty charter resynthesize` now default to the generated-artifact adapter. `--adapter fixture` remains available only for deterministic offline regression runs.
1412
+ - `spec-kitty charter synthesize --dry-run` is now a real stage-and-validate pass: it writes the staged artifact set, runs project DRG validation and neutrality gating, and only skips the final promote step.
1413
+ - Shared contract-library pins now align with the current released pair consumed across the CLI and SaaS surfaces: `spec-kitty-events==3.2.0` and `spec-kitty-tracker==0.4.2`.
1414
+ - Release pipeline now generates and attaches a CycloneDX SBOM (`sbom.cdx.json`) to every GitHub Release. The SBOM is an environment-snapshot of the fully resolved dependency tree at build time, making it straightforward for enterprise users to ingest the inventory into tools like Dependency-Track for continuous CVE monitoring without rescanning the package themselves.
1415
+
1416
+ ### Fixed
1417
+
1418
+ - Directive provenance now records canonical URNs (`directive:PROJECT_<NNN>`) instead of slug-based placeholders, which restores correct directive filenames, provenance reload, and `directive:PROJECT_<NNN>` resynthesis.
1419
+ - Bounded resynthesis now preserves evidence inputs end-to-end, so regenerated provenance entries keep the correct `evidence_bundle_hash` and `corpus_snapshot_id`.
1420
+ - Generated-artifact synthesis errors now point to the exact expected file path and exact expected artifact id, which makes harness handoff mistakes easier to diagnose.
1421
+ - Charter neutrality lint now scans mission `templates/` directories in addition to `command-templates/`, so banned terms in generic mission prompt files are caught by the default repo scan (#653 tripwire).
1422
+ - Bump `requests` floor to `>=2.33.0` (CVE-2026-25645).
1423
+ - Bump `pytest` floor to `>=9.0.3` (CVE-2025-71176).
1424
+ - Pin `pygments>=2.20.0` explicitly to resolve CVE-2026-4539 in the transitive dependency pulled in via `rich`.
1425
+ - `auth refresh` now treats `HTTP 401` responses with `invalid_grant` or `session_invalid` error codes identically to `HTTP 400`, and clears the locally stored session on server-side refresh rejection so `auth status` no longer reports stale credentials as authenticated.
1426
+
1427
+ ### Removed
1428
+
1429
+ - **`specify_cli.charter` compatibility shim** — The re-export shim at `src/specify_cli/charter/` has been
1430
+ removed. External code importing `specify_cli.charter.*` must migrate to the canonical package:
1431
+ `from charter import <name>`. See
1432
+ [architecture/2.x/05_ownership_map.md](architecture/2.x/05_ownership_map.md) for the full
1433
+ charter slice entry and the reference exemplar pattern. Closes #611.
1434
+
1435
+ ## [3.1.8] - 2026-04-29
1436
+
1437
+ ### Fixed
1438
+
1439
+ - Dashboard feature polling now tolerates `/api/features` error responses and
1440
+ malformed payloads without crashing on an undefined `features` array, so the
1441
+ UI no longer gets stuck loading when feature scanning fails.
1442
+ - OpenCode global command installation now targets OpenCode's config command
1443
+ directory, honoring `OPENCODE_CONFIG_DIR` and `XDG_CONFIG_HOME` before
1444
+ falling back to `~/.config/opencode/commands`.
1445
+
1446
+ ## [3.1.7] - 2026-04-28
1447
+
1448
+ ### Fixed
1449
+
1450
+ - Compact charter context now preserves charter section anchors, directive IDs,
1451
+ and tactic IDs so follow-on agent prompts keep project charter rules in LLM
1452
+ context after bootstrap load.
1453
+ - Review claims now enter the canonical `in_review` lane while still
1454
+ recognizing legacy review-claim events, avoiding review-loop false blocks.
1455
+ - Merge completion now keeps post-merge status transitions stable and avoids
1456
+ duplicate done/approved emissions.
1457
+ - `spec-kitty intake` now caps oversized plan files, ignores out-of-repo and
1458
+ symlinked auto-detected plans, and writes mission brief/provenance files
1459
+ atomically.
1460
+ - `auth refresh` now treats `HTTP 401` responses with `invalid_grant` or
1461
+ `session_invalid` error codes like `HTTP 400`, and clears locally stored
1462
+ sessions after server-side refresh rejection.
1463
+ - Local dashboard mission selectors now sort by mission recency instead of
1464
+ lexical slug order.
1465
+ - `agent config list/status/add/sync/remove` now respects global command roots
1466
+ for slash-command agents and avoids recreating retired project-local command
1467
+ directories.
1468
+ - Status event readers now ignore non-lane mission events in
1469
+ `status.events.jsonl` while still failing loudly for malformed lane events.
1470
+ - Sync shutdown diagnostics are deduplicated within a process and suppressed
1471
+ after successful JSON mission creation.
1472
+
1473
+ ### Changed
1474
+
1475
+ - `spec-kitty-tracker` is pinned to `0.4.3` for the latest tracker-side
1476
+ stability fixes.
1477
+ - The local `.python-version` pin now uses `3.13` instead of a patch-specific
1478
+ interpreter version.
1479
+
1480
+ ## [3.1.6] - 2026-04-20
1481
+
1482
+ ### Fixed
1483
+
1484
+ - `spec-kitty agent action implement` now exposes and forwards
1485
+ `--acknowledge-not-bulk-edit` to the underlying workspace-allocation command,
1486
+ allowing non-bulk-edit missions to suppress false-positive bulk-edit inference
1487
+ warnings during workspace creation.
1488
+
1489
+ ### Docs
1490
+
1491
+ - Spec Kitty's internal maintainer charter now records the ownership boundary
1492
+ for user-authored custom commands, custom skills, and project overrides, with
1493
+ an explicit proof trail showing that package-owned mutation flows must preserve
1494
+ files whose ownership is not proven by managed-path or manifest data.
1495
+
1496
+ ## [3.1.5] - 2026-04-16
1497
+
1498
+ ### Changed
1499
+
1500
+ - Keep `main` on the stable `3.x` release line. Release docs, install guidance,
1501
+ and README messaging now point new users at `3.1.x` on GitHub Releases and PyPI,
1502
+ while keeping `1.x-maintenance` explicitly maintenance-only.
1503
+
1504
+ ### Fixed
1505
+
1506
+ - Make `spec-kitty upgrade` auto-commit safely through the charter rename migration.
1507
+ The `safe_commit` backstop now disables rename collapsing during its staged-path
1508
+ probe, and upgrade auto-commit expands changed directories into concrete paths
1509
+ before validating the staging area. This closes the false-positive abort reported
1510
+ in [#643](https://github.com/Priivacy-ai/spec-kitty/issues/643).
1511
+ - Remove pytest/junit prompt bias from charter defaults, plan templates, and doctrine
1512
+ guidance. Packaged defaults now start from neutral selections, language inference
1513
+ flows through explicit repo signals, and language-scoped doctrine artifacts remain
1514
+ available when no active language filter is provided.
1515
+
1516
+ ### Docs
1517
+
1518
+ - Align README and user-facing release docs around swim-lane terminology and the
1519
+ `3.1.x` stable release line.
1520
+
1521
+ ## [3.1.4] - 2026-04-15
1522
+
1523
+ ### Fixed
1524
+
1525
+ - Make `/spec-kitty.plan` stop instructing agents to update imaginary
1526
+ agent-specific context files or hunt for non-existent `agent context update`
1527
+ commands. Planning now stays focused on the actual mission artifacts it owns.
1528
+ - Clarify `/spec-kitty.specify` mission-handle timing and non-blocking charter
1529
+ behavior so creation-time flows do not assume a mission already exists or stop
1530
+ on missing charter state.
1531
+ - Tighten generated `/spec-kitty.implement`, `/spec-kitty.review`, and
1532
+ `/spec-kitty.merge` wrappers so they use the canonical `--mission <handle>`
1533
+ language and explicitly avoid redundant context rediscovery, including
1534
+ separate charter loads.
1535
+
1536
+ ## [3.1.3] - 2026-04-15
1537
+
1538
+ ### Fixed
1539
+
1540
+ - Make `/spec-kitty.charter` use an LLM-led interview by default, with better
1541
+ repo-scan guidance for greenfield/bootstrap repos, explicit doctrine-gap
1542
+ handling, natural-language questioning, depth scaling, and commit-after-generate
1543
+ behavior.
1544
+ - Preserve explicit empty `selected_paradigms`, `selected_directives`, and
1545
+ `available_tools` during charter compilation instead of broadening them to
1546
+ packaged defaults.
1547
+
1548
+ ### Docs
1549
+
1550
+ - Add ADR recording that explicit empty charter selections must remain empty and
1551
+ must not silently expand to shipped defaults.
1552
+
1553
+ ## [3.1.2] - 2026-04-15
1554
+
1555
+ ### Fixed — CI recovery & release readiness
1556
+
1557
+ - **`release-readiness` workflow now filters `windows_ci` tests** on the Linux runner. The job was running the full suite with no marker filter, failing 10 Windows-only tests (auth file-fallback, kernel paths, sync daemon paths, tracker credentials, migrate messaging, keyring packaging, lock contention, Windows home path). Those tests continue to run on the native `ci-windows.yml` job.
1558
+ - **Kiro agent registration completed**: added `.kiro/` to `gitignore_manager.AGENT_DIRECTORIES`, regenerated 11 canonical command baselines under `tests/specify_cli/regression/_twelve_agent_baseline/kiro/`, and updated the four count constants that had drifted after PR #626 (13 slash-command agents, 15 `AGENT_DIRECTORIES` entries).
1559
+ - **Auth test fixtures aligned with the hardened HTTP transport** introduced in `Harden SaaS auth and restore build sync emission`. Tests for `AuthorizationCodeFlow`, `TokenRefreshFlow`, `WebSocketTokenProvisioner`, and the browser-login/refresh-transport integration paths now patch `PublicHttpClient` in each flow module's own namespace (matching the production call graph) instead of raw `httpx.AsyncClient`. Network-error paths raise `NetworkError` from the client mock rather than `httpx.ConnectError` to match the new `except NetworkError` contract.
1560
+ - **`ResolutionTier` unified across `doctrine.resolver` and `specify_cli.runtime.resolver`**. `specify_cli.runtime.resolver` is now a thin re-export shim, as its own docstring had claimed. Tests assert tier equivalence via `.name` to stay robust against `pytestarch`'s filesystem-walk loader, which can load the same source file under alternate module names during `pytest --import-mode=importlib`.
1561
+ - **Post-`unified-charter-bundle-chokepoint` test fixture hardening**: three pre-existing tests (`test_local_support_declarations_end_to_end`, `test_template_prompt_bootstrap_context_first_load`, `test_all_pass_with_healthy_setup`) now `git init` their tmp directories to satisfy the new `resolve_canonical_repo_root` precondition that calls `git rev-parse --git-common-dir`.
1562
+ - **Codex / Vibe Agent Skills migration test alignment**: five tests that pre-dated mission 083 were updated to assert the new `.agents/skills/spec-kitty.<cmd>/SKILL.md` layout rather than the retired `.codex/prompts/` layout. Invariants preserved (direct `spec-kitty agent action` CLI calls, per-agent argument handling, agent assets generation); only the probe path changed to match the post-083 architecture.
1563
+ - **Contract handoff fixture** updated to include `BuildRegistered` and `BuildHeartbeat` event types added on the emitter side by the SaaS-auth hardening.
1564
+ - **Miscellaneous tails**: redacted a dev-machine path literal in an architecture review doc (caught by `test_command_template_cleanliness`); fixed `test_rewrite_shims.py::test_result_counts` to use two slash-command agents since codex is no longer one; marked `test_home_unit.py::TestGetKittifyHomeWindows::test_windows_default_path` `windows_ci` since DRIFT-3 of the Windows Compatibility Hardening mission made `get_kittify_home()` delegate to `specify_cli.paths.get_runtime_root().base`, which the monkeypatch-based simulation no longer drives reliably on non-Windows runners.
1565
+ - **Kiro regenerated baselines** for all 12 canonical commands, closing the `tests/specify_cli/regression/test_twelve_agent_parity.py` baseline-missing cluster introduced by PR #626.
1566
+
1567
+ ### Added
1568
+
1569
+ - **Unified charter bundle manifest v1.0.0** at `src/charter/bundle.py` declaring the three `sync()`-produced derivatives (`governance.yaml`, `directives.yaml`, `metadata.yaml`) as the authoritative bundle contract. `references.yaml` and `context-state.json` are explicitly out of v1.0.0 scope; they are produced by other pipelines.
1570
+ - **Canonical-root resolver** at `src/charter/resolution.py` (`resolve_canonical_repo_root()`). Readers running inside a git worktree now transparently observe the main-checkout charter bundle without per-worktree materialisation. Closes Priivacy-ai/spec-kitty#339.
1571
+ - **`spec-kitty charter bundle validate [--json]`** CLI surface for operator and CI bundle-health checks.
1572
+ - **Migration `m_3_2_3_unified_bundle`** advances 3.x projects to the unified bundle layout. On a populated project it validates the bundle against the v1.0.0 manifest, invokes `ensure_charter_bundle_fresh()` to regenerate any missing derivatives, and emits a structured JSON report (see `kitty-specs/unified-charter-bundle-chokepoint-01KP5Q2G/contracts/migration-report.schema.json`). Idempotent — the second apply against an already-upgraded project is a clean no-op. Refs Priivacy-ai/spec-kitty#464, #479.
1573
+
1574
+ ### Changed
1575
+
1576
+ - **`SyncResult` extended with `canonical_root: Path`** — `files_written` remains a list of file names relative to `canonical_root / .kittify/charter/`. Existing readers were rewired in lockstep; no compatibility shim.
1577
+ - **`ensure_charter_bundle_fresh()` is now the sole chokepoint** for readers of `governance.yaml`, `directives.yaml`, and `metadata.yaml`. Direct reads of those files are forbidden and are enforced by an AST-walk coverage test (`tests/charter/test_chokepoint_coverage.py`). Refs Priivacy-ai/spec-kitty#461, #464.
1578
+
1579
+ ### Unchanged (explicitly)
1580
+
1581
+ - **`.kittify/memory/` and `.kittify/AGENTS.md` symlinks in worktrees** remain as-is — they provide project-memory and agent-instructions sharing, documented-intentional per `src/specify_cli/templates/AGENTS.md:168-179`. They are NOT part of the charter bundle; the canonical-root resolver fixes the worktree charter-visibility story without touching `src/specify_cli/core/worktree.py` (C-011).
1582
+ - **Files under `.kittify/charter/` that are not v1.0.0 manifest files** (`references.yaml`, `context-state.json`, `interview/answers.yaml`, `library/*.md`) are unchanged. The migration lists them under `bundle_validation.unexpected` for operator visibility but does not delete, move, or rewrite them (C-012).
1583
+ - **Project `.gitignore` is not reconciled** by the migration. The v1.0.0 manifest's required entries already match the repository `.gitignore` verbatim; the migration performs no read or write against `.gitignore` (D-12).
1584
+
1585
+ ### Refs
1586
+
1587
+ - EPIC: Priivacy-ai/spec-kitty#461 (Charter as Synthesis & Doctrine Reference Graph).
1588
+ - Phase 2 tracking: Priivacy-ai/spec-kitty#464.
1589
+ - Closes on merge: Priivacy-ai/spec-kitty#339, #451.
1590
+
1591
+ ### Fixed
1592
+
1593
+ - **`mission merge` no longer silently loses content when the repository carries legacy sparse-checkout state** — the stash/merge/stash-pop cascade used by the merge driver previously recorded phantom deletions for paths filtered out by a sparse-checkout pattern, and the subsequent housekeeping commit silently reverted content the preceding merge had introduced. Merge and `agent action implement` now run a sparse-checkout preflight and fail closed unless the operator passes `--allow-sparse-checkout`, `safe_commit` now aborts commits whose staging area contains paths outside the intended scope, and `mission merge` performs a post-merge refresh and invariant check before leaving the integration branch. Closes Priivacy-ai/spec-kitty#588.
1594
+ - **`move-task --to approved` and `--to planned` on a lane-worktree review no longer require `--force` when the only untracked content is `.spec-kitty/`** — the review-lock uncommitted-changes guard now treats the execution lane's own `.spec-kitty/` scratch directory as expected content rather than an unexplained untracked path, so operators stop being trained to pass `--force` reflexively. Closes Priivacy-ai/spec-kitty#589.
1595
+ - **Retry guidance emitted by the uncommitted-changes guard now names the actual target lane** rather than hardcoded `for_review`, so operators see the transition they were attempting instead of a misleading default.
1596
+
1597
+ ### Added
1598
+
1599
+ - **`spec-kitty doctor sparse-checkout --fix`** — detection and one-command migration for repositories upgraded from pre-3.0 spec-kitty that still carry `core.sparseCheckout=true` and a `.git/info/sparse-checkout` pattern file. The fix removes the git-config entry, clears the pattern file, and verifies post-fix state.
1600
+ - **`--allow-sparse-checkout` flag on `mission merge` and `agent action implement`** — explicit escape hatch for users with intentional sparse configurations. Use of the flag emits a `WARNING`-level structured log record (`spec_kitty.override.sparse_checkout`) at the CLI layer. Durable cross-repo audit event support is tracked as Priivacy-ai/spec-kitty#617.
1601
+ - **Commit-time backstop inside `safe_commit`** — fail-closed check that aborts commits whose staging area contains paths outside the intended scope, independent of the preflight. This is the universal defence that catches sparse-stash-pop phantom-deletion cascades regardless of which command initiated them.
1602
+ - **Per-worktree `.spec-kitty/` exclude entry** — every lane worktree now receives a local git exclude entry for `.spec-kitty/` at worktree creation, so lane scratch content stays invisible to the working-tree guard even in worktrees initialised before the fix.
1603
+ - **Session-scoped sparse-checkout warning** at review-lock and task-command entry points — surfaces detected legacy sparse-checkout state once per process before an operator wastes a commit cycle, without blocking.
1604
+ - **ADR `2026-04-14-1-sparse-checkout-defense-in-depth`** — documents the four-layer hybrid defence (merge/implement preflight, `safe_commit` backstop, session warning, `doctor --fix`) and the alternatives considered.
1605
+
1606
+ ### Recovery for users already affected
1607
+
1608
+ If a prior `mission merge` landed on your target branch with a silent content
1609
+ reversion (symptoms: a follow-up `chore: record done transitions` commit that
1610
+ deleted content merged in the preceding commit), restore the content from the
1611
+ merge commit that introduced it:
1612
+
1613
+ ```bash
1614
+ # Identify the merge commit
1615
+ git log --merges --oneline -- <affected-file>
1616
+
1617
+ # Restore content from that merge
1618
+ git checkout <merge-sha> -- <affected-file> [...]
1619
+
1620
+ # Commit the restoration
1621
+ git add <affected-file> [...]
1622
+ git commit -m "fix: restore content reverted by phantom-deletion bug"
1623
+ ```
1624
+
1625
+ Then run the migration to prevent recurrence:
1626
+
1627
+ ```bash
1628
+ spec-kitty doctor sparse-checkout --fix
1629
+ ```
1630
+
1631
+ Root-cause diagnostic trail: [Priivacy-ai/spec-kitty#588 (comment)](https://github.com/Priivacy-ai/spec-kitty/issues/588#issuecomment-4242179946).
1632
+
1633
+ ## [3.1.2a4] - 2026-04-14
1634
+
1635
+ ### Added
1636
+
1637
+ - **Kiro CLI as first-class agent** — `spec-kitty init --ai kiro` registers the Kiro CLI (Amazon Q Developer CLI's rebrand) with its own `.kiro/prompts/` directory and `kiro-cli` binary check. Legacy `--ai q` (→ `.amazonq/prompts/`) remains supported for backwards compatibility. README and `docs/reference/supported-agents.md` now document the shell-quoting requirement for `$ARGUMENTS` pass-through (see kirodotdev/Kiro#4141). Closes #246.
1638
+
1639
+ ### Fixed
1640
+
1641
+ - **`diff-coverage` CI job no longer fails with "no merge base"** — the base-branch fetch was passing `--depth=1` after `actions/checkout@v6` had already fetched full history, which truncated `origin/<base>` back to a single commit and broke `diff-cover`'s merge-base computation. Dropped `--depth=1`.
1642
+ - **`test_mission_v1_guards_unit.py::test_registry_keys` now matches the guard registry** — synchronised the `EXPECTED_GUARDS` set with the `occurrence_map_complete` guard added in #616.
1643
+
1644
+ ## [3.1.2a3] - 2026-04-12
1645
+
1646
+ ### Fixed
1647
+
1648
+ - **Merge-time numbering lock and retry safety** — `mission_number` assignment now acquires a file lock before scanning existing prefixes, MergeState uses `mission_id` as its canonical key, and interrupted merges no longer risk duplicate or skipped numbers on retry. Closes #601.
1649
+ - **CLI no longer hangs 15–20 min when offline queue is full and session expired** — the offline queue drain path now respects a bounded timeout instead of blocking indefinitely on expired-session retries. Closes #598, #602.
1650
+ - **Sonar readiness and parser findings addressed** — actionable maintenance issues flagged by SonarCloud (code smells, complexity, minor bugs) are resolved. Closes #599, #600.
1651
+
1652
+ ## [3.1.2a2] - 2026-04-11
1653
+
1654
+ ### Added
1655
+
1656
+ - **Hosted readiness control surfaces** — the CLI now exposes the canonical SaaS rollout/readiness module, a six-state hosted readiness evaluator, and a background-daemon policy/intent model that keeps stealth rollout behavior explicit while making enabled-mode failures actionable.
1657
+
1658
+ ### Changed
1659
+
1660
+ - **Tracker command classification is corrected for first-run flows** — `tracker discover` no longer requires an existing mission binding, `tracker providers` remains available as static output without hosted prerequisites, and hosted/manual-daemon checks are applied according to command intent rather than indiscriminately.
1661
+ - **Tracker dependency advances to the hardened hosted-discovery release line** — the CLI now targets `spec-kitty-tracker==0.4.1`, aligning the prerelease with the published runtime validation and canonical discovery contract shipped in the tracker SDK.
1662
+
1663
+ ### Fixed
1664
+
1665
+ - **Background-daemon policy no longer blocks local-provider sync flows** — local tracker providers continue to execute direct sync operations even when hosted SaaS daemon startup is set to manual.
1666
+
1667
+ ## [3.1.2a1] - 2026-04-10
1668
+
1669
+ ### Added
1670
+
1671
+ - **Browser-mediated CLI auth preview** — `spec-kitty auth login` now supports browser-based OAuth with Device Authorization Flow fallback, centralized token management, secure storage, and WebSocket token provisioning against the SaaS contract.
1672
+
1673
+ ### Changed
1674
+
1675
+ - **Human CLI auth now flows through the new auth subsystem** — HTTP transport, sync runtime, and tracker SaaS callers now refresh through the shared token manager instead of the legacy password/JWT credential path.
1676
+
1677
+ ### Fixed
1678
+
1679
+ - **Browser auth CI coverage gaps** — test dependencies and stale tracker refresh patch targets were corrected so the new auth stack passes the core and integration suites reliably in CI.
1680
+
1681
+ ## [3.1.1] - 2026-04-09
1682
+
1683
+ ### Added
1684
+
1685
+ - **Semantic status-event merge driver** — `kitty-specs/**/status.events.jsonl` now uses a Spec Kitty merge driver that unions append-only event logs by `event_id`, rejects conflicting payloads, and fails closed when merged WPs do not reach `done` in the canonical event log.
1686
+ - **Forward-safe mission identity** — newly created missions now mint a ULID `mission_id` at creation time, persist it to `meta.json`, and emit it through mission-created event payloads.
1687
+ - **Release hygiene guardrail** — release validation now enforces `pyproject.toml` and `.kittify/metadata.yaml` version sync before a cut can proceed.
1688
+
1689
+ ### Changed
1690
+
1691
+ - **`spec-kitty init` now produces a minimal file scaffold** — init no longer initializes git, creates bootstrap commits, or seeds `.agents/skills/`. The generated next steps now point users at `spec-kitty next` plus `spec-kitty agent action implement/review` as the canonical workflow.
1692
+ - **Planning-artifact WPs are first-class lane-owned items** — the canonical planning lane is now `lane-planning`, and it resolves to the main repository checkout instead of an ad hoc special-case path.
1693
+ - **Top-level `implement` is de-emphasized** — onboarding and command docs now treat `spec-kitty implement` as internal infrastructure rather than the primary user-facing flow.
1694
+
1695
+ ### Fixed
1696
+
1697
+ - **Merge conflict recovery for `status.events.jsonl`** — append-only status events are no longer silently dropped during merge conflict resolution, and fresh repositories now self-heal the local git merge-driver config when running merge flows. Closes #574.
1698
+ - **Planning/query consistency after PR #555** — mixed planning/code review-context resolution no longer crashes when a dependency resolves to the repo-root workspace, and fresh-run query mode now returns `run_id: null` instead of leaking a deleted temporary run id.
1699
+ - **Dependency parser trailing-prose bleed** — the final WP section is now bounded at non-WP `##` headings so trailing prose does not get misread as dependency declarations.
1700
+ - **Concurrent auth refresh race** — stale 401 responses during token rotation no longer wipe valid shared credentials from active CLI sessions.
1701
+
1702
+ ## [3.1.1a3] - 2026-04-07
1703
+
1704
+ ### Added
1705
+
1706
+ - **Global slash command installation** — all 16 spec-kitty slash commands are now installed globally to `~/.<agent-dir>/` (e.g. `~/.claude/commands/`, `~/.gemini/commands/`, `~/.codex/prompts/`, etc.) at every CLI startup, for all 13 supported agents. No `spec-kitty init` or per-project `spec-kitty upgrade` is required for commands to be available. Commands update automatically when the CLI is upgraded.
1707
+ - **Migration `3.1.2_globalize_commands`** — removes existing per-project `spec-kitty.*` command files from `.claude/commands/`, `.gemini/commands/`, and equivalent directories in all configured agents. Runs automatically on `spec-kitty upgrade`.
1708
+ - **ADR `2026-04-07-1-global-slash-command-installation`** — documents the decision to install commands globally, the full 13-agent table with global roots, and the rationale.
1709
+
1710
+ ### Changed
1711
+
1712
+ - `spec-kitty init` no longer writes per-project command files. Commands are managed exclusively by the global startup hook.
1713
+
1714
+ ## [3.1.1a2] - 2026-04-07
1715
+
1716
+ ### Fixed
1717
+
1718
+ - **`spec-kitty init` / any CLI command no longer dirties the git repo** — every CLI invocation that touched status was unconditionally rewriting `kitty-specs/*/status.json`, even when nothing had changed, leaving ~60 files modified in `git status`. Root cause: `materialize()` stamped a fresh `datetime.now(UTC)` into `materialized_at` on every call. Fixed in `reducer.py` (3.1.1a1): `materialized_at` is now derived deterministically from the last event's `at` timestamp (or `""` for features with no events), and a content-equality guard skips the write when the file is already up to date. Closes #524.
1719
+
1720
+ ### Added
1721
+
1722
+ - **Migration `3.1.1_normalize_status_json`** — one-shot upgrade migration that normalises all existing `kitty-specs/*/status.json` files to the new deterministic format. Runs automatically on `spec-kitty upgrade` for any project where the committed files still carry old wall-clock timestamps or the legacy `feature_slug` field. After the migration the skip-write guard in `materialize()` keeps all status snapshots stable indefinitely.
1723
+
1724
+ ### Changed
1725
+
1726
+ - **`StatusSnapshot` and `ProgressResult` serialisation no longer emits `feature_slug`** — `with_tracked_mission_slug_aliases` previously injected a redundant `feature_slug` alias into every serialised snapshot. Now only `mission_slug` is written. Reading still accepts both keys for backward compat with existing files.
1727
+
1728
+ ## [3.1.1a1] - 2026-04-07
1729
+
1730
+ ### Added
1731
+
1732
+ - **Typed `WPMetadata` Pydantic model** (`src/specify_cli/status/wp_metadata.py`) — immutable, validated work package metadata with `update()` builder API; replaces all raw `frontmatter.get()` dict access across consumer files. Closes #410.
1733
+ - **`Lane` enum state machine** — valid lane transitions enforced at the type level; all runtime consumers migrated from string comparisons to `Lane` enum values.
1734
+ - **Typed dashboard API contracts** (`src/specify_cli/dashboard/handlers/api.py`) — Pydantic response models replace untyped dicts.
1735
+ - **RE2 shim** (`src/kernel/_safe_re.py`) — `types.ModuleType`-based shim backed by `google-re2`; exposes the full `re` API and mitigates Sonar DOS hotspot findings. `google-re2>=1.1` added as a core runtime dependency.
1736
+ - **CI status-layer test stages** — new `fast-tests-status` and `integration-tests-status` jobs run the `tests/status/` and `tests/specify_cli/status/` suites in parallel with existing core/doctrine jobs; their coverage outputs feed the `diff-coverage` gate.
1737
+ - **`WPMetadata.display_title` property** — safe fallback for missing or empty WP titles.
1738
+
1739
+ ### Changed
1740
+
1741
+ - All `frontmatter.get()` calls outside `frontmatter.py` migrated to typed `WPMetadata` access. Migration scripts retain raw dict access annotated `# MIGRATION-ONLY`.
1742
+ - `WPMetadata.title` is now optional; WP read errors propagate gracefully via `read_wp_frontmatter()`.
1743
+ - `OwnershipManifest.from_frontmatter()` accepts `WPMetadata` directly.
1744
+ - `diff-coverage` job wired to consume `coverage-kernel.xml`, `coverage-fast-status.xml`, and `coverage-integration-status.xml` in both enforced (critical-path 90%) and advisory (full-diff) steps.
1745
+ - GitHub Actions upgraded to Node.js 24 compatible versions (`actions/checkout@v6`, `actions/setup-python@v6`, `actions/setup-node@v6`, `actions/upload-artifact@v7`, `actions/download-artifact@v8`) across all workflow files.
1746
+
1747
+ ### Fixed
1748
+
1749
+ - `ValidationError` caught in phase-1 status mirror (`status/emit.py`) — prevents NoneType crashes on malformed WP files.
1750
+ - Ruff and mypy violations cleaned up in all files touched by the migration.
1751
+ - Sonar false-positive NOSONAR suppressions added in `arbiter.py` and `dashboard/handlers/api.py`.
1752
+ - WP03 validation report (mission 068) decision corrected from `close_with_evidence` to `tighten_workflow` to reflect the CI logic additions; `test_tighten_workflow_passes_large_pr_sample` implemented to verify the advisory-only contract.
1753
+
1754
+ ## [3.1.0] - 2026-04-07
1755
+
1756
+ ### Added
1757
+
1758
+ - **Planning pipeline integrity (mission 069)** — four structural fixes eliminating fragilities discovered during mission 068:
1759
+ - **Dirty-git reads fix (WP01)** — `materialize()` now derives `materialized_at` from the last event timestamp (deterministic) and skips the write when content is byte-identical. `materialize_if_stale()` returns a read-only `reduce()` call. All read-only commands leave zero modified files in `git status`. Fixes #524.
1760
+ - **Structured WP manifest — `wps.yaml` (WP02, WP03, WP04)** — new `src/specify_cli/core/wps_manifest.py` with Pydantic model, YAML loader, and `generate_tasks_md_from_manifest()`. JSON Schema at `src/specify_cli/schemas/wps.schema.json`. When `wps.yaml` is present, `finalize-tasks` derives dependencies exclusively from the manifest; `tasks.md` is regenerated as a derived artifact. `/spec-kitty.tasks-outline` and `/spec-kitty.tasks-packages` templates updated to produce/consume `wps.yaml`. Migration `m_3_2_0_update_planning_templates` propagates changes to existing installations. Fixes #525.
1761
+ - **`spec-kitty next` query mode (WP05)** — bare `spec-kitty next` (no `--result`) enters query mode: returns current step with `[QUERY — no result provided, state not advanced]` prefix without advancing the state machine. Prevents ghost completions when agents call `next` while disoriented. Fixes #526.
1762
+ - **Slug validator digit-prefix support (WP06)** — `KEBAB_CASE_PATTERN` updated to accept `NNN-*` slugs following spec-kitty's own naming convention. Fixes #527.
1763
+
1764
+ ## [3.1.0a8] - 2026-04-07
1765
+
1766
+ ### Added
1767
+
1768
+ - **Post-merge reliability and release hardening (mission 068)** — 5 work packages closing the workflow-stabilization track:
1769
+ - **Stale-assertion analyzer (WP01)** — new `src/specify_cli/post_merge/` package: stdlib `ast`-based tool that detects test assertions likely invalidated by merged source changes. CLI: `spec-kitty agent tests stale-check --base <ref> --head <ref> [--json]`. Integrated into the merge runner. No new dependencies, no network calls.
1770
+ - **Merge strategy + safe-commit + linear-history hint (WP02)** — `MergeStrategy` enum (MERGE/SQUASH/REBASE) in new `src/specify_cli/merge/config.py` with `--strategy` CLI flag (resolves: flag → `.kittify/config.yaml` → squash default). `safe_commit()` called after `_mark_wp_merged_done` before worktree removal (FR-019). Linear-history rejection hint guides users past protected-branch push failures. Closes #456.
1771
+ - **Diff-coverage policy validation (WP03)** — validation report confirms the enforce/advisory split already satisfies the policy intent. CI step names tightened to `diff-coverage (critical-path, enforced)` and `diff-coverage (full-diff, advisory)`. Closes #455.
1772
+ - **Release-prep CLI (WP04)** — new `src/specify_cli/release/` package: `propose_version()`, `build_changelog_block()`, `ReleasePrepPayload`. CLI: `spec-kitty agent release prep --channel {alpha,beta,stable} [--json]`. Zero network calls. Closes #457.
1773
+ - **Recovery extension + mission close (WP05)** — `scan_recovery_state()` extended with `consult_status_events=True` to detect merged-and-deleted WPs via event log; new `RecoveryState.ready_to_start_from_target` field. `spec-kitty implement` gains `--base <ref>` flag for explicit worktree branching. Closes #415.
1774
+
1775
+ ### Fixed
1776
+
1777
+ - **`implement --base` Typer pattern** — changed to Annotated pattern, fixing test isolation failures where direct Python calls received `OptionInfo` objects instead of `None`
1778
+ - **`implement` console capsys isolation** — `_json_safe_output` wrapper now resets `console._file = None` in `finally` to prevent "I/O operation on closed file" when tests run in sequence with pytest capsys
1779
+ - **Replay parity test** — corrected `reduced.mission_key == "replay-mission"` (was wrong field name and wrong value)
1780
+
1781
+ ## [3.1.0a7] - 2026-04-06
1782
+
1783
+ ### Added
1784
+
1785
+ - **Runtime recovery and audit safety (mission 067)** -- 6 work packages delivering resilience and audit infrastructure:
1786
+ - **Merge resume recovery (WP01)** -- `spec-kitty merge --resume` recovers from interrupted merges with persistent state tracking in `.kittify/merge-state.json`
1787
+ - **Implementation crash recovery (WP02)** -- `spec-kitty implement --recover` restores execution context after agent crashes, rebuilding worktree state and resuming from last known checkpoint
1788
+ - **Stale-claim doctor checks (WP03)** -- `spec-kitty doctor` detects orphaned claims, stale locks, and zombie worktrees with structured diagnostic output
1789
+ - **Audit-mode scope relaxation (WP04)** -- ownership validation supports `scope: codebase-wide` for audit/cutover WPs; new `validate_audit_coverage()` warns on uncovered audit targets
1790
+ - **Shim-to-canonical migration (WP05)** -- all `spec-kitty agent shim <action>` calls replaced with direct `spec-kitty agent action <action>` across 48 agent command files
1791
+ - **Finalize-tasks audit wiring (WP06)** -- `validate_audit_coverage()` integrated into finalize-tasks ownership validation pipeline as a soft warning check
1792
+
1793
+ ### Fixed
1794
+
1795
+ - **Agent command files** -- regenerated all 48 agent command files to use canonical `spec-kitty agent action` instead of deprecated `spec-kitty agent shim`
1796
+ - **Post-merge test regressions** -- fixed 4 stale test assertions after mission 067 merge (implement template content, merge resume behavior, --recover flag default)
1797
+
1798
+ ## [3.1.0a6] - 2026-04-06
1799
+
1800
+ ### Added
1801
+
1802
+ - **Review loop stabilization (mission 066)** — new `src/specify_cli/review/` module with 6 submodules:
1803
+ - `artifacts.py` — persisted review-cycle artifacts at `kitty-specs/<mission>/tasks/<WP-slug>/review-cycle-{N}.md` with YAML frontmatter. Replaces ephemeral `.git/spec-kitty/feedback/` storage. Backward-compatible `feedback://` pointer resolution retained (#432, #433).
1804
+ - `fix_prompt.py` — focused fix-mode prompt generation from review-cycle artifacts. Rejected WPs get ~40-line targeted prompts instead of replaying 400-500 line full WP prompts (#430).
1805
+ - `dirty_classifier.py` — dirty-state classification for review handoff. Partitions `git status --porcelain` output into blocking (WP-owned files) vs benign (status artifacts, other WP files, metadata). External reviewers no longer need `--force` for unrelated dirtiness (#439).
1806
+ - `baseline.py` — baseline test capture at implement time via `pytest --junitxml` + JUnit XML parsing. Review prompts include "Baseline Context" section distinguishing pre-existing failures from regressions. Configurable `review.test_command` for non-pytest projects (#444).
1807
+ - `lock.py` — concurrent review serialization via `.spec-kitty/review-lock.json`. Stale lock detection via PID check. Opt-in env-var isolation for projects that configure `review.concurrent_isolation` in config.yaml (#440).
1808
+ - `arbiter.py` — structured arbiter checklist with 5 standard rationale categories (pre-existing failure, wrong context, cross-scope, infra/environmental, custom). Override detection on forward `--force` from planned after rejection event. Decisions persisted in review-cycle artifact frontmatter (#441).
1809
+ - **147 new tests** across the review module (avg 93% coverage, range 91-99%)
1810
+ - **Implement-review skill update** — parallel sprint pattern, merge/conflict resolution guide, dead-code detection warning, post-merge validation steps
1811
+ - **Tasks template handoff** — `/spec-kitty.tasks` now offers to invoke `/spec-kitty-implement-review` skill at completion for automated full-sprint execution
1812
+
1813
+ ### Fixed
1814
+
1815
+ - **ReviewLock wired into live command path** — `ReviewLock.acquire()` called in `workflow.py review()` after workspace resolution; `ReviewLock.release()` called in `tasks.py move-task` on review completion
1816
+ - **Removed dead `wp_prompt_path` parameter** from `generate_fix_prompt()` and all callers
1817
+
1818
+ ## [3.1.0a5] - 2026-04-06
1819
+
1820
+ ### Fixed
1821
+
1822
+ - **Dependency parsing in finalize-tasks** — new shared parser (`core/dependency_parser.py`) recognizes inline, colon-header, and bullet-list dependency formats. Both `agent mission finalize-tasks` and `agent tasks finalize-tasks` use the same parser. Non-empty disagreement between tasks.md and WP frontmatter triggers a diagnostic error instead of silently overwriting (#406).
1823
+ - **validate-only is genuinely non-mutating** — all file writes gated behind `if not validate_only`. JSON output reports `would_modify`/`unchanged`/`preserved` without touching disk (#417).
1824
+ - **Lane computation completeness** — every executable WP must appear in `lanes.json` or lane computation fails with a diagnostic error. Missing ownership manifests are a hard failure. Planning-artifact WPs surfaced in diagnostic summary. Zero-match globs and `src/**` fallback emit warnings (#422).
1825
+ - **Parallelism collapse reporting** — new `CollapseReport` records every union-find merge with rule name and evidence. Rule 3 (surface heuristics) now gated on `_are_disjoint()` — WPs with provably disjoint owned files are not collapsed by keyword matches alone (#423).
1826
+ - **Pipe-table mark-status support** — column-aware parser recognizes `[P]` in Parallel column (not corrupted), updates Status column or appends one. Checkbox format remains canonical for new generation (#438).
1827
+ - **Agent command guidance** — all error messages, shim templates, and command-template examples now use `--mission` consistently. Five `require_explicit_feature()` callers fixed from `--feature` to `--mission`. Error messages include complete copy-pasteable example commands (#434).
1828
+ - **Full --feature → --mission sweep** — 12 typer.Option declarations, 4 argparse declarations, 11 error messages, and 5 docstrings updated. `--mission` is the primary displayed flag name; `--feature` retained as hidden backward-compatibility alias (#448).
1829
+
1830
+ ### Added
1831
+
1832
+ - `src/specify_cli/core/dependency_parser.py` — canonical shared dependency parser
1833
+ - `CollapseEvent` and `CollapseReport` data models in `lanes/models.py`
1834
+ - `LaneComputationError` exception for diagnostic lane failures
1835
+ - `validate_glob_matches()` in ownership validation
1836
+ - `planning_artifact_wps` field on `LanesManifest`
1837
+ - Charter regression vigilance rules for `--mission` terminology canon
1838
+
1839
+ ## [3.1.0a4] - 2026-04-06
1840
+
1841
+ ### Fixed
1842
+
1843
+ - **Mission-era host surface cleanup** — removed remaining feature-era host command references from shipped templates, agent-facing prompts, and smoke-test scaffolding so new missions no longer regenerate `create-feature`, `feature_slug`, or `--feature` guidance on canonical paths.
1844
+ - **Runtime mission metadata normalization** — mission resolution now prefers canonical `mission_type` metadata and rehydrates mission identity consistently in diagnostics, verification, and rebuild-state migrations.
1845
+ - **Release-readiness regressions after host cutover** — updated cross-cutting, orchestrator, parity, body-sync, gitignore-isolation, and e2e smoke coverage to validate the mission-era CLI and contract instead of the removed feature-era host surface.
1846
+
1847
+ ## [3.1.0a3] - 2026-04-05
1848
+
1849
+ ### Fixed
1850
+
1851
+ - **Doctrine artifact discovery in subdirectories** — all 7 doctrine repositories now use `rglob()` instead of `glob()`, so artifacts in subdirectories of `shipped/` are no longer silently skipped (#396).
1852
+ - **Dashboard `/api/features` empty response** — `StatusEvent.from_dict()` now accepts both `feature_slug` and `mission_slug` field names and normalizes the legacy `in_review` lane to `for_review`.
1853
+ - **Stale `patch()` targets caught at lint time** — new `scripts/check_patch_targets.py` validates every `@patch()` target string resolves, added as an `[ENFORCED]` CI lint step (#394).
1854
+ - **Architectural layer coverage guards** — meta-tests fail when a `src/` package has no layer assignment or a defined layer matches no module (#395).
1855
+ - **Sonar reliability bugs** — resolved 7 findings: unreachable code (S1763), identical branches (S3923), premature async task GC (S7502), always-true condition (S2583), tautological assertion (S3981), CSS shorthand override (S4657), parameter shadowing (S1226).
1856
+ - **Async task GC in event emitter** — `asyncio.ensure_future()` results held in `_pending_tasks` set with done-callback cleanup, preventing premature garbage collection.
1857
+ - **`check-readiness` CI gate unblocked** — post-release version bump missed after tagging v3.1.0a2 (#408).
1858
+
1859
+ ### Changed
1860
+
1861
+ - **CI test parallelization** — `fast-tests` and `integration-tests` split into `doctrine` + `core` phases running in parallel (#397).
1862
+ - **`--mission-run` as canonical CLI flag** — added as alias for `--feature` across all CLI commands. `--feature` remains accepted as legacy alias.
1863
+ - **Node.js 20 → 22** in CI workflows (current LTS).
1864
+ - **Mutation testing CI job disabled** — too slow to run reliably.
1865
+ - **Ruff max line length** increased from 120 to 164.
1866
+ - **Defunct `tests/legacy` references removed**.
1867
+
1868
+ ### Added
1869
+
1870
+ - **RTK search tooling toolguide** — new shipped doctrine artifact documenting RTK interception patterns and correct search tooling for worktree sessions.
1871
+ - **`last_updated` field** on Toolguide model and schema.
1872
+ - **Integration tests for nested artifact discovery** — 281-line test suite covering all 8 doctrine repository types.
1873
+ - **`integration` pytest marker** registered in `pyproject.toml`.
1874
+
1875
+ ## [3.1.0a2] - 2026-04-05
1876
+
1877
+ ### Changed
1878
+
1879
+ - **Prerelease publishing is now first-class** — tag-mode release validation accepts matching prerelease tags such as `v3.1.0a0`, GitHub Releases are marked as prereleases automatically for those tags, and maintainer docs now document the end-to-end prerelease PyPI/GitHub publish path.
1880
+ - **Rebased doctrine-stack work onto `main`'s execution architecture** — carry forward the doctrine, constitution, and template-repository work from PR #305 into PR #348 while preserving `main`'s context, ownership, event-log, merge-engine, and shim foundations instead of reviving deleted subsystems.
1881
+ - **Kernel established as the shared dependency floor** — `src/kernel/` now owns shared path, atomic-write, and glossary-boundary primitives; doctrine no longer reaches back into `specify_cli`, and the package boundary is documented by ADRs and enforced by architectural tests.
1882
+ - **Constitution now acts as the local routing layer for governance assets** — project-local mission path construction flows through `ProjectMissionPaths`, while doctrine-backed mission/template access is routed through `MissionTemplateRepository` and constitution-facing resolvers instead of scattered path assembly.
1883
+ - **Mission terminology split clarified as the architectural answer to issue #241** — a direct `--feature` → `--mission` rename would have collided with the existing mission-type concept, so the branch now separates `mission type` (`--mission-type`) from `mission run` (`--mission-run`) and keeps legacy `--feature` compatibility where required during the deprecation window.
1884
+ - **CI flows extended for the new package layout** — quality workflows now cover doctrine and kernel explicitly, including dedicated kernel coverage enforcement and updated readiness/release paths.
1885
+ - **Fork-safe SonarCloud targeting via repository variables** — CI now resolves SonarCloud settings from `SONAR_ORGANIZATION`, `SONAR_PROJECT_KEY`, and optional `SONAR_HOST_URL`, with upstream-safe defaults and a fallback project-key convention of `<organization>_<repo-name>` when `SONAR_PROJECT_KEY` is unset.
1886
+
1887
+ ### Fixed
1888
+
1889
+ - **Dashboard loading regressions on shared mission installs** — repaired the shared dashboard JavaScript syntax error, made feature scanning tolerate unreadable legacy event logs, hardened `/api/features` error handling, and marked the scanner regressions as part of the `fast` suite so CI/Sonar coverage reflects the new branches.
1890
+ - **Narrow exception handlers in doctrine repositories** — Replace 21 bare `except Exception` handlers across `src/doctrine/` with specific exception tuples (`YAMLError`, `ValidationError`, `OSError`, `ModuleNotFoundError`, `TypeError`, `UnicodeDecodeError`) matching actual failure modes. Addresses PR #305 review finding M1.
1891
+ - **Fix `spec-kitty --help` crash** — Add missing `Optional` import to `workflow.py` and `tasks.py`. `from __future__ import annotations` defers annotation evaluation; Typer's `eval()` of `Optional[str]` annotations raised `NameError` at app construction time.
1892
+ - **Address PR #305 architectural review gaps in the rebased branch** — resolve the core review findings by removing doctrine→`specify_cli` dependency leakage, bringing doctrine into CI coverage, lifting shared glossary/path primitives into kernel, and documenting the resulting boundary in the architecture corpus.
1893
+
1894
+ ### Documentation
1895
+
1896
+ - **Doctrine inclusion assessment** — `docs/development/doctrine-inclusion-assessment.md` evaluates the current state of the three Doctrine+Kitty merger pillars (agent profiles ~80%, mission type customization ~45%, ad-hoc experimentation ~25%) with gap analysis, dependency violation status, and phased recommendations.
1897
+ - **Doctrine skills README** — `src/doctrine/skills/README.md` documents the skills-vs-mission-composition boundary, the iterative context loading pattern, and the skill inventory. Captures the architectural distinction from the PR #305 review.
1898
+ - **Updated skill: spec-kitty-runtime-next** — new "Doctrine-Aware Step Execution" section teaches agents to load agent profiles at init, apply action-scoped constitution context at step boundaries, and pull specific tactics/directives on demand instead of dumping all doctrine upfront.
1899
+ - **Updated skill: spec-kitty-constitution-doctrine** — new "Programmatic Doctrine Access", "Doctrine Artifact Kinds", and "Iterative Context Loading Pattern" sections document `DoctrineService` entry points, explain all 8 artifact kinds (directives, tactics, paradigms, styleguides, toolguides, procedures, agent profiles, step contracts) with access patterns, and teach the anti-pattern of upfront context dumps.
1900
+ - **Updated skill: spec-kitty-mission-system** — new "Doctrine Composition Layer" section documents `MissionStepContract`, `Procedure`, and action index artifacts as the structured primitives backing mission behavior.
1901
+ - **New skill: ad-hoc-profile-load** — teaches agents how to load a profile on demand for interactive sessions outside the mission loop: resolve by ID or task context, adopt identity/boundaries/governance scope, maintain role throughout the session, and persist to tool context.
1902
+ - **Recorded the remaining follow-on work after the PR #305 -> PR #348 transition** — the compiler-backed mission-bundle follow-up remains relevant, the skills-vs-mission-composition boundary still needs to stay explicit, constitution-local routing should expand beyond mission-path centralization, issue #241 still has compatibility/documentation cleanup left on older `--feature`-based surfaces, and residual runtime/test debt remains outside this rebase-focused integration.
1903
+
1904
+ ## [3.0.3] - 2026-04-01
1905
+
1906
+ ### Added
1907
+
1908
+ - **Ticket-first mission origin binding** (feature 061): Service-layer workflow for starting a mission from an existing Jira or Linear ticket. Adds `search_origin_candidates()`, `bind_mission_origin()`, and `start_mission_from_ticket()` in `tracker/origin.py`. Persists durable `origin_ticket` provenance in `meta.json` with 7-field validation. Emits `MissionOriginBound` observational telemetry event. SaaS-first write ordering ensures local metadata never runs ahead of the authoritative control plane.
1909
+ - **Reusable feature-creation API**: Extracted `create_feature_core()` from the CLI command into `core/feature_creation.py` — a stable, programmatic API returning `FeatureCreationResult` with domain exceptions instead of `typer.Exit()`.
1910
+ - **SaaS tracker client extensions**: `search_issues()` and `bind_mission_origin()` transport methods on `SaaSTrackerClient` with full retry, auth refresh, and error handling.
1911
+
1912
+ ## [3.0.2] - 2026-04-01
1913
+
1914
+ ### Fixed
1915
+
1916
+ - **Missing prompt-driven slash commands**: `rewrite_agent_shims()` (3.0.0 migration step 6) deleted 9 prompt-driven template files (specify, plan, tasks, etc.) leaving only 7 CLI shims. Now regenerates all 16 command files per the hybrid architecture (feature 058). Added `m_3_0_2` migration to restore prompt files for already-affected projects.
1917
+ - **Event log not created at feature birth**: `status.events.jsonl` was only bootstrapped during `finalize-tasks`, causing `CanonicalStatusNotFoundError` when the dashboard scanned features in the specify/plan phase. Now initialized when `create-feature` runs.
1918
+ - **Dashboard scanner crash on pre-finalization features**: `_count_wps_by_lane()` and `_process_wp_file()` propagate `CanonicalStatusNotFoundError` (hard-fail contract); callers `scan_all_features()` and `scan_feature_kanban()` catch at feature level with actionable error messages.
1919
+ - **Stale `/spec-kitty.clarify` references**: Removed 14 remaining references to the deleted clarify command across kitty-specs checklists, coverage tables, and `pyproject.toml`.
1920
+ - **Missing `.gitignore` entries**: Added `.kittify/workspaces/` and `.kittify/merge-state.json` to match `state_contract.py` expectations.
1921
+
1922
+ ## [3.0.1] - 2026-03-31
1923
+
1924
+ ### Fixed
1925
+
1926
+ - **Canonical status hard cutover completed.** Work-package lane state is now consistently sourced from `status.events.jsonl` across active CLI commands, packaged task tooling, templates, docs, and standalone helpers. Frontmatter lane fallbacks and `lane=` body-log writes are removed from active 3.0 flows.
1927
+ - **Canonical bootstrap and hard-fail behavior hardened.** `finalize-tasks` now seeds canonical `planned` state for generated WPs, while runtime commands fail explicitly when canonical status is missing instead of silently reconstructing it from abandoned frontmatter state.
1928
+ - **Release automation updated for 3.x.** GitHub release validation, maintainer docs, and workflow tag handling now use semantic `vX.Y.Z` tags generically, so `v3.0.1` publishes correctly to GitHub Releases and PyPI.
1929
+
1930
+ ## [3.0.0] - 2026-03-30
1931
+
1932
+ ### Breaking Changes
1933
+
1934
+ - **Event log is sole authority for mutable WP state.** Frontmatter `lane`, `review_status`, `reviewed_by`, and `progress` fields are no longer written or read at runtime. Status is read from `status.events.jsonl` via the reducer.
1935
+ - **`feature_detection.py` deleted.** All commands require explicit `--feature <slug>` in multi-feature repos. No branch scanning, no env var detection, no cwd walking.
1936
+ - **Legacy worktree file filtering removed.** `planning_artifact` WPs work in-repo; `code_change` WPs use standard full worktrees.
1937
+ - **Command templates restored as hybrid.** Planning commands (specify, plan, tasks, etc.) install as full prompts; execution commands (implement, review, merge, etc.) install as thin CLI-dispatch shims.
1938
+
1939
+ ### Added
1940
+
1941
+ - **MissionContext** — opaque token-based bound identity for all workflow commands (`src/specify_cli/context/`)
1942
+ - **WP Ownership Manifest** — `execution_mode`, `owned_files`, `authoritative_surface` per WP (`src/specify_cli/ownership/`)
1943
+ - **Lane-weighted progress** — `planned=0.0`, `in_progress=0.3`, `for_review=0.6`, `done=1.0` (`src/specify_cli/status/progress.py`)
1944
+ - **`spec-kitty materialize`** command for CI/debugging regeneration of derived views
1945
+ - **Dedicated merge workspace** at `.kittify/runtime/merge/` with per-mission state and atomic lock
1946
+ - **Merge conflict auto-resolution** for event logs (append-merge) and metadata (take-theirs)
1947
+ - **Thin agent shims** for CLI-driven commands with `spec-kitty agent shim <command>` entrypoints
1948
+ - **Schema version gate** (disabled until 3.0.0 migration ships to consumers)
1949
+ - **One-shot migration framework** — `backfill_identity`, `backfill_ownership`, `rebuild_state`, `strip_frontmatter`
1950
+ - **`--validate-only`** flag on `finalize-tasks`
1951
+ - **`spec-kitty next`** hint in `tasks status` output
1952
+ - **Integration Verification** section in WP prompt template
1953
+ - **Doctor `command-files`** check — detects stale/missing/wrong-type agent command files
1954
+ - **Version markers** in generated command files (`<!-- spec-kitty-command-version: X.Y.Z -->`)
1955
+ - **Migration `m_2_1_4`** — unconditionally enforces correct hybrid command file state
1956
+
1957
+ ### Removed
1958
+
1959
+ - `feature_detection.py` (668 lines) — replaced by MissionContext tokens
1960
+ - `status/legacy_bridge.py`, `status/phase.py`, `status/reconcile.py`, `status/migrate.py`
1961
+ - `merge/executor.py`, `merge/forecast.py`, `merge/status_resolver.py`
1962
+ - `core/agent_context.py` — tech-stack parsing no longer needed
1963
+ - ~56 command template files (replaced by 9 canonical prompts + 7 thin shims)
1964
+ - Sparse checkout policy enforcement
1965
+ - Frontmatter lane/review_status read/write throughout codebase
1966
+ - Dual-write (event log + frontmatter) behavior
1967
+
1968
+ ### Fixed
1969
+
1970
+ - "planning repository" → "project root checkout" terminology (migration included)
1971
+ - Template path references removed from agent prompts (agents no longer search for `.kittify/missions/` files)
1972
+ - Workflow `implement`/`review` now emit status events (was silently failing)
1973
+ - Merge reconciliation marks ALL ancestor WPs as done (not just effective tips)
1974
+ - `require_explicit_feature()` lists available features in error message
1975
+ - YAML parse errors in frontmatter now logged as warnings (not silently swallowed)
1976
+ - Merge engine uses `git reset --hard` on detached HEAD (not `git checkout` which fails when branch is checked out elsewhere)
1977
+ - Migration backup covers `kitty-specs/` and `.gitignore` (not just `.kittify/`)
1978
+ - `rebuild_state.py` uses max timestamp (not last file line) for terminal state
1979
+ - Merge lock uses atomic `open('x')` (not TOCTOU `exists()` + `write_text()`)
1980
+ - `merge --resume` errors when multiple paused merges exist (not silently picks first)
1981
+
1982
+ ## [2.1.4] - 2026-03-27
1983
+
1984
+ ### Added
1985
+
1986
+ **Enforce correct command file state**: Version markers and migration to guarantee all agent command files are always in the correct state.
1987
+
1988
+ - `<!-- spec-kitty-command-version: X.Y.Z -->` marker added as the first line of every generated command file (both full prompts and thin shims)
1989
+ - Migration `m_2_1_4_enforce_command_file_state` unconditionally writes all 16 command files per configured agent; idempotent on subsequent runs when version markers match
1990
+ - `spec-kitty doctor command-files` subcommand checks all agent command files for missing files, stale version markers, and wrong file type (full prompt vs thin shim)
1991
+
1992
+ ## [2.1.3] - 2026-03-27
1993
+
1994
+ ### 🐛 Fixed
1995
+
1996
+ **Preserve explicit WP args in workflow prompts**: Slash-command arguments passed to `/spec-kitty.implement` and `/spec-kitty.review` are now forwarded into the resolver-first flow instead of being silently dropped. Agents receiving explicit WP selectors (e.g., `WP03`, `--base WP01`) will correctly pass them to `spec-kitty agent context resolve` via `--wp-id` and `--base` flags.
1997
+
1998
+ - `implement.md` and `review.md` mission templates now include an `{ARGS}` placeholder with conditional forwarding instructions
1999
+ - Public slash-command docs updated: `/spec-kitty.implement` documents `[--base WP_ID]` support; `/spec-kitty.review` is now WP-only (removed stale "or prompt path" syntax)
2000
+ - Regression tests added across Markdown and TOML agent formats to ensure argument placeholders survive rendering
2001
+
2002
+ ## [2.1.2] - 2026-03-23
2003
+
2004
+ ### 🔧 Improved
2005
+
2006
+ **Skills audit and expansion**: All 6 distributed skills audited, command-verified, and expanded with full architecture documentation. Skills now document internal systems (glossary pipeline, constitution extraction, runtime DAG, git workflow boundary) so agents can operate effectively.
2007
+
2008
+ - setup-doctor: Fixed wrong CLI commands (`verify` → `verify-setup`, `status` → `agent tasks status`), added `--remove-orphaned` safety warning
2009
+ - runtime-review: Added discovery step, `--feature` flags, empty-lane guidance
2010
+ - glossary-context: Added 5-layer middleware pipeline, extraction methods, checkpoint/resume, step config
2011
+ - constitution-doctrine: Added extraction rules, governance.yaml schema, interview profiles, answers.yaml schema
2012
+ - runtime-next: Added decision algorithm, WP iteration logic, 6 guard primitives, agent loop pattern
2013
+ - orchestrator-api: Added JSON output examples, error code catalog, idempotency behavior, preflight details
2014
+
2015
+ ### ✨ Added
2016
+
2017
+ **2 new skills**: `spec-kitty-mission-system` (explains missions, 4 types, template resolution, guards) and `spec-kitty-git-workflow` (documents Python vs agent git operation boundary).
2018
+
2019
+ **Reusable skill update utility**: `src/specify_cli/upgrade/skill_update.py` for finding and patching skill files across all 13 agent skill roots.
2020
+
2021
+ **10 upgrade migrations** for consumer projects: 6 skill fixes, 1 release skill removal, 2 new skill installations, 1 glossary skill expansion.
2022
+
2023
+ **Documentation parity sprint (Feature 056)**: DocFX build now includes all 4 Divio categories (was only building 1x/ and 2x/). 5 new user guides distilled from skills, 4 existing docs expanded, 22 fact-check corrections across 20 files.
2024
+
2025
+ ### 🐛 Fixed
2026
+
2027
+ **DocFX build gap**: 56 docs files (tutorials, how-to, reference, explanation) were in the repo but excluded from the docs.spec-kitty.ai build. Now included via updated `docfx.json`.
2028
+
2029
+ **8-lane state machine documentation**: All docs updated from outdated 4-lane model (planned/doing/for_review/done) to correct 8-lane model (planned/claimed/in_progress/for_review/approved/done/blocked/canceled) with 24 allowed transitions.
2030
+
2031
+ **CLI reference completeness**: Added 12 missing commands to cli-commands.md, 7 missing subcommands to agent-subcommands.md. Fixed `spec-kitty sync` (documented as flat command, actually a group with 6 subcommands).
2032
+
2033
+ ### 🧹 Maintenance
2034
+
2035
+ - Removed `release` skill from distribution (spec-kitty development only, not for consumers)
2036
+ - Removed obsolete `docs/how-to/upgrade-to-0-11-0.md`
2037
+ - Fixed all cross-reference links in new docs (0 new DocFX build warnings)
2038
+
2039
+ ## [2.1.1] - 2026-03-21
2040
+
2041
+ ### 🐛 Fixed
2042
+
2043
+ - **Bundled doctrine payload in wheels**: the PyPI wheel now includes the full `doctrine/` package tree, including the canonical skill pack under `doctrine/skills/`, so `spec-kitty init` and `spec-kitty upgrade` can install managed skills for shipped builds.
2044
+ - **2.1.0 repair migration**: added `2.1.1_repair_skill_pack` so projects that already upgraded on broken `2.1.0` wheels reinstall the canonical managed skill pack on `spec-kitty upgrade`.
2045
+ - **Release verification guard**: the release workflow now fails if the built wheel omits doctrine files or bundled skills, and distribution tests now assert that a wheel-installed `spec-kitty init` produces the managed skill manifest and installed skill files.
2046
+
2047
+ ## [2.1.0] - 2026-03-21
2048
+
2049
+ ### ✅ Added
2050
+
2051
+ - **Agent Skills Pack (`#330`)**: added canonical bundled skills, registry/installer/verification flow, manifest support, and upgrade migration `m_2_0_11_install_skills`.
2052
+ - **Structured requirement mapping (`#329`)**: added requirement-to-work-package mapping support with CLI integration for tracing delivery intent into execution planning.
2053
+
2054
+ ### 🔧 Changed
2055
+
2056
+ - **Deterministic planning branch intent (`#328`)**: `specify` and `plan` commands now inject explicit target-branch metadata into templates to reduce ambiguity in downstream execution.
2057
+ - **Primary release line promotion**: `2.x` becomes the stable `main` line, with GitHub Releases and PyPI publication starting at `2.1.0`.
2058
+
2059
+ ### ⚠️ Deprecated
2060
+
2061
+ - **`1.x` overall**: the former `1.x` line is now deprecated and moves to `1.x-maintenance` for critical fixes only. No new `1.x` PyPI releases are planned.
2062
+
2063
+ ### 🗑️ Removed
2064
+
2065
+ - **Public `/spec-kitty.clarify` slash command (`#322`)**: removed the legacy clarify command, template, and migration path in favor of the current planning/discovery flow.
2066
+
2067
+ ## [2.0.11] - 2026-03-20
2068
+
2069
+ ### 📄 Documentation
2070
+
2071
+ - **2.x release metadata refresh**: updated the README's current-release banner so the branch advertises the active GitHub-only 2.x release line instead of the initial `v2.0.0` placeholder.
2072
+
2073
+ ## [2.0.10] - 2026-03-20
2074
+
2075
+ ### ✅ Added
2076
+
2077
+ - **Project-level `auto_commit` setting (`#321`)**: repos can now configure automatic commit behavior directly in project config.
2078
+ - **Sync queue resilience and diagnostics (`#320`)**: offline queue now supports FIFO eviction, coalescing, configurable caps, and sync doctor coverage for failure recovery.
2079
+
2080
+ ### 🐛 Fixed
2081
+
2082
+ - **Merge target resolution (`#272`)**: merge target branch is now resolved from feature `meta.json`, preventing merges from targeting the wrong branch.
2083
+ - **Acceptance and state persistence hardening (`#319`)**: state writes are now centralized around canonical metadata/state handling to reduce drift across acceptance, mission, and status flows.
2084
+ - **Feature context fallback restored**: ambiguous agent/task resolution now falls back to the latest incomplete feature instead of stopping on a stale explicit-selection error.
2085
+ - **Upgrade downgrade protection**: `spec-kitty upgrade` now refuses older targets instead of silently rewriting project metadata backwards.
2086
+ - **Migration discovery fail-fast**: broken `m_*.py` modules now fail discovery immediately instead of being skipped with a stderr warning.
2087
+ - **Upgrade metadata durability**: successful and failed migration records are now persisted immediately so retries can resume from an accurate state after mid-run failures.
2088
+ - **Safe auto-commit stash isolation**: `safe_commit()` now restores only the stash entry it created, preventing unrelated user stashes from being popped during upgrade/status auto-commits.
2089
+ - **Embedded task script compatibility**: copied `.kittify/scripts/tasks` helpers now fall back cleanly when the host `specify_cli` install is older than the copied templates.
2090
+
2091
+ ### 🔧 Changed
2092
+
2093
+ - **State architecture cleanup phase 2 (`#319`)**: consolidated atomic-write and state-contract handling across runtime, acceptance, and feature metadata paths.
2094
+ - **Test and quality isolation follow-ups**: retained the refactors that separated policy/test churn from release-critical behavior on the 2.x line.
2095
+
2096
+ ## [2.0.9] - 2026-03-15
2097
+
2098
+ ### ✅ Added
2099
+
2100
+ - **Mutation testing CI integration (feat #047)**: mutmut toolchain setup, CI integration, and targeted kill sessions for `status/` reducer and transitions.
2101
+ - **Agentic mutation testing remediation workflow**: GitHub Agentic Workflow (gh-aw) replaces the legacy Claude workflow for mutation testing remediation.
2102
+ - **SonarCloud integration**: added SonarCloud config; `develop` branch recognized as 2.x-equivalent in CI quality gates.
2103
+ - **Architecture corpus restructure**: versioned architecture docs under `architecture/1.x/` and `architecture/2.x/`, 45 ADRs, glossary contexts across 10 bounded domains, Contextive integration, and stakeholder persona definitions.
2104
+ - **`meta.json` schema example in specify template**: documents `"target_branch"` and `"vcs"` as required explicit fields.
2105
+
2106
+ ### 🐛 Fixed
2107
+
2108
+ - **Post-rebase quality fixes**: resolved unmatched `)` syntax error, `gap_analysis_path` undefined name (F821), `timezone` → `UTC` reference, unused `type: ignore` comments, and `toml` import-untyped mypy errors.
2109
+ - **Test isolation**: moved misplaced test package; fixed 3 test failures and Pydantic V1 deprecation warnings.
2110
+ - **Sync offline queue**: redirect offline queue warning to stderr instead of stdout.
2111
+ - **CI branch detection**: `develop` now recognized as a 2.x branch for branch-contract guards.
2112
+
2113
+ ### 🔧 Changed
2114
+
2115
+ - **Ruff lint compliance**: full ruff clean pass across `src/` and `tests/`; added ruff lint config to `pyproject.toml`.
2116
+ - **Documentation site updates**: 2.x docs site refresh with Contextive IDE integration guide.
2117
+ - **Test suite restructuring**: migrated to vertical-slice layout; redesigned CI quality workflow; annotated suite with fast/slow/git_repo markers; deleted tests/legacy/ after extracting unique behaviours.
2118
+
2119
+ ## [2.0.8] - 2026-03-11
2120
+
2121
+ ### 🐛 Fixed
2122
+
2123
+ - **Dashboard approved lane**: WPs with `lane: "approved"` no longer silently fall back to the "planned" column. Added "Approved" as a 5th kanban column between For Review and Done, with `claimed`→planned and `in_progress`→doing lane normalization in the scanner.
2124
+ - **Slim FEATURE_CONTEXT_UNRESOLVED payload**: reduced error payload size for LLM consumption to stay within agent context budgets.
2125
+
2126
+ ## [2.0.7] - 2026-03-11
2127
+
2128
+ ### ✅ Added
2129
+
2130
+ - **Mutation testing CI integration (feat #047)**: mutmut toolchain setup, CI integration, and targeted kill sessions for `status/` reducer and transitions (#275).
2131
+ - **Agentic mutation testing remediation workflow**: GitHub Agentic Workflow (gh-aw) replaces the legacy Claude workflow for mutation testing remediation.
2132
+ - **SonarCloud integration**: added SonarCloud config; `develop` branch recognized as 2.x-equivalent in CI quality gates.
2133
+ - **Architecture corpus restructure**: versioned architecture docs under `architecture/1.x/` and `architecture/2.x/`, 45 ADRs, glossary contexts across 10 bounded domains, Contextive integration, and stakeholder persona definitions.
2134
+ - **Google Antigravity as first-class agent (#266)**: added Google Antigravity to the supported agent roster with directory, templates, and migration coverage.
2135
+ - **Commands own workflow context (#261)**: commands now carry their own workflow context rather than relying on ambient state.
2136
+ - **Tracker snapshot publish payload (feat #048)**: resource routing in publish path (WP01) and batch API contract for tracker snapshot publish (WP02).
2137
+
2138
+ ### 🐛 Fixed
2139
+
2140
+ - **Stale overrides from upgrade version-skew (#285)**: `classify_asset()` now compares project `.kittify/` files against immutable package-bundled defaults (`get_package_asset_root()`) instead of the mutable `~/.kittify/` directory. This prevents old managed templates from being misclassified as user customizations and permanently shadowing newer templates in `.kittify/overrides/` during upgrades.
2141
+ - **New `SUPERSEDED` disposition**: managed files that differ from the current package default are now correctly classified as `SUPERSEDED` (removed) rather than `CUSTOMIZED` (moved to overrides). Only files with no package counterpart are treated as genuine user customizations.
2142
+ - **Repair migration for already-affected users**: new `2.0.7_fix_stale_overrides` migration scans `.kittify/overrides/` for files byte-identical to current package defaults and removes them. Genuine user customizations are preserved.
2143
+ - **Constitution: resolve_doctrine_root fallback for pip-installed users (#278)**: `resolve_doctrine_root()` no longer crashes when the `doctrine` package directory is missing from pip wheels; falls back to `specify_cli` package root.
2144
+ - **Merge: worktree/branch cleanup when feature is already integrated (#271)**: `spec-kitty merge` now runs worktree removal and branch deletion when all WP branches are already merged, instead of exiting with "Nothing to merge" and leaving cleanup to the user.
2145
+ - **Post-rebase quality fixes (#273)**: resolved unmatched `)` syntax error, `gap_analysis_path` undefined name (F821), `timezone` → `UTC` reference, unused `type: ignore` comments, and `toml` import-untyped mypy errors.
2146
+ - **Test isolation**: moved misplaced test package; fixed 3 test failures and Pydantic V1 deprecation warnings.
2147
+ - **Sync offline queue**: redirect offline queue warning to stderr instead of stdout.
2148
+ - **CI branch detection**: `develop` now recognized as a 2.x branch for branch-contract guards.
2149
+ - **Tracker publish path normalization (feat #048)**: normalize provider in publish path and document auth token resolution.
2150
+
2151
+ ### 🔧 Changed
2152
+
2153
+ - **Ruff lint compliance**: full ruff clean pass across `src/` and `tests/`; added ruff lint config to `pyproject.toml`.
2154
+ - **Documentation site updates**: 2.x docs site refresh with Contextive IDE integration guide.
2155
+
2156
+ ## [2.0.6] - 2026-03-10
2157
+
2158
+ ### 🐛 Fixed
2159
+
2160
+ - **Upgrade consistency sweep**: added a new `2.0.6_consistency_sweep` migration that backfills missing or blank feature `meta.json`, infers `target_branch` from feature docs or the repo primary branch, reconstructs missing `status.events.jsonl`, regenerates `status.json` and generated `tasks.md` status blocks, normalizes legacy WP frontmatter lane aliases/quoting, rewrites stale prompt paths, and archives orphan empty `status.json` snapshots before rebuilding canonical state.
2161
+ - **Worktree upgrade coverage**: `spec-kitty upgrade` now upgrades worktrees that have `kitty-specs/` or legacy `.specify/` state even when `.kittify/` has not been created yet.
2162
+ - **Detector false positives**: runtime-managed 2.x installs no longer trip legacy project-local mission migrations, and the constitution migration only flags the legacy `.kittify/memory/constitution.md` path.
2163
+ - **Target-branch backfill correctness**: the `0.13.8_target_branch` migration now uses repo-aware branch inference instead of the obsolete hardcoded Feature 025 exception.
2164
+
2165
+ ## [2.0.5] - 2026-03-10
2166
+
2167
+ ### ✅ Added
2168
+
2169
+ - **Namespace-aware artifact body sync (Feature 047)**: Full offline-first pipeline for pushing spec artifact bodies (markdown content) to the SaaS backend, including `NamespaceRef` typed identifiers, `OfflineBodyUploadQueue` SQLite persistence, body upload preparation and filtering, HTTP transport with response classification, dossier pipeline orchestration with partial failure handling, background sync queue drain, and end-to-end diagnostics/logging.
2170
+
2171
+ ### 🐛 Fixed
2172
+
2173
+ - **Init default directory (`#258`)**: `spec-kitty init` now defaults to the current directory when project name is omitted on the 2.x line.
2174
+ - **Sync integration**: Completed namespace artifact body sync wiring for end-to-end operation.
2175
+
2176
+ ### 📄 Documentation
2177
+
2178
+ - **Connector auth binding ADR**: Added architectural decision record for connector authentication binding and installation model gap analysis.
2179
+ - **Command-owned action context ADR**: Defined command-owned action context pattern.
2180
+
2181
+ ## [2.0.4] - 2026-03-06
2182
+
2183
+ ### 🐛 Fixed
2184
+
2185
+ - **Upgrade JSON machine-parseability hardening (`#254`)**: `spec-kitty upgrade --json` now emits raw JSON output without Rich console wrapping.
2186
+ - **Upgrade migration status consistency (`#256`)**: non-applicable migrations are reported as `skipped` instead of incorrectly marked as applied.
2187
+
2188
+ ### 🔧 Changed
2189
+
2190
+ - **Contract hardening closeout (`#213`-`#218`)**: merged deterministic branch/runtime contracts, typed artifact-path payloads, merge/preflight JSON enrichment, and banner suppression in agent contexts.
2191
+ - **Codex/Copilot slash-flow reliability (`#128`)**: integrated slash-command output stability improvements via deterministic JSON/banners/template alignment.
2192
+ - **Worktree/preflight stability (`#226`)**: released preflight and command-contract hardening on the 2.x line for end-to-end spec→implement→review runs.
2193
+
2194
+ ## [2.0.2] - 2026-02-27
2195
+
2196
+ ### ✅ Added
2197
+
2198
+ - **Flag-gated tracker command group**: added `spec-kitty tracker ...` commands behind `SPEC_KITTY_ENABLE_SAAS_SYNC`, including provider listing, bind/unbind, mapping, local sync pull/push/run, and snapshot publish.
2199
+ - **Tracker host-local persistence + credentials support**: added CLI-owned tracker SQLite cache/checkpoints and provider credential handling consistent with existing Spec Kitty host persistence patterns.
2200
+
2201
+ ### 🔧 Changed
2202
+
2203
+ - **Dependency floor hardening for 2.x installs**: added explicit lower bounds for previously unbounded core CLI direct dependencies to reduce resolver drift in fresh environments.
2204
+ - **Workflow review lane guard**: review start now requires a valid `for_review` lane state before progressing.
2205
+
2206
+ ## [2.0.1] - 2026-02-26
2207
+
2208
+ ### 🐛 Fixed
2209
+
2210
+ - **Main bias fix**: `resolve_primary_branch()` now checks the current branch before the hardcoded `[main, master, develop]` list. Repos on non-standard primary branches (e.g., `2.x`) no longer get blocked by `spec-kitty specify`.
2211
+ - `create_feature()` records the current branch as `target_branch` in `meta.json` instead of guessing via heuristics. Added `--target-branch` CLI option for explicit override.
2212
+ - `guards.py` uses `resolve_primary_branch()` instead of hardcoded `{"main", "master"}` set.
2213
+ - `merge-feature --target` auto-detects from `meta.json` when not specified.
2214
+ - Template references to "main" replaced with "target branch" throughout command templates.
2215
+
2216
+ ### 🔧 Changed
2217
+
2218
+ - **Dashboard `--open` flag**: Browser auto-open is now disabled by default. Pass `--open` to open the dashboard URL in your browser. Prevents browser windows from spawning during tests or CI.
2219
+ - Consolidated 3 ad-hoc branch-check functions into `_show_branch_context()` for consistent branch banners across all planning commands.
2220
+
2221
+ ## [2.0.0] - 2026-02-22
2222
+
2223
+ ### 🔧 Changed
2224
+
2225
+ - Start semantic versioning for `2.x` GitHub-only releases using `v2.<minor>.<patch>` tags.
2226
+ - `2.x` release automation now publishes GitHub Releases only (no PyPI publish step).
2227
+
2228
+ ### 🐛 Fixed
2229
+
2230
+ - `spec-kitty next` no longer short-circuits `--result failed|blocked` in the CLI bridge; both now flow through `spec-kitty-runtime` `next_step(...)`, preserving canonical runtime lifecycle behavior and run metadata.
2231
+ - Runtime mission template selection for `next` now follows deterministic precedence tiers (`explicit`, `env`, `project override`, `project legacy`, `user global`, `project config`, `builtin`) when resolving `mission-runtime.yaml`.
2232
+ - `--answer --json` integration coverage now exercises a real pending-decision success path (runtime `requires_inputs`) instead of fake decision IDs.
2233
+ - Added replay-parity integration coverage in `spec-kitty` against `spec-kitty-events` canonical fixture stream (`mission-next-replay-full-lifecycle`).
2234
+ - **WP prompt tracking reliability**: removed stale `kitty-specs/**/tasks/*.md` from tracked `.gitignore`, migrated existing projects away from that rule, and hardened workflow status commits to fail loudly if claim commits cannot be written.
2235
+
2236
+ ## [2.0.0a5] - 2026-02-14
2237
+
2238
+ ### 🐛 Fixed
2239
+
2240
+ **Backported orchestrator deadlock fixes from v0.15.3**:
2241
+
2242
+ - **Orchestrator deadlock**: Fixed false "No progress possible" detection when WP tasks raise exceptions or complete but leave WPs in intermediate states (IMPLEMENTATION/REVIEW). The orchestrator now properly marks failed WPs as FAILED and restarts orphaned WPs, preventing deadlock cascades. (Backport of #137 by @tannn)
2243
+ - **Exception handling**: Task exceptions now properly mark WPs as FAILED with error details, allowing dependent WPs to recognize failure instead of blocking indefinitely
2244
+ - **WP restart logic**: Added restart counter to prevent infinite restart loops if WP repeatedly fails to advance state. Restarts are now capped at `max_retries` (default: 3)
2245
+ - **State recovery**: Improved detection of interrupted implementations (IMPLEMENTATION status without `implementation_completed` timestamp) to automatically reset and retry
2246
+
2247
+ ### 🧹 Maintenance
2248
+
2249
+ - **Test coverage**: Added 8 new orchestrator tests covering exception handling, restart scenarios, deadlock detection, and state persistence
2250
+ - **Test quality**: Reorganized test suite with proper markers (`@pytest.mark.orchestrator_exception_handling`, `@pytest.mark.orchestrator_deadlock_detection`) and class grouping following project conventions
2251
+
2252
+ ## [2.0.0a4] - 2026-02-13
2253
+
2254
+ ### 🐛 Fixed
2255
+
2256
+ **Backported v0.15.2 hotfix from main branch**:
2257
+
2258
+ - **Branch detection**: Replaced single `rev-parse --abbrev-ref HEAD` with dual-strategy
2259
+ approach (`git branch --show-current` primary, `rev-parse` fallback). Fixes unborn branch
2260
+ detection and detached HEAD handling. Updated all inline callers in tasks.py, workflow.py,
2261
+ and vcs/git.py.
2262
+
2263
+ - **Subprocess encoding safety**: Added `encoding="utf-8", errors="replace"` to all ~135
2264
+ `subprocess.run(text=True)` calls across 36 files. Prevents crashes on non-UTF-8 git output (Windows, locale mismatches).
2265
+
2266
+ - **Pre-commit hook safety**: Removed `set -e` from encoding check hook, expanded Python
2267
+ interpreter detection (loops through python3/python/py with smoke test), fixed exit code
2268
+ handling to distinguish encoding errors (exit 2) from execution failures.
2269
+
2270
+ - **Init fail-fast**: `spec-kitty init` now raises RuntimeError immediately after git init
2271
+ failure instead of falling through to "project ready" success message.
2272
+
2273
+ - **PowerShell templates**: Added PowerShell equivalent blocks to implement.md templates
2274
+ for software-dev, research, and documentation missions.
2275
+
2276
+ ## [2.0.0a3] - 2026-02-11
2277
+
2278
+ ### 🐛 Fixed
2279
+
2280
+ **Complete Bug #119 cherry-pick**:
2281
+ - Fixed missing update to `scripts/tasks/acceptance_support.py` (root-level test helper)
2282
+ - This file was missed in the original Bug #119 cherry-pick, causing test failures
2283
+ - Now all acceptance_support.py copies correctly exclude 'done' lane from assignee requirement
2284
+
2285
+ ## [2.0.0a2] - 2026-02-11
2286
+
2287
+ ### 🐛 Fixed
2288
+
2289
+ **Cherry-picked 7 critical bug fixes from v0.15.0 (main branch)**:
2290
+
2291
+ - **Bug #95**: Enforce kebab-case validation for feature slugs
2292
+ - Rejects slugs with spaces, underscores, uppercase, or leading numbers
2293
+ - Prevents invalid directory structures and broken workflow commands
2294
+ - Added 8 comprehensive validation tests
2295
+
2296
+ - **Bug #120**: Use local git exclude for worktree ignores
2297
+ - Worktree-specific ignores now written to `.git/info/exclude` instead of `.gitignore`
2298
+ - Prevents `.gitignore` pollution when merging worktrees
2299
+ - VCS abstraction layer handles legacy worktree filtering consistently
2300
+
2301
+ - **Bug #117**: Improve dashboard lifecycle and error diagnostics
2302
+ - Dashboard process detection no longer reports false failures
2303
+ - Distinguishes between health check timeout (process running) vs actual failure
2304
+ - Provides specific error messages for missing metadata, port conflicts, permission errors
2305
+
2306
+ - **Bug #124**: Unify branch resolution, stop implicit master fallback
2307
+ - Respects user's current branch instead of auto-checkout
2308
+ - Shows notification when current branch differs from feature target
2309
+ - No more surprise checkouts during `spec-kitty implement` or `move-task`
2310
+ - Consistent branch resolution across all commands
2311
+
2312
+ - **Bug #119**: Relax strict assignee gate in acceptance validation
2313
+ - Assignee now optional for completed work packages in 'done' lane
2314
+ - Strict validation still enforces assignee for 'doing' and 'for_review'
2315
+ - Required fields (lane, agent, shell_pid) still mandatory
2316
+
2317
+ - **Bug #122**: Prevent staged files from leaking into status commits
2318
+ - New `safe_commit()` helper explicitly stages only intended files
2319
+ - Status commits no longer capture unrelated staged changes
2320
+ - Preserves user's staging area across workflow operations
2321
+
2322
+ - **Bug #123**: Call lane transition before status update (atomic state)
2323
+ - Lane transitions now happen BEFORE internal state updates
2324
+ - Prevents inconsistent state when operations fail mid-transition
2325
+ - Applies to orchestrator implementation and review phases
2326
+
2327
+ All fixes include comprehensive test coverage (54+ new tests) and maintain backward compatibility.
2328
+
2329
+ ## [0.13.26] - 2026-02-04
2330
+
2331
+ ### 🛠️ Refactored
2332
+
2333
+ **Consolidated workflow implement workspace creation**:
2334
+ - `spec-kitty agent workflow implement` now delegates workspace creation to `spec-kitty implement` when needed
2335
+ - Removes duplicated worktree setup in the agent command
2336
+ - Prevents agents from creating worktrees from inside another worktree
2337
+
2338
+ ### 🐛 Fixed
2339
+
2340
+ **Clearer recovery guidance for multi-parent merge failures**:
2341
+ - When auto-merge fails, instructions now show concrete recovery steps
2342
+ - Explicitly warns there is no `spec-kitty agent workflow merge` command
2343
+ - Points agents to the correct `spec-kitty agent feature merge` command
2344
+
2345
+ ## [0.13.25] - 2026-02-04
2346
+
2347
+ ### 🐛 Fixed
2348
+
2349
+ **`spec-kitty upgrade` not bumping version when no migrations needed**:
2350
+ - When `spec-kitty upgrade` found no applicable migrations, it returned early without updating the version in `.kittify/metadata.yaml`
2351
+ - This left the project stuck at its old version (e.g., 0.13.21) even though the CLI was newer (0.13.24)
2352
+ - The dashboard then blocked with a version mismatch error
2353
+ - Fixed both `upgrade.py` (CLI command path) and `runner.py` (programmatic path) to stamp the version even when no migrations are needed
2354
+
2355
+ ## [0.13.24] - 2026-02-04
2356
+
2357
+ ### 🔧 Improved
2358
+
2359
+ **Review workflow shows git context for reviewers**:
2360
+ - `spec-kitty agent workflow review` now displays the WP's branch name, base branch, and commit count
2361
+ - Reviewers see exactly which commits belong to the WP vs inherited history
2362
+ - Provides ready-to-use `git log <base>..HEAD` and `git diff <base>..HEAD` commands
2363
+ - Base branch auto-detected from WP dependencies (tries dependency branches first, then main/2.x)
2364
+ - Prevents reviewers from accidentally diffing against the wrong base (e.g., `main` instead of `2.x`)
2365
+
2366
+ ## [0.13.20] - 2026-01-30
2367
+
2368
+ ### 🐛 Fixed
2369
+
2370
+ **Merged Single-Parent Dependency Workflow Gap** (ADR-18):
2371
+ - Fixed `spec-kitty implement` failing when single-parent dependency has been merged to target branch
2372
+ - Issue: WP01 merged to 2.x → WP02 can't implement (looks for non-existent WP01 workspace branch)
2373
+ - Root cause: Implement command didn't distinguish between in-progress vs merged dependencies
2374
+ - Solution: Auto-detect when dependency lane is "done" and branch from target branch instead
2375
+ - Behavior:
2376
+ - If `base_wp.lane == "done"`: Branch from target branch (e.g., 2.x) - merged work already there
2377
+ - If `base_wp.lane != "done"`: Branch from workspace branch (e.g., 025-feature-WP01) - work in progress
2378
+ - Eliminates need for manual frontmatter editing (remove dependencies, update base_branch)
2379
+ - Complements ADR-15 (multi-parent all-done suggestion) for single-parent case
2380
+ - **Impact**: Critical fix for normal workspace-per-WP workflow where dependencies complete before dependents start
2381
+ - **Technical Story**: Feature 025-cli-event-log-integration WP02/WP08 blocked on merged WP01
2382
+
2383
+ ## [0.13.7] - 2026-01-27
2384
+
2385
+ ### 🐛 Fixed
2386
+
2387
+ **Activity Log Parser Failing on Hyphenated Agent Names** ([#111](https://github.com/Priivacy-ai/spec-kitty/pull/111)):
2388
+ - Fixed `activity_entries()` regex in `tasks_support.py` to handle hyphenated agent names
2389
+ - Parser was using `[^–-]+?` pattern which treated hyphens as field separators
2390
+ - Agent names like `cursor-agent`, `claude-reviewer`, `cursor-reviewer` now parse correctly
2391
+ - Acceptance validation no longer fails with "Activity Log missing entry for lane=done" for hyphenated agents
2392
+ - Changed pattern to `\S+(?:\s+\S+)*?` (matches non-whitespace), aligning with `task_helpers.py`
2393
+ - Added comprehensive test suite with 11 test cases covering hyphenated names, backward compatibility, and edge cases
2394
+ - **Contributors**: Rodrigo D. L. (bruj0)
2395
+
2396
+ **Workflow Completion Instructions Missing Git Commit Step** ([#104](https://github.com/Priivacy-ai/spec-kitty/pull/104)):
2397
+ - Fixed agents not committing implementation files before marking tasks done
2398
+ - Issue caused cascading failures where dependent work packages started from empty branches
2399
+ - WP02 worktree had HTML + CSS ✅
2400
+ - WP03 worktree had HTML only (missing WP02's CSS) ❌
2401
+ - WP04 worktree had HTML only (missing CSS and JS from WP02 and WP03) ❌
2402
+ - Root cause: "WHEN YOU'RE DONE" instructions in `workflow implement` command didn't include git commit step
2403
+ - Fix: Added explicit git commit instruction as step 1 in completion checklist
2404
+ - Updated both in-prompt instructions (shown twice) and terminal output summary
2405
+ - Added warning: "The move-task command will FAIL if you have uncommitted changes! Commit all implementation files BEFORE moving to for_review. Dependent work packages need your committed changes."
2406
+ - **Impact**: Critical fix for multi-agent parallel development workflows using workspace-per-WP model (v0.11.0+)
2407
+ - **Contributors**: Jerome Lacube
2408
+
2409
+ **Dashboard Command Template Generating Python Code Instead of Running CLI** ([#94](https://github.com/Priivacy-ai/spec-kitty/issues/94), [#99](https://github.com/Priivacy-ai/spec-kitty/pull/99)):
2410
+ - Fixed `/spec-kitty.dashboard` command template to use `spec-kitty dashboard` CLI command
2411
+ - Removed outdated Python code that manually checked dashboard status and opened browsers
2412
+ - Dashboard now properly:
2413
+ - Starts automatically if not running
2414
+ - Opens in default browser
2415
+ - Handles worktree detection automatically
2416
+ - Updated all three dashboard template files:
2417
+ - `.kittify/missions/software-dev/command-templates/dashboard.md`
2418
+ - `src/specify_cli/missions/software-dev/command-templates/dashboard.md`
2419
+ - `src/specify_cli/templates/command-templates/dashboard.md`
2420
+ - Reduced template code from ~264 lines to ~47 lines
2421
+ - **Contributors**: Jerome Lacube
2422
+
2423
+ ## [0.13.6] - 2026-01-27
2424
+
2425
+ ### 🐛 Fixed
2426
+
2427
+ **Critical JSON Mode Corruption Fix** (Release Blocker):
2428
+ - Fixed JSON output corruption in `spec-kitty implement --json` mode (GitHub Issue #72 follow-up)
2429
+ - **Bug**: Warning messages from empty branch detection were written to stdout, corrupting JSON output
2430
+ - **Impact**: Automated workflows using `--json` flag would fail with JSON parse errors
2431
+ - **Fix**: Changed warning messages to use `file=sys.stderr` to separate warnings from JSON output
2432
+ - **File**: `src/specify_cli/core/multi_parent_merge.py:142-144`
2433
+ - **Tests**: Updated 5 tests in `test_multi_parent_merge_empty_branches.py` to check stderr instead of stdout
2434
+
2435
+ **Missing Migration Fix** (Existing Users Affected):
2436
+ - Fixed missing migration for commit workflow section (GitHub Issue #72 follow-up)
2437
+ - **Bug**: New projects got commit workflow section in implement.md, but existing projects didn't after upgrade
2438
+ - **Impact**: Existing users remained vulnerable to agents forgetting to commit work
2439
+ - **Fix**: Created migration `m_0_13_5_add_commit_workflow_to_templates.py` to update all agent templates
2440
+ - **Coverage**: Updates both software-dev and documentation mission templates for all 12 agents
2441
+ - **Migration**: Automatically runs on `spec-kitty upgrade` for projects missing commit workflow
2442
+
2443
+ **Subprocess Error Handling** (Defensive Programming):
2444
+ - Added timeout and error handling to multi-parent merge git commands
2445
+ - **Bug**: Git commands in empty branch detection lacked timeout parameters and try/except blocks
2446
+ - **Impact**: Function could hang forever or crash on git errors (corrupted repo, permission issues)
2447
+ - **Fix**: Added 10-second timeouts and exception handling to all git subprocess calls
2448
+ - **File**: `src/specify_cli/core/multi_parent_merge.py:117-144`
2449
+ - **Errors handled**: TimeoutExpired (>10s git commands), general exceptions with warning
2450
+
2451
+ ### Added
2452
+
2453
+ - Git commit validation for "done" status transitions - prevents completing WPs with uncommitted changes
2454
+ - Empty branch detection in merge-base creation - warns when dependencies have no commits
2455
+ - Git commit workflow section in documentation mission template (consistency with software-dev/research)
2456
+ - Comprehensive troubleshooting guide for empty branch recovery in the legacy workspace-model documentation
2457
+ - Migration to add commit workflow section to existing projects (`m_0_13_5_add_commit_workflow_to_templates.py`)
2458
+
2459
+ ### Changed
2460
+
2461
+ - `move-task --to done` now validates git status (same checks as "for_review")
2462
+ - Use `--force` flag to bypass validation (not recommended)
2463
+ - Warning messages in multi-parent merge now output to stderr instead of stdout (preserves JSON output integrity)
2464
+
2465
+ ### Fixed (Non-Critical)
2466
+
2467
+ - WP agents can no longer mark tasks as "done" without committing implementation files
2468
+ - Multi-parent merge-bases no longer silently accept empty dependency branches
2469
+ - Documentation mission now instructs agents to commit work before review
2470
+ - Stale WP detection now correctly detects default branch name (main/master/develop) instead of hardcoding "main"
2471
+ - **Bug**: Fresh worktrees incorrectly flagged as stale when repository used non-standard default branch
2472
+ - **Root Cause**: Code hardcoded "main" as default branch; when `git merge-base HEAD main` failed, it fell through to using parent branch's old commit timestamp
2473
+ - **Fix**: Added `get_default_branch()` helper to dynamically detect default branch via origin HEAD or local branch existence
2474
+ - **Impact**: Prevents false staleness warnings for fresh worktrees in repos using "master", "develop", or other default branches
2475
+
2476
+ ## [0.13.5] - 2026-01-26
2477
+
2478
+ ### 🐛 Fixed
2479
+
2480
+ **Fixed /spec-kitty.clarify Command Template**:
2481
+ - Fixed broken placeholder in clarify template that prevented agents from running clarification workflow
2482
+ - **Bug**: Template contained `(Missing script command for sh)` placeholder instead of actual command
2483
+ - **Impact**: Agents couldn't get feature context, invented non-existent commands like `spec-kitty agent feature get-active --json`
2484
+ - **Fix**: Replaced manual detection logic with `spec-kitty agent feature check-prerequisites --json --paths-only`
2485
+ - **Consistency**: Now matches pattern used in specify.md, plan.md, and tasks.md templates
2486
+ - Migration `m_0_13_5_fix_clarify_template.py` automatically updates all 12 agent directories on upgrade
2487
+ - Source template: `src/specify_cli/missions/software-dev/command-templates/clarify.md`
2488
+
2489
+ **Testing**:
2490
+ - Added comprehensive test suite with 34 tests covering all scenarios
2491
+ - Parametrized tests for all 12 agents (claude, copilot, gemini, cursor, qwen, opencode, windsurf, codex, kilocode, auggie, roo, q)
2492
+ - Tests for detection, application, agent config respect, idempotency, dry-run
2493
+ - Template content validation (ensures no broken placeholders, matches tasks.md pattern)
2494
+ - End-to-end integration test verifying migration actually runs and fixes templates
2495
+
2496
+ ## [0.13.4] - 2026-01-26
2497
+
2498
+ ### 🐛 Fixed
2499
+
2500
+ **Critical Dependency Validation Fix**:
2501
+ - Fixed `spec-kitty agent workflow implement` not validating WP dependencies before creating workspaces
2502
+ - **Bug**: WP with single dependency could create workspace without `--base` flag
2503
+ - **Impact**: Workspace branched from main instead of dependency branch (silent correctness bug)
2504
+ - **Fix**: Added shared validation utility that errors when single dependency but no `--base` provided
2505
+ - **Example**: `WP06` depends on `WP04` → command now errors and suggests `--base WP04`
2506
+ - Created `src/specify_cli/core/implement_validation.py` with `validate_and_resolve_base()`
2507
+ - Agent commands now delegate to top-level commands (no more legacy script calls)
2508
+
2509
+ **Fixed Broken Agent Commands**:
2510
+ - Fixed `spec-kitty agent feature accept` calling non-existent `scripts/tasks/tasks_cli.py`
2511
+ - Now delegates to top-level `accept()` command
2512
+ - Fixed `spec-kitty agent feature merge` calling non-existent `scripts/tasks/tasks_cli.py`
2513
+ - Now delegates to top-level `merge()` command
2514
+ - Parameter mapping: `keep_branch` → `delete_branch` (inverted logic)
2515
+
2516
+ **Critical Merge Workflow Fix**:
2517
+ - Fixed merge failing when main branch lacks upstream tracking (Issue reported post-0.13.2 release)
2518
+ - 0.13.2 only checked if remote EXISTS, but not if branch TRACKS it
2519
+ - Added `has_tracking_branch()` function to check upstream tracking
2520
+ - Merge now skips pull if: (1) no remote OR (2) no upstream tracking
2521
+ - Affects users with local-only repos or repos where main doesn't track origin/main
2522
+
2523
+ **Testing & Prevention**:
2524
+ - Added 22 new tests for dependency validation and agent command wrappers
2525
+ - Unit tests: `test_implement_validation.py` (11 tests)
2526
+ - Integration tests: `test_agent_command_wrappers.py` (11 tests)
2527
+ - Added `TestMigrationRegistryCompleteness` test (prevents 0.13.2-style release blocker)
2528
+ - Verifies all `m_*.py` migration files are imported in `__init__.py`
2529
+ - Prevents silent bugs where migrations exist but never run
2530
+ - Added integration tests for merge with untracked branches
2531
+ - Added unit tests for `has_tracking_branch()` function
2532
+
2533
+ **Documentation**:
2534
+ - Added `src/specify_cli/cli/commands/agent/README.md` (wrapper pattern documentation)
2535
+ - Dependency validation best practices
2536
+ - Parameter mapping guidelines
2537
+ - Common pitfalls and examples
2538
+ - Updated RELEASE_CHECKLIST.md with mandatory migration registry verification
2539
+
2540
+ ## [0.13.2] - 2026-01-26
2541
+
2542
+ ### 🐛 Fixed
2543
+
2544
+ **Critical Windows Compatibility Issues**:
2545
+ - Fixed UTF-8 encoding errors causing Windows crashes (Issue #101)
2546
+ - Added `encoding='utf-8'` to all `write_text()` and `read_text()` calls
2547
+ - Affected files: feature.py, worktree.py, agent_context.py, doc_generators.py, gap_analysis.py
2548
+ - Completes PR #100 which missed several locations
2549
+ - Fixed hardcoded `python3` breaking Windows installations (Issue #105)
2550
+ - Replaced with `sys.executable` in Python code (feature.py)
2551
+ - Added dynamic Python detection in git hooks (tries python3, falls back to python)
2552
+ - Windows users no longer need to create python3 hardlinks/aliases
2553
+
2554
+ **Workflow Improvements**:
2555
+ - Added `--base` parameter to `spec-kitty agent workflow implement` (Issue #96)
2556
+ - Enables agents to create dependent WP worktrees via workflow command
2557
+ - Provides feature parity with top-level `spec-kitty implement` command
2558
+ - Example: `spec-kitty agent workflow implement WP02 --base WP01 --agent claude`
2559
+
2560
+ **Template and Documentation Fixes**:
2561
+ - Fixed broken `/spec-kitty.clarify` skill (Issue #106)
2562
+ - Removed unresolved `{SCRIPT}` and `{ARGS}` placeholders
2563
+ - Replaced with auto-detection instructions for feature paths
2564
+ - Fixed outdated template path references (Issue #102)
2565
+ - Updated 6 references from `.kittify/templates/` to `src/specify_cli/missions/`
2566
+ - Templates now reference correct bundled locations
2567
+ - Fixed upgrade version detection for modern projects (Issue #108)
2568
+ - Added detection for versions 0.7.0-0.13.0
2569
+ - Prevents unnecessary migrations on modern projects
2570
+ - Regenerated all 12 agent constitution templates (Issue #97)
2571
+ - All agents now correctly suggest `/spec-kitty.specify` as next step (not `/spec-kitty.plan`)
2572
+
2573
+ ### 📚 Documentation
2574
+
2575
+ - Added GitHub CLI authentication troubleshooting to CLAUDE.md
2576
+ - Documents `unset GITHUB_TOKEN` technique for organization repos
2577
+
2578
+ **Issues Closed**: #96, #97, #101, #102, #105, #106, #108, #103 (not a bug), #107 (not a bug)
2579
+
2580
+ ## [0.13.1] - 2026-01-25
2581
+
2582
+ ### ✨ Added
2583
+
2584
+ **Adversarial Test Suite for 0.13.0 Release**:
2585
+ - **Distribution tests**: Validate PyPI user experience without SPEC_KITTY_TEMPLATE_ROOT bypass (prevents 0.10.8-style packaging failures)
2586
+ - **Path validation security tests**: Test directory traversal, symlink attacks, case-sensitivity bypasses, and path injection prevention
2587
+ - **CSV schema attack tests**: Validate handling of formula injection, encoding errors, duplicate columns, and empty files
2588
+ - **Git state detection tests**: Verify accuracy of uncommitted work, merge state, and branch divergence detection
2589
+ - **Migration robustness tests**: Test UTF-8 encoding, idempotency, and partial/corrupted file handling
2590
+ - **Multi-parent merge tests**: Validate dependency-order merging and conflict resolution
2591
+ - **Context & config tests**: Test non-interactive modes, agent configuration, and workspace validation
2592
+
2593
+ **Test Infrastructure**:
2594
+ - New `tests/adversarial/` directory with shared fixtures and attack vectors
2595
+ - `@pytest.mark.distribution` and `@pytest.mark.slow` markers for CI optimization
2596
+ - Session-scoped `wheel_install` fixture for efficient testing
2597
+ - Platform-specific skip conditions for cross-platform compatibility
2598
+
2599
+ ### 📚 Documentation
2600
+
2601
+ **Testing**:
2602
+ - Comprehensive adversarial test documentation in feature 024 spec
2603
+ - Attack vector catalog with prevention strategies
2604
+ - CI integration guidance for slow/distribution tests
2605
+
2606
+ ## [0.13.0] - 2026-01-25
2607
+
2608
+ ### ✨ Added
2609
+
2610
+ **Deterministic CSV Schema Enforcement for Research Missions**:
2611
+ - **Canonical schema documentation**: Research CSV schemas now documented in all 12 agent implement.md templates
2612
+ - **Two schemas enforced**:
2613
+ - `evidence-log.csv`: `timestamp,source_type,citation,key_finding,confidence,notes`
2614
+ - `source-register.csv`: `source_id,citation,url,accessed_date,relevance,status`
2615
+ - **Schema visibility**: Agents see schemas before editing (in "Research CSV Schemas" section with examples)
2616
+ - **Detection migration**: `m_0_13_0_research_csv_schema_check.py` scans existing features for schema mismatches (informational only, no auto-fix)
2617
+ - **Template propagation**: `m_0_13_0_update_research_implement_templates.py` updates all agent templates with schema documentation
2618
+ - **Reusable validator**: `src/specify_cli/validators/csv_schema.py` provides `CSVSchemaValidation` dataclass for exact schema matching
2619
+ - **Exported constants**: `EVIDENCE_REQUIRED_COLUMNS` and `SOURCE_REGISTER_REQUIRED_COLUMNS` now importable from `research.py`
2620
+ - **ADR #8**: Documents architecture decision for documentation-based enforcement vs runtime enforcement/auto-migration
2621
+
2622
+ **Problem Solved**: Agents were modifying CSV schemas during implementation, creating different schemas in parallel WPs, causing merge conflicts and validation failures at review time.
2623
+
2624
+ **Solution Approach**: Document schemas where agents can see them (prevention) rather than runtime enforcement or auto-migration (data loss risk).
2625
+
2626
+ **Fully Non-Interactive Init Support**:
2627
+ - Added `--non-interactive` / `--yes` and `SPEC_KITTY_NON_INTERACTIVE` to disable prompts
2628
+ - Added `--agent-strategy`, `--preferred-implementer`, and `--preferred-reviewer` to expose all selection options via CLI
2629
+ - Non-interactive mode now avoids arrow-key menus and requires `--force` for non-empty `--here` directories
2630
+ - Updated documentation for automation and CI usage
2631
+
2632
+ ### 🐛 Fixed
2633
+
2634
+ **Windows UTF-8 Encoding Crashes**:
2635
+ - Fixed all `write_text()` calls to include `encoding='utf-8'` parameter
2636
+ - Affects feature creation, worktree setup, gap analysis, doc generators, agent context, and test fixtures
2637
+ - Windows users can now create features without charmap encoding errors
2638
+ - Fixes #101, incorporates PR #100
2639
+
2640
+ **Constitution Template Workflow**:
2641
+ - Fixed incorrect next-step suggestion after creating constitution
2642
+ - Now correctly suggests `/spec-kitty.specify` instead of `/spec-kitty.plan`
2643
+ - Propagated fix to all 12 agent directories via migration
2644
+ - Fixes #97 (inspired by PR #98)
2645
+
2646
+ **Research Mission Detection**:
2647
+ - Fixed `spec-kitty mission current` to show feature-level missions
2648
+ - Now auto-detects feature from current directory (kitty-specs or worktree)
2649
+ - Added `--feature` flag for explicit feature specification
2650
+ - No longer always defaults to software-dev for research features
2651
+ - Fixes #93
2652
+
2653
+ ### 🎉 Closed
2654
+
2655
+ **Agent Configuration Feature**:
2656
+ - Closed #51 as completed (already implemented in v0.12.0)
2657
+ - Feature: `spec-kitty agent config add/remove/list`
2658
+
2659
+ ### 📚 Documentation
2660
+
2661
+ **Release Management**:
2662
+ - Added `RELEASE_CHECKLIST.md` - Comprehensive release preparation checklist with version-specific sections for research missions, agent management, and workspace-per-WP changes
2663
+
2664
+ ### Migration Notes
2665
+
2666
+ **For users with existing research features**:
2667
+ 1. Run `spec-kitty upgrade` to trigger detection migration
2668
+ 2. See informational report with schema diffs and migration tips
2669
+ 3. Use LLM agent to help migrate data:
2670
+ - Read canonical schema in `.claude/commands/spec-kitty.implement.md`
2671
+ - Create new CSV with correct headers
2672
+ - Map old columns → new columns
2673
+ - Replace old file and commit to main
2674
+
2675
+ **For new research features (0.13.0+)**:
2676
+ - Templates already have correct schemas
2677
+ - Agents see schema documentation before editing
2678
+ - Follow append-only pattern to avoid overwrites
2679
+ - Validation passes at review
2680
+
2681
+ ## [0.12.1] - 2026-01-24
2682
+
2683
+ ### 🐛 Fixed
2684
+
2685
+ **kitty-specs/ in .gitignore Blocking Feature Creation**:
2686
+ - Fixed issue where users with `kitty-specs/` in their `.gitignore` couldn't create features
2687
+ - Error manifested as: "Issue Detected: The spec-kitty agent feature create-feature command failed to commit because .gitignore contains kitty-specs/"
2688
+ - New migration `m_0_12_1_remove_kitty_specs_from_gitignore` automatically removes blocking entries
2689
+ - Only removes patterns that block the entire `kitty-specs/` directory
2690
+ - Preserves worktree-specific patterns like `kitty-specs/**/tasks/*.md` (used to prevent merge conflicts)
2691
+
2692
+ ### Migration Notes
2693
+
2694
+ **For users experiencing this bug:**
2695
+ 1. Run `spec-kitty upgrade` to apply the fix automatically
2696
+ 2. Or manually remove `kitty-specs/` from your `.gitignore`
2697
+
2698
+ The migration will detect and remove entries like:
2699
+ - `kitty-specs`
2700
+ - `kitty-specs/`
2701
+ - `/kitty-specs`
2702
+ - `/kitty-specs/`
2703
+
2704
+ It will NOT remove specific subpath patterns that are intentionally used in worktrees.
2705
+
2706
+ ## [0.12.0] - 2026-01-23
2707
+
2708
+ ### ✨ Added
2709
+
2710
+ **Config-Driven Agent Management** (Feature 022):
2711
+ - **Single source of truth**: `.kittify/config.yaml` now controls which agents are configured
2712
+ - **New CLI commands**: `spec-kitty agent config list|add|remove|status|sync`
2713
+ - `list`: Show configured agents
2714
+ - `add <agents...>`: Add agents to configuration
2715
+ - `remove <agents...>`: Remove agents from configuration
2716
+ - `status`: Show configured vs orphaned agents
2717
+ - `sync`: Synchronize filesystem with configuration
2718
+ - **Migrations respect config**: `get_agent_dirs_for_project()` helper only processes configured agents
2719
+ - **Orphan detection**: Identifies agent directories not in config (from manual deletions)
2720
+ - **ADR #6**: Documents architectural decision for config-driven approach
2721
+
2722
+ **Smarter Feature Merge with Pre-flight** (Feature 017):
2723
+ - **Pre-flight validation**: Checks all WP worktrees for uncommitted changes, missing worktrees, and target branch divergence before any merge starts
2724
+ - **Conflict forecasting**: `--dry-run` predicts which files will conflict and classifies them as auto-resolvable (status files) or manual
2725
+ - **Smart merge order**: WPs merged in dependency order based on frontmatter `dependencies` field
2726
+ - **Status file auto-resolution**: Conflicts in WP prompt files (`kitty-specs/*/tasks/*.md`) automatically resolved by taking advanced lane status
2727
+ - **Merge state persistence**: Progress saved to `.kittify/merge-state.json` for recovery
2728
+ - **Resume/abort flags**: `--resume` continues interrupted merges, `--abort` clears state and starts fresh
2729
+ - **Auto-cleanup**: Worktrees and branches removed after successful merge (configurable with `--keep-worktree`, `--keep-branch`)
2730
+
2731
+ ### 📚 Documentation
2732
+
2733
+ **Merge Preflight Documentation** (Feature 018):
2734
+ - Added `docs/how-to/merge-feature.md` - Complete merge workflow guide with pre-flight, dry-run, strategies, and cleanup options
2735
+ - Added `docs/how-to/troubleshoot-merge.md` - Comprehensive troubleshooting guide with error reference table
2736
+ - Updated CLAUDE.md with Merge & Preflight Patterns section documenting MergeState dataclass and public API
2737
+
2738
+ **Agent Management Documentation Sprint** (Feature 023):
2739
+ - Added `docs/how-to/manage-agents.md` - Complete guide to adding, removing, and managing AI agent integrations
2740
+ - Added `docs/how-to/upgrade-to-0-12-0.md` - Migration guide for config-driven agent management
2741
+ - Updated `docs/reference/cli-commands.md` with comprehensive `agent config` subcommand documentation
2742
+ - Updated `docs/reference/agent-subcommands.md`, `docs/reference/configuration.md`, `docs/reference/supported-agents.md` with accurate cross-references
2743
+ - Updated `docs/how-to/install-spec-kitty.md` with agent configuration guidance
2744
+
2745
+ ### 🐛 Fixed
2746
+
2747
+ **Merge Resume Bug**:
2748
+ - Fixed `merge_workspace_per_wp()` missing `resume_state` parameter causing `TypeError` when using `--resume`
2749
+
2750
+ **Agent Workflow Output Truncation** (GitHub Codex compatibility):
2751
+ - Fixed workflow commands (`implement`, `review`) outputting 300+ lines which got truncated by agents like GitHub Codex
2752
+ - Prompts now written to temp file with concise 15-line summary to stdout
2753
+ - Added directive language (`▶▶▶ NEXT STEP: Read the full prompt file now:`) so agents automatically read the file
2754
+ - Agents no longer miss work package requirements due to output truncation
2755
+
2756
+ **False Staleness for Newly-Created Worktrees**:
2757
+ - Fixed stale detection flagging new worktrees as stale immediately
2758
+ - Previously, `git log -1` returned parent branch's commit time (could be hours old)
2759
+ - Now checks if branch has commits since diverging from main
2760
+ - Worktrees with no new commits are NOT flagged as stale (agent just started)
2761
+
2762
+ ## [0.11.1] - 2026-01-16
2763
+
2764
+ ### 🐛 Fixed
2765
+
2766
+ **Merge Template Improvements**:
2767
+ - Added explicit preflight validation code using `python3 -c` with `validate_worktree_location()`
2768
+ - Added clear visual "⛔ Location Pre-flight Check (CRITICAL)" section to prevent agents running merge from wrong location
2769
+ - Fixed contradictory instructions in software-dev mission merge template (was incorrectly saying "run from main")
2770
+ - Fixed empty Python code block in research mission merge template that confused agents
2771
+ - Added workspace-per-WP model (0.11.0+) documentation vs legacy pattern in worktree strategy section
2772
+
2773
+ **Documentation Accuracy** (Feature 014):
2774
+ - Rewrote `multi-agent-orchestration.md` for the 0.11.0+ isolated-WP worktree model:
2775
+ - Planning happens in main repo (not worktrees)
2776
+ - Each WP gets its own worktree (not shared)
2777
+ - Removed references to non-existent scripts
2778
+ - Updated lane tracking to frontmatter (not directories)
2779
+ - Added parallelization patterns and status monitoring
2780
+ - Fixed the legacy isolated-worktree guide merge command syntax (runs from worktree without feature argument)
2781
+ - Fixed `documentation-mission.md` broken source links
2782
+ - Fixed `reference/README.md` - replaced outdated "Planned Content" with actual content links
2783
+ - Fixed `kanban-workflow.md` - clarified `/spec-kitty.accept` works on features, not individual WPs
2784
+
2785
+ ### 📚 Added
2786
+
2787
+ **Comprehensive End-User Documentation** (Feature 014):
2788
+ - Complete Divio 4-type documentation suite:
2789
+ - **Tutorials**: Getting Started, Your First Feature, Claude Code Integration, Claude Code Workflow, Multi-Agent Workflow, Missions Overview
2790
+ - **How-To Guides**: 14 task-oriented guides covering installation, specifications, planning, implementation, review, dependencies, parallel development, dashboard usage, and migration
2791
+ - **Reference**: CLI Commands, Slash Commands, Agent Subcommands, Configuration, Environment Variables, File Structure, Missions, Supported Agents
2792
+ - **Explanations**: Spec-Driven Development, Divio Documentation, legacy isolated worktree model, Git Worktrees, Mission System, Kanban Workflow, AI Agent Architecture, Documentation Mission, Multi-Agent Orchestration
2793
+ - Cross-references between all documentation types
2794
+ - DocFX-compatible structure with `toc.yml` navigation
2795
+
2796
+ ## [0.11.0] - 2026-01-12
2797
+
2798
+ ### 🚨 BREAKING CHANGES - Workspace Model Changed (Feature 010)
2799
+
2800
+ **Old (0.10.x)**: One worktree per feature
2801
+ - `/spec-kitty.specify` created `.worktrees/###-feature/`
2802
+ - All WPs worked in same worktree
2803
+ - Sequential development (one agent at a time)
2804
+
2805
+ **New (0.11.0)**: One worktree per work package
2806
+ - Planning commands (specify, plan, tasks) work in main repository (NO worktree created)
2807
+ - `spec-kitty implement WP##` creates `.worktrees/###-feature-WP##/`
2808
+ - Each WP has isolated worktree with dedicated branch
2809
+ - Enables parallel multi-agent development
2810
+
2811
+ ### ⚠️ Migration Required
2812
+
2813
+ **You MUST complete or delete all in-progress features before upgrading to 0.11.0.**
2814
+
2815
+ See [docs/upgrading-to-0-11-0.md](docs/upgrading-to-0-11-0.md) for complete migration guide.
2816
+
2817
+ ### 🔒 Security (IMPORTANT) - Feature 011
2818
+
2819
+ - **Comprehensive adversarial review framework**
2820
+ - Expanded review template from 3 bullets (109 lines) to 12 scrutiny categories (505 lines)
2821
+ - **Security scrutiny now mandatory**: 10 detailed security subsections
2822
+ - **Mandatory verification**: 7 security grep commands must be run on EVERY review
2823
+ - **Automatic rejection** if any security check fails
2824
+ - **Impact**: All future features will have security-first reviews
2825
+
2826
+ ### ✨ Added
2827
+
2828
+ **Legacy isolated-WP worktree features (010)**:
2829
+ - **New command**: `spec-kitty implement WP## [--base WPXX]` - Create workspace for work package
2830
+ - `--base` flag branches from another WP's branch (for dependencies)
2831
+ - Automatically moves WP from `planned` → `doing` lane
2832
+ - **New command**: `spec-kitty agent feature finalize-tasks` - Finalize WP generation
2833
+ - Parses dependencies from tasks.md
2834
+ - Generates `dependencies: []` field in WP frontmatter
2835
+ - Validates dependency graph (cycle detection, invalid references)
2836
+ - **Dependency tracking**: WP frontmatter includes `dependencies: []` field
2837
+ - **Dependency graph utilities**: `src/specify_cli/core/dependency_graph.py`
2838
+ - **Review warnings**: Alert when dependent WPs need rebase
2839
+
2840
+ **Constitution Features (011)**:
2841
+ - **Interactive constitution command** (Phase-based discovery)
2842
+ - 4-phase discovery workflow (Technical, Quality, Tribal Knowledge, Governance)
2843
+ - Two paths: Minimal (Phase 1 only) or Comprehensive (all phases)
2844
+ - Skip options for each phase
2845
+ - Truly optional - all commands work without constitution
2846
+
2847
+ ### ♻️ Refactored - Feature 011
2848
+
2849
+ - **Template source relocation** (Safe dogfooding - Critical)
2850
+ - Moved ALL template sources from `.kittify/` to `src/specify_cli/`
2851
+ - Updated template manager to load from package resources
2852
+ - Removed `.kittify/*` force-includes from `pyproject.toml`
2853
+ - **Impact**: Developers can now safely dogfood without packaging risk
2854
+
2855
+ - **Mission-specific constitutions removed**
2856
+ - Single project-level constitution model (`.kittify/memory/constitution.md`)
2857
+ - Migration removes mission constitutions from user projects
2858
+
2859
+ ### 🐛 Fixed - Feature 011
2860
+
2861
+ - **Windows dashboard ERR_EMPTY_RESPONSE** (#71)
2862
+ - Replaced POSIX-only signal handling with cross-platform psutil
2863
+ - Added `psutil>=5.9.0` dependency
2864
+ - Dashboard now works on Windows 10/11
2865
+
2866
+ - **Upgrade migration failures** (#70)
2867
+ - Fixed multiple migrations to handle missing files gracefully
2868
+ - All migrations now idempotent
2869
+ - Upgrade path from 0.6.4 → 0.10.12 completes without intervention
2870
+
2871
+ ### 🐛 Fixed - Feature 012
2872
+
2873
+ - **`/spec-kitty.status` template instructed agents to run Python code**
2874
+ - AI agents cannot execute arbitrary Python - they use CLI tools
2875
+ - Updated template to use CLI command as primary method
2876
+ - Python API now documented as alternative for Jupyter/scripts
2877
+
2878
+ ### 📖 Documentation - Feature 010
2879
+
2880
+ - **New docs**: legacy isolated-worktree workflow guide with examples
2881
+ - **New docs**: `docs/upgrading-to-0-11-0.md` - Migration instructions
2882
+
2883
+ ### 🎯 Why These Changes?
2884
+
2885
+ **Feature 010 (Workspace-per-WP)**:
2886
+ - Enables parallel multi-agent development
2887
+ - Better isolation per work package
2888
+ - Explicit dependencies with validation
2889
+ - Scalability for large features (10+ WPs)
2890
+
2891
+ **Feature 011 (Constitution & Packaging Safety)**:
2892
+ - Safe dogfooding (no packaging contamination)
2893
+ - Cross-platform dashboard support
2894
+ - Optional, interactive constitution setup
2895
+ - Smooth upgrade migrations
2896
+
2897
+ ## [0.10.13] - 2026-01-12
2898
+
2899
+ ### 🐛 Fixed
2900
+
2901
+ - **CRITICAL: Missing migration in PyPI v0.10.12 package**
2902
+ - Migration `m_0_10_12_constitution_cleanup.py` was missing from PyPI package uploaded on 2026-01-07
2903
+ - File existed in source repository but was not included in distributed wheel
2904
+ - Caused constitution cleanup to not run during upgrades from v0.10.11
2905
+ - v0.10.13 includes the missing migration file
2906
+ - Users who installed v0.10.12 should run `spec-kitty upgrade` again after upgrading to v0.10.13
2907
+ - **Root cause**: PyPI package was built before migration file was committed to repository
2908
+ - **Prevention**: Added migration file count verification to release workflow
2909
+
2910
+ ### ♻️ Improved
2911
+
2912
+ - **Release workflow hardening**
2913
+ - Added verification step to count migration files in built wheel
2914
+ - Release now fails if migration count doesn't match source repository
2915
+ - Prevents future packaging bugs where files are missing from distribution
2916
+
2917
+ ### 📋 Migration for v0.10.12 Users
2918
+
2919
+ If you installed v0.10.12 from PyPI and upgraded from v0.10.11:
2920
+ ```bash
2921
+ pip install --upgrade spec-kitty-cli
2922
+ spec-kitty upgrade # Run again to apply missing migration 0.10.12
2923
+ ```
2924
+
2925
+ The migration will remove mission-specific constitution directories:
2926
+ - `.kittify/missions/software-dev/constitution/` → removed
2927
+ - `.kittify/missions/research/constitution/` → removed
2928
+ - Single project-level constitution: `.kittify/memory/constitution.md` (kept)
2929
+
2930
+ ## [0.10.12] - 2026-01-12
2931
+
2932
+ ### 🔒 Security (IMPORTANT)
2933
+
2934
+ - **Comprehensive adversarial review framework**
2935
+ - Expanded review template from 3 bullets (109 lines) to 12 scrutiny categories (505 lines)
2936
+ - **Security scrutiny now mandatory**: 10 detailed security subsections
2937
+ - **Mandatory verification**: 7 security grep commands must be run on EVERY review
2938
+ - **Automatic rejection** if any security check fails
2939
+ - **Impact**: All future features will have security-first reviews
2940
+ - **Rationale**: Prevents systematic quality issues (TODOs in prod, mocked implementations, security vulnerabilities)
2941
+ - See spec footnote and commit `61d7d01` for complete rationale
2942
+
2943
+ ### 🐛 Fixed
2944
+
2945
+ - **Windows dashboard ERR_EMPTY_RESPONSE** (#71)
2946
+ - Replaced POSIX-only signal handling with cross-platform psutil library
2947
+ - `signal.SIGKILL` and `signal.SIGTERM` don't exist on Windows
2948
+ - Added `psutil>=5.9.0` dependency for cross-platform process management
2949
+ - Refactored `src/specify_cli/dashboard/lifecycle.py`:
2950
+ - `os.kill(pid, 0)` → `psutil.Process(pid).is_running()`
2951
+ - `signal.SIGKILL` → `psutil.Process(pid).kill()` (6 locations)
2952
+ - `signal.SIGTERM` → `psutil.Process(pid).terminate()` with timeout
2953
+ - Added proper exception handling (NoSuchProcess, AccessDenied, TimeoutExpired)
2954
+ - Dashboard now starts, serves HTML, and stops cleanly on Windows 10/11
2955
+ - All 41 dashboard tests passing
2956
+
2957
+ - **Upgrade migration failures** (#70)
2958
+ - Fixed `m_0_7_3_update_scripts.py` to handle missing bash scripts gracefully
2959
+ - Fixed `m_0_10_6_workflow_simplification.py` to copy templates before validation
2960
+ - Fixed `m_0_10_2_update_slash_commands.py` to explicitly remove legacy .toml files
2961
+ - Fixed `m_0_10_0_python_only.py` to explicitly remove `.kittify/scripts/tasks/`
2962
+ - Created `m_0_10_12_constitution_cleanup.py` to remove mission constitutions
2963
+ - All migrations now idempotent (safe to run multiple times)
2964
+ - Upgrade path from 0.6.4 → 0.10.12 now completes without manual intervention
2965
+
2966
+ - **Upgrade migration parameter mismatch** (#68 follow-up)
2967
+ - Fixed `m_0_10_9_repair_templates.py` migration calling `generate_agent_assets()` with wrong parameter name
2968
+ - Changed `ai=ai_config` to `agent_key=ai_config` to match function signature
2969
+
2970
+ ### ♻️ Refactored
2971
+
2972
+ - **Template source relocation** (Safe dogfooding - Critical)
2973
+ - Moved ALL template sources from `.kittify/` to `src/specify_cli/`
2974
+ - Templates: `.kittify/templates/` → `src/specify_cli/templates/`
2975
+ - Missions: `.kittify/missions/` → `src/specify_cli/missions/`
2976
+ - Scripts: `.kittify/scripts/` → `src/specify_cli/scripts/`
2977
+ - Updated `src/specify_cli/template/manager.py` to load from `src/` not `.kittify/`
2978
+ - Removed ALL `.kittify/*` force-includes from `pyproject.toml`
2979
+ - **Impact**: Spec-kitty developers can now safely dogfood spec-kitty without risk of packaging their filled-in constitutions
2980
+ - **Verification**: Building wheel produces ZERO `.kittify/` or `memory/constitution.md` entries
2981
+ - Package now only contains `src/specify_cli/` (proper Python packaging)
2982
+
2983
+ - **Mission-specific constitutions removed**
2984
+ - Removed `mission.constitution_dir` property from `src/specify_cli/mission.py`
2985
+ - Removed constitution scanning from `src/specify_cli/manifest.py`
2986
+ - Deleted all `missions/*/constitution/` directories
2987
+ - **Impact**: Single project-level constitution model (`.kittify/memory/constitution.md`)
2988
+ - **Migration**: `m_0_10_12_constitution_cleanup.py` removes mission constitutions from user projects
2989
+ - Eliminates confusion about which constitution applies
2990
+
2991
+ ## [0.10.11] - 2026-01-07
2992
+
2993
+ ### 🐛 Fixed
2994
+
2995
+ - **Upgrade migration parameter mismatch** (#68 follow-up)
2996
+ - Fixed `m_0_10_9_repair_templates.py` migration calling `generate_agent_assets()` with wrong parameter name
2997
+ - Changed `ai=ai_config` to `agent_key=ai_config` to match function signature
2998
+ - Corrected parameter order to match function definition
2999
+ - **Root cause**: Migration was using deprecated parameter name, blocking users from upgrading to 0.10.11
3000
+ - **Impact**: Users unable to run `spec-kitty upgrade` to get template fixes from 0.10.11
3001
+
3002
+ ## [0.10.11] - 2026-01-07
3003
+
3004
+ ### 🐛 Fixed
3005
+
3006
+ - **Deprecated script references in mission templates** (#68)
3007
+ - Fixed `.kittify/missions/software-dev/templates/task-prompt-template.md` to use workflow commands instead of deprecated `python3 .kittify/scripts/tasks/tasks_cli.py`
3008
+ - Fixed `.kittify/templates/task-prompt-template.md` with same update
3009
+ - Fixed `.kittify/missions/software-dev/command-templates/tasks.md` to reference workflow commands
3010
+ - Updated `.kittify/templates/POWERSHELL_SYNTAX.md` to document spec-kitty CLI instead of obsolete PowerShell scripts
3011
+ - **Root cause**: Migration 0.10.9 fixed agent command templates but missed mission-specific templates
3012
+ - **Impact**: Agents were executing users' local `cli.py` files instead of spec-kitty CLI on Windows
3013
+
3014
+ ### ✨ Added
3015
+
3016
+ - **Template compliance tests** - Prevent deprecated script references
3017
+ - `test_no_deprecated_script_references()` - Detects old `.kittify/scripts/` paths in templates
3018
+ - `test_templates_use_spec_kitty_cli()` - Ensures templates reference spec-kitty CLI commands
3019
+ - Tests run on all mission templates and global templates
3020
+ - Prevents regression of issue #68
3021
+
3022
+ ## [0.10.10] - 2026-01-06
3023
+
3024
+ ### 🐛 Fixed
3025
+
3026
+ - **Windows UTF-8 encoding error in agent commands** (#66)
3027
+ - Fixed `'charmap' codec can't encode characters` error on Windows
3028
+ - `spec-kitty agent feature create-feature` now works correctly on Windows
3029
+ - Added UTF-8 stdout/stderr reconfiguration in main() entry point
3030
+ - Handles Unicode characters in git output and error messages
3031
+ - Gracefully falls back for Python < 3.7
3032
+
3033
+ ## [0.10.9] - 2026-01-06
3034
+
3035
+ ### 🐛 Fixed
3036
+
3037
+ - **CRITICAL: Wrong templates bundled in PyPI packages** (#62, #63, #64)
3038
+ - Fixed pyproject.toml to bundle .kittify/templates/ instead of outdated /templates/
3039
+ - Removed outdated /templates/ directory entirely to prevent confusion
3040
+ - All PyPI installations now receive correct Python CLI templates
3041
+ - No more bash script references in command templates
3042
+ - Migration 0.10.0 now handles missing templates gracefully
3043
+ - Added package bundling validation tests to prevent regression
3044
+
3045
+ - **Template divergence eliminated**
3046
+ - 10 of 13 command templates were outdated in /templates/
3047
+ - implement.md was 199 lines longer in old location (277 vs 78 lines)
3048
+ - Git hooks were missing (1 vs 3)
3049
+ - claudeignore-template was missing
3050
+
3051
+ - **All 12 AI agent integrations fixed**
3052
+ - Claude Code, GitHub Copilot, Cursor, Gemini, Qwen Code, OpenCode, Windsurf,
3053
+ GitHub Codex, Kilocode, Augment Code, Roo Cline, Amazon Q
3054
+ - All agents now receive correct Python CLI slash commands
3055
+
3056
+ ### ✨ Added
3057
+
3058
+ - **Repair migration (0.10.9_repair_templates)** - Automatically fixes broken installations
3059
+ - Detects projects with broken template references
3060
+ - Regenerates all agent slash commands from correct templates
3061
+ - Runs automatically during `spec-kitty upgrade`
3062
+ - Verifies repair was successful
3063
+
3064
+ - **Package bundling validation tests** - Prevents future regressions
3065
+ - Validates correct templates are bundled in sdist and wheel
3066
+ - Checks for bash script references before release
3067
+ - Tests importlib.resources accessibility
3068
+
3069
+ ### 📚 Migration & Upgrade Path
3070
+
3071
+ **For users with broken installations (issues #62, #63, #64):**
3072
+
3073
+ 1. **Upgrade spec-kitty package:**
3074
+ ```bash
3075
+ pip install --upgrade spec-kitty-cli
3076
+ spec-kitty --version # Should show 0.10.9
3077
+ ```
3078
+
3079
+ 2. **Run upgrade to apply repair migration:**
3080
+ ```bash
3081
+ cd /path/to/your/project
3082
+ spec-kitty upgrade
3083
+ ```
3084
+ This will automatically detect and fix broken templates.
3085
+
3086
+ 3. **Verify repair:**
3087
+ ```bash
3088
+ # Check for bash script references (should return nothing)
3089
+ grep -r "scripts/bash" .claude/commands/
3090
+ ```
3091
+
3092
+ **For new projects:**
3093
+ - Automatically get correct templates from package
3094
+ - No action needed
3095
+
3096
+ **For existing healthy projects:**
3097
+ - Run `spec-kitty upgrade` to stay current
3098
+ - No breaking changes
3099
+
3100
+ ### 🔒 Breaking Changes
3101
+
3102
+ None - Fully backwards compatible. Existing projects will upgrade smoothly.
3103
+
3104
+ ## [0.10.8] - 2025-12-30
3105
+
3106
+ ### 🐛 Fixed
3107
+
3108
+ - **Critical: Constitution not copied to worktrees** (#46)
3109
+ - Moved `memory/` directory from root to `.kittify/memory/` where code expects it
3110
+ - Removed broken circular symlinks (`.kittify/memory` → `../../../.kittify/memory`)
3111
+ - Fixed `.kittify/AGENTS.md` to be real file instead of broken symlink
3112
+ - Fixed worktree.py symlink handling (check for symlink before trying rmtree)
3113
+ - Added migration to automatically fix existing projects
3114
+ - Worktrees now correctly access constitution from main repo
3115
+
3116
+ - **Migration system** (v0.10.8_fix_memory_structure)
3117
+ - Automatically moves `memory/` to `.kittify/memory/` in existing projects
3118
+ - Removes broken symlinks and creates proper structure
3119
+ - Updates worktrees to use correct paths
3120
+ - Handles both Unix symlinks and Windows file copies
3121
+
3122
+ ### 🔧 Changed
3123
+
3124
+ - **Directory structure standardization**
3125
+ - `memory/` → `.kittify/memory/` (matches `.kittify/scripts/`, `.kittify/templates/`)
3126
+ - `.kittify/AGENTS.md` is now a real file (not symlink)
3127
+ - All `.kittify/` resources now follow consistent pattern
3128
+
3129
+ ## [0.10.7] - 2025-12-30
3130
+
3131
+ ### 🐛 Fixed
3132
+
3133
+ - **Critical: Copilot initialization bug** (#53, fixes #61, #50)
3134
+ - Fixed NameError when running `spec-kitty init --ai copilot`
3135
+ - Changed `commands_dir` to `command_templates_dir` in asset_generator.py
3136
+ - Unblocks all users trying to initialize projects with Copilot
3137
+
3138
+ - **Critical: Dashboard contracts and checklists missing** (#59, fixes #52)
3139
+ - Restored contracts and checklists handlers that were lost in Nov 11 dashboard refactoring
3140
+ - Added generic `_handle_artifact_directory()` helper method
3141
+ - Both contracts and checklists now display correctly in dashboard
3142
+ - Fixed frontend to use full filepath instead of filename only
3143
+
3144
+ - **Critical: Windows UTF-8 encoding errors** (#56)
3145
+ - Added explicit `encoding='utf-8'` to read_text() calls
3146
+ - Fixes dashboard diagnostics showing "undefined" on Windows
3147
+ - Affects manifest.py and migration files
3148
+ - Windows defaults to cp1252, causing UnicodeDecodeError with UTF-8 content
3149
+
3150
+ - **Plan.md location validation** (#60)
3151
+ - Improved validation messaging in plan.md template
3152
+ - Added prominent ⚠️ STOP header for AI agents
3153
+ - Clearer examples of correct vs wrong worktree locations
3154
+ - Template-only change (no code modifications)
3155
+
3156
+ ### 🔄 Closed
3157
+
3158
+ - PR #58 - Obsolete (PowerShell scripts deleted in v0.10.0)
3159
+ - PR #57 - Obsolete (PowerShell scripts deleted in v0.10.0)
3160
+ - PR #49 - Superseded by #59 (better architecture)
3161
+ - PR #43 - Obsolete (PowerShell scripts deleted in v0.10.0)
3162
+
3163
+ ## [0.10.6] - 2025-12-18
3164
+
3165
+ ### ✨ Added
3166
+
3167
+ - **Workflow commands for simplified agent experience**
3168
+ - New `spec-kitty agent workflow implement [WP_ID]` command
3169
+ - New `spec-kitty agent workflow review [WP_ID]` command
3170
+ - Commands display full WP prompt directly to agents (no file navigation)
3171
+ - Auto-detect first planned/for_review WP when no ID provided
3172
+ - Auto-move WP to "doing" lane before displaying prompt
3173
+ - Show "WHEN YOU'RE DONE" instructions at top of output
3174
+ - Display source file path for easy re-reading
3175
+ - Prevents race conditions (two agents picking same WP)
3176
+
3177
+ ### 🔧 Changed
3178
+
3179
+ - **Slash command template simplification**
3180
+ - implement.md: 78 lines → 11 lines (calls workflow command)
3181
+ - review.md: 72 lines → 11 lines (calls workflow command)
3182
+ - Templates now just run workflow commands instead of complex instructions
3183
+ - Agents see prompts immediately without navigation confusion
3184
+
3185
+ - **Consistent lane management**
3186
+ - Both implement and review workflows move WP to "doing" at start
3187
+ - Prevents ambiguity about which lane means "actively working"
3188
+ - Review workflow now supports auto-detect (no argument needed)
3189
+
3190
+ ### 🐛 Fixed
3191
+
3192
+ - **Worktree path resolution**
3193
+ - Fixed `_find_first_planned_wp()` to work correctly in worktrees
3194
+ - Fixed `_find_first_for_review_wp()` to work correctly in worktrees
3195
+ - Auto-detect now finds WPs in worktree's kitty-specs/, not main repo
3196
+
3197
+ - **Legacy subdirectory cleanup**
3198
+ - Migrated features 007 and 010 from old subdirectory structure to flat structure
3199
+ - Moved 15 WP files from `tasks/done/phase-*/` to flat `tasks/`
3200
+ - All features now use proper flat structure with frontmatter-only lanes
3201
+
3202
+ ## [0.9.4] - 2025-12-17
3203
+
3204
+ ### 📚 Documentation & Validation
3205
+
3206
+ - **Prevent agent-created subdirectories in tasks/**
3207
+ - Added explicit warnings to tasks/README.md
3208
+ - Updated AGENTS.md with flat structure requirements
3209
+ - Updated /spec-kitty.tasks template to forbid subdirectories
3210
+ - Added runtime validation in check-prerequisites.sh
3211
+ - Blocks execution if phase-*, component-*, or any subdirectories found
3212
+ - Clear error messages with examples of correct vs wrong paths
3213
+
3214
+ This prevents Claude agents from creating organizational subdirectories like `tasks/phase-1/`, `tasks/backend/`, etc.
3215
+
3216
+ ## [0.9.3] - 2025-12-17
3217
+
3218
+ ### 🐛 Fixed
3219
+
3220
+ - **Critical symlink detection fix**
3221
+ - Now checks `is_symlink()` BEFORE `exists()` (exists() returns False for broken symlinks!)
3222
+ - Properly removes both working and broken symlinks from worktrees
3223
+ - Fixes remaining test failures in worktree cleanup migration
3224
+ - Handles all symlink scenarios correctly
3225
+
3226
+ This completes the fix for symlink removal in worktree cleanup.
3227
+
3228
+ ## [0.9.2] - 2025-12-17
3229
+
3230
+ ### 🐛 Fixed
3231
+
3232
+ - **Symlink handling in worktree cleanup**
3233
+ - Migration now properly detects and removes symlinks to command directories
3234
+ - Uses `unlink()` for symlinks instead of `shutil.rmtree()`
3235
+ - Fixes "Cannot call rmtree on a symbolic link" error during upgrade
3236
+ - Handles both symlinks and regular directories correctly
3237
+
3238
+ This fixes the upgrade failure when worktrees have symlinked agent command directories.
3239
+
3240
+ ## [0.9.1] - 2025-12-17
3241
+
3242
+ ### 🔧 Bug Fixes & Improvements
3243
+
3244
+ This release fixes critical issues found in v0.9.0 and adds version checking to prevent compatibility problems.
3245
+
3246
+ ### 🆕 Added
3247
+
3248
+ - **Version compatibility checking**
3249
+ - CLI now checks for version mismatches between installed spec-kitty-cli and project version
3250
+ - Hard error with explicit instructions when versions don't match
3251
+ - Special critical warning for v0.9.0+ upgrade explaining breaking changes
3252
+ - Shows detailed before/after directory structure comparison
3253
+ - Version checks in all CLI commands and bash scripts
3254
+ - Graceful handling of legacy projects without metadata
3255
+
3256
+ - **Programmatic frontmatter management**
3257
+ - New `specify_cli.frontmatter` module for consistent YAML operations
3258
+ - Uses ruamel.yaml for absolute formatting consistency
3259
+ - No more manual YAML editing by LLMs or scripts
3260
+ - Prevents quoted vs unquoted value inconsistencies
3261
+
3262
+ ### 🐛 Fixed
3263
+
3264
+ - **Migration improvements**
3265
+ - v0.9.0 migration now finds ALL markdown files (not just WP*.md)
3266
+ - Detects and removes empty lane subdirectories
3267
+ - Uses shutil.rmtree() for robust directory removal
3268
+ - Better detection of legacy format
3269
+
3270
+ - **Complete lane migration (v0.9.1)**
3271
+ - Migrates files missed by v0.9.0 (phase-*.md, task-*.md, etc.)
3272
+ - Removes ALL agent command directories from worktrees (.codex/prompts/, .gemini/commands/, etc.)
3273
+ - Removes .kittify/scripts/ from worktrees (inherit from main repo)
3274
+ - Normalizes all frontmatter to consistent YAML format
3275
+ - Fixes issue where worktrees had old command templates referencing deprecated scripts
3276
+
3277
+ - **Flat structure in new features**
3278
+ - Fixed create-new-feature.sh to create flat tasks/ directory (not subdirectories)
3279
+ - Updated README.md documentation to reflect v0.9.0+ structure
3280
+ - New features now work correctly with frontmatter-only lanes from day one
3281
+
3282
+ - **Lane validation**
3283
+ - tasks_cli.py update command now validates lane values
3284
+ - Rejects invalid lanes before processing
3285
+ - Clear error messages for invalid input
3286
+
3287
+ ### 🔧 Changed
3288
+
3289
+ - Added `ruamel.yaml>=0.18.0` dependency for consistent YAML handling
3290
+ - Updated success messages to reflect flat structure
3291
+
3292
+ ### 🚀 Migration
3293
+
3294
+ If you upgraded to v0.9.0 and still have issues, run `spec-kitty upgrade` again to apply v0.9.1 fixes:
3295
+ - Completes any remaining lane migrations
3296
+ - Cleans up worktree command directories
3297
+ - Normalizes all frontmatter for consistency
3298
+
3299
+ ## [0.9.0] - 2025-12-17
3300
+
3301
+ ### 🎯 Major Release: Frontmatter-Only Lane Management
3302
+
3303
+ This release fundamentally changes how Spec Kitty manages work package lanes, eliminating directory-based lane tracking in favor of a simpler, conflict-free frontmatter-only system.
3304
+
3305
+ ### ⚠️ Breaking Changes
3306
+
3307
+ - **Lane system completely redesigned**
3308
+ - Work packages now live in a flat `kitty-specs/<feature>/tasks/` directory
3309
+ - Lane status determined **solely by `lane:` frontmatter field** (no more subdirectories)
3310
+ - Old system: `tasks/planned/WP01.md`, `tasks/doing/WP02.md` ❌
3311
+ - New system: `tasks/WP01.md` with `lane: "planned"` ✅
3312
+
3313
+ - **Command renamed: `move` → `update`**
3314
+ - Legacy `tasks_cli.py move` command removed
3315
+ - Use `tasks_cli.py update <feature> <WP> <lane>` instead
3316
+ - Semantic clarity: command updates metadata, doesn't move files
3317
+ - Legacy format detection: `update` command refuses to work on old directory-based structure
3318
+
3319
+ - **Direct frontmatter editing now supported**
3320
+ - You can now directly edit the `lane:` field in WP frontmatter
3321
+ - Previous "DO NOT EDIT" warnings removed from all templates
3322
+ - System recognizes manual lane changes immediately
3323
+ - No file movement required for lane transitions
3324
+
3325
+ ### 🆕 Added
3326
+
3327
+ - **Migration command: `spec-kitty upgrade`**
3328
+ - Automatically migrates features from directory-based to frontmatter-only format
3329
+ - Preserves all lane assignments during migration
3330
+ - Idempotent: safe to run multiple times
3331
+ - Cleans up empty lane subdirectories after migration
3332
+ - Migrates both main repo and worktree features
3333
+
3334
+ - **Legacy format detection**
3335
+ - `is_legacy_format()` function detects old directory-based structure
3336
+ - CLI commands display helpful warnings when legacy format detected
3337
+ - Dashboard shows migration prompt for legacy features
3338
+ - Non-blocking: legacy features remain functional until migrated
3339
+
3340
+ - **Enhanced status command**
3341
+ - Better formatted output with lane grouping
3342
+ - Auto-detects feature from branch/worktree when not specified
3343
+ - Shows work packages organized by current lane
3344
+ - Works with both legacy and new formats
3345
+
3346
+ ### 🔧 Changed
3347
+
3348
+ - **Work package location logic**
3349
+ - `locate_work_package()` now searches flat `tasks/` directory first
3350
+ - Falls back to legacy subdirectory search for backwards compatibility
3351
+ - Exact WP ID matching (WP04 won't match WP04b)
3352
+
3353
+ - **Lane extraction utilities**
3354
+ - New `get_lane_from_frontmatter()` function extracts lane from YAML
3355
+ - Defaults to "planned" when `lane:` field missing
3356
+ - Validates lane values against allowed set
3357
+ - Available in both `task_helpers.py` and `tasks_support.py`
3358
+
3359
+ - **Dashboard scanner updates**
3360
+ - Reads lane from frontmatter instead of directory location
3361
+ - Displays legacy format warnings
3362
+ - Works seamlessly with both formats during transition
3363
+
3364
+ - **Activity log behavior**
3365
+ - Lane transitions still append activity log entries
3366
+ - Captures agent, shell PID, and timestamp
3367
+ - No file movement logged (because no movement occurs)
3368
+
3369
+ ### 📚 Documentation
3370
+
3371
+ - **Updated all templates**
3372
+ - `.kittify/templates/task-prompt-template.md` - Removed "DO NOT EDIT" warnings
3373
+ - `.kittify/templates/tasks-template.md` - Updated for flat structure
3374
+ - `.kittify/templates/AGENTS.md` - New lane management instructions
3375
+ - `tasks/README.md` - Rewritten for flat directory layout
3376
+
3377
+ - **Updated mission templates**
3378
+ - All mission-specific templates updated (software-dev, research)
3379
+ - Command templates updated (`implement.md`, `review.md`, `merge.md`)
3380
+ - Examples updated to show new workflow
3381
+
3382
+ - **Updated main documentation**
3383
+ - `README.md` - Updated quick start examples
3384
+ - `docs/quickstart.md` - New lane management workflow
3385
+ - `docs/multi-agent-orchestration.md` - Updated collaboration examples
3386
+ - All `examples/` updated with new commands
3387
+
3388
+ ### 🧪 Testing
3389
+
3390
+ - 286 tests passing (0 failures)
3391
+ - New tests for frontmatter-only lane system
3392
+ - Legacy format detection tests
3393
+ - Migration command tests
3394
+ - Dual-format compatibility tests
3395
+
3396
+ ### 🚀 Migration Guide
3397
+
3398
+ **For existing projects:**
3399
+
3400
+ 1. **Back up your work** (commit changes, push to remote)
3401
+ 2. **Run migration**: `spec-kitty upgrade`
3402
+ 3. **Verify**: `spec-kitty status --feature <your-feature>`
3403
+ 4. **Update workflows**: Replace `move` with `update` in scripts/docs
3404
+
3405
+ **Key benefits of upgrading:**
3406
+
3407
+ - ✅ No file conflicts during lane changes (especially in worktrees)
3408
+ - ✅ Direct editing of `lane:` field supported
3409
+ - ✅ Better multi-agent compatibility
3410
+ - ✅ Simpler mental model (one directory, not four)
3411
+ - ✅ Fewer git operations per lane change
3412
+
3413
+ **Legacy format still works** - You can continue using old directory structure until ready to migrate. All commands detect format automatically.
3414
+
3415
+ ### 🐛 Fixed
3416
+
3417
+ - File conflicts during simultaneous lane changes by multiple agents
3418
+ - Git staging issues with lane transitions
3419
+ - Race conditions in worktree-based parallel development
3420
+ - Lane mismatch validation errors (no longer possible with frontmatter-only)
3421
+
3422
+ ### 🔗 Related
3423
+
3424
+ - Feature implementation: `007-frontmatter-only-lane`
3425
+ - All 6 work packages completed and reviewed
3426
+ - Comprehensive test coverage added
3427
+
3428
+ ---
3429
+
3430
+ ## [0.8.2] - 2025-12-17
3431
+
3432
+ ### Added
3433
+
3434
+ - **Task lane management documentation** - Added clear instructions to AGENTS.md and task templates warning agents never to manually edit the `lane:` YAML field
3435
+ - Lane is determined by directory location, not YAML field
3436
+ - Editing `lane:` without moving the file creates a mismatch that breaks the system
3437
+ - All templates now include YAML comment: `# DO NOT EDIT - use: workflow commands` (legacy note)
3438
+ - Added "Task Lane Management Rule" section to project AGENTS.md
3439
+
3440
+ ## [0.8.1] - 2025-12-17
3441
+
3442
+ ### Fixed
3443
+
3444
+ - **Work package move race conditions** - Multiple agents can now work on different WPs simultaneously without blocking each other
3445
+ - Conflict detection now only blocks on changes to the same WP, not unrelated WP files
3446
+ - Agents working on WP05 no longer block moves of WP04
3447
+
3448
+ - **Exact WP ID matching** - `WP04` no longer incorrectly matches `WP04b`
3449
+ - Changed from prefix matching to exact boundary matching
3450
+ - Pattern now requires WP ID to be followed by `-`, `_`, `.`, or end of filename
3451
+
3452
+ - **Cleanup no longer leaves staged deletions** - Stale copy cleanup uses filesystem delete instead of `git rm`
3453
+ - Prevents orphaned staged deletions from blocking subsequent operations
3454
+ - Automatically unstages any previously staged changes to cleaned files
3455
+
3456
+ ## [0.8.0] - 2025-12-15
3457
+
3458
+ ### Breaking Changes
3459
+
3460
+ - **Mission system refactored to per-feature model**
3461
+ - Missions are now selected during `/spec-kitty.specify` instead of `spec-kitty init`
3462
+ - Each feature stores its mission in `meta.json` (field: `"mission": "software-dev"`)
3463
+ - `.kittify/active-mission` symlink/file is no longer used
3464
+ - Run `spec-kitty upgrade` to clean up existing projects
3465
+
3466
+ - **Removed commands**
3467
+ - `spec-kitty mission switch` - Missions are now per-feature, not per-project
3468
+ - Running this command now shows a helpful error message explaining the new workflow
3469
+
3470
+ - **Removed flags**
3471
+ - `--mission` flag from `spec-kitty init` - Use `/spec-kitty.specify` instead
3472
+ - Flag is hidden but shows deprecation warning if used
3473
+
3474
+ ### Added
3475
+
3476
+ - **Mission inference during `/spec-kitty.specify`** - LLM analyzes feature description and suggests appropriate mission:
3477
+ - "Build a REST API" → suggests `software-dev`
3478
+ - "Research best practices" → suggests `research`
3479
+ - User confirms or overrides the suggestion
3480
+ - Explicit `--mission` flag bypasses inference
3481
+
3482
+ - **Per-feature mission storage** - Selected mission stored in feature's `meta.json`:
3483
+ - All downstream commands read mission from feature context
3484
+ - Legacy features without mission field default to `software-dev`
3485
+
3486
+ - **Mission discovery** - New `discover_missions()` function returns all available missions with source indicators
3487
+
3488
+ - **Updated `spec-kitty mission list`** - Shows source column (project/built-in) for each mission
3489
+
3490
+ - **Migration for v0.8.0** - `spec-kitty upgrade` removes obsolete `.kittify/active-mission` file
3491
+
3492
+ - **AGENTS.md worktree fix** - New worktrees get AGENTS.md symlink, and `spec-kitty upgrade` fixes existing worktrees
3493
+
3494
+ ### Changed
3495
+
3496
+ - All downstream commands (`/spec-kitty.plan`, `/spec-kitty.tasks`, `/spec-kitty.implement`, `/spec-kitty.review`, `/spec-kitty.accept`) now read mission from feature's `meta.json`
3497
+ - `create-new-feature.sh` accepts `--mission <key>` parameter to set mission in meta.json
3498
+ - Common bash/PowerShell scripts updated to resolve mission from feature directory
3499
+ - `spec-kitty mission current` shows current default mission (for informational purposes)
3500
+ - Dashboard template now includes dynamic AGENTS.md path discovery instructions
3501
+
3502
+ ### Deprecated
3503
+
3504
+ - `set_active_mission()` function - Shows deprecation warning, will be removed in future version
3505
+
3506
+ ### Migration Guide
3507
+
3508
+ 1. Run `spec-kitty upgrade` to remove `.kittify/active-mission`
3509
+ 2. Existing features without `mission` field will use `software-dev` by default
3510
+ 3. New features will have mission set during `/spec-kitty.specify`
3511
+
3512
+ ## [0.7.4] - 2025-12-14
3513
+
3514
+ ### Added
3515
+
3516
+ - **Script Update Migration** – `spec-kitty upgrade` now updates project scripts:
3517
+ - Copies latest `create-new-feature.sh` from package to project
3518
+ - Fixes worktree feature numbering bug in existing projects
3519
+ - Previously, projects kept old scripts from when they were initialized
3520
+
3521
+ ## [0.7.3] - 2025-12-14
3522
+
3523
+ ### Fixed
3524
+
3525
+ - **Duplicate Feature Numbers with Worktrees** – Script now scans both `kitty-specs/` AND `.worktrees/` for existing feature numbers:
3526
+ - Previously only scanned `kitty-specs/` which was empty when using worktrees
3527
+ - This caused new features to get `001` even when `001-*` worktree already existed
3528
+ - Now correctly finds highest number across both locations
3529
+
3530
+ ## [0.7.2] - 2025-12-14
3531
+
3532
+ ### Fixed
3533
+
3534
+ - **Duplicate Slash Commands in Worktrees (Corrected)** – Fixed the fix from v0.7.1:
3535
+ - v0.7.1 incorrectly removed commands from main repo (broke `/` commands there)
3536
+ - v0.7.2 removes commands from **worktrees** instead (they inherit from main repo)
3537
+ - Claude Code traverses UP, so worktrees find main repo's `.claude/commands/`
3538
+ - Main repo keeps commands, worktrees don't need their own copy
3539
+
3540
+ ## [0.7.1] - 2025-12-14 [YANKED]
3541
+
3542
+ ### Fixed
3543
+
3544
+ - ~~Duplicate Slash Commands in Worktrees~~ – **Incorrect fix, replaced by v0.7.2**
3545
+
3546
+ ## [0.7.0] - 2025-12-14
3547
+
3548
+ ### Added
3549
+
3550
+ - **`spec-kitty upgrade` Command** – Automatically migrate existing projects to current version:
3551
+ - Detects project version via metadata or directory structure heuristics
3552
+ - Applies all necessary migrations in order (0.2.0 → 0.6.7)
3553
+ - Auto-upgrades worktrees alongside main project
3554
+ - Supports `--dry-run`, `--verbose`, `--json`, `--target`, `--no-worktrees` options
3555
+ - Tracks applied migrations in `.kittify/metadata.yaml`
3556
+ - Idempotent - safe to run multiple times
3557
+
3558
+ - **Migration System** – Five automatic migrations for project structure updates:
3559
+ - `0.2.0`: `.specify/` → `.kittify/` directory rename
3560
+ - `0.4.8`: Add all 12 agent directories to `.gitignore`
3561
+ - `0.5.0`: Install encoding validation git hooks
3562
+ - `0.6.5`: `commands/` → `command-templates/` rename
3563
+ - `0.6.7`: Ensure software-dev and research missions are present
3564
+
3565
+ - **Broken Mission Detection** – `VersionDetector.detect_broken_mission_system()` identifies corrupted mission.yaml files
3566
+
3567
+ - **Migration Registry Validation** – Duplicate migration IDs and missing required fields now raise `ValueError`
3568
+
3569
+ ### Fixed
3570
+
3571
+ - **Test Timeout in Dashboard CLI Tests** – Reduced port cleanup from 763 ports to 8 specific test ports
3572
+ - **Playwright Window Handling** – Tests now open new windows (not tabs) and close properly on exit
3573
+
3574
+ ## [0.6.7] - 2025-12-13
3575
+
3576
+ ### Fixed
3577
+
3578
+ - **Missing software-dev Mission in PyPI Package** – Fixed build configuration to include all missions:
3579
+ - Added explicit sdist include patterns to pyproject.toml
3580
+ - The `software-dev` mission was missing from v0.6.5 and v0.6.6 wheel builds
3581
+ - Root cause: `force-include` only applied to wheel target, not sdist (wheel was built from sdist)
3582
+ - Now both `software-dev` and `research` missions are correctly packaged
3583
+
3584
+ ## [0.6.6] - 2025-12-13
3585
+
3586
+ ### Fixed
3587
+
3588
+ - **Test Suite Updated for 12 Agent Directories** – All tests now expect 12 agents (added `.github/copilot/`):
3589
+ - Updated `test_init_flow.py`, `test_gitignore_management.py`, `test_gitignore_manager_simple.py`
3590
+ - Updated `tests/unit/test_gitignore_manager.py` to expect 12 agents
3591
+ - Fixed template manager tests to use new `.kittify/` source paths
3592
+
3593
+ ### Changed
3594
+
3595
+ - **Template Source Paths** – Tests now use correct `.kittify/templates/command-templates/` paths
3596
+
3597
+ ## [0.6.5] - 2025-12-13
3598
+
3599
+ ### Added
3600
+
3601
+ - **Pre-commit Git Hooks** – Automatic protection against committing agent directories:
3602
+ - Blocks commits containing `.claude/`, `.codex/`, `.gemini/`, etc.
3603
+ - Warns about `.github/copilot/` (nested in `.github/` which is usually committed)
3604
+ - Installed automatically during `spec-kitty init`
3605
+
3606
+ - **GitHub Copilot Directory Protection** – Added `.github/copilot/` as 12th protected agent directory
3607
+
3608
+ - **.claudeignore Generation** – Optimizes Claude Code token usage by excluding templates
3609
+
3610
+ ### Fixed
3611
+
3612
+ - **Worktree Constitution Symlinks** – Feature worktrees now share constitution via symlink
3613
+ - **Git Hooks Installation Timing** – Hooks now install after `.git/` is created
3614
+
3615
+ ## [0.6.4] - 2025-11-26
3616
+
3617
+ ### Fixed
3618
+
3619
+ - **Agent Commands Missing in Worktrees** – Slash commands now work in all feature worktrees for all AI agents:
3620
+ - `create-new-feature.sh` now symlinks agent command directories from main repo to worktrees
3621
+ - Supports all 12 agent types: Claude, Gemini, Copilot, Cursor, Qwen, OpenCode, Windsurf, Codex, KiloCode, Auggie, Roo, Amazon Q
3622
+ - Fixes `/spec-kitty.research`, `/spec-kitty.plan`, and all other slash commands in worktrees
3623
+ - Existing worktrees get symlinks added when reused (backward compatible)
3624
+ - Root cause: worktrees are separate working directories that don't share `.claude/commands/` etc.
3625
+
3626
+ ## [0.6.3] - 2025-11-25
3627
+
3628
+ ### Fixed
3629
+
3630
+ - **Mission Directory Not Copied During Init** – Projects initialized with `spec-kitty init` now correctly receive mission templates:
3631
+ - Fixed `copy_specify_base_from_package()` to look at correct path `specify_cli/missions` (matching pyproject.toml)
3632
+ - Previously looked at wrong paths: `.kittify/missions` and `template_data/missions`
3633
+ - `software-dev` mission was missing from initialized projects, breaking `/spec-kitty.plan` and other commands
3634
+ - Root cause: pyproject.toml packages missions to `specify_cli/missions` but code looked elsewhere
3635
+
3636
+ ## [0.6.2] - 2025-11-18
3637
+
3638
+ ### Fixed
3639
+
3640
+ - **PowerShell Wrapper Parameter Handling** – Windows lane transitions now work correctly:
3641
+ - Fixed legacy `tasks-move-to-lane.ps1` to properly parse named PowerShell parameters
3642
+ - Translates Spec Kitty's named params (`-FeatureName`, `-TaskId`, `-TargetLane`) to `tasks_cli.py` positional args
3643
+ - Resolves `unrecognized arguments` error that broke `/spec-kitty.review` on Windows
3644
+ - Maintains backward compatibility with positional argument usage
3645
+ - Fixes #34
3646
+
3647
+ ## [0.6.1] - 2025-11-18
3648
+
3649
+ ### Fixed
3650
+
3651
+ - **Untracked Task File Moves** – Task move workflow now handles untracked files:
3652
+ - Added `is_file_tracked()` helper to detect if file is in git index
3653
+ - Move command automatically stages untracked source files before moving
3654
+ - Fixes `/spec-kitty.implement` failures when `/spec-kitty.tasks` doesn't commit
3655
+ - Provides clear feedback: `[spec-kitty] Added untracked file: ...`
3656
+ - Defensive fix works with both existing untracked files and future workflows
3657
+
3658
+ ## [0.6.0] - 2025-11-16
3659
+
3660
+ ### Fixed
3661
+
3662
+ - **Dashboard Constitution Tracking** – Feature-level constitution.md files now tracked and displayed:
3663
+ - Added constitution to scanner artifact list
3664
+ - Constitution appears in overview with ⚖️ icon
3665
+ - Frontend properly detects constitution.exists property
3666
+
3667
+ - **Dashboard Modification Detection** – Dashboard now detects file modifications, not just existence:
3668
+ - Scanner returns {exists, mtime, size} for each artifact instead of boolean
3669
+ - Frontend updated to use .exists property with optional chaining
3670
+ - Overview auto-reloads when artifacts change during polling
3671
+ - No manual refresh required to see new/modified files
3672
+
3673
+ - **Dashboard Project Constitution Endpoint** – Project constitution now loads in dashboard:
3674
+ - Added /api/constitution endpoint to serve .kittify/memory/constitution.md
3675
+ - Sidebar Constitution link now displays file content instead of "not found"
3676
+ - Separate from feature-level constitution tracking
3677
+
3678
+ - **Work Package Conflict Detection Too Strict** – Moving WP no longer blocked by unrelated WP changes:
3679
+ - Conflict detection now scoped to same work package ID only
3680
+ - Moving WP04 no longer fails if WP06/WP08 have uncommitted changes
3681
+ - Reduces false positives from ~90% to ~5%
3682
+ - Agents don't need --force for unrelated work packages
3683
+ - Still catches real conflicts (same WP in multiple lanes)
3684
+
3685
+ - **Accept Command Over-Questioning** – Acceptance workflow now auto-detects instead of asking:
3686
+ - Feature slug auto-detected from git branch
3687
+ - Mode defaults to 'local' (most common)
3688
+ - Validation commands searched in git log
3689
+ - Only asks user if auto-detection fails
3690
+ - Reduces user questions from 3-4 to 0 in typical case
3691
+
3692
+ - **Init Command Blocking on Optional Tools** – Project init no longer fails on missing agent tools:
3693
+ - Changed from red error + exit(1) to yellow warning + continue
3694
+ - Gemini CLI and other tools are optional
3695
+ - Users can install tools later without re-init
3696
+ - --ignore-agent-tools flag still available but rarely needed
3697
+
3698
+ - **Encoding Normalization Incomplete** – Unicode smart quotes now properly normalized to ASCII:
3699
+ - Added character mapping for 12 common Unicode characters
3700
+ - Smart quotes (U+2018/U+2019) → ASCII apostrophe
3701
+ - Em/en dashes → hyphens
3702
+ - Ellipsis, bullets, nbsp → ASCII equivalents
3703
+ - --normalize-encoding now produces true ASCII output
3704
+
3705
+ ### Changed
3706
+
3707
+ - **Mission Display Simplified** – Reduced verbose mission card to single line:
3708
+ - Removed domain label, version number, path display
3709
+ - Removed redundant refresh button (auto-updates every second)
3710
+ - Changed from card layout to inline text: "Mission: {name}"
3711
+ - Cleaner, less cluttered header
3712
+
3713
+ ### Added
3714
+
3715
+ - **Mission System Architecture** – Complete mission-based workflow system (feature 005):
3716
+ - Guards module for pre-flight validation
3717
+ - Pydantic mission schema validation
3718
+ - Mission CLI commands (list, current, switch, info)
3719
+ - Research mission templates and citation validators
3720
+ - Path convention validation
3721
+ - Dashboard mission display
3722
+ - Comprehensive integration tests
3723
+
3724
+ ## [0.5.3] - 2025-11-15
3725
+
3726
+ ### Fixed
3727
+
3728
+ - **Dashboard Orphaned Process Cleanup** – Fixed dashboard startup failures caused by orphaned test processes:
3729
+ - Dashboard now detects and cleans up orphaned processes when health check fails due to project path mismatch
3730
+ - Added retry logic after successful orphan cleanup
3731
+ - Orphan cleanup triggers on health check failure (not just port exhaustion)
3732
+ - Eliminates false "Unable to start dashboard" errors when orphaned test dashboards occupy ports
3733
+
3734
+ - **Dashboard Subprocess Import Failure** – Fixed ModuleNotFoundError in complex Python environments:
3735
+ - Dashboard subprocess now always inserts spec-kitty path at sys.path[0]
3736
+ - Fixes import failures when user's PYTHONPATH or .pth files contain spec-kitty path at lower priority
3737
+ - Ensures correct spec-kitty installation takes precedence over environment paths
3738
+ - Resolves "ModuleNotFoundError: No module named 'specify_cli.dashboard'" in subprocesses
3739
+
3740
+ ### Changed
3741
+
3742
+ - **Test Suite Cleanup Improvements** – Enhanced dashboard test cleanup to prevent orphaned processes:
3743
+ - Module-level cleanup fixture kills all orphaned dashboards before and after test runs
3744
+ - Expanded cleanup port range from 9992-9999 to 9237-10000 (covers default and test ranges)
3745
+ - Added `kill_all_spec_kitty_dashboards()` helper using pgrep/pkill
3746
+ - Two-tier cleanup strategy: module-level (all processes) + function-level (specific ports)
3747
+
3748
+ ### Added
3749
+
3750
+ - **Testing Guidelines for Agents** (`docs/testing-guidelines.md`) – Comprehensive testing best practices:
3751
+ - Required cleanup patterns for dashboard tests (pytest fixtures, autouse fixtures)
3752
+ - Anti-patterns to avoid (cleanup in test body, shared directories, no exception handling)
3753
+ - Impact analysis of orphaned processes on local development and CI/CD
3754
+ - Examples of proper test isolation and resource management
3755
+
3756
+ ### Changed
3757
+
3758
+ - **Command Consolidation** – Merged `spec-kitty check` and `spec-kitty diagnostics` into `spec-kitty verify-setup`:
3759
+ - Removed redundant `spec-kitty check` and `spec-kitty diagnostics` commands
3760
+ - Tool checking now integrated into `verify-setup` with `--check-tools` flag (default: enabled)
3761
+ - Diagnostics mode with dashboard health available via `--diagnostics` flag
3762
+ - Removed ASCII banner from verify-setup for cleaner output
3763
+ - Simplifies CLI interface - single command for all environment verification
3764
+ - JSON output includes tool availability when `--check-tools` is enabled
3765
+
3766
+ ### Removed
3767
+
3768
+ - **`spec-kitty check` command** – Functionality moved to `verify-setup --check-tools`
3769
+ - Migration: Use `spec-kitty verify-setup` instead of `spec-kitty check`
3770
+ - Tool checking enabled by default, disable with `--check-tools=false`
3771
+ - **`spec-kitty diagnostics` command** – Functionality moved to `verify-setup --diagnostics`
3772
+ - Migration: Use `spec-kitty verify-setup --diagnostics` instead of `spec-kitty diagnostics`
3773
+ - Shows Rich panel-based output with dashboard health, observations, and issues
3774
+
3775
+ ## [0.5.2] - 2025-11-14
3776
+
3777
+ ### Fixed
3778
+
3779
+ - **Dashboard Startup Race Condition** – Fixed root cause of dashboard health check timing out prematurely:
3780
+ - Increased health check timeout from 10 to 20 seconds with exponential backoff
3781
+ - Retry pattern: 10×100ms, 40×250ms, 20×500ms for adaptive performance
3782
+ - Removed workaround fallback check that was masking the real issue
3783
+ - Eliminated false "Unable to start dashboard" errors on slower systems
3784
+
3785
+ ### Changed
3786
+
3787
+ - **Dashboard Health Check Strategy** – Improved reliability with exponential backoff:
3788
+ - Quick initial checks (100ms) for fast systems
3789
+ - Gradual slowdown (250ms then 500ms) for slower systems
3790
+ - Total timeout increased to ~20 seconds for adequate startup time
3791
+ - Cleaner error handling without port-scanning fallback
3792
+
3793
+ ### Added
3794
+
3795
+ - **Symlinked kitty-specs Test Coverage** – New test validates dashboard works with worktree structure:
3796
+ - Tests scenario from bug report (symlinked `kitty-specs/` to `.worktrees/`)
3797
+ - Ensures dashboard starts correctly with symlinked directories
3798
+ - Prevents regression of false error reporting
3799
+
3800
+ ## [0.5.1] - 2025-11-14
3801
+
3802
+ ### Added
3803
+
3804
+ - **Task Metadata Validation Guardrail** – Prevents workflow failures when file locations don't match frontmatter:
3805
+ - Auto-detects lane mismatches (file in `for_review/` but `lane: "planned"`)
3806
+ - CLI command: `spec-kitty validate-tasks --fix`
3807
+ - Integrated into `/spec-kitty.review` workflow (auto-runs before review)
3808
+ - Adds activity log entries documenting all repairs
3809
+ - Validates required fields (work_package_id, lane) and formats
3810
+ - **Task Metadata Validation Module** (`src/specify_cli/task_metadata_validation.py`) – Core validation:
3811
+ - `detect_lane_mismatch()` - Finds directory/frontmatter inconsistencies
3812
+ - `repair_lane_mismatch()` - Auto-fixes with audit trail
3813
+ - `validate_task_metadata()` - Comprehensive field validation
3814
+ - `scan_all_tasks_for_mismatches()` - Feature-wide scanning
3815
+
3816
+ ### Changed
3817
+
3818
+ - **Version Reading** – Now reads dynamically from package metadata instead of hardcoded value:
3819
+ - Uses `importlib.metadata.version()` to get actual installed version
3820
+ - `spec-kitty --version` always shows correct version
3821
+ - No manual updates needed in `__init__.py`
3822
+ - **Review Workflow** – Added automatic task metadata validation before review:
3823
+ - Runs `spec-kitty validate-tasks --fix` automatically
3824
+ - Prevents agents getting stuck on lane mismatches
3825
+ - Documented in `.claude/commands/spec-kitty.review.md`
3826
+
3827
+ ### Fixed
3828
+
3829
+ - **Dashboard CLI False Error** – CLI no longer reports "Unable to start dashboard" when dashboard actually started successfully. Added fallback verification to check if dashboard is accessible before reporting failure. Handles race condition where health check times out but server is functional.
3830
+ - **Review Workflow Blocking** – Review command no longer fails when file locations don't match frontmatter metadata. Auto-validation repairs inconsistencies before review.
3831
+ - **Hardcoded Version** – `spec-kitty --version` now reads from package metadata, always shows correct installed version.
3832
+
3833
+ ### Documentation
3834
+
3835
+ - **task-metadata-validation.md** (350 lines) – Auto-repair workflow:
3836
+ - Lane mismatch detection and repair
3837
+ - CLI usage examples
3838
+ - Python API reference
3839
+ - Integration with review workflow
3840
+
3841
+ ### Testing
3842
+
3843
+ - Added version detection tests to prevent future hardcoded version bugs
3844
+ - Task metadata validation tested with real frontmatter/directory mismatches
3845
+ - All tests passing (13/13)
3846
+
3847
+ ## [0.5.0] - 2025-11-13
3848
+
3849
+ ### Added
3850
+
3851
+ - **Encoding Validation Guardrail** – Comprehensive 5-layer defense system to prevent Windows-1252 characters from crashing the dashboard:
3852
+ - **Layer 1**: Dashboard auto-fixes encoding errors on read (server-side resilience)
3853
+ - **Layer 2**: Character sanitization module with 15+ problematic character mappings
3854
+ - **Layer 3**: CLI command `spec-kitty validate-encoding` with `--fix` flag
3855
+ - **Layer 4**: Pre-commit hook that blocks commits with encoding errors
3856
+ - **Layer 5**: Enhanced AGENTS.md with real crash examples and character blacklist
3857
+ - **Plan Validation Guardrail** – Prevents agents from skipping the planning phase:
3858
+ - Detects 11 template markers in plan.md (threshold: 5+ markers = unfilled)
3859
+ - Blocks `/spec-kitty.research` command when plan is unfilled
3860
+ - Blocks `/spec-kitty.tasks` via check-prerequisites.sh
3861
+ - Clear error messages with remediation steps
3862
+ - **Character Sanitization Module** (`src/specify_cli/text_sanitization.py`) – Core module for encoding fixes:
3863
+ - Maps smart quotes (`' ' " "`) → ASCII (`' "`)
3864
+ - Maps plus-minus (`±`) → `+/-`, multiplication (`×`) → `x`, degree (`°`) → `degrees`
3865
+ - Supports dry-run mode and automatic backup creation
3866
+ - Directory-wide sanitization with glob patterns
3867
+ - **Plan Validation Module** (`src/specify_cli/plan_validation.py`) – Template detection:
3868
+ - Configurable threshold (default: 5 markers)
3869
+ - Line-precise error reporting
3870
+ - Strict and lenient validation modes
3871
+
3872
+ ### Changed
3873
+
3874
+ - **Version Reading** – Now reads dynamically from package metadata instead of hardcoded value:
3875
+ - Uses `importlib.metadata.version()` to get actual installed version
3876
+ - `spec-kitty --version` always shows correct version
3877
+ - No manual updates needed in `__init__.py`
3878
+ - **Review Workflow** – Added automatic task metadata validation before review:
3879
+ - Runs `spec-kitty validate-tasks --fix` automatically
3880
+ - Prevents agents getting stuck on lane mismatches
3881
+ - Documented in `.claude/commands/spec-kitty.review.md`
3882
+ - **Dashboard Scanner** – Now resilient to encoding errors:
3883
+ - Auto-fixes files on read with backup creation
3884
+ - Creates error cards instead of crashing on bad files
3885
+ - Logs encoding issues with clear error messages
3886
+ - **Research Command** – Added plan validation gate before allowing research artifact creation
3887
+ - **Prerequisites Check Script** – Added bash-based plan validation (35 lines)
3888
+ - **AGENTS.md Template** – Enhanced with encoding warnings:
3889
+ - Real crash examples from production
3890
+ - Explicit character blacklist with Unicode codepoints
3891
+ - Auto-fix workflow documentation
3892
+
3893
+ ### Fixed
3894
+
3895
+ - **Dashboard Blank Page Issue** – Dashboard no longer crashes when markdown files contain Windows-1252 smart quotes, ±, ×, ° symbols. Auto-fix sanitizes files on first read.
3896
+ - **Agents Skipping Planning** – Research and tasks commands now blocked until plan.md is properly filled out (not just template).
3897
+ - **Review Workflow Blocking** – Review command no longer fails when file locations don't match frontmatter metadata. Auto-validation repairs inconsistencies before review.
3898
+ - **Hardcoded Version** – `spec-kitty --version` now reads from package metadata, always shows correct installed version.
3899
+
3900
+ ### Documentation
3901
+
3902
+ - **encoding-validation.md** (554 lines) – Complete guide covering:
3903
+ - Problem description with real examples
3904
+ - 5-layer architecture explanation
3905
+ - Testing procedures and troubleshooting
3906
+ - Migration guide for existing projects
3907
+ - API reference and performance considerations
3908
+ - **plan-validation-guardrail.md** (202 lines) – Implementation details:
3909
+ - Problem and solution overview
3910
+ - Configuration instructions
3911
+ - Testing procedures
3912
+ - Benefits and future enhancements
3913
+ - **task-metadata-validation.md** (350 lines) – Auto-repair workflow:
3914
+ - Lane mismatch detection and repair
3915
+ - CLI usage examples
3916
+ - Python API reference
3917
+ - Integration with review workflow
3918
+ - **TESTING_REQUIREMENTS_ENCODING_AND_PLAN_VALIDATION.md** (1056 lines) – Functional test specifications:
3919
+ - 35+ test cases across 6 test suites
3920
+ - Coverage targets (85-95%)
3921
+ - Performance requirements
3922
+ - Edge case testing requirements
3923
+
3924
+ ### Testing
3925
+
3926
+ - Added 7 unit tests for plan validation (all passing)
3927
+ - Verified on real project (battleship): fixed 9 files with encoding issues
3928
+ - Dashboard now loads successfully after encoding fixes
3929
+ - Character mapping tests: smart quotes, ±, ×, ° all converted correctly
3930
+
3931
+ ## [0.4.13] - 2025-11-13
3932
+
3933
+ ### Fixed
3934
+
3935
+ - **CRITICAL: verify-setup ImportError (Issue #28)** – Fixed ImportError in `verify-setup` command caused by incorrect import statement in `verify_enhanced.py`. Changed `from . import detect_feature_slug, AcceptanceError` to `from .acceptance import detect_feature_slug, AcceptanceError`. This was a blocking bug that prevented users from running the diagnostic command.
3936
+
3937
+ ## [0.4.12] - 2025-11-13
3938
+
3939
+ ### Added
3940
+
3941
+ - **Version Flag** – Added `--version` and `-v` flags to display installed spec-kitty-cli version.
3942
+ - **Dashboard Health Diagnostics** – Enhanced `spec-kitty diagnostics` to detect dashboard startup failures, test if dashboard can start, and report specific errors. Now catches issues like corrupted files, health check timeouts, and background process failures.
3943
+
3944
+ ### Changed
3945
+
3946
+ - **Diagnostics Output** – Added Dashboard Health panel showing startup test results, PID tracking status, and specific failure reasons.
3947
+
3948
+ ## [0.4.11] - 2025-11-13
3949
+
3950
+ ### Fixed
3951
+
3952
+ - **PowerShell Python Quoting Bug (Issue #26)** – Fixed SyntaxError in PowerShell scripts caused by double-quote conflicts in embedded Python code. Changed all Python strings in `common.ps1` to use single quotes to avoid PowerShell string parsing conflicts.
3953
+
3954
+ ### Added
3955
+
3956
+ - **PowerShell Syntax Guide** – Created comprehensive `templates/POWERSHELL_SYNTAX.md` with bash vs PowerShell syntax comparison table, common mistakes, and debugging tips for AI agents.
3957
+ - **Conditional PowerShell Reference** – Enhanced `agent-file-template.md` to conditionally include PowerShell syntax reminders only for PowerShell projects, keeping bash contexts clean.
3958
+
3959
+ ### Changed
3960
+
3961
+ - **AI Agent Context** – PowerShell-specific guidance now provided via separate reference document instead of cluttering bash-focused templates.
3962
+
3963
+ Fixes #26
3964
+ Addresses #27
3965
+
3966
+ ## [0.4.10] - 2025-11-13
3967
+
3968
+ ### Fixed
3969
+
3970
+ - **CRITICAL: Missing missions directory in PyPI package** – Added `.kittify/missions/` to `pyproject.toml` force-include list. Previous release (0.4.9) was missing this directory, causing "Active mission directory not found" errors for all fresh installations.
3971
+
3972
+ ## [0.4.9] - 2025-11-13
3973
+
3974
+ ### Added
3975
+
3976
+ - **Diagnostics CLI Command** – New `spec-kitty diagnostics` command with human-readable and JSON output for comprehensive project health checks.
3977
+ - **Dashboard Process Tracking** – Dashboard now stores process PID in `.dashboard` metadata file for reliable cleanup and monitoring.
3978
+ - **Feature Collision Detection** – Added explicit warnings when creating features with duplicate names that would overwrite existing work.
3979
+ - **LLM Context Documentation** – Enhanced all 13 command templates with location pre-flight checks, file discovery sections, and workflow context to prevent agents from getting lost.
3980
+
3981
+ ### Changed
3982
+
3983
+ - **Dashboard Lifecycle** – Enhanced `ensure_dashboard_running()` to automatically clean up orphaned dashboard processes on initialization, preventing port exhaustion.
3984
+ - **Feature Creation Warnings** – `create-new-feature.sh` now warns when git is disabled or features already exist, with clear JSON indicators for LLM agents.
3985
+ - **Import Safety** – Fixed `detect_feature_slug` import path in diagnostics module to use correct module location.
3986
+ - **Worktree Documentation** – Updated WORKTREE_MODEL.md to accurately describe `.kittify/` as a complete copy (not symlink) with disk space implications documented.
3987
+
3988
+ ### Fixed
3989
+
3990
+ - **CRITICAL: Dashboard Process Orphan Leak** – Fixed critical bug where background dashboard processes were orphaned and accumulated until all ports were exhausted. Complete fix includes:
3991
+ - PIDs are captured and stored in `.dashboard` file (commit b8c7394)
3992
+ - Orphaned processes with .dashboard files are automatically cleaned up on next init
3993
+ - HTTP shutdown failures fall back to SIGTERM/SIGKILL with PID tracking
3994
+ - Port range cleanup scans for orphaned dashboards without .dashboard files (commit 11340a4)
3995
+ - Safe fingerprinting via health check API prevents killing unrelated services
3996
+ - Automatic retry with cleanup when port exhaustion detected
3997
+ - Failed startup processes are cleaned up (no orphans from Ctrl+C during health check)
3998
+ - Multi-project scenarios remain fully isolated (per-project PIDs, safe port sweeps)
3999
+ - Handles all orphan types: with metadata, without metadata, deleted temp projects
4000
+ - Prevents "Could not find free port" errors after repeated uses
4001
+
4002
+ - **Import Path Bug** – Fixed `detect_feature_slug` import in `src/specify_cli/dashboard/diagnostics.py` to import from `specify_cli.acceptance` instead of package root.
4003
+
4004
+ - **Worktree Documentation Accuracy** – Corrected WORKTREE_MODEL.md which incorrectly stated `.kittify/` was symlinked; it's actually a complete copy due to git worktree behavior.
4005
+
4006
+ ### LLM Context Improvements
4007
+
4008
+ All command templates enhanced with consistent context patterns:
4009
+ - **Location Pre-flight Checks**: pwd/git branch verification with expected outputs and correction steps
4010
+ - **File Discovery**: Lists what files {SCRIPT} provides, output locations, and available context
4011
+ - **Workflow Context**: Documents before/after commands and feature lifecycle integration
4012
+
4013
+ Templates updated:
4014
+ - merge.md: CRITICAL safety check preventing merges from wrong location
4015
+ - clarify.md, research.md, analyze.md: HIGH priority core workflow commands
4016
+ - specify.md, checklist.md: Entry point and utility commands
4017
+ - constitution.md, dashboard.md: Project-level and monitoring commands
4018
+
4019
+ ### Testing
4020
+
4021
+ - ✅ Dashboard comprehensive test suite (34 tests, 100% coverage)
4022
+ - ✅ All CLI commands validated
4023
+ - ✅ Import paths verified
4024
+ - ✅ Worktree behavior confirmed across test scenarios
4025
+ - ✅ LLM context patterns applied consistently
4026
+
4027
+ ### Security
4028
+
4029
+ - Dashboard process cleanup prevents resource exhaustion attacks
4030
+ - Explicit warnings when creating duplicate features prevent silent data overwrite
4031
+ - Git disabled warnings ensure users know when version control is unavailable
4032
+
4033
+ ### Backward Compatibility
4034
+
4035
+ All changes are fully backward compatible:
4036
+ - PID storage is optional (old `.dashboard` files still work)
4037
+ - Feature collision detection is advisory (doesn't block creation)
4038
+ - LLM context additions don't change command behavior
4039
+ - Dashboard cleanup is automatic (users don't need to do anything)
4040
+
4041
+ ## [0.4.12] - 2025-11-11
4042
+
4043
+ ### Added
4044
+
4045
+ - **Core Service Modules** – Introduced `specify_cli.core.git_ops`, `project_resolver`, and `tool_checker` packages to host git utilities, project discovery, and tool validation logic with clean public APIs.
4046
+ - **Test Coverage** – Added dedicated suites (`tests/specify_cli/test_core/test_git_ops.py`, `test_project_resolver.py`, `test_tool_checker.py`) covering subprocess helpers, path resolution, and tool validation flows.
4047
+
4048
+ ### Changed
4049
+
4050
+ - **CLI Import Surface** – `src/specify_cli/__init__.py` now imports git, resolver, and tool helpers from the new core modules, slimming the monolith and sharing the implementations across commands.
4051
+ - **Versioning Compliance** – `pyproject.toml` bumped to v0.4.12 to capture the core-service extraction and accompanying behavior changes.
4052
+
4053
+ ## [0.4.11] - 2025-11-11
4054
+
4055
+ ### Added
4056
+
4057
+ - **Template Test Suite** – New `tests/test_template/` coverage exercises template manager, renderer, and agent asset generator flows to guard the init experience.
4058
+
4059
+ ### Changed
4060
+
4061
+ - **Template System Extraction** – Moved template discovery, rendering, and asset generation logic out of `src/specify_cli/__init__.py` into dedicated `specify_cli.template` modules with shared frontmatter parsing.
4062
+ - **Dashboard Reuse** – Updated the dashboard scanner to consume the shared frontmatter parser so Kanban metadata stays in sync with CLI-generated commands.
4063
+
4064
+ ## [0.4.10] - 2025-11-11
4065
+
4066
+ ### Added
4067
+
4068
+ - **Core Modules** – Introduced `specify_cli.core.config` and `specify_cli.core.utils` to centralize constants, shared helpers, and exports for downstream packages.
4069
+ - **CLI UI Package** – Moved `StepTracker`, arrow-key selection, and related utilities into `specify_cli.cli.ui`, enabling reuse across commands.
4070
+ - **Test Coverage** – Added dedicated unit suites for the new core modules and CLI UI interactions (12 new tests).
4071
+
4072
+ ### Changed
4073
+
4074
+ - **Package Structure** – Created foundational package directories for `core/`, `cli/`, `template/`, and `dashboard/`, including structured `__init__.py` exports.
4075
+ - **Init Command Dependencies** – Updated `src/specify_cli/__init__.py` to consume the extracted modules, reducing monolith size and improving readability.
4076
+ - **File Utilities** – Replaced ad-hoc directory creation/removal with safe helper functions to prevent duplication across commands.
4077
+
4078
+ ## [0.4.8] - 2025-11-10
4079
+
4080
+ ### Added
4081
+
4082
+ - **GitignoreManager Module** – New centralized system for managing .gitignore entries for AI agent directories, replacing fragmented approach.
4083
+ - **Comprehensive Agent Protection** – Auto-protect ALL 12 AI agent directories (.claude/, .codex/, .opencode/, etc.) in .gitignore during init, not just selected ones.
4084
+ - **Duplicate Detection** – Smart duplicate detection prevents .gitignore pollution when running init multiple times.
4085
+ - **Cross-Platform Support** – Line ending preservation ensures .gitignore works correctly on Windows, macOS, and Linux.
4086
+
4087
+ ### Changed
4088
+
4089
+ - **init Command Behavior** – Now automatically protects all AI agent directories instead of just selected ones, ensuring no sensitive data is accidentally committed.
4090
+ - **Error Messages** – Improved error messages for permission issues with clear remediation steps (e.g., "Run: chmod u+w .gitignore").
4091
+
4092
+ ### Fixed
4093
+
4094
+ - **Dashboard Markdown Rendering** – Fixed issue where .md files in Research and Contracts tabs were not rendered, now properly displays formatted markdown content.
4095
+ - **Dashboard CSV Display** – Fixed CSV files not rendering in dashboard, now displays as formatted tables with proper styling and hover effects.
4096
+
4097
+ ### Security
4098
+
4099
+ - **Agent Directory Protection** – All 12 known AI agent directories are now automatically added to .gitignore during init, preventing accidental commit of API keys, auth tokens, and other sensitive data.
4100
+ - **Special .github/ Handling** – Added warning for .github/ directory which is used both by GitHub Copilot and GitHub Actions, reminding users to review before committing.
4101
+
4102
+ ### Removed
4103
+
4104
+ - **Legacy Functions** – Removed `handle_codex_security()` and `ensure_gitignore_entries()` functions, replaced by comprehensive GitignoreManager class.
4105
+
4106
+ ## [0.4.7] - 2025-11-07
4107
+
4108
+ ### Added
4109
+
4110
+ - **Dashboard Diagnostics Page** – New diagnostics page showing real-time environment analysis, artifact location mismatches, and actionable recommendations.
4111
+ - **CLI verify-setup Command** – New `spec-kitty verify-setup` command for comprehensive environment diagnostics in the terminal.
4112
+ - **Worktree-Aware Resolution** – Added `resolve_worktree_aware_feature_dir()` function that intelligently detects and prefers worktree locations.
4113
+ - **Agent Location Checks** – Standardized "CRITICAL: Location Requirement" sections in command templates with bash verification scripts.
4114
+ - **Test Coverage** – Added comprehensive test suite for gitignore management and Codex security features with 9 test cases covering all edge cases.
4115
+
4116
+ ### Changed
4117
+
4118
+ - **Command Templates** – Enhanced plan.md and tasks.md with explicit worktree location requirements and verification scripts.
4119
+ - **Error Messages** – Improved bash script errors with visual indicators (❌ ERROR, 🔧 TO FIX, 💡 TIP) and exact fix commands.
4120
+ - **Research Command** – Updated to use worktree-aware feature directory resolution.
4121
+ - **Refactored Codex Security** – Extracted Codex credential protection logic into a dedicated `handle_codex_security()` function for better maintainability and testability.
4122
+
4123
+ ### Fixed
4124
+
4125
+ - **Artifact Location Mismatch** – Fixed issue where agents create artifacts in wrong location, preventing them from appearing in dashboard.
4126
+
4127
+ ## [0.4.5] - 2025-11-06
4128
+
4129
+ ### Added
4130
+
4131
+ - **Agent Guidance** – Bundled a shared `AGENTS.md` ruleset that is copied into `.kittify/` so every generated command has a canonical place to point agents for path/encoding/git expectations.
4132
+ - **Encoding Toolkit** – Introduced `scripts/validate_encoding.py` and new documentation to scan/fix Windows-1252 artifacts, plus a non-interactive init guide in `docs/non-interactive-init.md`.
4133
+ - **Dashboard Assets** – Split the inline dashboard UI into static CSS/JS files and committed them with the release.
4134
+
4135
+ ### Changed
4136
+
4137
+ - **CLI Help & Docs** – Expanded `spec-kitty init`, `research`, `check`, `accept`, and `merge` help text and refreshed README/index links to render correctly on PyPI.
4138
+ - **Dashboard Runtime** – Hardened the dashboard server/CLI handshake with health checks, token-gated shutdown, and more resilient worktree detection.
4139
+ - **Mission Handling** – Improved mission activation to fall back gracefully when symlinks are unavailable (e.g., Windows w/out dev mode) and aligned shell helpers with the new logic.
4140
+
4141
+ ### Security
4142
+
4143
+ - **Codex Guardrails** – Automatically append `.codex/` to `.gitignore`, warn if `auth.json` is tracked, and reiterate the `CODEX_HOME` workflow to keep API credentials out of source control.
4144
+
4145
+ ## [0.4.6] - 2025-11-06
4146
+
4147
+ ### Fixed
4148
+
4149
+ - **PyYAML Dependency** – Added `pyyaml` to the core dependency list so mission loading works in clean environments (CI no longer fails installing the package).
4150
+ - **PyPI README Links** – Restored absolute documentation links to keep images and references working on PyPI.
4151
+
4152
+ ## [0.4.4] - 2025-11-06
4153
+
4154
+ ### Security
4155
+
4156
+ - **Credential Cleanup** – Removed the committed `.codex` directory (OpenAI credentials) from the entire Git history and regenerated sanitized release assets.
4157
+ - **Token Rotation** – Documented that all compromised keys were revoked and environments refreshed before reissuing packages.
4158
+
4159
+ ### Changed
4160
+
4161
+ - **Release Artifacts** – Rebuilt GitHub release bundles and PyPI distributions from the cleaned history to ensure no secrets are present in published archives.
4162
+
4163
+ ## [0.3.2] - 2025-11-03
4164
+
4165
+ ### Added
4166
+
4167
+ - **Automated PyPI Release Pipeline** – Tag-triggered GitHub Actions workflow automatically builds, validates, and publishes releases to PyPI using `PYPI_API_TOKEN` secret, eliminating manual publish steps.
4168
+ - **Release Validation Tooling** – `scripts/release/validate_release.py` CLI enforces semantic version progression, changelog completeness, and version/tag alignment in both branch and tag modes with actionable error messages.
4169
+ - **Release Readiness Guardrails** – Pull request workflow validates version bumps, changelog entries, and test passage before merge; nightly scheduled checks monitor drift.
4170
+ - **Comprehensive Release Documentation** – Complete maintainer guides covering secret management, branch protection, troubleshooting, and step-by-step release workflows.
4171
+ - **Changelog Extraction** – `scripts/release/extract_changelog.py` automatically extracts version-specific release notes for GitHub Releases.
4172
+ - **Release Test Suite** – 4 pytest tests validate branch mode, tag mode, changelog parsing, and version regression detection.
4173
+
4174
+ ### Changed
4175
+
4176
+ - **GitHub Actions Workflows** – Updated `release.yml` with pinned dependency versions, proper workflow ordering (PyPI publish before GitHub Release), and checksums stored in `dist/SHA256SUMS.txt`.
4177
+ - **Workflow Reliability** – Fixed heredoc syntax error in `protect-main.yml` that was causing exit code 127 failures.
4178
+
4179
+ ### Security
4180
+
4181
+ - **Secret Hygiene** – PyPI credentials exclusively stored in GitHub Actions secrets with rotation guidance; no tokens in repository or logs; workflows sanitize outputs.
4182
+ - **Workflow Permissions** – Explicit least-privilege permissions in all workflows (contents:write, id-token:write for releases; contents:read for guards).
4183
+
4184
+ ## [0.3.1] - 2025-11-03
4185
+
4186
+ ### Changed
4187
+
4188
+ - **Worktree-Aware Merge Flow** – `/spec-kitty merge` now detects when it is invoked from a Git worktree, runs the actual merge steps from the primary repository checkout, and surfaces clearer guidance when the target checkout is dirty.
4189
+
4190
+ ### Documentation
4191
+
4192
+ - **Merge Workflow Guidance** – Updated templates and Claude workflow docs to describe the primary-repo hand-off during merges and reinforce the feature-worktree best practice.
4193
+
4194
+ ## [0.3.0] - 2025-11-02
4195
+
4196
+ ### Added
4197
+
4198
+ - **pip Installation Instructions** – All documentation now includes pip installation commands alongside uv, making Spec Kitty accessible to users who prefer traditional Python package management.
4199
+ - **Multiple Installation Methods** – Documented three installation paths: PyPI (stable), GitHub (development), and one-time usage (pipx/uvx).
4200
+
4201
+ ### Changed
4202
+
4203
+ - **Documentation Consistency** – Updated README.md, docs/index.md, docs/installation.md, and docs/quickstart.md to provide both pip and uv commands throughout.
4204
+ - **Installation Recommendations** – PyPI installation now marked as recommended for stable releases, with GitHub source for development versions.
4205
+
4206
+ ### Fixed
4207
+
4208
+ - **Packaging Issues** – Removed duplicate `.kittify` force-include that caused "Duplicate filename in local headers" errors on PyPI.
4209
+ - **Test Dependencies** – Added `pip install -e .[test]` to workflows to ensure all project dependencies available for tests.
4210
+
4211
+ ## [0.2.20] - 2025-11-02
4212
+
4213
+ ### Added
4214
+
4215
+ - **Automated PyPI Release Pipeline** – Tag-triggered GitHub Actions workflow automatically builds, validates, and publishes releases to PyPI using `PYPI_API_TOKEN` secret, eliminating manual publish steps.
4216
+ - **Release Validation Tooling** – `scripts/release/validate_release.py` CLI enforces semantic version progression, changelog completeness, and version/tag alignment in both branch and tag modes with actionable error messages.
4217
+ - **Release Readiness Guardrails** – Pull request workflow validates version bumps, changelog entries, and test passage before merge; protect-main workflow blocks direct pushes to main branch.
4218
+ - **Comprehensive Release Documentation** – Complete maintainer guides covering secret management, branch protection, troubleshooting, and step-by-step release workflows in README, docs, and inline help.
4219
+ - **Enhanced PyPI Metadata** – Added project URLs (repository, issues, docs, changelog), keywords, classifiers, and license information to improve PyPI discoverability and presentation.
4220
+ - **Changelog Extraction** – `scripts/release/extract_changelog.py` automatically extracts version-specific release notes for GitHub Releases.
4221
+ - **Release Test Suite** – 4 pytest tests validate branch mode, tag mode, changelog parsing, and version regression detection.
4222
+
4223
+ ### Changed
4224
+
4225
+ - **GitHub Actions Workflows** – Replaced legacy release workflow with modern PyPI automation supporting validation, building, checksums, GitHub Releases, and secure publishing.
4226
+ - **Documentation Structure** – Added dedicated releases section to docs with readiness checklist, workflow references, and troubleshooting guides; updated table of contents.
4227
+
4228
+ ### Security
4229
+
4230
+ - **Secret Hygiene** – PyPI credentials exclusively stored in GitHub Actions secrets with rotation guidance; no tokens in repository or logs; workflows sanitize outputs.
4231
+ - **Workflow Permissions** – Explicit least-privilege permissions in all workflows (contents:write, id-token:write for releases; contents:read for guards).
4232
+
4233
+ ## [0.2.3] - 2025-10-29
4234
+
4235
+ ### Added
4236
+
4237
+ - **Mission system assets** – Bundled Software Dev Kitty and Deep Research Kitty mission definitions (commands, templates, constitutions) directly in the CLI package so `spec-kitty init` can hydrate missions without a network call.
4238
+
4239
+ ### Changed
4240
+
4241
+ - Synced mission templates between the repository and packaged wheel to keep `/spec-kitty.*` commands consistent across `--ai` choices.
4242
+
4243
+ ## [0.2.2] - 2025-10-29
4244
+
4245
+ ### Added
4246
+
4247
+ - **Phase 0 Research command** – `spec-kitty research` (and `/spec-kitty.research`) scaffolds `research.md`, `data-model.md`, and CSV evidence logs using mission-aware templates so Deep Research Kitty teams can execute discovery workflows without leaving the guided process.
4248
+ - **Mission templates for research** – Deep Research Kitty now ships reusable templates for research decisions, data models, and evidence capture packaged inside the Python wheel.
4249
+
4250
+ ### Changed
4251
+
4252
+ - Updated `spec-kitty init` guidance, plan command instructions, and README workflow to include the new research phase between planning and task generation.
4253
+
4254
+ ## [0.2.1] - 2025-10-29
4255
+
4256
+ ### Added
4257
+
4258
+ - **Mission picker in init** - `spec-kitty init` now prompts for a mission (or accepts `--mission`) so projects start with Software Dev Kitty, Deep Research Kitty, or another bundled mission and record the choice in `.kittify/active-mission`.
4259
+
4260
+ ### Changed
4261
+
4262
+ - Highlight the active mission in the post-init guidance while keeping the Codex export step as the final instruction.
4263
+
4264
+ ## [0.2.0] - 2025-10-28
4265
+
4266
+ ### Added
4267
+
4268
+ - **New `/spec-kitty.merge` command** - Completes the workflow by merging features into main branch and cleaning up worktrees automatically. Supports multiple merge strategies (merge, squash, rebase), optional push to origin, and configurable cleanup of worktrees and branches.
4269
+ - **Worktree Strategy documentation** - Added comprehensive guide to the opinionated worktree approach for parallel feature development.
4270
+ - **Dashboard screenshots** - Added dashboard-kanban.png and dashboard-overview.png showcasing the real-time kanban board.
4271
+ - **Real-Time Dashboard section** - Added prominent dashboard documentation "above the fold" in README with screenshots and feature highlights.
4272
+ - **Mission management CLI** - `spec-kitty mission list|current|switch|info` for inspecting and activating domain-specific missions inside a project.
4273
+ - **Deep Research Kitty mission** - Research-focused templates (spec, plan, tasks, findings, prompts) and command guardrails for evidence-driven work.
4274
+ - **Mission packaging** - Missions are now bundled in release archives and Python wheels so project initialization copies `.kittify/missions` automatically.
4275
+
4276
+ ### Changed
4277
+
4278
+ - Updated command list in init output to show workflow order and include merge command.
4279
+ - Updated `/spec-kitty.accept` description to clarify it verifies (not merges) features.
4280
+ - Reordered slash commands documentation to reflect actual execution workflow.
4281
+ - Updated maintainers to reflect fork ownership.
4282
+ - Updated all repository references from `spec-kitty/spec-kitty` to `Priivacy-ai/spec-kitty`.
4283
+ - Updated installation instructions to use GitHub repository URL instead of local directory.
4284
+
4285
+ ### Fixed
4286
+
4287
+ - Removed invalid `multiple=True` parameter from `typer.Option()` in accept command that caused TypeError on CLI startup.
4288
+ - Fixed "nine articles" claim in spec-driven.md to "core articles" (only 6 are documented).
4289
+
4290
+ ### Removed
4291
+
4292
+ - Removed SECURITY.md (GitHub-specific security policies).
4293
+ - Removed CODE_OF_CONDUCT.md (GitHub-specific contact information).
4294
+ - Removed video overview section from README (outdated content).
4295
+ - Removed plant emoji (🌱) branding from all documentation and code.
4296
+ - Replaced logo_small.webp and logo_large.webp with actual spec-kitty cat logo.
4297
+
4298
+ ## [0.1.3] - 2025-10-28
4299
+
4300
+ ### Fixed
4301
+
4302
+ - Removed invalid `multiple=True` parameter from `typer.Option()` in accept command that caused TypeError on CLI startup.
4303
+
4304
+ ## [0.1.2] - 2025-10-28
4305
+
4306
+ ### Changed
4307
+
4308
+ - Rebranded the CLI command prefix from `speckitty` to `spec-kitty`, including package metadata and documentation references.
4309
+ - Migrated template directories from `.specify` to `.kittify` and feature storage from `/specs` to `/kitty-specs` to avoid namespace conflicts with Spec Kit.
4310
+ - Updated environment variables, helper scripts, and dashboards to align with the new `.kittify` and `kitty-specs` conventions.
4311
+
4312
+ ## [0.1.1] - 2025-10-07
4313
+
4314
+ ### Added
4315
+
4316
+ - New `/spec-kitty.accept` command (and `spec-kitty accept`) for feature-level acceptance: validates kanban state, frontmatter metadata, and artifacts; records acceptance metadata in `meta.json`; prints merge/cleanup instructions; and supports PR or local workflows across every agent.
4317
+ - Acceptance helper scripts (`accept-feature.sh` / `.ps1`) and expanded `tasks_cli` utilities (`status`, `verify`, `accept`) for automation and integration with AI agents.
4318
+ - Worktree-aware bootstrap workflow now defaults to creating per-feature worktrees, enabling parallel feature development with isolated sandboxes.
4319
+ - Implementation prompts now require operating inside the feature’s worktree and rely on the lane helper scripts for moves/metadata, eliminating `git mv` conflicts; the dashboard also surfaces active/expected worktree paths.
4320
+
4321
+ ### Changed
4322
+
4323
+ - `/spec-kitty.specify`, `/spec-kitty.plan`, and `/spec-kitty.clarify` now run fully conversational interviews—asking one question at a time, tracking internal coverage without rendering markdown tables, and only proceeding once summaries are confirmed—while continuing to resolve helper scripts via the `.kittify/scripts/...` paths.
4324
+ - Added proportionality guidance so discovery, planning, and clarification depth scales with feature complexity (e.g., lightweight tic-tac-toe flows vs. an operating system build).
4325
+ - `/spec-kitty.tasks` now produces both `tasks.md` and the kanban prompt files in one pass; the separate `/spec-kitty.task-prompts` command has been removed.
4326
+ - Tasks are grouped into at most ten work packages with bundled prompts, reducing file churn and making prompt generation LLM-friendly.
4327
+ - Both shell and PowerShell feature bootstrap scripts now stop with guidance to return `WAITING_FOR_DISCOVERY_INPUT` when invoked without a confirmed feature description, aligning with the new discovery workflow.
4328
+
4329
+ ## [0.1.0] - 2025-10-07
4330
+
4331
+ ### Changed
4332
+
4333
+ - `/spec-kitty.specify` and `/spec-kitty.plan` now enforce mandatory discovery interviews, pausing until you answer their question sets before any files are written.
4334
+ - `/spec-kitty.implement` now enforces the kanban workflow (planned → doing → for_review) with blocking validation, new helper scripts, and a task workflow quick reference.
4335
+ - Removed the legacy `specify` entrypoint; the CLI is now invoked exclusively via `spec-kitty`.
4336
+ - Updated installation instructions and scripts to use the new `spec-kitty-cli` package name and command.
4337
+ - Simplified local template overrides to use the `SPEC_KITTY_TEMPLATE_ROOT` environment variable only.
4338
+
4339
+ ## [0.0.20] - 2025-10-07
4340
+
4341
+ ### Changed
4342
+
4343
+ - Renamed the primary CLI entrypoint to `spec-kitty` and temporarily exposed a legacy `specify` alias for backwards compatibility.
4344
+ - Refreshed documentation, scripts, and examples to use the `spec-kitty` command by default.
4345
+
4346
+ ## [0.0.19] - 2025-10-07
4347
+
4348
+ ### Changed
4349
+
4350
+ - Rebranded the project as Spec Kitty, updating CLI defaults, docs, and scripts while acknowledging the original GitHub Spec Kit lineage.
4351
+ - Renamed all slash-command prefixes and generated artifact names from `/speckit.*` to `/spec-kitty.*` to match the new branding.
4352
+
4353
+ ### Added
4354
+
4355
+ - Refreshed CLI banner text and tagline to reflect spec-kitty branding.
4356
+
4357
+ ## [0.0.18] - 2025-10-06
4358
+
4359
+ ### Added
4360
+
4361
+ - Support for using `.` as a shorthand for current directory in `spec-kitty init .` command, equivalent to `--here` flag but more intuitive for users.
4362
+ - Use the `/spec-kitty.` command prefix to easily discover Spec Kitty-related commands.
4363
+ - Refactor the prompts and templates to simplify their capabilities and how they are tracked. No more polluting things with tests when they are not needed.
4364
+ - Ensure that tasks are created per user story (simplifies testing and validation).
4365
+ - Add support for Visual Studio Code prompt shortcuts and automatic script execution.
4366
+ - Allow `spec-kitty init` to bootstrap multiple AI assistants in one run (interactive multi-select or comma-separated `--ai` value).
4367
+ - When running from a local checkout, `spec-kitty init` now copies templates directly instead of downloading release archives, so new commands are immediately available.
4368
+
4369
+ ### Changed
4370
+
4371
+ - All command files now prefixed with `spec-kitty.` (e.g., `spec-kitty.specify.md`, `spec-kitty.plan.md`) for better discoverability and differentiation in IDE/CLI command palettes and file explorers