specify-cli 1.0.9__tar.gz → 1.0.10__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 (949) hide show
  1. specify_cli-1.0.10/CHANGELOG.md +2977 -0
  2. specify_cli-1.0.10/PKG-INFO +231 -0
  3. specify_cli-1.0.10/README.md +211 -0
  4. specify_cli-1.0.10/bundles/assess/bundle.yml +25 -0
  5. specify_cli-1.0.10/design/cli.md +347 -0
  6. specify_cli-1.0.10/docs/community/presets.md +47 -0
  7. specify_cli-1.0.10/docs/reference/integrations.md +348 -0
  8. specify_cli-1.0.10/docs/reference/presets.md +278 -0
  9. specify_cli-1.0.10/examples/bundles/business-analyst/bundle.yml +33 -0
  10. specify_cli-1.0.10/examples/bundles/developer/bundle.yml +33 -0
  11. specify_cli-1.0.10/examples/bundles/product-manager/bundle.yml +35 -0
  12. specify_cli-1.0.10/examples/bundles/security-researcher/bundle.yml +33 -0
  13. specify_cli-1.0.10/extensions/agent-context/extension.yml +34 -0
  14. specify_cli-1.0.10/extensions/assess/extension.yml +40 -0
  15. specify_cli-1.0.10/extensions/catalog.json +67 -0
  16. specify_cli-1.0.10/extensions/git/extension.yml +142 -0
  17. specify_cli-1.0.10/integrations/catalog.json +376 -0
  18. specify_cli-1.0.10/presets/catalog.community.json +1029 -0
  19. specify_cli-1.0.10/pyproject.toml +93 -0
  20. specify_cli-1.0.10/src/specify_cli/__init__.py +628 -0
  21. specify_cli-1.0.10/src/specify_cli/_version.py +1146 -0
  22. specify_cli-1.0.10/src/specify_cli/artifacts/_commands.py +89 -0
  23. specify_cli-1.0.10/src/specify_cli/artifacts/catalog.py +1163 -0
  24. specify_cli-1.0.10/src/specify_cli/artifacts/command_info.py +64 -0
  25. specify_cli-1.0.10/src/specify_cli/artifacts/command_list.py +42 -0
  26. specify_cli-1.0.10/src/specify_cli/artifacts/command_lookup.py +55 -0
  27. specify_cli-1.0.10/src/specify_cli/authentication/github_http.py +300 -0
  28. specify_cli-1.0.10/src/specify_cli/bundler.py +5 -0
  29. specify_cli-1.0.10/src/specify_cli/bundles/__init__.py +20 -0
  30. specify_cli-1.0.10/src/specify_cli/bundles/_commands.py +163 -0
  31. specify_cli-1.0.10/src/specify_cli/bundles/adapters.py +339 -0
  32. specify_cli-1.0.10/src/specify_cli/bundles/catalog/__init__.py +20 -0
  33. specify_cli-1.0.10/src/specify_cli/bundles/catalog/command_add.py +41 -0
  34. specify_cli-1.0.10/src/specify_cli/bundles/catalog/command_list.py +38 -0
  35. specify_cli-1.0.10/src/specify_cli/bundles/catalog/command_remove.py +31 -0
  36. specify_cli-1.0.10/src/specify_cli/bundles/catalog_config.py +232 -0
  37. specify_cli-1.0.10/src/specify_cli/bundles/catalog_stack.py +122 -0
  38. specify_cli-1.0.10/src/specify_cli/bundles/catalogs.py +334 -0
  39. specify_cli-1.0.10/src/specify_cli/bundles/command_add.py +32 -0
  40. specify_cli-1.0.10/src/specify_cli/bundles/command_build.py +38 -0
  41. specify_cli-1.0.10/src/specify_cli/bundles/command_info.py +157 -0
  42. specify_cli-1.0.10/src/specify_cli/bundles/command_init.py +51 -0
  43. specify_cli-1.0.10/src/specify_cli/bundles/command_install.py +137 -0
  44. specify_cli-1.0.10/src/specify_cli/bundles/command_list.py +45 -0
  45. specify_cli-1.0.10/src/specify_cli/bundles/command_remove.py +32 -0
  46. specify_cli-1.0.10/src/specify_cli/bundles/command_search.py +65 -0
  47. specify_cli-1.0.10/src/specify_cli/bundles/command_update.py +69 -0
  48. specify_cli-1.0.10/src/specify_cli/bundles/command_validate.py +65 -0
  49. specify_cli-1.0.10/src/specify_cli/bundles/conflict.py +54 -0
  50. specify_cli-1.0.10/src/specify_cli/bundles/installer.py +276 -0
  51. specify_cli-1.0.10/src/specify_cli/bundles/manifest.py +290 -0
  52. specify_cli-1.0.10/src/specify_cli/bundles/packager.py +153 -0
  53. specify_cli-1.0.10/src/specify_cli/bundles/primitives.py +500 -0
  54. specify_cli-1.0.10/src/specify_cli/bundles/project.py +102 -0
  55. specify_cli-1.0.10/src/specify_cli/bundles/records.py +245 -0
  56. specify_cli-1.0.10/src/specify_cli/bundles/references.py +127 -0
  57. specify_cli-1.0.10/src/specify_cli/bundles/resolver.py +132 -0
  58. specify_cli-1.0.10/src/specify_cli/bundles/sources.py +346 -0
  59. specify_cli-1.0.10/src/specify_cli/bundles/validator.py +60 -0
  60. specify_cli-1.0.10/src/specify_cli/bundles/versioning.py +99 -0
  61. specify_cli-1.0.10/src/specify_cli/bundles/yamlio.py +202 -0
  62. specify_cli-1.0.10/src/specify_cli/events/__init__.py +2641 -0
  63. specify_cli-1.0.10/src/specify_cli/events/command_run.py +54 -0
  64. specify_cli-1.0.10/src/specify_cli/extensions/__init__.py +5482 -0
  65. specify_cli-1.0.10/src/specify_cli/integrations/__init__.py +1003 -0
  66. specify_cli-1.0.10/src/specify_cli/integrations/_command_scaffold_generation.py +281 -0
  67. specify_cli-1.0.10/src/specify_cli/integrations/_command_upgrade_layout.py +188 -0
  68. specify_cli-1.0.10/src/specify_cli/integrations/_commands.py +47 -0
  69. specify_cli-1.0.10/src/specify_cli/integrations/agy/__init__.py +106 -0
  70. specify_cli-1.0.10/src/specify_cli/integrations/alquimia/__init__.py +195 -0
  71. specify_cli-1.0.10/src/specify_cli/integrations/amp/__init__.py +54 -0
  72. specify_cli-1.0.10/src/specify_cli/integrations/bob/__init__.py +373 -0
  73. specify_cli-1.0.10/src/specify_cli/integrations/catalog/__init__.py +48 -0
  74. specify_cli-1.0.10/src/specify_cli/integrations/catalog/command_add.py +42 -0
  75. specify_cli-1.0.10/src/specify_cli/integrations/catalog/command_list.py +67 -0
  76. specify_cli-1.0.10/src/specify_cli/integrations/catalog/command_remove.py +28 -0
  77. specify_cli-1.0.10/src/specify_cli/integrations/claude/__init__.py +245 -0
  78. specify_cli-1.0.10/src/specify_cli/integrations/command_info.py +114 -0
  79. specify_cli-1.0.10/src/specify_cli/integrations/command_install.py +199 -0
  80. specify_cli-1.0.10/src/specify_cli/integrations/command_list.py +114 -0
  81. specify_cli-1.0.10/src/specify_cli/integrations/command_scaffold.py +55 -0
  82. specify_cli-1.0.10/src/specify_cli/integrations/command_search.py +109 -0
  83. specify_cli-1.0.10/src/specify_cli/integrations/command_status.py +91 -0
  84. specify_cli-1.0.10/src/specify_cli/integrations/command_switch.py +369 -0
  85. specify_cli-1.0.10/src/specify_cli/integrations/command_uninstall.py +126 -0
  86. specify_cli-1.0.10/src/specify_cli/integrations/command_upgrade.py +348 -0
  87. specify_cli-1.0.10/src/specify_cli/integrations/command_use.py +69 -0
  88. specify_cli-1.0.10/src/specify_cli/integrations/opencode/__init__.py +76 -0
  89. specify_cli-1.0.10/src/specify_cli/integrations/vibe/__init__.py +202 -0
  90. specify_cli-1.0.10/src/specify_cli/presets/__init__.py +6259 -0
  91. specify_cli-1.0.10/src/specify_cli/presets/_commands.py +99 -0
  92. specify_cli-1.0.10/src/specify_cli/presets/catalog/__init__.py +25 -0
  93. specify_cli-1.0.10/src/specify_cli/presets/catalog/command_add.py +114 -0
  94. specify_cli-1.0.10/src/specify_cli/presets/catalog/command_list.py +78 -0
  95. specify_cli-1.0.10/src/specify_cli/presets/catalog/command_remove.py +69 -0
  96. specify_cli-1.0.10/src/specify_cli/presets/command_add.py +381 -0
  97. specify_cli-1.0.10/src/specify_cli/presets/command_disable.py +50 -0
  98. specify_cli-1.0.10/src/specify_cli/presets/command_enable.py +49 -0
  99. specify_cli-1.0.10/src/specify_cli/presets/command_info.py +96 -0
  100. specify_cli-1.0.10/src/specify_cli/presets/command_list.py +89 -0
  101. specify_cli-1.0.10/src/specify_cli/presets/command_remove.py +30 -0
  102. specify_cli-1.0.10/src/specify_cli/presets/command_resolve.py +121 -0
  103. specify_cli-1.0.10/src/specify_cli/presets/command_search.py +46 -0
  104. specify_cli-1.0.10/src/specify_cli/presets/command_set_priority.py +70 -0
  105. specify_cli-1.0.10/src/specify_cli/presets/command_update.py +99 -0
  106. specify_cli-1.0.10/src/specify_cli/selfs/__init__.py +28 -0
  107. specify_cli-1.0.10/src/specify_cli/selfs/command_check.py +79 -0
  108. specify_cli-1.0.10/src/specify_cli/selfs/command_upgrade.py +215 -0
  109. specify_cli-1.0.10/src/specify_cli/workflows/__init__.py +213 -0
  110. specify_cli-1.0.10/src/specify_cli/workflows/_command_resume_state.py +49 -0
  111. specify_cli-1.0.10/src/specify_cli/workflows/_command_run_ownership.py +187 -0
  112. specify_cli-1.0.10/src/specify_cli/workflows/_commands.py +1535 -0
  113. specify_cli-1.0.10/src/specify_cli/workflows/catalog/__init__.py +60 -0
  114. specify_cli-1.0.10/src/specify_cli/workflows/catalog/_domain.py +831 -0
  115. specify_cli-1.0.10/src/specify_cli/workflows/catalog/command_add.py +25 -0
  116. specify_cli-1.0.10/src/specify_cli/workflows/catalog/command_list.py +38 -0
  117. specify_cli-1.0.10/src/specify_cli/workflows/catalog/command_remove.py +26 -0
  118. specify_cli-1.0.10/src/specify_cli/workflows/command_add.py +507 -0
  119. specify_cli-1.0.10/src/specify_cli/workflows/command_disable.py +16 -0
  120. specify_cli-1.0.10/src/specify_cli/workflows/command_enable.py +13 -0
  121. specify_cli-1.0.10/src/specify_cli/workflows/command_info.py +121 -0
  122. specify_cli-1.0.10/src/specify_cli/workflows/command_list.py +36 -0
  123. specify_cli-1.0.10/src/specify_cli/workflows/command_remove.py +127 -0
  124. specify_cli-1.0.10/src/specify_cli/workflows/command_resolve.py +17 -0
  125. specify_cli-1.0.10/src/specify_cli/workflows/command_resume.py +113 -0
  126. specify_cli-1.0.10/src/specify_cli/workflows/command_run.py +168 -0
  127. specify_cli-1.0.10/src/specify_cli/workflows/command_search.py +43 -0
  128. specify_cli-1.0.10/src/specify_cli/workflows/command_status.py +129 -0
  129. specify_cli-1.0.10/src/specify_cli/workflows/command_update.py +148 -0
  130. specify_cli-1.0.10/src/specify_cli/workflows/engine.py +1843 -0
  131. specify_cli-1.0.10/src/specify_cli/workflows/expressions.py +1312 -0
  132. specify_cli-1.0.10/src/specify_cli/workflows/overlay/__init__.py +39 -0
  133. specify_cli-1.0.10/src/specify_cli/workflows/overlay/command_add.py +23 -0
  134. specify_cli-1.0.10/src/specify_cli/workflows/overlay/command_disable.py +19 -0
  135. specify_cli-1.0.10/src/specify_cli/workflows/overlay/command_enable.py +19 -0
  136. specify_cli-1.0.10/src/specify_cli/workflows/overlay/command_list.py +18 -0
  137. specify_cli-1.0.10/src/specify_cli/workflows/overlay/command_remove.py +19 -0
  138. specify_cli-1.0.10/src/specify_cli/workflows/overlay/command_set_priority.py +24 -0
  139. specify_cli-1.0.10/src/specify_cli/workflows/overlay/operations.py +509 -0
  140. specify_cli-1.0.10/src/specify_cli/workflows/overlay/resolver.py +95 -0
  141. specify_cli-1.0.10/src/specify_cli/workflows/step/__init__.py +28 -0
  142. specify_cli-1.0.10/src/specify_cli/workflows/step/_helpers.py +107 -0
  143. specify_cli-1.0.10/src/specify_cli/workflows/step/catalog/__init__.py +48 -0
  144. specify_cli-1.0.10/src/specify_cli/workflows/step/catalog/_domain.py +710 -0
  145. specify_cli-1.0.10/src/specify_cli/workflows/step/catalog/command_add.py +26 -0
  146. specify_cli-1.0.10/src/specify_cli/workflows/step/catalog/command_list.py +38 -0
  147. specify_cli-1.0.10/src/specify_cli/workflows/step/catalog/command_remove.py +27 -0
  148. specify_cli-1.0.10/src/specify_cli/workflows/step/command_add.py +376 -0
  149. specify_cli-1.0.10/src/specify_cli/workflows/step/command_info.py +78 -0
  150. specify_cli-1.0.10/src/specify_cli/workflows/step/command_list.py +49 -0
  151. specify_cli-1.0.10/src/specify_cli/workflows/step/command_remove.py +97 -0
  152. specify_cli-1.0.10/src/specify_cli/workflows/step/command_search.py +47 -0
  153. specify_cli-1.0.10/tests/contract/test_bundled_extension_update_delivery.py +157 -0
  154. specify_cli-1.0.10/tests/contract/test_bundled_extension_versions.py +120 -0
  155. specify_cli-1.0.10/tests/contract/test_catalog_schema.py +353 -0
  156. specify_cli-1.0.10/tests/contract/test_manifest_schema.py +225 -0
  157. specify_cli-1.0.10/tests/extensions/git/test_git_extension.py +2082 -0
  158. specify_cli-1.0.10/tests/http_helpers.py +47 -0
  159. specify_cli-1.0.10/tests/integration/test_preset_update_workflow.py +328 -0
  160. specify_cli-1.0.10/tests/integrations/test_cli.py +2264 -0
  161. specify_cli-1.0.10/tests/integrations/test_integration_agy.py +387 -0
  162. specify_cli-1.0.10/tests/integrations/test_integration_alquimia.py +752 -0
  163. specify_cli-1.0.10/tests/integrations/test_integration_amp.py +96 -0
  164. specify_cli-1.0.10/tests/integrations/test_integration_claude.py +1006 -0
  165. specify_cli-1.0.10/tests/integrations/test_integration_opencode.py +202 -0
  166. specify_cli-1.0.10/tests/integrations/test_integration_vibe.py +386 -0
  167. specify_cli-1.0.10/tests/specify_cli/artifacts/conftest.py +25 -0
  168. specify_cli-1.0.10/tests/specify_cli/artifacts/helpers.py +69 -0
  169. specify_cli-1.0.10/tests/specify_cli/artifacts/test_catalog.py +2274 -0
  170. specify_cli-1.0.10/tests/specify_cli/artifacts/test_catalog_parity.py +173 -0
  171. specify_cli-1.0.10/tests/specify_cli/artifacts/test_command_info.py +152 -0
  172. specify_cli-1.0.10/tests/specify_cli/artifacts/test_command_list.py +178 -0
  173. specify_cli-1.0.10/tests/specify_cli/artifacts/test_command_lookup.py +180 -0
  174. specify_cli-1.0.10/tests/specify_cli/artifacts/test_registration.py +11 -0
  175. specify_cli-1.0.10/tests/specify_cli/authentication/__init__.py +1 -0
  176. specify_cli-1.0.10/tests/specify_cli/authentication/helpers.py +21 -0
  177. specify_cli-1.0.10/tests/specify_cli/authentication/test_authentication.py +1475 -0
  178. specify_cli-1.0.10/tests/specify_cli/authentication/test_github_http.py +634 -0
  179. specify_cli-1.0.10/tests/specify_cli/bundles/__init__.py +0 -0
  180. specify_cli-1.0.10/tests/specify_cli/bundles/_command_helpers.py +50 -0
  181. specify_cli-1.0.10/tests/specify_cli/bundles/catalog/__init__.py +0 -0
  182. specify_cli-1.0.10/tests/specify_cli/bundles/catalog/test_command_add.py +35 -0
  183. specify_cli-1.0.10/tests/specify_cli/bundles/catalog/test_command_list.py +23 -0
  184. specify_cli-1.0.10/tests/specify_cli/bundles/catalog/test_command_remove.py +21 -0
  185. specify_cli-1.0.10/tests/specify_cli/bundles/conftest.py +12 -0
  186. specify_cli-1.0.10/tests/specify_cli/bundles/helpers.py +143 -0
  187. specify_cli-1.0.10/tests/specify_cli/bundles/test_adapters.py +517 -0
  188. specify_cli-1.0.10/tests/specify_cli/bundles/test_bundles.py +8 -0
  189. specify_cli-1.0.10/tests/specify_cli/bundles/test_catalog_config.py +315 -0
  190. specify_cli-1.0.10/tests/specify_cli/bundles/test_catalog_stack.py +141 -0
  191. specify_cli-1.0.10/tests/specify_cli/bundles/test_command_add.py +91 -0
  192. specify_cli-1.0.10/tests/specify_cli/bundles/test_command_build.py +58 -0
  193. specify_cli-1.0.10/tests/specify_cli/bundles/test_command_info.py +606 -0
  194. specify_cli-1.0.10/tests/specify_cli/bundles/test_command_init.py +40 -0
  195. specify_cli-1.0.10/tests/specify_cli/bundles/test_command_install.py +553 -0
  196. specify_cli-1.0.10/tests/specify_cli/bundles/test_command_list.py +103 -0
  197. specify_cli-1.0.10/tests/specify_cli/bundles/test_command_remove.py +55 -0
  198. specify_cli-1.0.10/tests/specify_cli/bundles/test_command_search.py +106 -0
  199. specify_cli-1.0.10/tests/specify_cli/bundles/test_command_update.py +71 -0
  200. specify_cli-1.0.10/tests/specify_cli/bundles/test_command_validate.py +84 -0
  201. specify_cli-1.0.10/tests/specify_cli/bundles/test_commands.py +71 -0
  202. specify_cli-1.0.10/tests/specify_cli/bundles/test_conflict.py +54 -0
  203. specify_cli-1.0.10/tests/specify_cli/bundles/test_installer.py +606 -0
  204. specify_cli-1.0.10/tests/specify_cli/bundles/test_offline.py +153 -0
  205. specify_cli-1.0.10/tests/specify_cli/bundles/test_packager.py +236 -0
  206. specify_cli-1.0.10/tests/specify_cli/bundles/test_primitives.py +614 -0
  207. specify_cli-1.0.10/tests/specify_cli/bundles/test_records.py +281 -0
  208. specify_cli-1.0.10/tests/specify_cli/bundles/test_references.py +112 -0
  209. specify_cli-1.0.10/tests/specify_cli/bundles/test_resolver.py +107 -0
  210. specify_cli-1.0.10/tests/specify_cli/bundles/test_security_paths.py +236 -0
  211. specify_cli-1.0.10/tests/specify_cli/bundles/test_sources.py +332 -0
  212. specify_cli-1.0.10/tests/specify_cli/bundles/test_validator.py +32 -0
  213. specify_cli-1.0.10/tests/specify_cli/bundles/test_versioning.py +68 -0
  214. specify_cli-1.0.10/tests/specify_cli/bundles/test_yamlio.py +58 -0
  215. specify_cli-1.0.10/tests/specify_cli/events/__init__.py +1 -0
  216. specify_cli-1.0.10/tests/specify_cli/events/test_command_run.py +145 -0
  217. specify_cli-1.0.10/tests/specify_cli/events/test_events.py +3099 -0
  218. specify_cli-1.0.10/tests/specify_cli/integrations/__init__.py +1 -0
  219. specify_cli-1.0.10/tests/specify_cli/integrations/_catalog_helpers.py +107 -0
  220. specify_cli-1.0.10/tests/specify_cli/integrations/_helpers.py +77 -0
  221. specify_cli-1.0.10/tests/specify_cli/integrations/_scaffold_helpers.py +16 -0
  222. specify_cli-1.0.10/tests/specify_cli/integrations/catalog/__init__.py +1 -0
  223. specify_cli-1.0.10/tests/specify_cli/integrations/catalog/test_command_add.py +110 -0
  224. specify_cli-1.0.10/tests/specify_cli/integrations/catalog/test_command_list.py +146 -0
  225. specify_cli-1.0.10/tests/specify_cli/integrations/catalog/test_command_remove.py +83 -0
  226. specify_cli-1.0.10/tests/specify_cli/integrations/conftest.py +22 -0
  227. specify_cli-1.0.10/tests/specify_cli/integrations/test_catalog.py +1660 -0
  228. specify_cli-1.0.10/tests/specify_cli/integrations/test_command_info.py +120 -0
  229. specify_cli-1.0.10/tests/specify_cli/integrations/test_command_install.py +702 -0
  230. specify_cli-1.0.10/tests/specify_cli/integrations/test_command_list.py +175 -0
  231. specify_cli-1.0.10/tests/specify_cli/integrations/test_command_scaffold.py +92 -0
  232. specify_cli-1.0.10/tests/specify_cli/integrations/test_command_scaffold_generation.py +133 -0
  233. specify_cli-1.0.10/tests/specify_cli/integrations/test_command_search.py +199 -0
  234. specify_cli-1.0.10/tests/specify_cli/integrations/test_command_status.py +835 -0
  235. specify_cli-1.0.10/tests/specify_cli/integrations/test_command_switch.py +875 -0
  236. specify_cli-1.0.10/tests/specify_cli/integrations/test_command_uninstall.py +222 -0
  237. specify_cli-1.0.10/tests/specify_cli/integrations/test_command_upgrade.py +1532 -0
  238. specify_cli-1.0.10/tests/specify_cli/integrations/test_command_upgrade_layout.py +120 -0
  239. specify_cli-1.0.10/tests/specify_cli/integrations/test_command_use.py +343 -0
  240. specify_cli-1.0.10/tests/specify_cli/integrations/test_lifecycle.py +59 -0
  241. specify_cli-1.0.10/tests/specify_cli/integrations/test_registration.py +186 -0
  242. specify_cli-1.0.10/tests/specify_cli/presets/__init__.py +1 -0
  243. specify_cli-1.0.10/tests/specify_cli/presets/_fixtures.py +82 -0
  244. specify_cli-1.0.10/tests/specify_cli/presets/_helpers.py +128 -0
  245. specify_cli-1.0.10/tests/specify_cli/presets/catalog/__init__.py +1 -0
  246. specify_cli-1.0.10/tests/specify_cli/presets/catalog/test_command_add.py +75 -0
  247. specify_cli-1.0.10/tests/specify_cli/presets/catalog/test_command_list.py +38 -0
  248. specify_cli-1.0.10/tests/specify_cli/presets/catalog/test_command_remove.py +56 -0
  249. specify_cli-1.0.10/tests/specify_cli/presets/conftest.py +10 -0
  250. specify_cli-1.0.10/tests/specify_cli/presets/test_command_add.py +991 -0
  251. specify_cli-1.0.10/tests/specify_cli/presets/test_command_disable.py +97 -0
  252. specify_cli-1.0.10/tests/specify_cli/presets/test_command_enable.py +162 -0
  253. specify_cli-1.0.10/tests/specify_cli/presets/test_command_info.py +250 -0
  254. specify_cli-1.0.10/tests/specify_cli/presets/test_command_list.py +85 -0
  255. specify_cli-1.0.10/tests/specify_cli/presets/test_command_remove.py +21 -0
  256. specify_cli-1.0.10/tests/specify_cli/presets/test_command_resolve.py +216 -0
  257. specify_cli-1.0.10/tests/specify_cli/presets/test_command_search.py +204 -0
  258. specify_cli-1.0.10/tests/specify_cli/presets/test_command_set_priority.py +166 -0
  259. specify_cli-1.0.10/tests/specify_cli/presets/test_command_update.py +282 -0
  260. specify_cli-1.0.10/tests/specify_cli/presets/test_registration.py +40 -0
  261. specify_cli-1.0.10/tests/specify_cli/selfs/__init__.py +1 -0
  262. specify_cli-1.0.10/tests/specify_cli/selfs/test_command_check.py +187 -0
  263. specify_cli-1.0.10/tests/specify_cli/selfs/test_command_upgrade.py +128 -0
  264. specify_cli-1.0.10/tests/specify_cli/test_version_detection.py +888 -0
  265. specify_cli-1.0.10/tests/specify_cli/test_version_execution.py +543 -0
  266. specify_cli-1.0.10/tests/specify_cli/test_version_guidance.py +185 -0
  267. specify_cli-1.0.10/tests/specify_cli/test_version_release.py +286 -0
  268. specify_cli-1.0.10/tests/specify_cli/test_version_verification.py +539 -0
  269. specify_cli-1.0.10/tests/specify_cli/workflows/__init__.py +1 -0
  270. specify_cli-1.0.10/tests/specify_cli/workflows/catalog/__init__.py +1 -0
  271. specify_cli-1.0.10/tests/specify_cli/workflows/catalog/test_command_add.py +30 -0
  272. specify_cli-1.0.10/tests/specify_cli/workflows/catalog/test_command_list.py +37 -0
  273. specify_cli-1.0.10/tests/specify_cli/workflows/catalog/test_command_remove.py +19 -0
  274. specify_cli-1.0.10/tests/specify_cli/workflows/conftest.py +58 -0
  275. specify_cli-1.0.10/tests/specify_cli/workflows/helpers.py +48 -0
  276. specify_cli-1.0.10/tests/specify_cli/workflows/overlay/__init__.py +1 -0
  277. specify_cli-1.0.10/tests/specify_cli/workflows/overlay/test_command_add.py +513 -0
  278. specify_cli-1.0.10/tests/specify_cli/workflows/overlay/test_command_disable.py +165 -0
  279. specify_cli-1.0.10/tests/specify_cli/workflows/overlay/test_command_enable.py +32 -0
  280. specify_cli-1.0.10/tests/specify_cli/workflows/overlay/test_command_list.py +239 -0
  281. specify_cli-1.0.10/tests/specify_cli/workflows/overlay/test_command_remove.py +172 -0
  282. specify_cli-1.0.10/tests/specify_cli/workflows/overlay/test_command_set_priority.py +244 -0
  283. specify_cli-1.0.10/tests/specify_cli/workflows/step/__init__.py +1 -0
  284. specify_cli-1.0.10/tests/specify_cli/workflows/step/catalog/__init__.py +1 -0
  285. specify_cli-1.0.10/tests/specify_cli/workflows/step/catalog/test_command_add.py +31 -0
  286. specify_cli-1.0.10/tests/specify_cli/workflows/step/catalog/test_command_list.py +37 -0
  287. specify_cli-1.0.10/tests/specify_cli/workflows/step/catalog/test_command_remove.py +23 -0
  288. specify_cli-1.0.10/tests/specify_cli/workflows/step/test_command_add.py +606 -0
  289. specify_cli-1.0.10/tests/specify_cli/workflows/step/test_command_info.py +63 -0
  290. specify_cli-1.0.10/tests/specify_cli/workflows/step/test_command_list.py +40 -0
  291. specify_cli-1.0.10/tests/specify_cli/workflows/step/test_command_remove.py +94 -0
  292. specify_cli-1.0.10/tests/specify_cli/workflows/step/test_command_search.py +39 -0
  293. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_add.py +3206 -0
  294. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_disable.py +305 -0
  295. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_enable.py +145 -0
  296. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_info.py +143 -0
  297. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_list.py +150 -0
  298. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_remove.py +371 -0
  299. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_resolve.py +197 -0
  300. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_resume.py +652 -0
  301. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_resume_state.py +40 -0
  302. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_run.py +1394 -0
  303. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_run_ownership.py +51 -0
  304. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_search.py +96 -0
  305. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_status.py +295 -0
  306. specify_cli-1.0.10/tests/specify_cli/workflows/test_command_update.py +801 -0
  307. specify_cli-1.0.10/tests/test_cli_version.py +138 -0
  308. specify_cli-1.0.10/tests/test_commands_package.py +100 -0
  309. specify_cli-1.0.10/tests/test_extensions.py +9082 -0
  310. specify_cli-1.0.10/tests/test_init_dir_cli.py +244 -0
  311. specify_cli-1.0.10/tests/test_presets.py +12884 -0
  312. specify_cli-1.0.10/tests/test_workflows.py +10637 -0
  313. specify_cli-1.0.10/tests/unit/test_condition_expression_block.py +982 -0
  314. specify_cli-1.0.10/tests/workflows/test_overlay_composer.py +153 -0
  315. specify_cli-1.0.10/tests/workflows/test_overlay_layer_sources.py +327 -0
  316. specify_cli-1.0.10/tests/workflows/test_overlay_merge.py +932 -0
  317. specify_cli-1.0.10/tests/workflows/test_overlay_schema.py +366 -0
  318. specify_cli-1.0.10/tests/workflows/test_resolver_integration.py +567 -0
  319. specify_cli-1.0.10/tests/workflows/test_slot_step.py +242 -0
  320. specify_cli-1.0.10/workflows/ARCHITECTURE.md +218 -0
  321. specify_cli-1.0.9/CHANGELOG.md +0 -2952
  322. specify_cli-1.0.9/PKG-INFO +0 -215
  323. specify_cli-1.0.9/README.md +0 -195
  324. specify_cli-1.0.9/bundles/assess/bundle.yml +0 -25
  325. specify_cli-1.0.9/design/cli.md +0 -303
  326. specify_cli-1.0.9/docs/community/presets.md +0 -47
  327. specify_cli-1.0.9/docs/reference/integrations.md +0 -347
  328. specify_cli-1.0.9/docs/reference/presets.md +0 -240
  329. specify_cli-1.0.9/examples/bundles/business-analyst/bundle.yml +0 -33
  330. specify_cli-1.0.9/examples/bundles/developer/bundle.yml +0 -33
  331. specify_cli-1.0.9/examples/bundles/product-manager/bundle.yml +0 -35
  332. specify_cli-1.0.9/examples/bundles/security-researcher/bundle.yml +0 -33
  333. specify_cli-1.0.9/extensions/agent-context/extension.yml +0 -34
  334. specify_cli-1.0.9/extensions/assess/extension.yml +0 -40
  335. specify_cli-1.0.9/extensions/catalog.json +0 -67
  336. specify_cli-1.0.9/extensions/git/extension.yml +0 -142
  337. specify_cli-1.0.9/integrations/catalog.json +0 -376
  338. specify_cli-1.0.9/presets/catalog.community.json +0 -1029
  339. specify_cli-1.0.9/pyproject.toml +0 -93
  340. specify_cli-1.0.9/src/specify_cli/__init__.py +0 -617
  341. specify_cli-1.0.9/src/specify_cli/_github_http.py +0 -300
  342. specify_cli-1.0.9/src/specify_cli/_version.py +0 -1447
  343. specify_cli-1.0.9/src/specify_cli/artifacts/_commands.py +0 -201
  344. specify_cli-1.0.9/src/specify_cli/artifacts/catalog.py +0 -1163
  345. specify_cli-1.0.9/src/specify_cli/bundler/__init__.py +0 -19
  346. specify_cli-1.0.9/src/specify_cli/bundler/commands_impl/__init__.py +0 -2
  347. specify_cli-1.0.9/src/specify_cli/bundler/commands_impl/catalog_config.py +0 -232
  348. specify_cli-1.0.9/src/specify_cli/bundler/lib/__init__.py +0 -2
  349. specify_cli-1.0.9/src/specify_cli/bundler/lib/project.py +0 -102
  350. specify_cli-1.0.9/src/specify_cli/bundler/lib/versioning.py +0 -99
  351. specify_cli-1.0.9/src/specify_cli/bundler/lib/yamlio.py +0 -202
  352. specify_cli-1.0.9/src/specify_cli/bundler/models/__init__.py +0 -2
  353. specify_cli-1.0.9/src/specify_cli/bundler/models/catalog.py +0 -334
  354. specify_cli-1.0.9/src/specify_cli/bundler/models/manifest.py +0 -290
  355. specify_cli-1.0.9/src/specify_cli/bundler/models/records.py +0 -245
  356. specify_cli-1.0.9/src/specify_cli/bundler/services/__init__.py +0 -2
  357. specify_cli-1.0.9/src/specify_cli/bundler/services/adapters.py +0 -339
  358. specify_cli-1.0.9/src/specify_cli/bundler/services/catalog_stack.py +0 -122
  359. specify_cli-1.0.9/src/specify_cli/bundler/services/conflict.py +0 -54
  360. specify_cli-1.0.9/src/specify_cli/bundler/services/installer.py +0 -276
  361. specify_cli-1.0.9/src/specify_cli/bundler/services/packager.py +0 -153
  362. specify_cli-1.0.9/src/specify_cli/bundler/services/primitives.py +0 -500
  363. specify_cli-1.0.9/src/specify_cli/bundler/services/references.py +0 -127
  364. specify_cli-1.0.9/src/specify_cli/bundler/services/resolver.py +0 -132
  365. specify_cli-1.0.9/src/specify_cli/bundler/services/validator.py +0 -60
  366. specify_cli-1.0.9/src/specify_cli/commands/bundle/__init__.py +0 -1135
  367. specify_cli-1.0.9/src/specify_cli/commands/event.py +0 -61
  368. specify_cli-1.0.9/src/specify_cli/events.py +0 -2621
  369. specify_cli-1.0.9/src/specify_cli/extensions/__init__.py +0 -5481
  370. specify_cli-1.0.9/src/specify_cli/integration_scaffold.py +0 -281
  371. specify_cli-1.0.9/src/specify_cli/integrations/__init__.py +0 -136
  372. specify_cli-1.0.9/src/specify_cli/integrations/_commands.py +0 -35
  373. specify_cli-1.0.9/src/specify_cli/integrations/_install_commands.py +0 -329
  374. specify_cli-1.0.9/src/specify_cli/integrations/_migrate_commands.py +0 -903
  375. specify_cli-1.0.9/src/specify_cli/integrations/_query_commands.py +0 -573
  376. specify_cli-1.0.9/src/specify_cli/integrations/_scaffold_commands.py +0 -54
  377. specify_cli-1.0.9/src/specify_cli/integrations/agy/__init__.py +0 -147
  378. specify_cli-1.0.9/src/specify_cli/integrations/alquimia/__init__.py +0 -189
  379. specify_cli-1.0.9/src/specify_cli/integrations/amp/__init__.py +0 -52
  380. specify_cli-1.0.9/src/specify_cli/integrations/bob/__init__.py +0 -373
  381. specify_cli-1.0.9/src/specify_cli/integrations/catalog.py +0 -878
  382. specify_cli-1.0.9/src/specify_cli/integrations/claude/__init__.py +0 -239
  383. specify_cli-1.0.9/src/specify_cli/integrations/opencode/__init__.py +0 -75
  384. specify_cli-1.0.9/src/specify_cli/integrations/vibe/__init__.py +0 -196
  385. specify_cli-1.0.9/src/specify_cli/presets/__init__.py +0 -6259
  386. specify_cli-1.0.9/src/specify_cli/presets/_commands.py +0 -1007
  387. specify_cli-1.0.9/src/specify_cli/workflows/__init__.py +0 -213
  388. specify_cli-1.0.9/src/specify_cli/workflows/_commands.py +0 -3901
  389. specify_cli-1.0.9/src/specify_cli/workflows/catalog.py +0 -1507
  390. specify_cli-1.0.9/src/specify_cli/workflows/engine.py +0 -1831
  391. specify_cli-1.0.9/src/specify_cli/workflows/expressions.py +0 -1277
  392. specify_cli-1.0.9/src/specify_cli/workflows/overlays/__init__.py +0 -95
  393. specify_cli-1.0.9/src/specify_cli/workflows/overlays/_commands.py +0 -468
  394. specify_cli-1.0.9/src/specify_cli/workflows/steps/__init__.py +0 -1
  395. specify_cli-1.0.9/tests/auth_helpers.py +0 -21
  396. specify_cli-1.0.9/tests/bundler_helpers.py +0 -125
  397. specify_cli-1.0.9/tests/contract/test_bundle_cli.py +0 -1231
  398. specify_cli-1.0.9/tests/contract/test_bundled_extension_versions.py +0 -83
  399. specify_cli-1.0.9/tests/contract/test_catalog_schema.py +0 -353
  400. specify_cli-1.0.9/tests/contract/test_manifest_schema.py +0 -225
  401. specify_cli-1.0.9/tests/extensions/git/test_git_extension.py +0 -2082
  402. specify_cli-1.0.9/tests/http_helpers.py +0 -46
  403. specify_cli-1.0.9/tests/integration/test_bundler_catalog_stack.py +0 -141
  404. specify_cli-1.0.9/tests/integration/test_bundler_init_install.py +0 -106
  405. specify_cli-1.0.9/tests/integration/test_bundler_install_flow.py +0 -606
  406. specify_cli-1.0.9/tests/integration/test_bundler_local_install.py +0 -480
  407. specify_cli-1.0.9/tests/integration/test_bundler_offline.py +0 -153
  408. specify_cli-1.0.9/tests/integration/test_bundler_security_paths.py +0 -236
  409. specify_cli-1.0.9/tests/integrations/test_cli.py +0 -3074
  410. specify_cli-1.0.9/tests/integrations/test_events.py +0 -3099
  411. specify_cli-1.0.9/tests/integrations/test_integration_agy.py +0 -245
  412. specify_cli-1.0.9/tests/integrations/test_integration_alquimia.py +0 -702
  413. specify_cli-1.0.9/tests/integrations/test_integration_amp.py +0 -84
  414. specify_cli-1.0.9/tests/integrations/test_integration_catalog.py +0 -1950
  415. specify_cli-1.0.9/tests/integrations/test_integration_claude.py +0 -956
  416. specify_cli-1.0.9/tests/integrations/test_integration_opencode.py +0 -199
  417. specify_cli-1.0.9/tests/integrations/test_integration_scaffold.py +0 -238
  418. specify_cli-1.0.9/tests/integrations/test_integration_subcommand.py +0 -4499
  419. specify_cli-1.0.9/tests/integrations/test_integration_vibe.py +0 -336
  420. specify_cli-1.0.9/tests/test_artifact_command.py +0 -2819
  421. specify_cli-1.0.9/tests/test_artifact_command_parity.py +0 -173
  422. specify_cli-1.0.9/tests/test_authentication.py +0 -1475
  423. specify_cli-1.0.9/tests/test_cli_version.py +0 -79
  424. specify_cli-1.0.9/tests/test_commands_package.py +0 -100
  425. specify_cli-1.0.9/tests/test_event_command.py +0 -145
  426. specify_cli-1.0.9/tests/test_extensions.py +0 -9082
  427. specify_cli-1.0.9/tests/test_github_http.py +0 -632
  428. specify_cli-1.0.9/tests/test_init_dir_cli.py +0 -294
  429. specify_cli-1.0.9/tests/test_presets.py +0 -14732
  430. specify_cli-1.0.9/tests/test_self_upgrade_detection.py +0 -888
  431. specify_cli-1.0.9/tests/test_self_upgrade_execution.py +0 -543
  432. specify_cli-1.0.9/tests/test_self_upgrade_guidance.py +0 -185
  433. specify_cli-1.0.9/tests/test_self_upgrade_verification.py +0 -670
  434. specify_cli-1.0.9/tests/test_upgrade.py +0 -449
  435. specify_cli-1.0.9/tests/test_workflow_run_without_project.py +0 -408
  436. specify_cli-1.0.9/tests/test_workflows.py +0 -17982
  437. specify_cli-1.0.9/tests/unit/test_bundle_download_url.py +0 -162
  438. specify_cli-1.0.9/tests/unit/test_bundler_adapters.py +0 -517
  439. specify_cli-1.0.9/tests/unit/test_bundler_catalog_config.py +0 -315
  440. specify_cli-1.0.9/tests/unit/test_bundler_conflict.py +0 -54
  441. specify_cli-1.0.9/tests/unit/test_bundler_packager.py +0 -236
  442. specify_cli-1.0.9/tests/unit/test_bundler_primitives.py +0 -614
  443. specify_cli-1.0.9/tests/unit/test_bundler_records.py +0 -281
  444. specify_cli-1.0.9/tests/unit/test_bundler_references.py +0 -112
  445. specify_cli-1.0.9/tests/unit/test_bundler_resolver.py +0 -107
  446. specify_cli-1.0.9/tests/unit/test_bundler_validator.py +0 -32
  447. specify_cli-1.0.9/tests/unit/test_bundler_versioning.py +0 -68
  448. specify_cli-1.0.9/tests/unit/test_bundler_yamlio.py +0 -58
  449. specify_cli-1.0.9/tests/unit/test_condition_expression_block.py +0 -982
  450. specify_cli-1.0.9/tests/workflows/test_overlay_commands.py +0 -1004
  451. specify_cli-1.0.9/tests/workflows/test_overlay_composer.py +0 -153
  452. specify_cli-1.0.9/tests/workflows/test_overlay_layer_sources.py +0 -327
  453. specify_cli-1.0.9/tests/workflows/test_overlay_merge.py +0 -932
  454. specify_cli-1.0.9/tests/workflows/test_overlay_schema.py +0 -366
  455. specify_cli-1.0.9/tests/workflows/test_overlay_security.py +0 -321
  456. specify_cli-1.0.9/tests/workflows/test_resolver_integration.py +0 -567
  457. specify_cli-1.0.9/tests/workflows/test_slot_step.py +0 -242
  458. specify_cli-1.0.9/workflows/ARCHITECTURE.md +0 -218
  459. {specify_cli-1.0.9 → specify_cli-1.0.10}/.devcontainer/devcontainer.json +0 -0
  460. {specify_cli-1.0.9 → specify_cli-1.0.10}/.devcontainer/post-create.sh +0 -0
  461. {specify_cli-1.0.9 → specify_cli-1.0.10}/.editorconfig +0 -0
  462. {specify_cli-1.0.9 → specify_cli-1.0.10}/.gitattributes +0 -0
  463. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/CODEOWNERS +0 -0
  464. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/ISSUE_TEMPLATE/agent_request.yml +0 -0
  465. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
  466. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/ISSUE_TEMPLATE/bundle_submission.yml +0 -0
  467. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/ISSUE_TEMPLATE/config.yml +0 -0
  468. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/ISSUE_TEMPLATE/extension_submission.yml +0 -0
  469. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
  470. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/ISSUE_TEMPLATE/preset_submission.yml +0 -0
  471. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  472. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/aw/actions-lock.json +0 -0
  473. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/dependabot.yml +0 -0
  474. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/scripts/check_extension_version_bump.py +0 -0
  475. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/scripts/check_security_requirements.py +0 -0
  476. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/security-audit-requirements.txt +0 -0
  477. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/skills/add-community-extension/SKILL.md +0 -0
  478. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/skills/code-review/SKILL.md +0 -0
  479. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/RELEASE-PROCESS.md +0 -0
  480. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/add-community-bundle.lock.yml +0 -0
  481. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/add-community-bundle.md +0 -0
  482. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/add-community-extension.lock.yml +0 -0
  483. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/add-community-extension.md +0 -0
  484. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/add-community-preset.lock.yml +0 -0
  485. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/add-community-preset.md +0 -0
  486. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/bug-assess.lock.yml +0 -0
  487. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/bug-assess.md +0 -0
  488. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/bug-fix.lock.yml +0 -0
  489. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/bug-fix.md +0 -0
  490. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/bug-test.lock.yml +0 -0
  491. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/bug-test.md +0 -0
  492. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/catalog-assign.yml +0 -0
  493. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/codeql.yml +0 -0
  494. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/docs.yml +0 -0
  495. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/extension-version-guard.yml +0 -0
  496. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/feature-assess.lock.yml +0 -0
  497. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/feature-assess.md +0 -0
  498. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/lint.yml +0 -0
  499. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/publish-pypi.yml +0 -0
  500. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/release-trigger.yml +0 -0
  501. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/release.yml +0 -0
  502. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/security.yml +0 -0
  503. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/stale.yml +0 -0
  504. {specify_cli-1.0.9 → specify_cli-1.0.10}/.github/workflows/test.yml +0 -0
  505. {specify_cli-1.0.9 → specify_cli-1.0.10}/.gitignore +0 -0
  506. {specify_cli-1.0.9 → specify_cli-1.0.10}/.markdownlint-cli2.jsonc +0 -0
  507. {specify_cli-1.0.9 → specify_cli-1.0.10}/.pre-commit-config.yaml +0 -0
  508. {specify_cli-1.0.9 → specify_cli-1.0.10}/.zenodo.json +0 -0
  509. {specify_cli-1.0.9 → specify_cli-1.0.10}/AGENTS.md +0 -0
  510. {specify_cli-1.0.9 → specify_cli-1.0.10}/CITATION.cff +0 -0
  511. {specify_cli-1.0.9 → specify_cli-1.0.10}/CODE_OF_CONDUCT.md +0 -0
  512. {specify_cli-1.0.9 → specify_cli-1.0.10}/CONTRIBUTING.md +0 -0
  513. {specify_cli-1.0.9 → specify_cli-1.0.10}/DEVELOPMENT.md +0 -0
  514. {specify_cli-1.0.9 → specify_cli-1.0.10}/LICENSE +0 -0
  515. {specify_cli-1.0.9 → specify_cli-1.0.10}/README.zh-CN.md +0 -0
  516. {specify_cli-1.0.9 → specify_cli-1.0.10}/SECURITY.md +0 -0
  517. {specify_cli-1.0.9 → specify_cli-1.0.10}/SUPPORT.md +0 -0
  518. {specify_cli-1.0.9 → specify_cli-1.0.10}/bundles/assess/README.md +0 -0
  519. {specify_cli-1.0.9 → specify_cli-1.0.10}/bundles/bugfix/README.md +0 -0
  520. {specify_cli-1.0.9 → specify_cli-1.0.10}/bundles/bugfix/bundle.yml +0 -0
  521. {specify_cli-1.0.9 → specify_cli-1.0.10}/bundles/catalog.community.json +0 -0
  522. {specify_cli-1.0.9 → specify_cli-1.0.10}/bundles/catalog.json +0 -0
  523. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/.gitignore +0 -0
  524. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/README.md +0 -0
  525. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/community/bundles.md +0 -0
  526. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/community/extensions.md +0 -0
  527. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/community/friends.md +0 -0
  528. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/community/overview.md +0 -0
  529. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/community/walkthroughs.md +0 -0
  530. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/concepts/complex-features.md +0 -0
  531. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/concepts/sdd.md +0 -0
  532. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/concepts/spec-of-specs.md +0 -0
  533. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/concepts/spec-persistence.md +0 -0
  534. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/docfx.json +0 -0
  535. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/guides/assessment.md +0 -0
  536. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/guides/bugfix.md +0 -0
  537. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/guides/contract-driven-development.md +0 -0
  538. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/guides/customization.md +0 -0
  539. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/guides/evolving-specs.md +0 -0
  540. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/guides/existing-projects.md +0 -0
  541. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/guides/monorepo.md +0 -0
  542. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/history.md +0 -0
  543. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/images/spec-kit-logo.webp +0 -0
  544. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/index.md +0 -0
  545. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/install/air-gapped.md +0 -0
  546. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/install/one-time.md +0 -0
  547. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/install/pipx.md +0 -0
  548. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/install/pypi.md +0 -0
  549. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/install/uv.md +0 -0
  550. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/installation.md +0 -0
  551. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/local-development.md +0 -0
  552. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/quickstart.md +0 -0
  553. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/reference/agentic-assessment.md +0 -0
  554. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/reference/agentic-bugfix.md +0 -0
  555. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/reference/agentic-sdd.md +0 -0
  556. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/reference/artifacts.md +0 -0
  557. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/reference/authentication.md +0 -0
  558. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/reference/bundles.md +0 -0
  559. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/reference/core.md +0 -0
  560. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/reference/extensions.md +0 -0
  561. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/reference/overview.md +0 -0
  562. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/reference/workflows.md +0 -0
  563. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/template/public/main.css +0 -0
  564. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/toc.yml +0 -0
  565. {specify_cli-1.0.9 → specify_cli-1.0.10}/docs/upgrade.md +0 -0
  566. {specify_cli-1.0.9 → specify_cli-1.0.10}/examples/bundles/business-analyst/README.md +0 -0
  567. {specify_cli-1.0.9 → specify_cli-1.0.10}/examples/bundles/developer/README.md +0 -0
  568. {specify_cli-1.0.9 → specify_cli-1.0.10}/examples/bundles/product-manager/README.md +0 -0
  569. {specify_cli-1.0.9 → specify_cli-1.0.10}/examples/bundles/security-researcher/README.md +0 -0
  570. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/EXTENSION-API-REFERENCE.md +0 -0
  571. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/EXTENSION-DEVELOPMENT-GUIDE.md +0 -0
  572. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/EXTENSION-PUBLISHING-GUIDE.md +0 -0
  573. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/EXTENSION-USER-GUIDE.md +0 -0
  574. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/README.md +0 -0
  575. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/RFC-EXTENSION-SYSTEM.md +0 -0
  576. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/agent-context/README.md +0 -0
  577. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/agent-context/agent-context-config.yml +0 -0
  578. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/agent-context/agent-context-defaults.json +0 -0
  579. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/agent-context/commands/speckit.agent-context.update.md +0 -0
  580. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/agent-context/scripts/bash/update-agent-context.sh +0 -0
  581. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/agent-context/scripts/powershell/update-agent-context.ps1 +0 -0
  582. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/agent-context/scripts/python/update_agent_context.py +0 -0
  583. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/assess/README.md +0 -0
  584. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/assess/commands/speckit.assess.decide.md +0 -0
  585. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/assess/commands/speckit.assess.define.md +0 -0
  586. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/assess/commands/speckit.assess.intake.md +0 -0
  587. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/assess/commands/speckit.assess.research.md +0 -0
  588. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/assess/commands/speckit.assess.shape.md +0 -0
  589. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/bug/README.md +0 -0
  590. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/bug/commands/speckit.bug.assess.md +0 -0
  591. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/bug/commands/speckit.bug.fix.md +0 -0
  592. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/bug/commands/speckit.bug.test.md +0 -0
  593. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/bug/extension.yml +0 -0
  594. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/catalog.community.json +0 -0
  595. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/README.md +0 -0
  596. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/commands/speckit.git.commit.md +0 -0
  597. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/commands/speckit.git.feature.md +0 -0
  598. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/commands/speckit.git.initialize.md +0 -0
  599. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/commands/speckit.git.remote.md +0 -0
  600. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/commands/speckit.git.validate.md +0 -0
  601. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/config-template.yml +0 -0
  602. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/git-config.yml +0 -0
  603. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/scripts/bash/auto-commit.sh +0 -0
  604. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/scripts/bash/create-new-feature-branch.sh +0 -0
  605. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/scripts/bash/git-common.sh +0 -0
  606. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/scripts/bash/initialize-repo.sh +0 -0
  607. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/scripts/powershell/auto-commit.ps1 +0 -0
  608. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/scripts/powershell/create-new-feature-branch.ps1 +0 -0
  609. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/scripts/powershell/git-common.ps1 +0 -0
  610. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/scripts/powershell/initialize-repo.ps1 +0 -0
  611. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/scripts/python/auto_commit.py +0 -0
  612. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/scripts/python/create_new_feature_branch.py +0 -0
  613. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/scripts/python/git_common.py +0 -0
  614. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/git/scripts/python/initialize_repo.py +0 -0
  615. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/selftest/commands/selftest.md +0 -0
  616. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/selftest/extension.yml +0 -0
  617. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/template/.gitignore +0 -0
  618. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/template/CHANGELOG.md +0 -0
  619. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/template/EXAMPLE-README.md +0 -0
  620. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/template/LICENSE +0 -0
  621. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/template/README.md +0 -0
  622. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/template/commands/example.md +0 -0
  623. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/template/config-template.yml +0 -0
  624. {specify_cli-1.0.9 → specify_cli-1.0.10}/extensions/template/extension.yml +0 -0
  625. {specify_cli-1.0.9 → specify_cli-1.0.10}/integrations/CONTRIBUTING.md +0 -0
  626. {specify_cli-1.0.9 → specify_cli-1.0.10}/integrations/README.md +0 -0
  627. {specify_cli-1.0.9 → specify_cli-1.0.10}/integrations/catalog.community.json +0 -0
  628. {specify_cli-1.0.9 → specify_cli-1.0.10}/media/bootstrap-claude-code.gif +0 -0
  629. {specify_cli-1.0.9 → specify_cli-1.0.10}/media/logo_large.webp +0 -0
  630. {specify_cli-1.0.9 → specify_cli-1.0.10}/media/logo_small.webp +0 -0
  631. {specify_cli-1.0.9 → specify_cli-1.0.10}/media/spec-kit-video-header.jpg +0 -0
  632. {specify_cli-1.0.9 → specify_cli-1.0.10}/media/specify_cli.gif +0 -0
  633. {specify_cli-1.0.9 → specify_cli-1.0.10}/newsletters/2026-April.md +0 -0
  634. {specify_cli-1.0.9 → specify_cli-1.0.10}/newsletters/2026-August.md +0 -0
  635. {specify_cli-1.0.9 → specify_cli-1.0.10}/newsletters/2026-February.md +0 -0
  636. {specify_cli-1.0.9 → specify_cli-1.0.10}/newsletters/2026-July.md +0 -0
  637. {specify_cli-1.0.9 → specify_cli-1.0.10}/newsletters/2026-June.md +0 -0
  638. {specify_cli-1.0.9 → specify_cli-1.0.10}/newsletters/2026-March.md +0 -0
  639. {specify_cli-1.0.9 → specify_cli-1.0.10}/newsletters/2026-May.md +0 -0
  640. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/ARCHITECTURE.md +0 -0
  641. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/PUBLISHING.md +0 -0
  642. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/README.md +0 -0
  643. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/catalog.json +0 -0
  644. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/constitution-sync/README.md +0 -0
  645. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/constitution-sync/commands/speckit.constitution.md +0 -0
  646. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/constitution-sync/preset.yml +0 -0
  647. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/lean/README.md +0 -0
  648. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/lean/commands/speckit.constitution.md +0 -0
  649. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/lean/commands/speckit.implement.md +0 -0
  650. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/lean/commands/speckit.plan.md +0 -0
  651. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/lean/commands/speckit.specify.md +0 -0
  652. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/lean/commands/speckit.tasks.md +0 -0
  653. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/lean/preset.yml +0 -0
  654. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/scaffold/README.md +0 -0
  655. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/scaffold/commands/speckit.myext.myextcmd.md +0 -0
  656. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/scaffold/commands/speckit.specify.md +0 -0
  657. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/scaffold/preset.yml +0 -0
  658. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/scaffold/templates/myext-template.md +0 -0
  659. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/scaffold/templates/spec-template.md +0 -0
  660. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/self-test/commands/speckit.specify.md +0 -0
  661. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/self-test/commands/speckit.wrap-test.md +0 -0
  662. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/self-test/preset.yml +0 -0
  663. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/self-test/templates/checklist-template.md +0 -0
  664. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/self-test/templates/constitution-template.md +0 -0
  665. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/self-test/templates/plan-template.md +0 -0
  666. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/self-test/templates/spec-template.md +0 -0
  667. {specify_cli-1.0.9 → specify_cli-1.0.10}/presets/self-test/templates/tasks-template.md +0 -0
  668. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/bash/check-prerequisites.sh +0 -0
  669. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/bash/common.sh +0 -0
  670. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/bash/create-new-feature.sh +0 -0
  671. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/bash/resolve-template.sh +0 -0
  672. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/bash/setup-plan.sh +0 -0
  673. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/bash/setup-tasks.sh +0 -0
  674. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/powershell/check-prerequisites.ps1 +0 -0
  675. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/powershell/common.ps1 +0 -0
  676. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/powershell/create-new-feature.ps1 +0 -0
  677. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/powershell/resolve-template.ps1 +0 -0
  678. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/powershell/setup-plan.ps1 +0 -0
  679. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/powershell/setup-tasks.ps1 +0 -0
  680. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/python/check_prerequisites.py +0 -0
  681. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/python/common.py +0 -0
  682. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/python/create_new_feature.py +0 -0
  683. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/python/resolve_template.py +0 -0
  684. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/python/setup_plan.py +0 -0
  685. {specify_cli-1.0.9 → specify_cli-1.0.10}/scripts/python/setup_tasks.py +0 -0
  686. {specify_cli-1.0.9 → specify_cli-1.0.10}/spec-driven.md +0 -0
  687. {specify_cli-1.0.9 → specify_cli-1.0.10}/spec-kit.code-workspace +0 -0
  688. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/_agent_config.py +0 -0
  689. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/_assets.py +0 -0
  690. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/_console.py +0 -0
  691. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/_download_security.py +0 -0
  692. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/_init_options.py +0 -0
  693. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/_installed_list_json.py +0 -0
  694. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/_invocation_style.py +0 -0
  695. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/_project.py +0 -0
  696. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/_toml_string.py +0 -0
  697. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/_utils.py +0 -0
  698. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/agents.py +0 -0
  699. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/artifacts/__init__.py +0 -0
  700. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/artifacts/_identifiers.py +0 -0
  701. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/artifacts/models.py +0 -0
  702. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/artifacts/resolution.py +0 -0
  703. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/authentication/__init__.py +0 -0
  704. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/authentication/azure_devops.py +0 -0
  705. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/authentication/base.py +0 -0
  706. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/authentication/config.py +0 -0
  707. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/authentication/github.py +0 -0
  708. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/authentication/http.py +0 -0
  709. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/catalogs.py +0 -0
  710. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/commands/__init__.py +0 -0
  711. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/commands/init.py +0 -0
  712. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/_command_update_artifacts.py +0 -0
  713. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/_command_update_discovery.py +0 -0
  714. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/_command_update_transaction.py +0 -0
  715. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/_commands.py +0 -0
  716. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/catalog/__init__.py +0 -0
  717. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/catalog/_helpers.py +0 -0
  718. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/catalog/command_add.py +0 -0
  719. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/catalog/command_list.py +0 -0
  720. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/catalog/command_remove.py +0 -0
  721. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/command_add.py +0 -0
  722. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/command_disable.py +0 -0
  723. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/command_enable.py +0 -0
  724. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/command_info.py +0 -0
  725. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/command_list.py +0 -0
  726. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/command_remove.py +0 -0
  727. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/command_search.py +0 -0
  728. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/command_set_priority.py +0 -0
  729. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/extensions/command_update.py +0 -0
  730. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integration_runtime.py +0 -0
  731. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integration_state.py +0 -0
  732. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integration_status.py +0 -0
  733. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/_helpers.py +0 -0
  734. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/auggie/__init__.py +0 -0
  735. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/base.py +0 -0
  736. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/cline/__init__.py +0 -0
  737. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/codebuddy/__init__.py +0 -0
  738. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/codex/__init__.py +0 -0
  739. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/command_code/__init__.py +0 -0
  740. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/copilot/__init__.py +0 -0
  741. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/cursor_agent/__init__.py +0 -0
  742. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/devin/__init__.py +0 -0
  743. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/docker_agent/__init__.py +0 -0
  744. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/droid/__init__.py +0 -0
  745. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/dsh/__init__.py +0 -0
  746. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/firebender/__init__.py +0 -0
  747. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/forge/__init__.py +0 -0
  748. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/gemini/__init__.py +0 -0
  749. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/generic/__init__.py +0 -0
  750. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/goose/__init__.py +0 -0
  751. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/grok/__init__.py +0 -0
  752. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/hermes/__init__.py +0 -0
  753. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/junie/__init__.py +0 -0
  754. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/kilocode/__init__.py +0 -0
  755. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/kimi/__init__.py +0 -0
  756. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/kiro_cli/__init__.py +0 -0
  757. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/lingma/__init__.py +0 -0
  758. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/manifest.py +0 -0
  759. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/muse/__init__.py +0 -0
  760. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/omp/__init__.py +0 -0
  761. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/pi/__init__.py +0 -0
  762. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/qodercli/__init__.py +0 -0
  763. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/qwen/__init__.py +0 -0
  764. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/rovodev/__init__.py +0 -0
  765. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/shai/__init__.py +0 -0
  766. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/tabnine/__init__.py +0 -0
  767. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/trae/__init__.py +0 -0
  768. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/zcode/__init__.py +0 -0
  769. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/integrations/zed/__init__.py +0 -0
  770. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/shared_infra.py +0 -0
  771. {specify_cli-1.0.9 → specify_cli-1.0.10}/src/specify_cli/workflows/base.py +0 -0
  772. {specify_cli-1.0.9/src/specify_cli/workflows/overlays → specify_cli-1.0.10/src/specify_cli/workflows/overlay}/composer.py +0 -0
  773. {specify_cli-1.0.9/src/specify_cli/workflows/overlays → specify_cli-1.0.10/src/specify_cli/workflows/overlay}/layer_sources.py +0 -0
  774. {specify_cli-1.0.9/src/specify_cli/workflows/overlays → specify_cli-1.0.10/src/specify_cli/workflows/overlay}/merge.py +0 -0
  775. {specify_cli-1.0.9/src/specify_cli/workflows/overlays → specify_cli-1.0.10/src/specify_cli/workflows/overlay}/schema.py +0 -0
  776. {specify_cli-1.0.9/src/specify_cli/workflows/steps → specify_cli-1.0.10/src/specify_cli/workflows/step}/command/__init__.py +0 -0
  777. {specify_cli-1.0.9/src/specify_cli/workflows/steps → specify_cli-1.0.10/src/specify_cli/workflows/step}/do_while/__init__.py +0 -0
  778. {specify_cli-1.0.9/src/specify_cli/workflows/steps → specify_cli-1.0.10/src/specify_cli/workflows/step}/fan_in/__init__.py +0 -0
  779. {specify_cli-1.0.9/src/specify_cli/workflows/steps → specify_cli-1.0.10/src/specify_cli/workflows/step}/fan_out/__init__.py +0 -0
  780. {specify_cli-1.0.9/src/specify_cli/workflows/steps → specify_cli-1.0.10/src/specify_cli/workflows/step}/gate/__init__.py +0 -0
  781. {specify_cli-1.0.9/src/specify_cli/workflows/steps → specify_cli-1.0.10/src/specify_cli/workflows/step}/if_then/__init__.py +0 -0
  782. {specify_cli-1.0.9/src/specify_cli/workflows/steps → specify_cli-1.0.10/src/specify_cli/workflows/step}/init/__init__.py +0 -0
  783. {specify_cli-1.0.9/src/specify_cli/workflows/steps → specify_cli-1.0.10/src/specify_cli/workflows/step}/prompt/__init__.py +0 -0
  784. {specify_cli-1.0.9/src/specify_cli/workflows/steps → specify_cli-1.0.10/src/specify_cli/workflows/step}/shell/__init__.py +0 -0
  785. {specify_cli-1.0.9/src/specify_cli/workflows/steps → specify_cli-1.0.10/src/specify_cli/workflows/step}/slot/__init__.py +0 -0
  786. {specify_cli-1.0.9/src/specify_cli/workflows/steps → specify_cli-1.0.10/src/specify_cli/workflows/step}/switch/__init__.py +0 -0
  787. {specify_cli-1.0.9/src/specify_cli/workflows/steps → specify_cli-1.0.10/src/specify_cli/workflows/step}/while_loop/__init__.py +0 -0
  788. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/checklist-template.md +0 -0
  789. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/commands/analyze.md +0 -0
  790. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/commands/checklist.md +0 -0
  791. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/commands/clarify.md +0 -0
  792. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/commands/constitution.md +0 -0
  793. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/commands/converge.md +0 -0
  794. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/commands/implement.md +0 -0
  795. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/commands/plan.md +0 -0
  796. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/commands/specify.md +0 -0
  797. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/commands/tasks.md +0 -0
  798. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/commands/taskstoissues.md +0 -0
  799. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/constitution-template.md +0 -0
  800. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/plan-template.md +0 -0
  801. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/spec-template.md +0 -0
  802. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/tasks-template.md +0 -0
  803. {specify_cli-1.0.9 → specify_cli-1.0.10}/templates/vscode-settings.json +0 -0
  804. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/__init__.py +0 -0
  805. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/conftest.py +0 -0
  806. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/contract/test_extension_version_guard_script.py +0 -0
  807. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/contract/test_firstparty_bundle_catalog_consistency.py +0 -0
  808. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/contract/test_wheel_bundled_presets.py +0 -0
  809. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/contract/test_wheel_bundled_workflows.py +0 -0
  810. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/contract/test_wheel_core_pack_scripts.py +0 -0
  811. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/extensions/__init__.py +0 -0
  812. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/extensions/assess/__init__.py +0 -0
  813. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/extensions/assess/test_assess_extension.py +0 -0
  814. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/extensions/bug/__init__.py +0 -0
  815. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/extensions/bug/test_bug_extension.py +0 -0
  816. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/extensions/git/__init__.py +0 -0
  817. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/extensions/git/test_git_extension_python_parity.py +0 -0
  818. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/extensions/test_agent_context_cli_free.py +0 -0
  819. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/extensions/test_extension_agent_context.py +0 -0
  820. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/extensions/test_update_agent_context_feature_json.py +0 -0
  821. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/extensions/test_update_agent_context_python_parity.py +0 -0
  822. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/hooks/TESTING.md +0 -0
  823. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/hooks/plan.md +0 -0
  824. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/hooks/spec.md +0 -0
  825. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/hooks/tasks.md +0 -0
  826. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/__init__.py +0 -0
  827. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/conftest.py +0 -0
  828. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_base.py +0 -0
  829. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_extra_args.py +0 -0
  830. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_home_isolation.py +0 -0
  831. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_auggie.py +0 -0
  832. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_base_markdown.py +0 -0
  833. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_base_skills.py +0 -0
  834. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_base_toml.py +0 -0
  835. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_base_yaml.py +0 -0
  836. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_bob.py +0 -0
  837. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_cline.py +0 -0
  838. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_codebuddy.py +0 -0
  839. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_codex.py +0 -0
  840. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_command_code.py +0 -0
  841. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_copilot.py +0 -0
  842. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_cursor_agent.py +0 -0
  843. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_devin.py +0 -0
  844. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_docker_agent.py +0 -0
  845. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_droid.py +0 -0
  846. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_dsh.py +0 -0
  847. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_firebender.py +0 -0
  848. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_forge.py +0 -0
  849. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_gemini.py +0 -0
  850. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_generic.py +0 -0
  851. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_goose.py +0 -0
  852. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_grok.py +0 -0
  853. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_hermes.py +0 -0
  854. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_junie.py +0 -0
  855. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_kilocode.py +0 -0
  856. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_kimi.py +0 -0
  857. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_kiro_cli.py +0 -0
  858. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_lingma.py +0 -0
  859. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_muse.py +0 -0
  860. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_omp.py +0 -0
  861. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_pi.py +0 -0
  862. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_qodercli.py +0 -0
  863. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_qwen.py +0 -0
  864. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_rovodev.py +0 -0
  865. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_shai.py +0 -0
  866. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_state.py +0 -0
  867. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_tabnine.py +0 -0
  868. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_trae.py +0 -0
  869. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_zcode.py +0 -0
  870. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_integration_zed.py +0 -0
  871. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_manifest.py +0 -0
  872. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_registry.py +0 -0
  873. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/integrations/test_skill_frontmatter_quoting.py +0 -0
  874. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/parity_helpers.py +0 -0
  875. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/__init__.py +0 -0
  876. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/__init__.py +0 -0
  877. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/_helpers.py +0 -0
  878. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/catalog/__init__.py +0 -0
  879. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/catalog/test_command_add.py +0 -0
  880. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/catalog/test_command_list.py +0 -0
  881. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/catalog/test_command_remove.py +0 -0
  882. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/conftest.py +0 -0
  883. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_add.py +0 -0
  884. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_add_path_traversal.py +0 -0
  885. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_disable.py +0 -0
  886. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_enable.py +0 -0
  887. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_info.py +0 -0
  888. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_list.py +0 -0
  889. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_remove.py +0 -0
  890. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_search.py +0 -0
  891. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_set_priority.py +0 -0
  892. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_update.py +0 -0
  893. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_update_artifacts.py +0 -0
  894. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_update_discovery.py +0 -0
  895. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/specify_cli/extensions/test_command_update_transaction.py +0 -0
  896. {specify_cli-1.0.9/tests → specify_cli-1.0.10/tests/specify_cli}/self_upgrade_helpers.py +0 -0
  897. {specify_cli-1.0.9/tests → specify_cli-1.0.10/tests/specify_cli}/test_version_imports.py +0 -0
  898. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_agent_config_consistency.py +0 -0
  899. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_branch_numbering.py +0 -0
  900. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_bug_fix_workflow.py +0 -0
  901. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_check_prerequisites_paths_only.py +0 -0
  902. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_check_prerequisites_python_parity.py +0 -0
  903. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_check_tool.py +0 -0
  904. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_clarify_stage_gate.py +0 -0
  905. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_command_template_hooks.py +0 -0
  906. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_command_template_py_scripts.py +0 -0
  907. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_console_imports.py +0 -0
  908. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_constitution_template_sync_report.py +0 -0
  909. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_converge_template_scaffold.py +0 -0
  910. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_create_new_feature_python_parity.py +0 -0
  911. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_download_security.py +0 -0
  912. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_extension_registration.py +0 -0
  913. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_extension_skills.py +0 -0
  914. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_github_workflows.py +0 -0
  915. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_init_dir.py +0 -0
  916. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_init_output_markup.py +0 -0
  917. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_installed_list_json.py +0 -0
  918. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_live_transient_windows.py +0 -0
  919. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_merge.py +0 -0
  920. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_post_process.py +0 -0
  921. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_ps1_encoding.py +0 -0
  922. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_registrar_path_traversal.py +0 -0
  923. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_resolve_template_python_parity.py +0 -0
  924. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_security_workflow.py +0 -0
  925. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_setup_plan_feature_json.py +0 -0
  926. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_setup_plan_no_overwrite.py +0 -0
  927. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_setup_plan_python_parity.py +0 -0
  928. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_setup_tasks.py +0 -0
  929. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_setup_tasks_python_parity.py +0 -0
  930. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_shared_infra_gitignore.py +0 -0
  931. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_shared_infra_integrity.py +0 -0
  932. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_skill_placeholder_py.py +0 -0
  933. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_specify_template_numbering.py +0 -0
  934. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_tasks_template_constraints.py +0 -0
  935. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_timestamp_branches.py +0 -0
  936. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_utils.py +0 -0
  937. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/test_utils_assets_imports.py +0 -0
  938. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/workflows/conftest.py +0 -0
  939. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/workflows/test_bundled_bugfix_assess_workflows.py +0 -0
  940. {specify_cli-1.0.9 → specify_cli-1.0.10}/tests/workflows/test_bundled_speckit_workflow.py +0 -0
  941. {specify_cli-1.0.9 → specify_cli-1.0.10}/workflows/PUBLISHING.md +0 -0
  942. {specify_cli-1.0.9 → specify_cli-1.0.10}/workflows/README.md +0 -0
  943. {specify_cli-1.0.9 → specify_cli-1.0.10}/workflows/assess/workflow.yml +0 -0
  944. {specify_cli-1.0.9 → specify_cli-1.0.10}/workflows/bugfix/workflow.yml +0 -0
  945. {specify_cli-1.0.9 → specify_cli-1.0.10}/workflows/catalog.community.json +0 -0
  946. {specify_cli-1.0.9 → specify_cli-1.0.10}/workflows/catalog.json +0 -0
  947. {specify_cli-1.0.9 → specify_cli-1.0.10}/workflows/speckit/workflow.yml +0 -0
  948. {specify_cli-1.0.9 → specify_cli-1.0.10}/workflows/step-catalog.community.json +0 -0
  949. {specify_cli-1.0.9 → specify_cli-1.0.10}/workflows/step-catalog.json +0 -0
@@ -0,0 +1,2977 @@
1
+ # Changelog
2
+
3
+ <!-- insert new changelog below this comment -->
4
+
5
+ ## [1.0.10] - 2026-09-22
6
+
7
+ ### Changed
8
+
9
+ - fix(workflows): stop list-literal-then-index expressions silently corrupting (#4572)
10
+ - chore: refactor self command domain (#4685)
11
+ - fix(integrations): stop frontmatter injection gluing onto a missing trailing newline (#4570)
12
+ - chore: refactor event domain layout (#4683)
13
+ - Fix #4345 (2/4): patch-bump drifted bundled extension versions and sync the catalog (#4394)
14
+ - fix(workflows): validate persisted step result shapes (#4399)
15
+ - chore: organize authentication domain (#4678)
16
+ - feat: report the OpenSSL runtime in `specify version` (#4556)
17
+ - fix(agy): enhance Antigravity CLI compatibility and execution flags (#4612)
18
+ - refactor: organize workflow CLI commands (#4673)
19
+ - docs: add star history chart (#4672)
20
+ - refactor: organize artifact CLI commands (#4671)
21
+ - fix(workflows): refuse `overlay add` that would overwrite a different overlay (#4141)
22
+ - refactor: reorganize bundle CLI commands (#4663)
23
+ - refactor: organize integration CLI commands (#4662)
24
+ - refactor: organize preset CLI commands (#4657)
25
+ - fix(integrations): declare OpencodeIntegration multi_install_safe (#4620) (#4625)
26
+ - [preset] Update Autonomous Run Governance preset to v0.4.4 (#4586)
27
+ - Add `preset update` convenience wrapper (#4599)
28
+ - chore: release 1.0.9, begin 1.0.10.dev0 development (#4658)
29
+
30
+ ## [1.0.9] - 2026-09-21
31
+
32
+ ### Changed
33
+
34
+ - fix(integrations): dispatch Amp via execute mode (#4581)
35
+ - feat(bundles): first-party bugfix and assess bundles with bundled workflows (#4504)
36
+ - fix(workflows): reject a non-integer or out-of-range current_step_index in RunState resume (#4325)
37
+ - fix(extensions): ignore non-mapping extension.yml `config` section (#4323)
38
+ - fix(workflows): keep an overlay's `replace` when the same overlay also inserts on that anchor (#4140)
39
+ - Refactor extension CLI command structure (#4641)
40
+ - fix(workflows): exempt bug-fix from PR-count confirmation (#4636)
41
+ - fix: allow community submission archive validation (#4622)
42
+ - fix: clarify converge assessment of completion claims (#4621)
43
+ - fix(workflows): exempt catalog automation from PR-count confirmation (#4607)
44
+ - Update Ralph Loop extension to v1.5.0 (#4593)
45
+ - [extension] Add AgentPay Pre-Pay Audit extension to community catalog (#4611)
46
+ - Update Keel Connect extension to v2.3.1 (#4632)
47
+ - chore(deps): bump the codeql-action group with 2 updates (#4623)
48
+ - Update DocGuard extension to v0.41.6 (#4633)
49
+ - fix: skip codex config.toml rewrite when there's nothing to merge (#4564)
50
+ - fix(agy): support --model, --add-dir workspace, and pre-prompt extra args (#4481)
51
+ - Remove a dead case pattern in common.sh (SC2221/SC2222) (#4605)
52
+ - fix: support SKILL.md rendering for the generic integration (#4562)
53
+ - chore: release 1.0.8, begin 1.0.9.dev0 development (#4619)
54
+
55
+ ## [1.0.8] - 2026-09-17
56
+
57
+ ### Changed
58
+
59
+ - [extension] Update Verify Tasks extension to v1.2.0 (#4617)
60
+ - docs: explain contract-driven development for component interfaces (#4609) (#4616)
61
+ - chore: upgrade community workflows to gh-aw v0.88.7 (#4615)
62
+ - Raise bug-fix workflow credit cap and run pytest from PATH (#4508)
63
+ - Add Applied Epistemic Engineering extension to community catalog (#4595)
64
+ - fix(extensions): reject aliases that shadow core commands (#4558)
65
+ - fix: strip `scripts:` from extension command frontmatter in command mode (#4559)
66
+ - docs: require agent, model, and settings in AI disclosure (#4512)
67
+ - docs: update release process guide (#4502)
68
+ - [extension] Update Status Report extension to v1.4.2 (#4585)
69
+ - fix: warn when feature names have an empty suffix (#4575)
70
+ - chore: upgrade bug-fix and bug-test to gh-aw v0.88.7 (#4604)
71
+ - fix(workflows): load custom steps before add (#4473)
72
+ - fix(github-http): validate release asset metadata URLs (#4438)
73
+ - Add OpenUP Governance preset to community catalog (#4596)
74
+ - Add OpenUP Governed Lifecycle extension to community catalog (#4598)
75
+ - Update Azure Cosmos DB extension to v0.2.0 (#4602)
76
+ - Update adrkit extension to v0.1.4 (#4600)
77
+ - chore: upgrade feature-assess to gh-aw v0.88.7 (#4546)
78
+ - chore: release 1.0.7, begin 1.0.8.dev0 development (#4592)
79
+
80
+ ## [1.0.7] - 2026-09-15
81
+
82
+ ### Changed
83
+
84
+ - fix(integrations): dispatch bob commands via `bob run` (#4492)
85
+ - Bound speckit.clarify planning deferral to implementation details (#4507)
86
+ - docs: simplify README around three processes (#4591)
87
+ - chore(deps): bump actions/deploy-pages from 5.0.0 to 5.0.1 (#4517)
88
+ - feat: add artifact-owned contribution lookup (#4550)
89
+ - feat: expose hook contributions via specify artifact (#4348)
90
+ - Update DocGuard — CDD Enforcement extension to v0.34.9 (#4545)
91
+ - [extension] Update MAQA — Multi-Agent & Quality Assurance extension to v0.3.1 (#4544)
92
+ - feat: add `specify artifact` introspection (#4305)
93
+ - fix: require explicit refresh for bundle manifest changes (#4477)
94
+ - fix(workflows): harden community submission workflows (#4510)
95
+ - [extension] Add GitHub Issue Triage extension to community catalog (#4539)
96
+ - Fix catalog-latest-url-bypass: require tag-pinned catalog download URLs (#4194)
97
+ - refactor(workflows): let the evaluator report its own leaves (#4274) (#4460)
98
+ - [preset] Add Secure Development Assurance Governance preset (#4513)
99
+ - Add Product Definition as Code (PDaC) extension to community catalog (#4514)
100
+ - feat: add JSON output to preset and extension lists (#4218)
101
+ - docs: exempt repository maintenance workflows from PR throttle (#4499)
102
+ - chore: refresh bug-assess workflow with gh-aw v0.88.7 (#4497)
103
+ - chore: release 1.0.6, begin 1.0.7.dev0 development (#4511)
104
+
105
+ ## [1.0.6] - 2026-09-10
106
+
107
+ ### Changed
108
+
109
+ - fix(events): cap stdin in the generated dispatcher, not just the CLI command (#4337)
110
+ - docs(core): SPECIFY_FEATURE sets the feature label, not the feature directory (#3786)
111
+ - chore: shorten stale timeline to 60 days stale, 30 days to close (#4503)
112
+ - [extension] Update Spec Kit Schedule extension to v0.7.4 (#4498)
113
+ - [preset] Update Inventory Alignment preset to v0.1.1 (#4494)
114
+ - Update Spec Inventory extension to v0.1.1 (#4496)
115
+ - docs: document contribution evidence gate and label taxonomy (#4478)
116
+ - feat(workflows): add per-step integration configuration (#4425)
117
+ - fix: preserve extension authors in generated skills (#4459)
118
+ - Add ProductShape PRODUCT workflows extension to community catalog (#4485)
119
+ - Update AgentPay x402 extension to v1.1.0 (#4482)
120
+ - Update Figma Starter extension to v1.1.0 (#4490)
121
+ - Fix #4345 (3/4): CI guard requiring version bumps on bundled extension changes (#4395)
122
+ - fix(templates): report an unreadable extensions.yml instead of skipping hooks silently (#4456)
123
+ - Add concise code review skill (#4471)
124
+ - docs(templates): clarify /constitution's Sync Impact Report is temporary, review-only material (#4431) (#4432)
125
+ - fix(bundler): re-read the step registry when rolling back a failed step refresh (#4139)
126
+ - Fix August newsletter review findings (#4444)
127
+ - docs: resolve assess clarifications by editing artifacts in place (#4402)
128
+ - chore: release 1.0.5, begin 1.0.6.dev0 development (#4479)
129
+
130
+ ## [1.0.5] - 2026-09-08
131
+
132
+ ### Changed
133
+
134
+ - Update OKF Knowledge Bundle Generator to v0.5.0 (#4475)
135
+ - Update BrownKit extension to v1.2.0 (#4474)
136
+ - chore(deps): bump the codeql-action group with 2 updates (#4436)
137
+ - fix(tasks): require field constraints from data-model.md in generated tasks (#4430)
138
+ - fix(workflows): reject falsy non-mapping step.yml in step add (#4321)
139
+ - fix(cline): stop unrelated prose from suppressing the hook command note (#4150)
140
+ - Add the August 2026 newsletter (#4442)
141
+ - Update Linear Integration extension to v0.8.0 (#4428)
142
+ - fix(presets): reject falsy non-mapping catalog config shapes (#4320)
143
+ - docs(workflows): sync the reference copy with the shipped workflow (#4424)
144
+ - fix(scripts): name setup-plan's feature directory key FEATURE_DIR (#4397)
145
+ - fix(workflows): require a 'steps' body on while and do-while loops (#4149)
146
+ - Add Evaluator Contract extension to community catalog (#4420)
147
+ - fix: remove unused scope input from bundled speckit workflow (#4401)
148
+ - feat(integrations): add Muse Code (muse) agent integration (#4413)
149
+ - feat(workflows): add workflow slots (#4352)
150
+ - fix(scripts): make bash branch-name sanitizing match the Python and PowerShell twins (#4286)
151
+ - allow hyphen in command ref token names (#4356)
152
+ - [extension] Add Axi Extension to community catalog (#4412)
153
+ - chore: release 1.0.4, begin 1.0.5.dev0 development (#4411)
154
+
155
+ ## [1.0.4] - 2026-09-02
156
+
157
+ ### Changed
158
+
159
+ - fix(scripts): stop wrap composition looping on a token in core content (#4396)
160
+ - [extension] Update Charter extension to v0.6.1 (#4409)
161
+ - fix(workflows): keep non-ASCII text readable in written overlay files (#4148)
162
+ - fix(workflows): report overlay operation keys in declaration order (#4146)
163
+ - fix: skip corrupted state.json in list_runs() instead of aborting (#3904)
164
+ - fix(rovodev): guard non-string prompt names when merging prompts.yml (#4145)
165
+ - fix: narrow bare except Exception in preset command reconciliation (#3842)
166
+ - fix(workflows): refuse a filter mixed with a comparison operator instead of silently mis-binding it (#3894)
167
+ - fix: escape Rich markup in workflow error output (#3837)
168
+ - fix: add JSON error handling to auth config loader (#3836)
169
+ - fix: use missing_ok=True in extension ZIP cleanup (#3870)
170
+ - feat(presets): let a preset declare a required extension (#4250)
171
+ - fix(bundler): reject unsupported catalog payload versions (#4090)
172
+ - fix(extensions): install bundled extension updates from the local package (#4351)
173
+ - docs: clarify autonomous PR handling (#4392)
174
+ - fix(workflows): reject malformed step config on add (#4087)
175
+ - fix(powershell): stop create-new-feature crashing on a non-Latin description (#4138)
176
+ - fix(bundler): treat an explicit-null records field as missing, not "None" (#4136)
177
+ - Add DeepSeek Harness (DSH) integration (#4336)
178
+ - chore: release 1.0.3, begin 1.0.4.dev0 development (#4391)
179
+
180
+ ## [1.0.3] - 2026-09-01
181
+
182
+ ### Changed
183
+
184
+ - fix(workflows): reject malformed step config on remove (#4095)
185
+ - fix(workflows): reject malformed workflow config on remove (#4096)
186
+ - fix(events): skip unreadable extension manifests (#4089)
187
+ - docs(extensions): fix private catalog FAQ command (#4373)
188
+ - [extension] Add Vurnix Honest Gate extension to community catalog (#4388)
189
+ - fix(presets): fail closed on unreadable provenance (#4092)
190
+ - docs: explain how Spec Kit dogfoods itself (#4381)
191
+ - add --require-spec to check-prerequisites (#4367)
192
+ - fix(ci): harden PyPI release tag handling (#4386)
193
+ - fix(github-http): reject malformed explicit URL ports (#4372)
194
+ - fix: scaffold extension config when installing via bundler (#4285)
195
+ - fix: reject unknown setup-plan arguments (#4371)
196
+ - feat(docker-agent): add Docker Agent integration (#4302)
197
+ - fix(workflows): reject a condition that is spliced into text, not evaluated (#4292)
198
+ - fix(bundler): pass explicit workflow_add options from bundle install (#4284)
199
+ - test(bundle): join across wrap points in the build output-path assertion (#4280)
200
+ - chore(deps): bump the codeql-action group with 2 updates (#4357)
201
+ - [extension] Update Spec Kit Figma extension to v3.1.1 (#4377)
202
+ - fix(presets): reject falsy non-mapping catalog roots (#4088)
203
+ - chore: release 1.0.2, begin 1.0.3.dev0 development (#4379)
204
+
205
+ ## [1.0.2] - 2026-08-31
206
+
207
+ ### Changed
208
+
209
+ - [extension] Add Jira Mirror extension to community catalog (#4376)
210
+ - [extension] Add AgentDocx SpecKit V2 extension to community catalog (#4369)
211
+ - fix(bundler): reject non-string catalog entry tag members (#4318)
212
+ - fix(auth): reject malformed URL ports before credential matching (#4362)
213
+ - fix: decode feature.json as UTF-8 in Windows PowerShell (#4359)
214
+ - fix(events): stop falling back to a fake "pwsh" argv when no launcher exists (#4340)
215
+ - Add Pre-Spec Cards extension to community catalog (#4365)
216
+ - docs(workflows): document Python init script support (#4331)
217
+ - fix(presets): validate catalog URL port, not just hostname (#4341)
218
+ - Add Verified Codebase Context preset to community catalog (#4344)
219
+ - fix(events): stop `event run` crashing on every piped stdin payload (#4326)
220
+ - Add Taco Review extension to community catalog (#4322)
221
+ - Update SpecKit Grill Me extension to v1.0.1 (#4317)
222
+ - [extension] Update BDD extension to v1.0.3 (#4299)
223
+ - Update Parallel Autonomous Run Governance preset to v0.2.6 (#4304)
224
+ - Update SpecAssay bundle to v0.4.12 (#4257)
225
+ - Update SpecAssay preset to v0.4.12 (#4256)
226
+ - Update Archive Extension to v1.3.0 (#4298)
227
+ - Update Reconcile extension to v1.2.1 (#4297)
228
+ - chore: release 1.0.1, begin 1.0.2.dev0 development (#4266)
229
+
230
+ ## [1.0.1] - 2026-08-21
231
+
232
+ ### Changed
233
+
234
+ - docs: flatten project history navigation (#4265)
235
+ - docs: use Spec Kit branding on documentation site (#4264)
236
+ - docs: add existing project adoption guide (#4263)
237
+ - docs: add project history page (#4262)
238
+ - docs: mark Spec Kit's first anniversary (#4260)
239
+ - docs: add workflow quickstarts (#4258)
240
+ - chore(deps): bump astral-sh/setup-uv from 9.0.0 to 10.0.1 (#4244)
241
+ - Update SpecAssay Check extension to v0.4.12 (#4254)
242
+ - fix(workflows): require a 'cases' block on switch steps (#4144)
243
+ - fix(workflows): strip the resolved value before matching switch cases (#4143)
244
+ - fix(bundler): reject non-string manifest list members (#4091)
245
+ - fix(presets): reject non-mapping catalog mutations (#4094)
246
+ - fix(workflows): stop offering a condition correction that inverts it (#4230)
247
+ - fix: use chunked read for integration and preset manifest hash (#3843)
248
+ - docs: update landing page stats for 1.0.0 (#4251)
249
+ - Add Azure Cosmos DB extension to community catalog (#4247)
250
+ - chore(deps): bump actions/checkout from 6.0.3 to 7.0.1 (#4243)
251
+ - chore(deps): bump actions/setup-node from 6.4.0 to 7.0.0 (#4242)
252
+ - chore(deps): bump the codeql-action group with 2 updates (#4241)
253
+ - chore: release 1.0.0, begin 1.0.1.dev0 development (#4246)
254
+
255
+ ## [1.0.0] - 2026-08-21
256
+
257
+ ### Changed
258
+
259
+ - [extension] Update Security Review extension to v2.0.0 (#4223)
260
+ - fix(presets): reject duplicate provides.templates name+type entries (#4191)
261
+ - fix(bundler): decode a downloaded (non-zip) bundle manifest as UTF-8 (#4190)
262
+ - Update Intake Sequencing Governance preset to v0.2.3 (#4235)
263
+ - Update MAQA — Multi-Agent & Quality Assurance extension to v0.1.6 (#4234)
264
+ - [bug-fix] Fix qodercli-skills-migration: migrate QodercliIntegration to SkillsIntegration (#4205)
265
+ - [preset] Add Inventory Alignment preset to community catalog (#4229)
266
+ - [extension] Add Spec Inventory extension to community catalog (#4228)
267
+ - [extension] Update Architecture Guard extension to v2.3.6 (#4224)
268
+ - Update SpecKit Companion extension to v0.20.2 (#4225)
269
+ - fix(workflows): reject a condition that has no {{ }} block (#4182)
270
+ - fix: raise feature assessment credit budget (#4222)
271
+ - [extension] Add AgentDocx extension to community catalog (#4184)
272
+ - fix(integrations): report a falsy non-mapping integration descriptor as a shape error (#4187)
273
+ - Update Autonomous Run Governance preset to v0.4.1 (#4203)
274
+ - fix(workflows): validate dispatch defaults (#4181)
275
+ - Update Atlas extension display name in community catalog (#4202)
276
+ - Add Closed Vocabulary Check preset to community catalog (#4201)
277
+ - fix(utils): narrow bare except Exception in merge_json_files (#4189)
278
+ - chore: release 0.16.5, begin 0.16.6.dev0 development (#4206)
279
+
280
+ ## [0.16.5] - 2026-08-19
281
+
282
+ ### Changed
283
+
284
+ - fix(powershell): stop Out-Null swallowing setup-tasks AVAILABLE_DOCS lines (#4188)
285
+ - fix: provision Spec Kit CLI and assess extension in feature-assess host setup steps (#4195)
286
+ - fix: provision uv and Python for feature-assess workflow (#4193)
287
+ - feat: add feature-assess agentic workflow that installs and runs Spec Kit (#4186)
288
+ - [extension] Update Superpowers Implementation Bridge to v1.2.0 (#4183)
289
+ - fix(init): stop specify init hanging on arrow-key pickers in agent harnesses (#4178)
290
+ - [extension] Add DUBSAR Memory extension to community catalog (#4170)
291
+ - Add AgentPay x402 extension to community catalog (#4174)
292
+ - Update Keel Discovery extension to v0.2.0 (#4172)
293
+ - fix: confine event hook script paths to the project tree (#4133)
294
+ - Clarify extension catalog trust model in docs, help, and messaging (#4177)
295
+ - Add pay-x402 community extension with correct catalog-addition timestamps (#4175)
296
+ - Add ASCII Diagram Renderer extension to community catalog (#4173)
297
+ - Update Intake Review Governance preset to v0.2.1 (#4169)
298
+ - test(presets): normalize whitespace in resolve output assertion to prevent terminal line-wrap failures (#4166)
299
+ - fix(workflows): clean up download temp file on interrupt or typer.Exit (#4134)
300
+ - fix(workflows): report a falsy non-mapping overlay manifest as a shape error (#3884)
301
+ - fix(bundler): resolve built-in step types when checking bundle component references (#3885)
302
+ - Add SpecAssay bundle to community catalog (#4125)
303
+ - chore: release 0.16.4, begin 0.16.5.dev0 development (#4124)
304
+
305
+ ## [0.16.4] - 2026-08-14
306
+
307
+ ### Changed
308
+
309
+ - Add SpecAssay preset to community catalog (#4123)
310
+ - Update Intake Authoring Governance preset to v0.3.1 (#4121)
311
+ - Update Superspec extension to v1.0.2 (#4120)
312
+ - fix(taskstoissues): widen task-ID regex to match IDs longer than 3 digits (#4101)
313
+ - Add Architecture Governance extension to community catalog (#4122)
314
+ - fix(workflows): validate non-string step types (#4111)
315
+ - Harden community submission workflow output allowlists (#4103)
316
+ - chore(deps): bump github/codeql-action (init + analyze) from 4.37.5 to 4.37.6 (#4114)
317
+ - Add SpecAssay Check extension to community catalog (#4113)
318
+ - fix(integrations): dispatch goose commands via `goose run` (#2416) (#3781)
319
+ - fix(powershell): stop Out-Null swallowing the AVAILABLE_DOCS status lines (#3891)
320
+ - fix: remove TOCTOU race in RunState.load (#3839)
321
+ - fix: decode the zipped manifest as UTF-8 before parsing (#3958)
322
+ - Update Agent Parity Governance preset to v0.4.2 (#4110)
323
+ - fix: log progress tracker refresh errors instead of silently swallowing (#3975)
324
+ - [extension] Add SpecJudge extension to community catalog (#4079)
325
+ - fix(bundler): read the authoritative `default_integration` field, not only its legacy aliases (#3880)
326
+ - fix(auth): treat exact host patterns literally (#4108)
327
+ - feat: add Mistral Vibe integration with Claude parity (#4075)
328
+ - [extension] Add spec-kit-atlas extension to community catalog (#4105)
329
+ - chore: release 0.16.3, begin 0.16.4.dev0 development (#4107)
330
+
331
+ ## [0.16.3] - 2026-08-13
332
+
333
+ ### Changed
334
+
335
+ - fix: narrow bare except Exception in VS Code settings merge (#3844)
336
+ - feat(presets): list presets in resolution/precedence order (#4086) (#4104)
337
+ - Fix: scaffold self-contained namespaced preset commands (#4076) (#4082)
338
+ - Update Cross-Platform Governance preset to v0.2.2 (#4080)
339
+ - fix(bundler): treat a blank active integration as indeterminate in FR-019 (#3886)
340
+ - Integrate Junie with dot-to-hyphen behavior and command formatting (#4073)
341
+ - Update A11Y Governance preset to v0.4.3 (#4074)
342
+ - Fix Alquimia argument hints after folded descriptions (#4063)
343
+ - fix: use bounded read for bundle download HTTP responses (#3764)
344
+ - Update iSAQB Architecture Governance preset to v0.2.2 (#4056)
345
+ - fix(claude): make argument-hint injection fold-aware for long descriptions (#4045)
346
+ - Add SpecKit Grill Me extension to community catalog (#4052)
347
+ - Update Architecture Governance preset to v0.5.2 (#4050)
348
+ - Remove auto-assign from catalog submission workflow (#4054)
349
+ - docs: clarify example spec guidance (#4048)
350
+ - Clarify custom checklist ownership and lifecycle (#4028)
351
+ - Update Archive Extension to v1.2.2 (#4053)
352
+ - Update Security Governance preset to v0.6.2 (#4040)
353
+ - docs: clarify maintainer applies submission label during triage (#4041)
354
+ - chore: release 0.16.2, begin 0.16.3.dev0 development (#4038)
355
+
356
+ ## [0.16.2] - 2026-08-10
357
+
358
+ ### Changed
359
+
360
+ - Add Command Code integration to spec-kit (#4019)
361
+ - fix(workflows): strip a resolved condition before the true/false check (#3883)
362
+ - fix(workflows): guard a non-string overlay edit 'operation' (#3881)
363
+ - fix: bound response read in integration catalog fetch (#3818)
364
+ - Fix bug-test Python dependency provisioning (#4030)
365
+ - fix(bundle): escape Rich markup in bundle CLI error and status output (#4023)
366
+ - fix(presets): skip an unreadable restore source in `preset remove` (#4020)
367
+ - Add Keel Discovery extension to community catalog (#4035)
368
+ - fix: show error details in preset catalog config read failure (#3840)
369
+ - Update Reconcile Extension to v1.1.0 (#4034)
370
+ - Add Model Routing Governance preset to community catalog (#4033)
371
+ - fix: use missing_ok=True in integration JSON removal (#3846)
372
+ - fix: use missing_ok=True in extension cache clear (#3845)
373
+ - fix(extensions): reject duplicate provides.templates/scripts names (#4016)
374
+ - feat(presets): resolve constitution templates at command time (#3984)
375
+ - [bug-fix] Fix preset-wrap-drops-argument-hint: inherit argument-hint from core template (#3996)
376
+ - docs: document installing specify-cli from a custom package index (#4032)
377
+ - feat(extensions): accept provides.templates and provides.scripts in manifest (#4012)
378
+ - fix(presets): treat an unreadable core template as missing (#3961)
379
+ - chore: release 0.16.1, begin 0.16.2.dev0 development (#4014)
380
+
381
+ ## [0.16.1] - 2026-08-07
382
+
383
+ ### Changed
384
+
385
+ - fix(integrations): wrap a non-UTF-8 catalog response (#4011)
386
+ - fix(events): skip an unreadable command template (#3956)
387
+ - fix(bundle): wrap malformed YAML in a local .zip bundle manifest (#4013)
388
+ - chore(deps): bump github/codeql-action/analyze from 4.37.3 to 4.37.5 (#4005)
389
+ - chore(deps): bump DavidAnson/markdownlint-cli2-action (#4006)
390
+ - fix(agent-context): recurse for nested plans in Python mtime fallback (#3757)
391
+ - fix: add utf-8 encoding to extension and preset registry file I/O (#3834)
392
+ - fix(init): escape user-supplied values in `specify init` output (#3787)
393
+ - fix: bound response read in integration catalog fetch (#3812)
394
+ - fix: use missing_ok for temp file cleanup to avoid masking errors (#3803)
395
+ - fix(workflows): handle an unreadable run state in `workflow status` (#3999)
396
+ - feat(init): scaffold managed .specify/.gitignore (#4000)
397
+ - fix(scripts): stop check-prerequisites text mode crashing on a legacy stdout code page (#3890)
398
+ - fix(presets): return None for an unreadable layer in resolve_content (#3959)
399
+ - fix(extensions): start fresh on a non-UTF-8 extension registry (#3998)
400
+ - Fix init-force-preset-desync: reapply presets/extensions on init --here --force (#3995)
401
+ - fix(skills): apply the line-anchored delimiter scan to hermes and kimi (#3739)
402
+ - fix(archives): wrap the bare EOFError a truncated tar.gz raises (#3938)
403
+ - test(integrations): guard multiline/control-char SKILL.md frontmatter escaping (#3392)
404
+ - fix(scripts): stop setup-tasks text mode crashing on a legacy code page (#3892)
405
+ - chore: release 0.16.0, begin 0.16.1.dev0 development (#3992)
406
+
407
+ ## [0.16.0] - 2026-08-05
408
+
409
+ ### Changed
410
+
411
+ - fix: keep long frontmatter values on a single line (#3989)
412
+ - fix: skip corrupted run state files in list_runs (#3817)
413
+ - fix: skip corrupted run state files in list_runs (#3814)
414
+ - Add July 2026 newsletter (#3987)
415
+ - fix(presets): start fresh on a non-UTF-8 preset registry (#3955)
416
+ - docs: clarify agent PR review prioritization (#3985)
417
+ - fix(events): preserve a non-UTF-8 config.toml on hook install/teardown (#3963)
418
+ - fix(extensions): treat an unreadable staged backup as a conflict (#3962)
419
+ - fix(manifests): reject non-string requires.speckit_version (#3980)
420
+ - fix(extensions): reject reinstall when a kept config cannot be read (#3960)
421
+ - [extension] Update Charter extension to v0.5.1 (#3983)
422
+ - fix(events): return None for an unparseable script command (#3957)
423
+ - feat(events): context injection for opencode and JSON-envelope agent hooks (#3934)
424
+ - Add TDD Extension to community catalog (#3982)
425
+ - Update Archive Extension to v1.1.0 (#3981)
426
+ - feat(copilot): default integration to skills (#3976)
427
+ - fix(events): ignore non-UTF-8 event overrides (#3897)
428
+ - fix: cap stdin read at 1 MiB to prevent DoS (#3857)
429
+ - fix(workflows): reject mismatched run state IDs (#3899)
430
+ - chore: release 0.15.2, begin 0.15.3.dev0 development (#3953)
431
+
432
+ ## [0.15.2] - 2026-08-03
433
+
434
+ ### Changed
435
+
436
+ - fix(presets): restore core skills instead of deleting them on preset remove (#3929)
437
+ - fix(manifests): reject non-string metadata instead of crashing on it (#3943)
438
+ - fix: narrow bare except Exception in invoke separator resolution (#3856)
439
+ - fix(workflows): keep the init step's documented ignore_agent_tools default on an explicit null (#3889)
440
+ - fix(kimi): preserve non-UTF-8 user skills (#3895)
441
+ - fix(presets): tolerate non-UTF-8 legacy commands (#3896)
442
+ - feat: allow overriding default init integration via SPECKIT_INTEGRATION_DEFAULT (#3952)
443
+ - Add adrkit extension to community catalog (#3947)
444
+ - feat(extensions): scaffold config templates on extension add/enable (#2000)
445
+ - fix(events): skip non-UTF-8 extension manifests (#3900)
446
+ - fix(workflows): fail a gate whose on_reject is not abort/skip/retry (#3888)
447
+ - fix(presets): validate required manifest mappings (#3898)
448
+ - fix: eliminate TOCTOU race in zip packaging (#3855)
449
+ - fix(workflows): fail a fan-in step whose output is not a mapping (#3887)
450
+ - fix(workflows): refetch non-UTF-8 catalog caches (#3901)
451
+ - fix(bundler): wrap local catalog decode failures (#3902)
452
+ - Add `--extension` flag to `specify init` for opting into extensions at init time (#3914)
453
+ - fix: bound response reads in extension catalog and download (#3775)
454
+ - fix(workflows): reject a retry gate whose verdict enum forbids the reset value (#3912)
455
+ - chore: release 0.15.1, begin 0.15.2.dev0 development (#3913)
456
+
457
+ ## [0.15.1] - 2026-07-31
458
+
459
+ ### Changed
460
+
461
+ - fix: escape Rich markup in `workflow resolve` output (#3879)
462
+ - chore(deps): bump actions/stale from 10.4.0 to 11.0.0 (#3877)
463
+ - chore(deps): bump actions/setup-python from 6.3.0 to 7.0.0 (#3876)
464
+ - feat: support tar archives for installs (#3874)
465
+ - fix: eliminate TOCTOU race in file unlink calls (#3819)
466
+ - fix(scripts): tolerate an unusable integration.json in the Python helper (#3785)
467
+ - fix(catalogs): validate the port in the shared catalog-URL validator, like its mirrors do (#3804)
468
+ - feat(presets): add opt-in constitution-sync preset (#3873)
469
+ - fix: reject non-object workflow caches (#3860)
470
+ - Harden extension URL download cache against symlink and junction races (#3869)
471
+ - fix: escape workflow step metadata (#3863)
472
+ - [bug-fix] Fix bundle-update-force-mislead: add refresh() to DefaultPrimitiveInstaller (#3452)
473
+ - fix: use chunked read for extension manifest hash (#3841)
474
+ - fix: preserve unreadable event config files (#3861)
475
+ - fix(scripts): use a .NET Framework-safe trim in the PowerShell init-dir resolver (#3872)
476
+ - Add ContextForge MCP extension to community catalog (#3487)
477
+ - fix: normalize non-UTF-8 integration manifests (#3862)
478
+ - feat: bind gate verdict to workflow input via verdict_input (#3725)
479
+ - docs: use absolute image URLs in README for PyPI rendering (#3867)
480
+ - chore: release 0.15.0, begin 0.15.1.dev0 development (#3871)
481
+
482
+ ## [0.15.0] - 2026-07-30
483
+
484
+ ### Changed
485
+
486
+ - Add yolo to community workflow catalog (#3864)
487
+ - fix(workflows): guard the shell step's timeout check against OverflowError (#3865)
488
+ - Add Intent Reconciliation extension to community catalog (#3858)
489
+ - fix(workflows): validate prompt step 'timeout' like the shell step (#3847)
490
+ - fix: add utf-8 encoding to registry file open calls (#3816)
491
+ - fix: eliminate TOCTOU race in file unlink calls (#3815)
492
+ - test(workflows): name the condition-rejection tests for the real boundary (#3808)
493
+ - fix: eliminate TOCTOU race in file unlink calls (#3811)
494
+ - fix(presets): escape user-supplied catalog name/URL in add/remove output (#3806)
495
+ - fix: add missing utf-8 encoding to registry file open calls (#3810)
496
+ - [bug-fix] Fix upgrade-overwrites-copilot-skills: pass force=True to extension skill re-registration after upgrade (#3853)
497
+ - fix(integrations): don't abort uninstall when the manifest can't be deleted (#3805)
498
+ - test(extensions): update stale manifest validation message assertion (#3859)
499
+ - fix(agents): coerce a non-string description in TOML command rendering (#3799)
500
+ - fix(workflows): make security requirements sync deterministic (#3832)
501
+ - fix(cli): render the literal [suffix] in --tag help and rejection message (#3800)
502
+ - fix(integrations): preserve non-UTF-8 VS Code settings (#3833)
503
+ - fix(bundler): treat an explicit-null manifest field as missing, not the text "None" (#3798)
504
+ - feat: first-class agent-native runtime hooks for integrations (#3704)
505
+ - fix(extensions): guard the required manifest sections so one bad extension cannot break `extension list` (#3797)
506
+ - fix(presets): escape installed preset metadata in Rich output (#3826)
507
+ - fix(workflows): dispatch prompt steps via the resolved executable (#3793)
508
+ - chore: release 0.14.4, begin 0.14.5.dev0 development (#3850)
509
+
510
+ ## [0.14.4] - 2026-07-29
511
+
512
+ ### Changed
513
+
514
+ - fix(bundler): degrade non-UTF-8 config reads into BundlerError (#3784)
515
+ - fix(workflows): escape the step-progress line so step ids render (and `/` stops failing the run) (#3783)
516
+ - Update Agent Parity Governance preset to v0.4.1 (#3830)
517
+ - fix(integrations): reject empty --commands-dir in generic raw_options (#3714)
518
+ - fix(presets): guard non-list/non-mapping provides.templates in PresetManifest (#3712)
519
+ - fix(auth): resolve az via shutil.which so azure-cli token works on Windows (#3709)
520
+ - fix(workflows): reject falsy non-mapping workflow-catalogs.yml top level (#3707)
521
+ - fix(integrations): render hyphenated /speckit-<name> for Droid (always-slash agent) (#3688)
522
+ - [preset] Update A11Y Governance preset to v0.4.2 (#3828)
523
+ - [preset] Update Parallel Autonomous Run Governance to v0.2.4 (#3825)
524
+ - fix: correct Optional type annotation for _resolved_dir parameter (#3801)
525
+ - fix: add timeout to prompt step subprocess execution (#3768)
526
+ - fix: handle tags containing / in GitHub release asset URL resolution (#3767)
527
+ - fix(presets): escape catalog metadata in discovery output (#3773)
528
+ - Update Autonomous Run Governance preset to v0.3.3 (#3823)
529
+ - fix: use bounded read for integration catalog HTTP responses (#3763)
530
+ - docs: add Simplified Chinese translation of README (#3740)
531
+ - Update Intake Sequencing Governance preset to v0.2.2 (#3809)
532
+ - fix(workflows): reject non-string/non-boolean 'condition' in if/while/do-while steps (#3706)
533
+ - fix(bundle): escape catalog metadata in discovery output (#3774)
534
+ - fix(workflows,extensions): tolerate non-list catalog tags in search/info display (#3770)
535
+ - fix: correct nullable resolved directory annotation (#3771)
536
+ - fix(presets): tolerate non-string and non-list catalog fields in preset search/info (#3769)
537
+ - fix(integrations): escape catalog metadata in discovery output (#3772)
538
+ - Update Verify Review Ship extension to v0.4.2 (#3792)
539
+ - fix(integrations): preserve native skill invocation prefixes (#3663)
540
+ - Update Intake Review Governance preset to v0.2.0 (#3796)
541
+ - fix(constitution): stop propagating guidance into templates (#3737) (#3790)
542
+ - chore: release 0.14.3, begin 0.14.4.dev0 development (#3795)
543
+
544
+ ## [0.14.3] - 2026-07-28
545
+
546
+ ### Changed
547
+
548
+ - Update Intake Authoring Governance preset to v0.3.0 (#3788)
549
+ - fix(copilot): honor preset command template overrides (#3592)
550
+ - clarify: require real interrogatives, ban topic-label questions (#3745)
551
+ - feat: Add Alquimia AI integration (#2734)
552
+ - harden: secure extension and preset archive downloads (#3141)
553
+ - fix: correct Optional type annotation for context_note parameter (#3765)
554
+ - Update AGENTS.md (#2626)
555
+ - fix(extensions): tolerate non-string catalog name in display-name lookup (#3747)
556
+ - fix(presets): coerce non-string catalog tags before joining (#3743)
557
+ - fix: register extensions for the active integration only (#3459)
558
+ - fix(extensions): tolerate non-string tags in catalog search (#3746)
559
+ - fix(extensions): hyphenate command names in 'extension info' listing (#3744)
560
+ - fix(workflows): escape remaining untrusted fields in `workflow info` (#3731)
561
+ - fix(extensions): guard non-numeric catalog downloads in search/info rendering (#3710)
562
+ - fix(agent-context): apply default markers when config markers are blank (bash) (#3736)
563
+ - fix: escape Rich markup in catalog list output (#3738)
564
+ - fix(workflows): guard non-mapping 'workflow:' block in WorkflowDefinition (#3694)
565
+ - fix(bundler): reject unsupported schema_version in _merge_config (align readers) (#3711)
566
+ - Update Linear Weave extension to v1.0.1 (#3762)
567
+ - Add Intake Sequencing Governance preset to community catalog (#3761)
568
+ - Update Quality Gates (Enforcement Layer) extension to v0.3.3 (#3760)
569
+ - Update Verify Review Ship extension to v0.4.1 (#3759)
570
+ - fix(agent-context): discover nested plans in Python port mtime fallback (#3734)
571
+ - fix(extensions): make shipped scripts executable after install (#3723)
572
+ - docs(assess): clarify the pipeline works on an empty project (#3732)
573
+ - chore: release 0.14.2, begin 0.14.3.dev0 development (#3730)
574
+
575
+ ## [0.14.2] - 2026-07-24
576
+
577
+ ### Changed
578
+
579
+ - Update Intake Review Governance preset to v0.1.1 (#3729)
580
+ - Update Verify Review Ship extension to v0.3.0 (#3728)
581
+ - Update Architecture Guard extension to v1.13.1 (#3724)
582
+ - docs(upgrade): Claude Code files live in .claude/skills, not .claude/commands (#3708)
583
+ - fix(kilocode): install commands under .kilo/commands (#3672)
584
+ - fix(auth): normalize whitespace in auth-config env-var/id references at store time (#3691)
585
+ - fix(workflows): guard non-mapping 'inputs:' block in engine._resolve_inputs (#3696)
586
+ - Update Intake Authoring Governance preset to v0.2.0 (#3721)
587
+ - docs: clarify shell-step interpolation safety (#3719)
588
+ - [extension] Add Blueprint Index — Living Architecture Map extension to community catalog (#3718)
589
+ - fix(github-http): return None on malformed host in resolve_github_release_asset_api_url (#3715)
590
+ - fix(integrations): declare PiIntegration multi_install_safe (#3652)
591
+ - harden: remove shell parameter from run_command() (#3716)
592
+ - chore(deps): bump github/codeql-action/init from 4.37.1 to 4.37.3 (#3699)
593
+ - fix: auto-correct conflicting feature prefixes (#1829)
594
+ - chore(deps): bump actions/checkout from 6.0.3 to 7.0.1 (#3703)
595
+ - chore(deps): bump DavidAnson/markdownlint-cli2-action (#3702)
596
+ - chore(deps): bump actions/setup-node from 6.4.0 to 7.0.0 (#3701)
597
+ - chore(deps): bump astral-sh/setup-uv from 8.3.2 to 9.0.0 (#3700)
598
+ - chore: release 0.14.1, begin 0.14.2.dev0 development (#3698)
599
+
600
+ ## [0.14.1] - 2026-07-23
601
+
602
+ ### Changed
603
+
604
+ - Update Agent Parity Governance preset to v0.4.0 (#3697)
605
+ - fix(bundler): InstallResult.changed counts uninstalled as a change (#3692)
606
+ - [preset] Update Cross-Platform Governance preset to v0.2.1 (#3695)
607
+ - Update A11Y Governance preset to v0.4.1 (#3693)
608
+ - fix(workflows): escape step-graph brackets in `workflow info` so the type shows (#3690)
609
+ - fix(workflows): filter parser rejects trailing tokens (fullmatch, not match) (#3689)
610
+ - Update iSAQB Architecture Governance preset to v0.2.1 (#3687)
611
+ - fix(extensions): parse SKILL.md on the --- delimiter line during removal (#3634)
612
+ - fix(cli): guard lazy .hostname ValueError in extension/preset add --from (#3651)
613
+ - Update Architecture Governance preset to v0.5.1 (#3686)
614
+ - fix(bundler): reject a top-level non-mapping bundle-catalogs.yml in _merge_config (#3659)
615
+ - Update Security Governance preset to v0.6.1 (#3685)
616
+ - fix(integrations): declare OmpIntegration multi_install_safe (#3650)
617
+ - feat(git-extension): add configurable Conventional Commit support (#3390) (#3413)
618
+ - fix(extensions): hyphenate command names in the Forge post-install listing (#3669)
619
+ - fix(bundler): reject falsy non-mapping requires/provides in CatalogEntry.from_dict (#3667)
620
+ - fix(bundler): reject falsy non-list bundles/contributed_components in records (#3666)
621
+ - Update Intake Authoring Governance preset to v0.1.1 (#3678)
622
+ - docs(extensions): clarify agent-context README and add config examples (#3389)
623
+ - chore: release 0.14.0, begin 0.14.1.dev0 development (#3677)
624
+
625
+ ## [0.14.0] - 2026-07-23
626
+
627
+ ### Changed
628
+
629
+ - docs: add spec-kit-copilot to community friends (#3675)
630
+ - fix(integrations): recompute invoke_separator from retained parsed_options (#3664)
631
+ - fix(workflows): preserve intra-overlay order for multiple insert_after edits (#3662)
632
+ - fix(bundler): reject falsy non-mapping requires/provides in manifest from_dict (#3661)
633
+ - fix(bundler): dump_yaml writes literal UTF-8 (allow_unicode=True) (#3660)
634
+ - fix(integrations): declare kiro-cli multi-install safe (#3477)
635
+ - fix(git-extension): trim trailing whitespace before stripping commit-message quotes (#3673)
636
+ - fix(bundler): order bundle members by canonical POSIX arcname (reproducible builds) (#3658)
637
+ - fix(integrations): Cline overrides post_process_command_content (correct hook name) (#3657)
638
+ - docs(workflows): gate step docstring lists the 'retry' on_reject behaviour (#3656)
639
+ - fix: harden bounded reads and redirect validation (#3671)
640
+ - fix(packaging): bundle scripts/python into the wheel core_pack (#3665) (#3670)
641
+ - fix: bundle scripts/python in wheel so --script py works (#3665) (#3668)
642
+ - docs(workflows): init step docstring lists the 'py' script type (#3655)
643
+ - fix(integrations): declare LingmaIntegration multi_install_safe (#3654)
644
+ - fix: guard constitution command against feature execution (#3646)
645
+ - Fix duplicate step numbering in specify command (#3647)
646
+ - docs(scripts): document the 'py' script type and sh/ps migration plan (#3284) (#3653)
647
+ - harden: bound HTTP reads and enforce strict redirects (#3140)
648
+ - chore: release 0.13.4, begin 0.13.5.dev0 development (#3649)
649
+
650
+ ## [0.13.4] - 2026-07-22
651
+
652
+ ### Changed
653
+
654
+ - docs(concepts): document the spec-of-specs feature breakdown approach (#3648)
655
+ - fix(scripts): git-ext PowerShell emits the '# To persist' SPECIFY_FEATURE hint (parity) (#3632)
656
+ - fix(integrations): validate cached catalog shape before returning it (#3627)
657
+ - fix(bundler): reject non-list 'catalogs' in bundle-catalogs.yml with a clean error (#3623)
658
+ - fix(bundler): guard lazy .hostname ValueError in catalog add_source (#3644)
659
+ - Add Intake Authoring Governance preset to community catalog (#3643)
660
+ - feat: add Factory Droid CLI integration (#822) (#3587)
661
+ - docs(installation): document the 'py' (Python) script type (#3640)
662
+ - fix(init): show hyphenated /speckit-<name> in Next Steps for Forge projects (#3642)
663
+ - fix(extensions): render hyphenated hook invocations for Forge projects (#3641)
664
+ - fix(workflows): workflow add detects local YAML files case-insensitively (#3633)
665
+ - fix(workflows): list-literal expression ignores trailing/empty commas (#3631)
666
+ - fix(workflows): StepRegistry.add tolerates a corrupted non-dict existing entry (#3630)
667
+ - fix(bundler): reject non-mapping 'integration' in a bundle manifest (#3629)
668
+ - fix(workflows): command/prompt steps fail cleanly on a non-string integration (#3626)
669
+ - docs(core): document the 'py' (Python) --script type in the init option table (#3625)
670
+ - fix(workflows): gate prompt uses isdecimal() so a superscript digit doesn't crash (#3624)
671
+ - fix(integrations): Cline dispatches hyphenated /speckit-<cmd> invocations (#3622)
672
+ - docs(upgrade): document integration upgrade / extension update as the project-files upgrade path (#3326)
673
+ - chore: release 0.13.3, begin 0.13.4.dev0 development (#3645)
674
+
675
+ ## [0.13.3] - 2026-07-22
676
+
677
+ ### Changed
678
+
679
+ - fix(integrations): escape Rich markup in --integration-options error messages (#3458)
680
+ - docs: document __SPECKIT_COMMAND_ token for portable cross-command references (#3503)
681
+ - [preset] Add Parallel Autonomous Run Governance preset to community catalog (#3614)
682
+ - docs(workflows): fix stale FanOutStep docstring claiming sequential-only execution (#3639)
683
+ - [bundle] Add SicarioSpec Security & Governance Bundle to community catalog (#3636)
684
+ - [preset] Update Autonomous Run Governance preset to v0.3.2 (#3615)
685
+ - fix(workflows): validate every redirect hop when fetching workflow/step catalogs (#3637)
686
+ - Add pipeline workflow to community catalog (#3338)
687
+ - [extension] Add Linear Weave extension to community catalog (#3609)
688
+ - docs: clarify hook priority validation semantics (#3594)
689
+ - fix(workflows): reject a non-string 'integration'/'model' in command & prompt steps (#3597)
690
+ - ci: add dependency audit workflow (#3138)
691
+ - Add Intake Review Governance preset to community catalog (#3613)
692
+ - fix(workflows): reject non-list input 'enum' instead of crashing (#3601)
693
+ - chore: release 0.13.2, begin 0.13.3.dev0 development (#3617)
694
+
695
+ ## [0.13.2] - 2026-07-21
696
+
697
+ ### Changed
698
+
699
+ - fix(workflows): reject a non-string 'command' in command-step (#3596)
700
+ - fix(workflows): fail gate step loudly on a malformed 'options' (#3595)
701
+ - fix(extensions): re-validate catalog URL after redirects (HTTPS parity/security) (#3524)
702
+ - Add community bundle submission automation (#3553)
703
+ - fix(presets): re-validate catalog URL after redirects (HTTPS parity/security) (#3523)
704
+ - feat(scripts): port create-new-feature, setup-plan and setup-tasks to Python (#3386)
705
+ - fix(agents): parse frontmatter on the --- delimiter line, not any --- substring (#3590)
706
+ - [bug-fix] Fix reinstall-overwrites-kept-config: preserve config on plain reinstall after --keep-config (#3449)
707
+ - feat: update Bob integration to skills-based layout for Bob 2.0 (#3415)
708
+ - Update OKF Knowledge Bundle Generator to v0.3.0 (#3608)
709
+ - Add Test Coverage Drift Control extension to community catalog (#3607)
710
+ - chore: align ruff lint scope (#3139)
711
+ - feat(workflows): WorkflowResolver standalone (PR 1) (#3557)
712
+ - fix(extensions,presets): surface clean error on malformed download URL (#3577)
713
+ - chore: release 0.13.1, begin 0.13.2.dev0 development (#3610)
714
+
715
+ ## [0.13.1] - 2026-07-21
716
+
717
+ ### Changed
718
+
719
+ - fix(integrations): catch OverflowError on a `priority: .inf` in add/remove (#3589)
720
+ - fix(workflows): reject bool / .inf catalog priority in workflow & step catalog loaders (#3526)
721
+ - fix(catalogs): 'priority: .inf' yields a clean validation error instead of crashing (#3525)
722
+ - docs(integrations): document the 'integration list --catalog' flag (#3530)
723
+ - fix(workflows): fail fan-in loudly on a non-string wait_for entry (#3579)
724
+ - fix(workflows): fail fan-out loudly on a truthy non-mapping step template (#3537)
725
+ - fix(workflows): reject a non-string prompt in prompt-step validate() (#3582)
726
+ - fix(workflows): route 'workflow status --json' errors to stderr (#3520)
727
+ - fix(integrations): Forge dispatches hyphenated /speckit-<cmd> invocations (#3529)
728
+ - chore: release 0.13.0, begin 0.13.1.dev0 development (#3588)
729
+
730
+ ## [0.13.0] - 2026-07-17
731
+
732
+ ### Changed
733
+
734
+ - fix(auth): Azure DevOps az-CLI token acquisition returns None on undecodable output (#3527)
735
+ - feat(extensions): add assess idea assessment pipeline extension (#3568)
736
+ - fix(bundle): surface a clean BundlerError on a malformed bundle download URL (#3586)
737
+ - Add OKF Knowledge Bundle Generator extension to community catalog (#3585)
738
+ - Update Autonomous Run Governance preset to v0.2.2 (#3584)
739
+ - docs: update extension guide PyPI upgrade guidance (#3578)
740
+ - fix(presets): raise PresetValidationError, not raw ValueError, on malformed catalog URL (#3576)
741
+ - chore(deps): bump github/codeql-action/init from 4.36.2 to 4.37.1 (#3571)
742
+ - docs: align README hero tagline and subtitle with docs/index.md (#3581)
743
+ - chore: release 0.12.18, begin 0.12.19.dev0 development (#3583)
744
+
745
+ ## [0.12.18] - 2026-07-17
746
+
747
+ ### Changed
748
+
749
+ - chore(deps): bump actions/setup-dotnet from 5.4.0 to 6.0.0 (#3574)
750
+ - chore(deps): bump actions/stale from 10.3.0 to 10.4.0 (#3572)
751
+ - chore(deps): bump actions/setup-node from 6.4.0 to 7.0.0 (#3570)
752
+ - docs: weave harness/SDLC framing into landing page (#3567)
753
+ - docs: reframe SDD positioning, modernize install, and de-duplicate walkthroughs (#3565)
754
+ - docs: document extensions.yml hook configuration (#3563)
755
+ - docs: refresh landing page ecosystem stats (#3561)
756
+ - [extension] Add Dotdog extension to community catalog (#3558)
757
+ - Update DocGuard — CDD Enforcement to v0.33.0 (#3559)
758
+ - chore: release 0.12.17, begin 0.12.18.dev0 development (#3560)
759
+
760
+ ## [0.12.17] - 2026-07-16
761
+
762
+ ### Changed
763
+
764
+ - fix(extensions): resolve __SPECKIT_COMMAND tokens in auto-registered skills (#3544)
765
+ - fix(workflows): fail if/switch steps on non-list branch instead of crashing (#3515)
766
+ - feat(integrations): add Grok Build skills-based integration (#3535)
767
+ - fix(extensions/git): reject negative -Number in create-new-feature-branch.ps1 (#3538)
768
+ - test: cover preset constitution seeding through init CLI (#3297)
769
+ - fix(integration): preserve ai_skills on `use` for skills-mode Copilot (#3550) (#3551)
770
+ - [extension] Add Figma Starter extension to community catalog (#3547)
771
+ - [extension] Add Spec-Kit BDD extension to community catalog (#3548)
772
+ - [extension] Update Quality Gates (Enforcement Layer) extension to v0.3.2 (#3542)
773
+ - chore: release 0.12.16, begin 0.12.17.dev0 development (#3549)
774
+
775
+ ## [0.12.16] - 2026-07-15
776
+
777
+ ### Changed
778
+
779
+ - fix(workflows): raise a clear error, not a cryptic crash, on non-string filter args (#3522)
780
+ - feat(workflows): expose workflow source directory to steps (#3469)
781
+ - fix(workflows): fan-out max_concurrency .inf falls back to sequential, not crash (#3521)
782
+ - Update Coding Standards Drift Control extension to v0.4.0 (#3540)
783
+ - fix(presets): seed constitution from preset constitution-template (#3272) (#3276)
784
+ - docs: add PyPI as second supported install route (#3425) (#3516)
785
+ - fix(workflows): fail while/do-while steps on non-list steps instead of crashing (#3519)
786
+ - Add PatchWarden Evidence Pack extension to community catalog (#3514)
787
+ - feat(extensions): port git extension scripts to Python (#3400)
788
+ - chore: release 0.12.15, begin 0.12.16.dev0 development (#3513)
789
+
790
+ ## [0.12.15] - 2026-07-14
791
+
792
+ ### Changed
793
+
794
+ - Update Autonomous Run Governance preset to v0.1.4 (#3511)
795
+ - fix(workflows): raise catalog error, not raw ValueError, on a malformed catalog URL (#3484)
796
+ - fix(workflows): evaluate 'in'/'not in' safely on a non-iterable right operand (#3447) (#3468)
797
+ - fix: add trailing newline to init-options.json output (#3509)
798
+ - feat(workflows): align workflow CLI with extension command surface (#3419)
799
+ - fix(extensions): stop env-var config leaking across prefix-colliding extension IDs (#3497)
800
+ - fix(integrations): escape control characters in goose recipe YAML renderer (#3384)
801
+ - [extension] Update DocGuard — CDD Enforcement extension to v0.32.0 (#3489)
802
+ - [extension] Add Multi-Repo Branch Sync extension to community catalog (#3411)
803
+ - chore: release 0.12.14, begin 0.12.15.dev0 development (#3506)
804
+
805
+ ## [0.12.14] - 2026-07-13
806
+
807
+ ### Changed
808
+
809
+ - [extension] Add Spec Kit Memory extension to community catalog (#3455)
810
+ - Add Test-First Governance preset to community catalog (#3504)
811
+ - Add Autonomous Run Governance preset to community catalog (#3501)
812
+ - fix(workflows): validate command step input/options are mappings (#3262)
813
+ - fix(presets): resolve() honors manifest-declared file: for installed presets (#3351)
814
+ - fix(init): don't block on confirmation for 'init --here' without a TTY (#3236)
815
+ - [extension] Add Quality Gates (Enforcement Layer) extension to community catalog (#3431)
816
+ - fix(integrations): exit cleanly on unbalanced quote in --integration-options (#3457) (#3466)
817
+ - fix(integrations): declare kiro-cli multi-install safe (#3471) (#3485)
818
+ - fix(workflows): fail fan-in step on non-list wait_for instead of crashing (#3482)
819
+ - chore: release 0.12.13, begin 0.12.14.dev0 development (#3498)
820
+
821
+ ## [0.12.13] - 2026-07-13
822
+
823
+ ### Changed
824
+
825
+ - fix(workflows): fail switch step on non-mapping cases instead of crashing (#3481)
826
+ - Cleanup agent-file-template.md (#2579)
827
+ - fix: mark Kiro integration as multi-install safe (#3472)
828
+ - fix: rewrite extension-relative subdir paths in generated command bodies (#3444)
829
+ - fix(templates): point constitution sync checklist at installed command files (#3418)
830
+ - feat(workflows): make shell step timeout configurable (#3327) (#3328)
831
+ - docs: clarify that release tags keep the leading v prefix (#3463)
832
+ - fix(workflows): don't crash on membership test against a non-iterable (#3448)
833
+ - fix(workflows): if-step validate accepts falsy non-list else (#3264)
834
+ - chore: release 0.12.12, begin 0.12.13.dev0 development (#3490)
835
+
836
+ ## [0.12.12] - 2026-07-13
837
+
838
+ ### Changed
839
+
840
+ - fix(extensions): set-priority repairs corrupted boolean priority (#3268)
841
+ - fix(presets): set-priority repairs corrupted boolean priority (#3269)
842
+ - fix(workflows): engine loop cap ignores bool max_iterations (#3270)
843
+ - docs(bundles): document --integration on 'bundle update' (#3271)
844
+ - fix(workflows): harden catalog.py against mis-shaped registry & non-string fields (#3375)
845
+ - Add Verify Review Ship extension to community catalog (#3450)
846
+ - fix(bundle): reject file:// / local download_url — catalog URLs are HTTPS-only (#3344)
847
+ - fix(extensions): handle prefix-colliding env vars in _get_env_config (#3350)
848
+ - docs: document copilot skills mode (--skills) and markdown deprecation (#3313)
849
+ - chore: release 0.12.11, begin 0.12.12.dev0 development (#3460)
850
+
851
+ ## [0.12.11] - 2026-07-10
852
+
853
+ ### Changed
854
+
855
+ - fix(agent-context): discover nested plan.md in scoped layouts (#3024) (#3301)
856
+ - fix(auth): return no matches, not raw ValueError, for a malformed URL (#3437)
857
+ - fix(catalogs): raise catalog error, not raw ValueError, on a malformed URL (#3435)
858
+ - fix(bundler): raise BundlerError, not raw ValueError, on a malformed catalog URL (#3433)
859
+ - chore: add pre-commit config and fix trailing whitespace/end-of-file (#3430)
860
+ - Add EARS Requirements Syntax extension to community catalog (#3407)
861
+ - Add Spec Kit Figma extension to community catalog (#3408)
862
+ - fix(workflows): report validation errors instead of crashing on non-string workflow.yml scalars (#3421)
863
+ - fix(templates): remove self-referencing path in plan-template.md note (#3417)
864
+ - chore: release 0.12.10, begin 0.12.11.dev0 development (#3453)
865
+
866
+ ## [0.12.10] - 2026-07-10
867
+
868
+ ### Changed
869
+
870
+ - chore(deps): bump astral-sh/setup-uv from 8.2.0 to 8.3.2 (#3439)
871
+ - chore(deps): bump DavidAnson/markdownlint-cli2-action (#3438)
872
+ - fix(templates): correct phase numbering in plan.md (#3416)
873
+ - fix(git-ext): honor explicit -Number 0 in PowerShell branch creation (#3412)
874
+ - docs: add 'spectatui' entry to friends.md (#3362)
875
+ - test: pin interpreter probe so py-template render test passes on Windows (#3428)
876
+ - feat(workflows): make shell step timeout configurable (#3404)
877
+ - fix: find plans in nested spec directories (#3405)
878
+ - feat(templates): add py: lines to command templates' scripts frontmatter (#3403)
879
+ - chore: release 0.12.9, begin 0.12.10.dev0 development (#3426)
880
+
881
+ ## [0.12.9] - 2026-07-09
882
+
883
+ ### Changed
884
+
885
+ - fix(integrations): skip Windows Store python3 alias stub in resolve_python_interpreter (#3385)
886
+ - fix(integrations): escape control characters in SKILL.md frontmatter (#3399)
887
+ - fix(workflows): apply chained expression filters left-to-right (#3339)
888
+ - fix(scripts): resolve invoke_separator by parse success, not python3 availability (#3304) (#3320)
889
+ - fix(shared-infra): refresh_shared_templates preserves recovered user files (#3378)
890
+ - fix(agents): resolve skill placeholders in Goose (yaml) command output (#3374)
891
+ - fix(bundler): enforce version pin on bundled preset/extension installs (#3377)
892
+ - Update Golden Demo extension to v0.3.0 (#3394)
893
+ - test: isolate integration test home (#3144)
894
+ - chore: release 0.12.8, begin 0.12.9.dev0 development (#3410)
895
+
896
+ ## [0.12.8] - 2026-07-08
897
+
898
+ ### Changed
899
+
900
+ - [extension] Add LLM Wiki extension to community catalog (#3361)
901
+ - Docs: Document missing CLI flags and integrations (#3182)
902
+ - Docs: Remove Cursor from CLI check list in README (#3184)
903
+ - feat(extensions): port update-agent-context to Python (#3387)
904
+ - fix(scripts): fall through to grep/sed when python3 is a broken stub in feature.json parser (#3312)
905
+ - fix(toml): escape control characters so generated command files parse (#3341)
906
+ - fix(cli): exit cleanly on malformed IPv6 URLs in `extension`/`preset`/`workflow add` (#3369)
907
+ - fix(github-http): return None on malformed GHES port instead of raising (#3379)
908
+ - fix(integrations): guard _sha256 against unreadable managed files (#3376)
909
+ - chore: release 0.12.7, begin 0.12.8.dev0 development (#3398)
910
+
911
+ ## [0.12.7] - 2026-07-07
912
+
913
+ ### Changed
914
+
915
+ - fix(bundler): bundle update uninstalls components dropped by new version (#3353)
916
+ - fix(workflows): route run/resume errors to stderr under --json (#3352)
917
+ - fix(workflows): fan-in validate() rejects non-mapping output (#3349)
918
+ - fix(workflows): shell step validate() rejects non-string run (#3348)
919
+ - fix(integrations): agy honors SPECKIT_INTEGRATION_AGY_EXTRA_ARGS (#3347)
920
+ - Add Orchestration Task Context Management extension to community catalog (#3372)
921
+ - Update DocGuard — CDD Enforcement extension to v0.30.0 (#3371)
922
+ - Update Ripple extension to v1.1.0 (#3370)
923
+ - feat(integrations): generalize post-processing to all format types (#3311)
924
+ - chore: release 0.12.6, begin 0.12.7.dev0 development (#3393)
925
+
926
+ ## [0.12.6] - 2026-07-07
927
+
928
+ ### Changed
929
+
930
+ - fix(bundler): validate catalog URLs in `catalog add` (HTTPS-only, require host) (#3367)
931
+ - Update Ralph Loop extension to v1.2.1 (#3365)
932
+ - fix extension-local script path rewriting (#3364)
933
+ - Add Charter extension to community catalog (#3363)
934
+ - feat(scripts): add Python check-prerequisites PoC (#3302)
935
+ - test: reduce registry manifest test repetition (#3146)
936
+ - fix(integrations): hermes honors SPECKIT_INTEGRATION_HERMES_EXTRA_ARGS (#3346)
937
+ - fix(extensions): coerce non-mapping YAML config roots to {} in ConfigManager (#3345)
938
+ - fix(yaml): pin goose recipe prompt block-scalar indentation (#3343)
939
+ - chore: release 0.12.5, begin 0.12.6.dev0 development (#3381)
940
+
941
+ ## [0.12.5] - 2026-07-06
942
+
943
+ ### Changed
944
+
945
+ - fix(workflows): match gate reject option case-insensitively (#3335)
946
+ - fix(bundler): reject host-less catalog URLs in adapters (use hostname, not netloc) (#3333)
947
+ - fix(bundler): resolve catalog search at highest-precedence source before filtering (#3331)
948
+ - fix(workflows): compare non-numeric strings lexicographically instead of returning False (#3323)
949
+ - fix(workflows): quote-aware interpolation so a literal }} in a filter arg doesn't break multi-expression templates (#3307)
950
+ - Support namespaced git feature branch templates (#3293)
951
+ - chore(deps): bump actions/setup-dotnet from 5.3.0 to 5.4.0 (#3315)
952
+ - fix(integrations): cursor-agent honors executable/extra-args env overrides (#3265)
953
+ - docs: drop stale kimi KIMI.md->AGENTS.md migration note (#3291)
954
+ - chore: release 0.12.4, begin 0.12.5.dev0 development (#3305)
955
+
956
+ ## [0.12.4] - 2026-07-02
957
+
958
+ ### Changed
959
+
960
+ - feat(cli): add `py` script type & Python interpreter resolution (#3278) (#3285)
961
+ - fix: resolve GitHub release asset API URL for private repo bundle downloads (#3136)
962
+ - [extension] Add Analytics extension to community catalog (#3296)
963
+ - fix: interpolate multi-expression templates instead of returning None (#3208) (#3228)
964
+ - feat(cli): honor SPECIFY_INIT_DIR in the specify CLI project resolver (#3186)
965
+ - fix(extensions): resolve core-command dirs via _assets helpers (#3274) (#3287)
966
+ - fix: fall back to feature dir basename for empty CURRENT_BRANCH (#3026) (#3229)
967
+ - feat(bug-fix): add label-driven bug-fix agentic workflow (#3258)
968
+ - feat(workflows): add label-driven bug-test workflow (#3239) (#3257)
969
+ - chore: release 0.12.3, begin 0.12.4.dev0 development (#3295)
970
+
971
+ ## [0.12.3] - 2026-07-01
972
+
973
+ ### Changed
974
+
975
+ - feat(copilot): warn before skills default rollout (#3256)
976
+ - Add June 2026 newsletter (#3289)
977
+ - docs(toc): add Bundles and Authentication to the Reference nav (#3267)
978
+ - fix(integrations): add zed to discovery catalog.json (#3266)
979
+ - fix(integrations): cline hook note collapses onto instruction at EOF (#3263)
980
+ - refactor: move workflow command handlers to workflows/_commands.py (PR-8/8) (#3159)
981
+ - chore: retire Roo Code integration — extension shut down (#3167) (#3212)
982
+ - fix(bundle): allow 'catalog remove' by the same relative path used to add (#3242)
983
+ - fix(workflows): reject bool max_iterations in while/do-while validation (#3237)
984
+ - fix: allow prerelease spec-kit versions in compatibility checks (#2695)
985
+ - chore: release 0.12.2, begin 0.12.3.dev0 development (#3259)
986
+
987
+ ## [0.12.2] - 2026-06-30
988
+
989
+ ### Changed
990
+
991
+ - fix(scripts): portable uppercase for branch-name acronym retention (bash 3.2) (#3192)
992
+ - chore: retire Windsurf integration — absorbed into Cognition Devin (#3168) (#3213)
993
+ - [extension] Update Intake extension to v0.1.3 (#3254)
994
+ - feat(workflows): honor max_concurrency in fan-out via a bounded thread pool (#3224)
995
+ - Update Architecture Workflow extension to v1.2.2 (#3255)
996
+ - Add Repository Governance extension to community catalog (#3252)
997
+ - Update Workflow Preset to v1.3.11 (#3251)
998
+ - chore: retire iflow integration — product discontinued (#3166) (#3211)
999
+ - docs(codebuddy): fix dead install links and CodeBuddy capitalization (#3172) (#3216)
1000
+ - fix: reject host-less catalog URLs in base and preset validators (#3209) (#3227)
1001
+ - chore: release 0.12.1, begin 0.12.2.dev0 development (#3253)
1002
+
1003
+ ## [0.12.1] - 2026-06-30
1004
+
1005
+ ### Changed
1006
+
1007
+ - chore: align CI Python matrix with devguide lifecycle + fix bash 3.2 portability (#3244)
1008
+ - fix: stop check-prerequisites --paths-only from writing feature.json (#3025) (#3190)
1009
+ - docs: document integration catalog subcommands (#3206)
1010
+ - fix(scripts): use ASCII [OK] marker in initialize-repo.sh (parity with PowerShell twin) (#3231)
1011
+ - docs: document integration `search`/`info`/`scaffold` subcommands (#3174) (#3194)
1012
+ - docs: remove Cursor from `specify check` agent list (#3178) (#3193)
1013
+ - fix(goose): repoint install_url and docs to goose-docs.ai (#3171) (#3215)
1014
+ - fix(scripts): route 'Plan template not found' per --json in setup-plan.ps1 (parity with bash) (#3241)
1015
+ - fix(bundle): send command errors to stderr so --json stdout stays parseable (#3235)
1016
+ - chore: release 0.12.0, begin 0.12.1.dev0 development (#3243)
1017
+
1018
+ ## [0.12.0] - 2026-06-29
1019
+
1020
+ ### Changed
1021
+
1022
+ - feat: make agent-context extension a full opt-in (#3097)
1023
+ - docs(workflows): add the built-in 'init' step type to the Step Types table (#3234)
1024
+ - fix(workflows): gate validate() must not crash on non-string options (#3233)
1025
+ - fix(workflows): make pipe-filter detection quote-aware in expressions (#3232)
1026
+ - fix(workflows): reject a fan-in wait_for that names an unknown step at validation (#3225)
1027
+ - fix(scripts): warn when spec template is missing in create-new-feature.ps1 (parity with bash) (#3230)
1028
+ - fix(scripts): count subdirectory-only dirs as non-empty in PowerShell (parity with bash) (#3137)
1029
+ - fix(scripts): drop HAS_GIT from PowerShell git-extension output (parity with bash) (#3195)
1030
+ - Update Product Spec Extension to v1.0.1 (#3226)
1031
+ - chore: release 0.11.10, begin 0.11.11.dev0 development (#3240)
1032
+
1033
+ ## [0.11.10] - 2026-06-29
1034
+
1035
+ ### Changed
1036
+
1037
+ - fix(extensions): apply GHES auth and resolve release assets for `extension add --from` (#3217)
1038
+ - fix(pi): repoint install_url to @earendil-works/pi-coding-agent (#3169) (#3214)
1039
+ - fix(catalogs): reject host-less catalog URLs in base and preset validators (#3210)
1040
+ - fix: update CodeBuddy install docs URL (#3187)
1041
+ - fix(workflows): reject infinite number-input default instead of raising OverflowError (#3199)
1042
+ - fix(scripts): emit 'Copied plan template' status in setup-plan.ps1 (parity with bash) (#3198)
1043
+ - fix(workflows): make expression operator/literal parsing quote-aware (#3197)
1044
+ - fix(scripts): honor explicit -Number 0 in PowerShell create-new-feature (parity with bash) (#3196)
1045
+ - Add community bundle submission path (#3162)
1046
+ - Docs: Document /speckit.converge command (#3181)
1047
+ - chore: release 0.11.9, begin 0.11.10.dev0 development (#3189)
1048
+
1049
+ ## [0.11.9] - 2026-06-26
1050
+
1051
+ ### Changed
1052
+
1053
+ - Docs: add cline and zcode to multi-install-safe table (#3180)
1054
+ - Docs: document missing flags --force and --refresh-shared-infra (#3179)
1055
+ - fix(claude): stop forking /speckit-analyze to prevent long-session freezes (#3188)
1056
+ - fix: derive plan path from feature.json in update-agent-context (#3069)
1057
+ - fix(catalog): companion → README docs, version-pinned download URL, v0.11.0, refreshed tags (#2954)
1058
+ - chore(deps): bump actions/setup-python from 6.2.0 to 6.3.0 (#3173)
1059
+ - Update SicarioSpec Core preset to v0.5.1 (#3165)
1060
+ - fix(extensions,presets,workflows): resolve private GHES release assets via /api/v3 (#3157)
1061
+ - Update preset composition strategy reference (#3143)
1062
+ - fix(scripts): keep PowerShell branch-name acronym match case-sensitive (parity with bash) (#3129)
1063
+ - fix(extensions): tell agent to run mandatory hooks, not just emit the directive (#2901)
1064
+ - Point sicario-core docs to preset README (#3120)
1065
+ - chore: release 0.11.8, begin 0.11.9.dev0 development (#3156)
1066
+
1067
+ ## [0.11.8] - 2026-06-24
1068
+
1069
+ ### Changed
1070
+
1071
+ - docs: add SpecKit Assistant npm package to Community Friends (#3142)
1072
+ - Require preset-usage README with Spec Kit CLI syntax in preset submissions (#3104)
1073
+ - [extension] Update Jira Integration (Sync Engine) extension to v0.4.0 (#3152)
1074
+ - Add Spec Roadmap extension to community catalog (#3153)
1075
+ - feat(integration): update Kimi integration for Kimi Code CLI (#2979)
1076
+ - [extension] Add Golden Demo extension to community catalog (#3151)
1077
+ - docs: run /speckit.checklist after /speckit.plan in quickstart (#3108)
1078
+ - fix(workflows): preserve commas inside quoted list-literal elements (#3134)
1079
+ - ci: pin actions to commit SHAs and add shellcheck (#3126)
1080
+ - chore: release 0.11.7, begin 0.11.8.dev0 development (#3154)
1081
+
1082
+ ## [0.11.7] - 2026-06-24
1083
+
1084
+ ### Changed
1085
+
1086
+ - feat(extensions): verify catalog archive sha256 before install (#3080)
1087
+ - fix(workflows): validate requires keys and reject phantom permissions gate (#3079)
1088
+ - fix(scripts): use case-sensitive match for acronym retention in PS branch names (#3130)
1089
+ - feat(integrations): add omp support (#3107)
1090
+ - fix: render valid TOML when a command body contains backslashes (#3135)
1091
+ - harden: reject shell=True in run_command (#3132)
1092
+ - docs: add monorepo guide (#3084)
1093
+ - fix(scripts): send check-prerequisites.ps1 errors to stderr (#3123)
1094
+ - fix: write Codex dev skills as files (#2988)
1095
+ - chore: release 0.11.6, begin 0.11.7.dev0 development (#3121)
1096
+
1097
+ ## [0.11.6] - 2026-06-23
1098
+
1099
+ ### Changed
1100
+
1101
+ - [extension] Update Spec Kit Preview extension to v1.1.0 and sync Firebender agent lists (#3116)
1102
+ - Add Spec Kit Discovery Extension to community catalog (#3119)
1103
+ - Update Architecture Workflow extension to v1.2.1 (#3118)
1104
+ - docs: clarify project-defined constitution articles (#2994)
1105
+ - Add Intake extension to community catalog (#3117)
1106
+ - feat: add Firebender integration (Android Studio / IntelliJ) (#3077)
1107
+ - Update DocGuard — CDD Enforcement extension to v0.28.0 (#3115)
1108
+ - chore: sync issue template agent lists (#3052)
1109
+ - fix(shared-infra): remove stale managed scripts the core no longer ships (#3076) (#3098)
1110
+ - chore: release 0.11.5, begin 0.11.6.dev0 development (#3105)
1111
+
1112
+ ## [0.11.5] - 2026-06-22
1113
+
1114
+ ### Changed
1115
+
1116
+ - fix: register enabled extensions for agent on integration use/upgrade (#2949)
1117
+ - Add SicarioSpec Core preset to community catalog (#3102)
1118
+ - Update Game Narrative Writing preset to v1.1.0 (#3099)
1119
+ - feat: add PyPI publishing workflow and readme metadata (#2915)
1120
+ - refactor: move extension command handlers to extensions/_commands.py (PR-7/8) (#3014)
1121
+ - feat: add ZCode (Z.AI) integration (#3063)
1122
+ - fix(agent-context): support multiple context files safely (#2969)
1123
+ - Update DocGuard — CDD Enforcement extension to v0.27.0 (#3094)
1124
+ - fix(presets): use _repo_root() for bundled-core source-checkout fallback (#3086) (#3091)
1125
+ - chore: release 0.11.4, begin 0.11.5.dev0 development (#3092)
1126
+
1127
+ ## [0.11.4] - 2026-06-22
1128
+
1129
+ ### Changed
1130
+
1131
+ - [extension] Add Tasks to GitHub Project extension to community catalog (#3090)
1132
+ - Update Linear Integration extension to v0.7.0 (#3089)
1133
+ - fix: fail loudly on an unknown workflow expression filter (#3074)
1134
+ - fix: anchor lib/ and lib64/ patterns to repo root in .gitignore (#3083)
1135
+ - fix(build): include specify_cli.bundler.lib in built distribution (#3085)
1136
+ - Harden command registration path handling (#3088)
1137
+ - fix(presets): preserve argument-hint in preset SKILL.md generation (#2978)
1138
+ - feat: surface gate detail in the workflow run/resume --json payload (#2965)
1139
+ - feat: add `specify bundle` command (#3070)
1140
+ - chore: release 0.11.3, begin 0.11.4.dev0 development (#3072)
1141
+
1142
+ ## [0.11.3] - 2026-06-19
1143
+
1144
+ ### Changed
1145
+
1146
+ - docs: strengthen agent disclosure to cover commits and per-round comments (#3071)
1147
+ - fix: isolate per-extension failures so one bad extension can't drop the rest (#2951)
1148
+ - fix(taskstoissues): skip tasks that already have a GitHub issue (#2992)
1149
+ - feat(scripts): add SPECIFY_INIT_DIR to target a member project from the repo root (#2892)
1150
+ - Update Multi-Model Review extension to v0.1.2 (#3066)
1151
+ - chore(deps): bump actions/checkout from 6.0.3 to 7.0.0 (#3064)
1152
+ - feat(claude): run /analyze in a forked subagent (#2511)
1153
+ - fix: count worktree branches in git extension numbering (#3054)
1154
+ - Add Token Economy extension to community catalog (#3049)
1155
+ - chore: release 0.11.2, begin 0.11.3.dev0 development (#3059)
1156
+
1157
+ ## [0.11.2] - 2026-06-18
1158
+
1159
+ ### Changed
1160
+
1161
+ - Update Linear Integration extension to v0.6.0 (#3047)
1162
+ - fix: align community submission workflows with bug-assess label trigger (#3046)
1163
+ - fix(bug-assess): recompile lock so github guard repos is 'all' (#3036)
1164
+ - fix(bug-assess): set min-integrity: none to allow reading external user issues (#3030)
1165
+ - feat: add bug-assess agentic workflow (#3023)
1166
+ - feat: add /speckit.converge command (#3001)
1167
+ - fix: preserve .vscode/settings.json and script +x bit on integration upgrade (#3020)
1168
+ - feat(workflows): add from_json expression filter (#2961)
1169
+ - Add `init` workflow step to bootstrap projects like `specify init` (#2838)
1170
+ - chore: release 0.11.1, begin 0.11.2.dev0 development (#3022)
1171
+
1172
+ ## [0.11.1] - 2026-06-17
1173
+
1174
+ ### Changed
1175
+
1176
+ - chore: ignore Copilot dogfooding scaffolding in .gitignore (#3019)
1177
+ - docs: clarify Taskify specify command (#3016)
1178
+ - docs: document evolving specs in existing projects (#2902)
1179
+ - feat(workflows): opt-in output_format: json exposes parsed shell stdout as output.data (#2963)
1180
+ - fix: non-zero exit code when a workflow run ends failed or aborted (#2959)
1181
+ - fix(skills): preserve non-ASCII characters in skill frontmatter (#2917)
1182
+ - fix: prevent extension self-install from deleting source dir (#2990) (#2991)
1183
+ - fix: disable Rich Live transient mode on Windows to prevent PS 5.1 hang (#2938)
1184
+ - Update a11y-governance preset to v0.4.0 (#2981)
1185
+ - chore: release 0.11.0, begin 0.11.1.dev0 development (#3012)
1186
+
1187
+ ## [0.11.0] - 2026-06-16
1188
+
1189
+ ### Changed
1190
+
1191
+ - Add workflow step catalog — community-installable step types (#2394)
1192
+ - feat(dev): add integration scaffolder (#2685)
1193
+ - Add Command Density preset to community catalog (#3006)
1194
+ - fix(tests): don't run PowerShell tests via WSL-interop powershell.exe (#2971)
1195
+ - Add Zed integration (#2780)
1196
+ - Update architecture-governance preset to v0.5.0 (#2929)
1197
+ - Update Superpowers Implementation Bridge extension to v1.1.0 (#3011)
1198
+ - Update isaqb-architecture-governance preset to v0.2.0 (#2984)
1199
+ - Update security-governance preset to v0.6.0 (#2932)
1200
+ - chore: update CITATION.cff to v0.10.2 (2026-06-11) (#2966)
1201
+ - chore: release 0.10.4, begin 0.10.5.dev0 development (#3010)
1202
+
1203
+ ## [0.10.4] - 2026-06-16
1204
+
1205
+ ### Changed
1206
+
1207
+ - fix: fail loudly when a fan-out 'items' expression does not resolve to a list (#2957)
1208
+ - refactor: move preset command handlers to presets/_commands.py (PR-6/8) (#2826)
1209
+ - Update agent-parity-governance preset to v0.3.0 (#2982)
1210
+ - Update cross-platform-governance preset to v0.2.0 (#2983)
1211
+ - Add Data Model Diagram extension to community catalog (#2922)
1212
+ - Add Spec Kit TLDR extension to community catalog (#3007)
1213
+ - docs: add guide for handling complex features (#3004)
1214
+ - Add Loop Engineering extension to community catalog (#3002)
1215
+ - Update MemoryLint extension to v1.5.1 (#3000)
1216
+ - chore: release 0.10.3, begin 0.10.4.dev0 development (#2999)
1217
+
1218
+ ## [0.10.3] - 2026-06-16
1219
+
1220
+ ### Changed
1221
+
1222
+ - Update Superpowers Bridge extension to v1.6.0 (#2998)
1223
+ - Add Improve Extension to community catalog (#2997)
1224
+ - Update Product Forge extension to v1.7.0 (#2996)
1225
+ - Update Linear Integration extension to v0.5.0 (#2995)
1226
+ - Update Superpowers Implementation Bridge extension to v1.0.3 (#2993)
1227
+ - Update Ralph community extension to v1.1.1 (#2861)
1228
+ - Update Linear Integration extension to v0.4.0 (#2942)
1229
+ - Update DocGuard — CDD Enforcement to v0.26.0 (#2941)
1230
+ - Add SpecKit Companion extension to community catalog (#2937)
1231
+ - chore: release 0.10.2, begin 0.10.3.dev0 development (#2936)
1232
+
1233
+ ## [0.10.2] - 2026-06-11
1234
+
1235
+ ### Changed
1236
+
1237
+ - Add Research Harness extension to community catalog (#2935)
1238
+ - Add Coding Standards Drift Control extension to community catalog (#2934)
1239
+ - Add Spec Trace extension to community catalog (#2527)
1240
+ - fix(extensions): preserve argument-hint in extension Claude SKILL.md (#2916)
1241
+ - fix(presets): harden preset URL installs against unsafe redirects (#2911)
1242
+ - fix: skip recovered files during refresh_managed overwrite check (#2918) (#2919)
1243
+ - Update multi-model-review extension to v0.1.1 (#2900)
1244
+ - feat: add category and effect as first-class fields in extension schema (#2899)
1245
+ - chore(catalog): add Jira Integration (Sync Engine) extension (#2895)
1246
+ - chore: release 0.10.1, begin 0.10.2.dev0 development (#2910)
1247
+
1248
+ ## [0.10.1] - 2026-06-09
1249
+
1250
+ ### Changed
1251
+
1252
+ - Update DocGuard — CDD Enforcement extension to v0.25.1 (#2909)
1253
+ - Update a11y-governance preset to v0.3.0 (#2867)
1254
+ - docs: document spec persistence models (#2856)
1255
+ - chore(catalog): bump Linear Integration to v0.3.0 (repo renamed to spec-kit-linear-sync) (#2893)
1256
+ - chore: update DocGuard extension to v0.25.0 (#2707)
1257
+ - chore: remove unused open_github_url/_StripAuthOnRedirect from _github_http.py (#2883)
1258
+ - fix(catalogs): validate extension and preset catalog payload shape (#2621)
1259
+ - feat(integration): add status reporting (#2674)
1260
+ - chore: release 0.10.0, begin 0.10.1.dev0 development (#2904)
1261
+
1262
+ ## [0.10.0] - 2026-06-09
1263
+
1264
+ ### Changed
1265
+
1266
+ - feat: make git extension opt-in and remove --no-git at v0.10.0 (#2873)
1267
+ - [Preset] UpdateFiction book writing v1.9.0 - Illustration support (#2821)
1268
+ - test(workflows): cover executable override fallback preflight (#2843)
1269
+ - Add GitHub Copilot CLI guidance to readme (#2891)
1270
+ - Update Security Review extension to v1.5.3 (#2898)
1271
+ - Update Architecture Guard extension to v1.8.17 (#2897)
1272
+ - feat(extensions): per-event hook lists with priority ordering (#2798)
1273
+ - feat!: remove legacy --ai, --ai-commands-dir, and --ai-skills flags (0.10.0) (#2872)
1274
+ - chore: release 0.9.5, begin 0.9.6.dev0 development (#2875)
1275
+
1276
+ ## [0.9.5] - 2026-06-05
1277
+
1278
+ ### Changed
1279
+
1280
+ - feat(extensions): add bundled bug triage workflow extension (#2871)
1281
+ - fix: resolve GitHub release asset API URL for private repo preset and workflow downloads (#2855)
1282
+ - chore(deps): bump github/gh-aw-actions from 0.77.0 to 0.78.1 (#2860)
1283
+ - chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 (#2859)
1284
+ - chore(deps): bump astral-sh/setup-uv from 8.1.0 to 8.2.0 (#2858)
1285
+ - chore(deps): bump github/codeql-action from 4.36.0 to 4.36.2 (#2857)
1286
+ - fix(workflows): render gate show_file contents in the interactive prompt (#2810)
1287
+ - feat: add support for rovodev (#2539)
1288
+ - chore: release 0.9.4, begin 0.9.5.dev0 development (#2853)
1289
+
1290
+ ## [0.9.4] - 2026-06-04
1291
+
1292
+ ### Changed
1293
+
1294
+ - feat(workflows): add JSON output for workflow run resume and status (#2814)
1295
+ - Update workflow-preset community catalog to v1.3.2 (#2841)
1296
+ - fix: recover active skills registration for extensions (#2803)
1297
+ - fix(cursor-agent): enable headless CLI dispatch end-to-end (-p --trust --approve-mcps --force + Windows .cmd shim resolution) (#2631)
1298
+ - Update Superpowers Implementation Bridge extension to v1.0.2 (#2852)
1299
+ - docs(agents): add PR review response guidance to AGENTS.md (#2850)
1300
+ - Allow `specify workflow run` to execute YAML files without a project (#2825)
1301
+ - feat(extensions): add --force flag to extension add for overwrite reinstall (#2530)
1302
+ - chore: release 0.9.3, begin 0.9.4.dev0 development (#2836)
1303
+
1304
+ ## [0.9.3] - 2026-06-03
1305
+
1306
+ ### Changed
1307
+
1308
+ - fix: render script command hints with active agent separator (#2649)
1309
+ - chore(tests): fix ruff lint violations in tests/ (#2827)
1310
+ - fix(workflows): validate run_id in RunState.load before touching the … (#2813)
1311
+ - feat(cli): implement specify self upgrade (#2475)
1312
+ - feat(workflows): allow resume to accept updated workflow inputs (#2815)
1313
+ - catalog: rename "superpowers-bridge" to "superspec" (v1.0.1) (#2772)
1314
+ - fix(cli): force UTF-8 stdout/stderr on Windows to prevent UnicodeEncodeError (#2817)
1315
+ - fix(plan): clarify quickstart validation guide scope (#2805)
1316
+ - chore: release 0.9.2, begin 0.9.3.dev0 development (#2823)
1317
+
1318
+ ## [0.9.2] - 2026-06-02
1319
+
1320
+ ### Changed
1321
+
1322
+ - Update agent parity governance preset catalog entry (#2777)
1323
+ - fix: resolve GitHub release asset API URL for private repo extension downloads (#2792)
1324
+ - fix: remove unsupported mode: frontmatter from Copilot skills mode (fixes #2799) (#2819)
1325
+ - refactor(integrations): co-locate integration commands in integrations/ domain dir (PR-5/8) (#2720)
1326
+ - Update Product Forge extension to v1.6.0 (#2820)
1327
+ - feat(workflows): add continue_on_error step field for non-halting failures (#2663)
1328
+ - chore: add .editorconfig for consistent code formatting (#2366)
1329
+ - fix(shared-infra): record skipped files in speckit.manifest.json (#2483)
1330
+ - chore: release 0.9.1, begin 0.9.2.dev0 development (#2818)
1331
+
1332
+ ## [0.9.1] - 2026-06-02
1333
+
1334
+ ### Changed
1335
+
1336
+ - fix(cli): pin UTF-8 encoding on init-options and .extensionignore I/O (#2686)
1337
+ - docs: list Hermes in supported integrations table (#2768)
1338
+ - fix(copilot): resolve active spec template (#2765)
1339
+ - fix: add missing agent-context extension entries to Cline _expected_files (#2797)
1340
+ - Add spec-kit-linear extension to community catalog (#2795)
1341
+ - feat: add native Cline integration (#2508)
1342
+ - Update workflow-preset community catalog entry (#2756)
1343
+ - chore: release 0.9.0, begin 0.9.1.dev0 development (#2794)
1344
+ - Add RAG Azure Builder extension to community catalog (#2793)
1345
+
1346
+ ## [0.9.0] - 2026-06-01
1347
+
1348
+ ### Changed
1349
+
1350
+ - chore: recompile workflow lock files (#2774)
1351
+ - Add Multi-Sites Spec Kit extension to community catalog (#2791)
1352
+ - Update Product Spec Extension to v0.8.3 (#2790)
1353
+ - Publish May 2026 Newsletter (#2787)
1354
+ - fix: move URL install confirmation prompt before spinner (#2783) (#2784)
1355
+ - Update Reqnroll BDD extension to v1.1.0 (#2775)
1356
+ - Extract agent context updates into bundled agent-context extension (#2546)
1357
+ - chore(deps): bump actions/setup-dotnet from 5.2.0 to 5.3.0 (#2755)
1358
+ - chore: release 0.8.18, begin 0.8.19.dev0 development (#2766)
1359
+
1360
+ ## [0.8.18] - 2026-05-29
1361
+
1362
+ ### Changed
1363
+
1364
+ - Add support for SPECKIT_WORKFLOW_RUN_ID override (#2742)
1365
+ - feat: support SPECKIT_INTEGRATION_<KEY>_EXECUTABLE env var (#2743)
1366
+ - chore(deps): bump github/gh-aw-actions from 0.74.8 to 0.77.0 (#2754)
1367
+ - chore(deps): bump github/codeql-action from 4.35.5 to 4.36.0 (#2753)
1368
+ - fix: disable no-op issue reporting for catalog submission workflows (#2748)
1369
+ - Add confirmation prompt for URL-based extension installs (#2745)
1370
+ - fix: restrict community submission workflows to labeled event only (#2741)
1371
+ - feat(integrations): support SPECIFY_<KEY>_EXTRA_ARGS env var for agent subprocess flags (#2596)
1372
+ - chore: release 0.8.17, begin 0.8.18.dev0 development (#2737)
1373
+
1374
+ ## [0.8.17] - 2026-05-28
1375
+
1376
+ ### Changed
1377
+
1378
+ - docs: consolidate Community sections in README (#2736)
1379
+ - Fix shared script command hints for integration separators (#2627)
1380
+ - docs: update security-governance preset to v0.4.0 (#2703)
1381
+ - feat(agy): enhance Google Antigravity CLI integration (#2689)
1382
+ - Fix --dev extension agent symlinks (#2554)
1383
+ - Share skills hook note post-processing (#2679)
1384
+ - feat: add Hermes Agent integration (with review fixes) (#2651)
1385
+ - Update Superpowers Implementation Bridge to v0.7.0 (#2732)
1386
+ - chore: release 0.8.16, begin 0.8.17.dev0 development (#2729)
1387
+
1388
+ ## [0.8.16] - 2026-05-27
1389
+
1390
+ ### Changed
1391
+
1392
+ - docs: update landing page stats and branch naming convention (#2727)
1393
+ - feat(workflows): expose {{ context.run_id }} template variable (#2664)
1394
+ - fix: resolve __SPECKIT_COMMAND_*__ refs in preset skill rendering (#2717) (#2718)
1395
+ - Add Workflow Preset to community catalog (#2725)
1396
+ - fix: paths-only skips branch validation, setup-plan preserves existing plan (#2672)
1397
+ - docs: fix broken pipx homepage URLs to point to pipx.pypa.io (#2670)
1398
+ - Update Architecture Guard extension to v1.8.9 (#2723)
1399
+ - Re-validate spec quality checklist after clarify updates spec (#2715)
1400
+ - chore: release 0.8.15, begin 0.8.16.dev0 development (#2722)
1401
+
1402
+ ## [0.8.15] - 2026-05-27
1403
+
1404
+ ### Changed
1405
+
1406
+ - Update Fiction Book Writing preset to v1.8.1 (#2714)
1407
+ - chore: update memorylint and superb to 1.4.0 (#2690)
1408
+ - fix: promote post-execution hook dispatch to H2 with directive language (#2713)
1409
+ - Add Token Budget extension to community catalog (#2712)
1410
+ - fix: create skills directory on demand during extension/preset install (#2711)
1411
+ - fix: PS 5.1 compat — replace non-ASCII chars in shipped PowerShell scripts (#2709)
1412
+ - docs: update security-governance preset to v0.3.0 (#2676)
1413
+ - Update README.md (#2675)
1414
+ - chore: release 0.8.14, begin 0.8.15.dev0 development (#2706)
1415
+
1416
+ ## [0.8.14] - 2026-05-26
1417
+
1418
+ ### Changed
1419
+
1420
+ - Add util for windows sub-process (#2598)
1421
+ - refactor: create commands/ package and move init handler (PR-4/8) (#2615)
1422
+ - Add Product Spec Extension to community catalog (#2705)
1423
+ - fix init-options speckit version refresh (#2647)
1424
+ - chore(deps): bump github/gh-aw-actions from 0.74.8 to 0.74.9 (#2658)
1425
+ - docs: add branch naming convention to AGENTS.md and CONTRIBUTING.md (#2678)
1426
+ - chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (#2657)
1427
+ - chore(deps): bump github/codeql-action from 4.35.4 to 4.35.5 (#2656)
1428
+ - chore: release 0.8.13, begin 0.8.14.dev0 development (#2669)
1429
+
1430
+ ## [0.8.13] - 2026-05-21
1431
+
1432
+ ### Changed
1433
+
1434
+ - fix: while/do-while loop condition reads stale iteration-0 step output (#2662)
1435
+ - docs: fix directory hierarchy in README examples (#2639)
1436
+ - fix(catalogs): reject boolean priority in extension and preset catalog readers (#2589)
1437
+ - Update Agent Governance extension to v1.2.0 (#2659)
1438
+ - Add agentic workflows for community catalog submissions (#2655)
1439
+ - feat: add self-check tip to check output (#2574)
1440
+ - fix(cli): clarify exception diagnostics (#2602)
1441
+ - ci: add diff whitespace check (#2572)
1442
+ - chore: release 0.8.12, begin 0.8.13.dev0 development (#2648)
1443
+
1444
+ ## [0.8.12] - 2026-05-20
1445
+
1446
+ ### Changed
1447
+
1448
+ - fix(codex): inject dot-to-hyphen hook command note in Codex skills (#2503)
1449
+ - Update Squad Bridge extension to v1.3.0 (#2645)
1450
+ - Update Superpowers Implementation Bridge extension to v0.5.0 (#2644)
1451
+ - Add Team Assign extension to community catalog (#2642)
1452
+ - refactor: migrate extension catalog stack parsing to shared base (#2576)
1453
+ - Update Architecture Workflow extension to v1.1.0 (#2588)
1454
+ - fix(workflow): support integration: auto to follow project's initialized AI (#2421)
1455
+ - Add Superpowers Implementation Bridge extension to community catalog (#2586)
1456
+ - Add Interactive HTML Preview extension to community catalog (#2585)
1457
+ - chore: release 0.8.11, begin 0.8.12.dev0 development (#2584)
1458
+ - Update Agent Governance extension to v1.1.0 (#2583)
1459
+
1460
+ ## [0.8.11] - 2026-05-15
1461
+
1462
+ ### Changed
1463
+
1464
+ - refactor: extract _version.py from __init__.py (PR-3/8) (#2550)
1465
+ - Add Time Machine extension to community catalog (#2580)
1466
+ - fix(powershell): ensure UTF-8 templates are written without BOM (#2280)
1467
+ - docs: document high-assurance spec workflow (#2518)
1468
+ - docs: fix script name in directory tree examples (#2555)
1469
+ - Fix preset skill description precedence (#2538)
1470
+ - fix(integration): clarify multi-install guidance (#2549)
1471
+ - feat: add version feature reporting (#2548)
1472
+ - Add Architecture Workflow extension to community catalog (#2565)
1473
+ - chore: release 0.8.10, begin 0.8.11.dev0 development (#2562)
1474
+
1475
+ ## [0.8.10] - 2026-05-14
1476
+
1477
+ ### Changed
1478
+
1479
+ - docs: streamline install section and add community overview (#2561)
1480
+ - Move community extensions table from README to docs site (#2560)
1481
+ - Add Agent Governance extension to community catalog (#2559)
1482
+ - Add Reqnroll BDD extension to community catalog (#2545)
1483
+ - fix(cli): harden extension registration and discovery workflows (#2499)
1484
+ - refactor: extract _assets.py and _utils.py from __init__.py (PR-2/8) (#2543)
1485
+ - fix(opencode): use commands/ directory (plural) to match OpenCode docs (#2453)
1486
+ - refactor: extract _console.py from __init__.py (PR-1/8) (#2474)
1487
+ - Fix constitution reference in README (#2491)
1488
+ - chore: release 0.8.9, begin 0.8.10.dev0 development (#2532)
1489
+
1490
+ ## [0.8.9] - 2026-05-12
1491
+
1492
+ ### Changed
1493
+
1494
+ - docs: revamp landing page with four-pillar card layout (#2531)
1495
+ - feat(extensions): update governance ecosystem extensions to latest versions (#2514)
1496
+ - Add changelog extension (#2177)
1497
+ - Add install directory to docfx.json file references (#2522)
1498
+ - feat(catalog): add BrownKit (brownkit) community extension (#2510) (#2520)
1499
+ - fix(kiro-cli): replace literal $ARGUMENTS with prose fallback (#2482)
1500
+ - Preset: Add game-narrative-writing preset to community catalog (#2454)
1501
+ - docs: clarify CLI upgrade discovery (#2519)
1502
+ - fix: make template metadata line breaks markdownlint-safe (#2505)
1503
+ - refactor(catalogs): extract integration catalog config loading (#2497)
1504
+ - test(presets): silence expected UserWarnings in self-test composition… (#2373)
1505
+ - chore: release 0.8.8, begin 0.8.9.dev0 development (#2516)
1506
+
1507
+ ## [0.8.8] - 2026-05-11
1508
+
1509
+ ### Changed
1510
+
1511
+ - chore(deps): bump actions/checkout from 4.3.1 to 6.0.2 (#2486)
1512
+ - feat(catalog): add Spec Kit Schedule (schedule) community extension (#2473)
1513
+ - fix(integration): refresh shared infra on `integration switch` (#2375)
1514
+ - Add MDE preset to community catalog (#2513)
1515
+ - Add MDE extension to community catalog (#2512)
1516
+ - chore: update community catalog with latest extension versions (#2490)
1517
+ - chore(deps): bump actions/setup-dotnet from 4.3.1 to 5.2.0 (#2489)
1518
+ - chore(deps): bump actions/github-script from 7 to 9 (#2488)
1519
+ - chore(deps): bump DavidAnson/markdownlint-cli2-action (#2487)
1520
+ - chore(deps): bump github/codeql-action from 4.35.3 to 4.35.4 (#2485)
1521
+ - feat(catalog): add API Evolve (api-evolve) community extension (#2479)
1522
+ - feat: Config-driven opt-in authentication registry with multi-platform support (#2393)
1523
+ - chore: release 0.8.7, begin 0.8.8.dev0 development (#2480)
1524
+
1525
+ ## [0.8.7] - 2026-05-07
1526
+
1527
+ ### Changed
1528
+
1529
+ - feat: add agent-orchestrator to community extension catalog (#2236)
1530
+ - chore: update extension versions in community catalog (#2468)
1531
+ - fix(goose): Declare args parameter in generated recipes (#2402)
1532
+ - feat: Add lingma support (#2348)
1533
+ - docs: Add uv installation guide and inline callouts (#2465)
1534
+ - Add fx-to-dotnet to community extension catalog (#2471)
1535
+ - fix: default non-interactive init to copilot integration (#2414)
1536
+ - fix(forge): use hyphen notation for command refs in Forge integration (#2462)
1537
+ - feat(catalog): add Cost Tracker (cost) community extension (#2448)
1538
+ - chore: release 0.8.6, begin 0.8.7.dev0 development (#2463)
1539
+
1540
+ ## [0.8.6] - 2026-05-06
1541
+
1542
+ ### Changed
1543
+
1544
+ - Load constitution context in `/speckit.implement` to enforce governance during implementation (#2460)
1545
+ - feat: improve catalog submission templates and CODEOWNERS (#2401)
1546
+ - fix: validate URL scheme in build_github_request (#2449)
1547
+ - Add Architecture Guard to community catalog (#2430)
1548
+ - Add multi-model-review extension to community catalog (#2446)
1549
+ - Update Ralph Loop to v1.0.2 (#2435)
1550
+ - Pin GitHub Actions by SHA (#2441)
1551
+ - fix(workflows): require project for catalog list (#2436)
1552
+ - Add agent-parity-governance to community catalog (#2382)
1553
+ - chore: release 0.8.5, begin 0.8.6.dev0 development (#2447)
1554
+
1555
+ ## [0.8.5] - 2026-05-04
1556
+
1557
+ ### Changed
1558
+
1559
+ - feat(presets): add Spec2Cloud preset for Azure deployment workflow (#2413)
1560
+ - update security-review and memory-md extensions to latest versions (#2445)
1561
+ - fix: honor template overrides for tasks-template (#2278) (#2292)
1562
+ - Add token-analyzer to community catalog (#2433)
1563
+ - docs: add April 2026 newsletter (#2434)
1564
+ - feat: emit init-time notice for git extension default change (#2165) (#2432)
1565
+ - Update DyanGalih(Memory Hub and Security Review) community extensions (#2429)
1566
+ - Support controlled multi-install for safe AI agent integrations (#2389)
1567
+ - chore(integrations): clean up docs and project guard (#2428)
1568
+ - chore: release 0.8.4, begin 0.8.5.dev0 development (#2431)
1569
+
1570
+ ## [0.8.4] - 2026-05-01
1571
+
1572
+ ### Changed
1573
+
1574
+ - fix(specify): correct self-referencing step number in validation flow (#2152)
1575
+ - chore(deps): bump DavidAnson/markdownlint-cli2-action (#2425)
1576
+ - Add security-governance to community catalog (#2386)
1577
+ - Add cross-platform-governance to community catalog (#2384)
1578
+ - Add architecture-governance to community catalog (#2383)
1579
+ - Add a11y-governance to community catalog (#2381)
1580
+ - feat(extensions): add Spec2Cloud extension for Azure deployment workflow (#2412)
1581
+ - fix: migrate extension commands on integration switch (#2404)
1582
+ - feat: add Squad Bridge extension to community catalog (#2417)
1583
+ - chore: release 0.8.3, begin 0.8.4.dev0 development (#2418)
1584
+
1585
+ ## [0.8.3] - 2026-04-29
1586
+
1587
+ ### Changed
1588
+
1589
+ - Add Work IQ extension to community catalog (#2415)
1590
+ - feat(integrations): add Devin for Terminal skills-based integration (#2364)
1591
+ - fix: include --from git+... in upgrade hint to avoid PyPI squat package (#2411)
1592
+ - fix: dispatch opencode commands via run (#2410)
1593
+ - feat: add catalog discovery CLI commands (#2360)
1594
+ - update security review extension catalog to v1.3.0 (#2374)
1595
+ - chore(catalog): bump v-model extension to v0.6.0 (#2399)
1596
+ - feat: add threatmodel extension to community catalog (#2369)
1597
+ - Add isaqb-architecture-governance to community catalog (#2385)
1598
+ - chore: release 0.8.2, begin 0.8.3.dev0 development (#2397)
1599
+
1600
+ ## [0.8.2] - 2026-04-28
1601
+
1602
+ ### Changed
1603
+
1604
+ - Add MarkItDown Document Converter extension to community catalog (#2390)
1605
+ - feat: Speckit preset fiction book v1.7 - Support for RAG (Chroma DB) offline semantic search (#2367)
1606
+ - fix(extensions): use explicit UTF-8 encoding when reading manifest YAML (#2370)
1607
+ - catalog: add m365 community extension
1608
+ - docs: replace deprecated --ai flag with --integration in all documentation (#2359)
1609
+ - feat(extensions,presets): authenticate GitHub-hosted catalog and download requests with GITHUB_TOKEN/GH_TOKEN (#2331)
1610
+ - Update extensify to v1.1.0 in community catalog (#2337)
1611
+ - feat(init): deprecate --no-git flag, gate deprecations at v0.10.0 (#2357)
1612
+ - Add Spec Orchestrator extension to community catalog (#2350)
1613
+ - chore: release 0.8.1, begin 0.8.2.dev0 development (#2356)
1614
+
1615
+ ## [0.8.1] - 2026-04-24
1616
+
1617
+ ### Changed
1618
+
1619
+ - fix(plan): use .specify/feature.json to allow /speckit.plan on custom git branches (#2305) (#2349)
1620
+ - feat(vibe): migrate to SkillsIntegration from the old prompts-based MarkdownIntegration (#2336)
1621
+ - docs: move community presets table to docs site, add missing entries (#2341)
1622
+ - docs(presets): add lean preset README and enrich catalog metadata (#2340)
1623
+ - fix: resolve command references per integration type (dot vs hyphen) (#2354)
1624
+ - Update product-forge to v1.5.1 in community catalog (#2352)
1625
+ - chore(deps): bump astral-sh/setup-uv from 8.0.0 to 8.1.0 (#2345)
1626
+ - fix: replace xargs trim with sed to handle quotes in descriptions (#2351)
1627
+ - feat: register jira preset in community catalog (#2224)
1628
+ - feat: Preset screenwriting (#2332)
1629
+ - chore: release 0.8.0, begin 0.8.1.dev0 development (#2333)
1630
+
1631
+ ## [0.8.0] - 2026-04-23
1632
+
1633
+ ### Changed
1634
+
1635
+ - feat(presets): Composition strategies (prepend, append, wrap) for templates, commands, and scripts (#2133)
1636
+ - feat(copilot): support `--integration-options="--skills"` for skills-based scaffolding (#2324)
1637
+ - docs(install): add pipx as alternative installation method (#2288)
1638
+ - Add Memory MD community extension (#2327)
1639
+ - Update version-guard to v1.2.0 (#2321)
1640
+ - fix: `--force` now overwrites shared infra files during init and upgrade (#2320)
1641
+ - chore: release 0.7.5, begin 0.7.6.dev0 development (#2322)
1642
+
1643
+ ## [0.7.5] - 2026-04-22
1644
+
1645
+ ### Changed
1646
+
1647
+ - fix: resolve skill placeholders for all SKILL.md agents, not just codex/kimi (#2313)
1648
+ - feat(cli): add specify self check and self upgrade stub (#2316)
1649
+ - Update version-guard to v1.1.0 (#2318)
1650
+ - docs: move community presets from README to docs/community (#2314)
1651
+ - catalog: add wireframe extension (v0.1.1) (#2262)
1652
+ - Move community walkthroughs from README to docs/community (#2312)
1653
+ - docs(readme): list red-team in community-extensions table (#2311)
1654
+ - feat(catalog): add red-team extension to community catalog (#2306)
1655
+ - Add superpowers-bridge community extension (#2309)
1656
+ - feat: implement preset wrap strategy (#2189)
1657
+ - fix(agents): block directory traversal in command write paths (#2229) (#2296)
1658
+ - chore: release 0.7.4, begin 0.7.5.dev0 development (#2299)
1659
+
1660
+ ## [0.7.4] - 2026-04-21
1661
+
1662
+ ### Changed
1663
+
1664
+ - fix(copilot): use --yolo to grant all permissions in non-interactive mode (#2298)
1665
+ - feat: add CITATION.cff and .zenodo.json for academic citation support (#2291)
1666
+ - Add spec-validate to community catalog (#2274)
1667
+ - feat: register Ripple in community catalog (#2272)
1668
+ - Add version-guard to community catalog (#2286)
1669
+ - Add spec-reference-loader to community catalog (#2285)
1670
+ - Add memory-loader to community catalog (#2284)
1671
+ - fix(integrations): strip UTF-8 BOM when reading agent context files (#2283)
1672
+ - Preset fiction book writing1.6 (#2270)
1673
+ - fix(integrations): migrate Antigravity (agy) layout to .agents/ and deprecate --skills (#2276)
1674
+ - chore: release 0.7.3, begin 0.7.4.dev0 development (#2263)
1675
+
1676
+ ## [0.7.3] - 2026-04-17
1677
+
1678
+ ### Changed
1679
+
1680
+ - fix: replace shell-based context updates with marker-based upsert (#2259)
1681
+ - Add Community Friends page to docs site (#2261)
1682
+ - Add Spec Scope extension to community catalog (#2172)
1683
+ - docs: add Community-maintained plugin for Claude Code and GitHub Copilot CLI that installs Spec Kit skills via the plugin marketplace to README (#2250)
1684
+ - fix: suppress CRLF warnings in auto-commit.ps1 (#2258)
1685
+ - feat: register Blueprint in community catalog (#2252)
1686
+ - preset: Update preset-fiction-book-writing to community catalog -> v1.5.0 (#2256)
1687
+ - chore(deps): bump actions/upload-pages-artifact from 3 to 5 (#2251)
1688
+ - fix: add reference/*.md to docfx content glob (#2248)
1689
+ - chore: release 0.7.2, begin 0.7.3.dev0 development (#2247)
1690
+
1691
+ ## [0.7.2] - 2026-04-16
1692
+
1693
+ ### Changed
1694
+
1695
+ - docs: add core commands reference and simplify README CLI section (#2245)
1696
+ - docs: add workflows reference, reorganize into docs/reference/, and add --version flag (#2244)
1697
+ - docs: add presets reference page and rename pack_id to preset_id (#2243)
1698
+ - docs: add extensions reference page and integrations FAQ (#2242)
1699
+ - docs: consolidate integration documentation into docs/integrations.md (#2241)
1700
+ - feat: update memorylint and superpowers-bridge versions to 1.3.0 with new download URLs (#2240)
1701
+ - feat: Integration catalog — discovery, versioning, and community distribution (#2130)
1702
+ - Add Catalog CI extension to community catalog (#2239)
1703
+ - Added issues extension (#2194)
1704
+ - chore: release 0.7.1, begin 0.7.2.dev0 development (#2235)
1705
+
1706
+ ## [0.7.1] - 2026-04-15
1707
+
1708
+ ### Changed
1709
+
1710
+ - ci: add windows-latest to test matrix (#2233)
1711
+ - docs: remove deprecated --skip-tls references from local-development guide (#2231)
1712
+ - fix: allow Claude to chain skills for hook execution (#2227)
1713
+ - docs: merge TESTING.md into CONTRIBUTING.md, remove TESTING.md (#2228)
1714
+ - Add agent-assign extension to community catalog (#2030)
1715
+ - fix: unofficial PyPI warning (#1982) and legacy extension command name auto-correction (#2017) (#2027)
1716
+ - feat: register architect-preview in community catalog (#2214)
1717
+ - chore: deprecate --ai flag in favor of --integration on specify init (#2218)
1718
+ - chore: release 0.7.0, begin 0.7.1.dev0 development (#2217)
1719
+
1720
+ ## [0.7.0] - 2026-04-14
1721
+
1722
+ ### Changed
1723
+
1724
+ - Add workflow engine with catalog system (#2158)
1725
+ - docs(catalog): add claude-ask-questions to community preset catalog (#2191)
1726
+ - Add SFSpeckit — Salesforce SDD Extension (#2208)
1727
+ - feat(scripts): optional single-segment branch prefix for gitflow (#2202)
1728
+ - chore: release 0.6.2, begin 0.6.3.dev0 development (#2205)
1729
+ - Add Worktrees extension to community catalog (#2207)
1730
+ - feat: Update catalog.community.json for preset-fiction-book-writing (#2199)
1731
+
1732
+ ## [0.6.2] - 2026-04-13
1733
+
1734
+ ### Changed
1735
+
1736
+ - feat: Register "What-if Analysis" community extension (#2182)
1737
+ - feat: add GitHub Issues Integration to community catalog (#2188)
1738
+ - feat(agents): add Goose AI agent support (#2015)
1739
+ - Update ralph extension to v1.0.1 in community catalog (#2192)
1740
+ - fix: skip docs deployment workflow on forks (#2171)
1741
+ - chore: release 0.6.1, begin 0.6.2.dev0 development (#2162)
1742
+
1743
+ ## [0.6.1] - 2026-04-10
1744
+
1745
+ ### Changed
1746
+
1747
+ - feat: add bundled lean preset with minimal workflow commands (#2161)
1748
+ - Add Brownfield Bootstrap extension to community catalog (#2145)
1749
+ - Add CI Guard extension to community catalog (#2157)
1750
+ - Add SpecTest extension to community catalog (#2159)
1751
+ - fix: bundled extensions should not have download URLs (#2155)
1752
+ - Add PR Bridge extension to community catalog (#2148)
1753
+ - feat(cursor-agent): migrate from .cursor/commands to .cursor/skills (#2156)
1754
+ - Add TinySpec extension to community catalog (#2147)
1755
+ - chore: bump spec-kit-verify to 1.0.3 and spec-kit-review to 1.0.1 (#2146)
1756
+ - Add Status Report extension to community catalog (#2123)
1757
+ - chore: release 0.6.0, begin 0.6.1.dev0 development (#2144)
1758
+
1759
+ ## [0.6.0] - 2026-04-09
1760
+
1761
+ ### Changed
1762
+
1763
+ - Add Bugfix Workflow community extension to catalog and README (#2135)
1764
+ - Add Worktree Isolation extension to community catalog (#2143)
1765
+ - Add multi-repo-branching preset to community catalog (#2139)
1766
+ - Readme clarity (#2013)
1767
+ - Rewrite AGENTS.md for integration architecture (#2119)
1768
+ - docs: add SpecKit Companion to Community Friends section (#2140)
1769
+ - feat: add memorylint extension to community catalog (#2138)
1770
+ - chore: release 0.5.1, begin 0.5.2.dev0 development (#2137)
1771
+
1772
+ ## [0.5.1] - 2026-04-08
1773
+
1774
+ ### Changed
1775
+
1776
+ - fix: pin typer>=0.24.0 and click>=8.2.1 to fix import crash (#2136)
1777
+ - feat: update fleet extension to v1.1.0 (#2029)
1778
+ - fix(forge): use hyphen notation in frontmatter name field (#2075)
1779
+ - fix(bash): sed replacement escaping, BSD portability, dead cleanup in update-agent-context.sh (#2090)
1780
+ - Add Spec Diagram community extension to catalog and README (#2129)
1781
+ - feat: Git extension stage 2 — GIT_BRANCH_NAME override, --force for existing dirs, auto-install tests (#1940) (#2117)
1782
+ - fix(git): surface checkout errors for existing branches (#2122)
1783
+ - Add Branch Convention community extension to catalog and README (#2128)
1784
+ - docs: lighten March 2026 newsletter for readability (#2127)
1785
+ - fix: restore alias compatibility for community extensions (#2110) (#2125)
1786
+ - Added March 2026 newsletter (#2124)
1787
+ - Add Spec Refine community extension to catalog and README (#2118)
1788
+ - Add explicit-task-dependencies community preset to catalog and README (#2091)
1789
+ - Add toc-navigation community preset to catalog and README (#2080)
1790
+ - fix: prevent ambiguous TOML closing quotes when body ends with `"` (#2113) (#2115)
1791
+ - fix speckit issue for trae (#2112)
1792
+ - feat: Git extension stage 1 — bundled `extensions/git` with hooks on all core commands (#1941)
1793
+ - Upgraded confluence extension to v.1.1.1 (#2109)
1794
+ - Update V-Model Extension Pack to v0.5.0 (#2108)
1795
+ - Add canon extension and canon-core preset. (#2022)
1796
+ - [stage2] fix: serialize multiline descriptions in legacy TOML renderer (#2097)
1797
+ - [stage1] fix: strip YAML frontmatter from TOML integration prompts (#2096)
1798
+ - Add Confluence extension (#2028)
1799
+ - fix: accept 4+ digit spec numbers in tests and docs (#2094)
1800
+ - fix(scripts): improve git branch creation error handling (#2089)
1801
+ - Add optimize extension to community catalog (#2088)
1802
+ - feat: add "VS Code Ask Questions" preset (#2086)
1803
+ - Add security-review v1.1.1 to community extensions catalog (#2073)
1804
+ - Add `specify integration` subcommand for post-init integration management (#2083)
1805
+ - Remove template version info from CLI, fix Claude user-invocable, cleanup dead code (#2081)
1806
+ - fix: add user-invocable: true to skill frontmatter (#2077)
1807
+ - fix: add actions:write permission to stale workflow (#2079)
1808
+ - feat: add argument-hint frontmatter to Claude Code commands (#1951) (#2059)
1809
+ - Update conduct extension to v1.0.1 (#2078)
1810
+ - chore(deps): bump astral-sh/setup-uv from 7.6.0 to 8.0.0 (#2072)
1811
+ - chore(deps): bump actions/configure-pages from 5 to 6 (#2071)
1812
+ - feat: add spec-kit-fixit extension to community catalog (#2024)
1813
+ - chore: release 0.5.0, begin 0.5.1.dev0 development (#2070)
1814
+ - feat: add Forgecode agent support (#2034)
1815
+
1816
+ ## [0.5.0] - 2026-04-02
1817
+
1818
+ ### Changed
1819
+
1820
+ - Introduces DEVELOPMENT.md (#2069)
1821
+ - Update cc-sdd reference to cc-spex in Community Friends (#2007)
1822
+ - chore: release 0.4.5, begin 0.4.6.dev0 development (#2064)
1823
+
1824
+ ## [0.4.5] - 2026-04-02
1825
+
1826
+ ### Changed
1827
+
1828
+ - Stage 6: Complete migration — remove legacy scaffold path (#1924) (#2063)
1829
+ - Install Claude Code as native skills and align preset/integration flows (#2051)
1830
+ - Add repoindex 0402 (#2062)
1831
+ - Stage 5: Skills, Generic & Option-Driven Integrations (#1924) (#2052)
1832
+ - feat(scripts): add --dry-run flag to create-new-feature (#1998)
1833
+ - fix: support feature branch numbers with 4+ digits (#2040)
1834
+ - Add community content disclaimers (#2058)
1835
+ - docs: add community extensions website link to README and extensions docs (#2014)
1836
+ - docs: remove dead Cognitive Squad and Understanding extension links and from extensions/catalog.community.json (#2057)
1837
+ - Add fix-findings extension to community catalog (#2039)
1838
+ - Stage 4: TOML integrations — gemini and tabnine migrated to plugin architecture (#2050)
1839
+ - feat: add 5 lifecycle extensions to community catalog (#2049)
1840
+ - Stage 3: Standard markdown integrations — 19 agents migrated to plugin architecture (#2038)
1841
+ - chore: release 0.4.4, begin 0.4.5.dev0 development (#2048)
1842
+
1843
+ ## [0.4.4] - 2026-04-01
1844
+
1845
+ ### Changed
1846
+
1847
+ - Stage 2: Copilot integration — proof of concept with shared template primitives (#2035)
1848
+ - docs: sync AGENTS.md with AGENT_CONFIG for missing agents (#2025)
1849
+ - docs: ensure manual tests use local specify (#2020)
1850
+ - Stage 1: Integration foundation — base classes, manifest system, and registry (#1925)
1851
+ - fix: harden GitHub Actions workflows (#2021)
1852
+ - chore: use PEP 440 .dev0 versions on main after releases (#2032)
1853
+ - feat: add superpowers bridge extension to community catalog (#2023)
1854
+ - feat: add product-forge extension to community catalog (#2012)
1855
+ - feat(scripts): add --allow-existing-branch flag to create-new-feature (#1999)
1856
+ - fix(scripts): add correct path for copilot-instructions.md (#1997)
1857
+ - Update README.md (#1995)
1858
+ - fix: prevent extension command shadowing (#1994)
1859
+ - Fix Claude Code CLI detection for npm-local installs (#1978)
1860
+ - fix(scripts): honor PowerShell agent and script filters (#1969)
1861
+ - feat: add MAQA extension suite (7 extensions) to community catalog (#1981)
1862
+ - feat: add spec-kit-onboard extension to community catalog (#1991)
1863
+ - Add plan-review-gate to community catalog (#1993)
1864
+ - chore(deps): bump actions/deploy-pages from 4 to 5 (#1990)
1865
+ - chore(deps): bump DavidAnson/markdownlint-cli2-action from 19 to 23 (#1989)
1866
+ - chore: bump version to 0.4.3 (#1986)
1867
+
1868
+ ## [0.4.3] - 2026-03-26
1869
+
1870
+ ### Changed
1871
+
1872
+ - Unify Kimi/Codex skill naming and migrate legacy dotted Kimi dirs (#1971)
1873
+ - fix(ps1): replace null-conditional operator for PowerShell 5.1 compatibility (#1975)
1874
+ - chore: bump version to 0.4.2 (#1973)
1875
+
1876
+ ## [0.4.2] - 2026-03-25
1877
+
1878
+ ### Changed
1879
+
1880
+ - feat: Auto-register ai-skills for extensions whenever applicable (#1840)
1881
+ - docs: add manual testing guide for slash command validation (#1955)
1882
+ - Add AIDE, Extensify, and Presetify to community extensions (#1961)
1883
+ - docs: add community presets section to main README (#1960)
1884
+ - docs: move community extensions table to main README for discoverability (#1959)
1885
+ - docs(readme): consolidate Community Friends sections and fix ToC anchors (#1958)
1886
+ - fix(commands): rename NFR references to success criteria in analyze and clarify (#1935)
1887
+ - Add Community Friends section to README (#1956)
1888
+ - docs: add Community Friends section with Spec Kit Assistant VS Code extension (#1944)
1889
+
1890
+ ## [0.4.1] - 2026-03-24
1891
+
1892
+ ### Changed
1893
+
1894
+ - Add checkpoint extension (#1947)
1895
+ - fix(scripts): prioritize .specify over git for repo root detection (#1933)
1896
+ - docs: add AIDE extension demo to community projects (#1943)
1897
+ - fix(templates): add missing Assumptions section to spec template (#1939)
1898
+
1899
+ ## [0.4.0] - 2026-03-23
1900
+
1901
+ ### Changed
1902
+
1903
+ - fix(cli): add allow_unicode=True and encoding="utf-8" to YAML I/O (#1936)
1904
+ - fix(codex): native skills fallback refresh + legacy prompt suppression (#1930)
1905
+ - feat(cli): embed core pack in wheel for offline/air-gapped deployment (#1803)
1906
+ - ci: increase stale workflow operations-per-run to 250 (#1922)
1907
+ - docs: update publishing guide with Category and Effect columns (#1913)
1908
+ - fix: Align native skills frontmatter with install_ai_skills (#1920)
1909
+ - feat: add timestamp-based branch naming option for `specify init` (#1911)
1910
+ - docs: add Extension Comparison Guide for community extensions (#1897)
1911
+ - docs: update SUPPORT.md, fix issue templates, add preset submission template (#1910)
1912
+ - Add support for Junie (#1831)
1913
+ - feat: migrate Codex/agy init to native skills workflow (#1906)
1914
+
1915
+ ## [0.3.2] - 2026-03-19
1916
+
1917
+ ### Changed
1918
+
1919
+ - Add conduct extension to community catalog (#1908)
1920
+ - feat(extensions): add verify-tasks extension to community catalog (#1871)
1921
+ - feat(presets): add enable/disable toggle and update semantics (#1891)
1922
+ - feat: add iFlow CLI support (#1875)
1923
+ - feat(commands): wire before/after hook events into specify and plan templates (#1886)
1924
+ - docs(catalog): add speckit-utils to community catalog (#1896)
1925
+ - docs: Add Extensions & Presets section to README (#1898)
1926
+ - chore: update DocGuard extension to v0.9.11 (#1899)
1927
+ - Update cognitive-squad catalog entry — Triadic Model, full lifecycle (#1884)
1928
+ - feat: register spec-kit-iterate extension (#1887)
1929
+ - fix(scripts): add explicit positional binding to PowerShell create-new-feature params (#1885)
1930
+ - fix(scripts): encode residual JSON control chars as \uXXXX instead of stripping (#1872)
1931
+ - chore: update DocGuard extension to v0.9.10 (#1890)
1932
+ - Feature/spec kit add pi coding agent pullrequest (#1853)
1933
+ - feat: register spec-kit-learn extension (#1883)
1934
+
1935
+ ## [0.3.1] - 2026-03-17
1936
+
1937
+ ### Changed
1938
+
1939
+ - docs: add greenfield Spring Boot pirate-speak preset demo to README (#1878)
1940
+ - fix(ai-skills): exclude non-speckit copilot agent markdown from skills (#1867)
1941
+ - feat: add Trae IDE support as a new agent (#1817)
1942
+ - feat(cli): polite deep merge for settings.json and support JSONC (#1874)
1943
+ - feat(extensions,presets): add priority-based resolution ordering (#1855)
1944
+ - fix(scripts): suppress stdout from git fetch in create-new-feature.sh (#1876)
1945
+ - fix(scripts): harden bash scripts — escape, compat, and error handling (#1869)
1946
+ - Add cognitive-squad to community extension catalog (#1870)
1947
+ - docs: add Go / React brownfield walkthrough to community walkthroughs (#1868)
1948
+ - chore: update DocGuard extension to v0.9.8 (#1859)
1949
+ - Feature: add specify status command (#1837)
1950
+ - fix(extensions): show extension ID in list output (#1843)
1951
+ - feat(extensions): add Archive and Reconcile extensions to community catalog (#1844)
1952
+ - feat: Add DocGuard CDD enforcement extension to community catalog (#1838)
1953
+
1954
+ ## [0.3.0] - 2026-03-13
1955
+
1956
+ ### Changed
1957
+
1958
+ - feat(presets): Pluggable preset system with catalog, resolver, and skills propagation (#1787)
1959
+ - fix: match 'Last updated' timestamp with or without bold markers (#1836)
1960
+ - Add specify doctor command for project health diagnostics (#1828)
1961
+ - fix: harden bash scripts against shell injection and improve robustness (#1809)
1962
+ - fix: clean up command templates (specify, analyze) (#1810)
1963
+ - fix: migrate Qwen Code CLI from TOML to Markdown format (#1589) (#1730)
1964
+ - fix(cli): deprecate explicit command support for agy (#1798) (#1808)
1965
+ - Add /selftest.extension core extension to test other extensions (#1758)
1966
+ - feat(extensions): Quality of life improvements for RFC-aligned catalog integration (#1776)
1967
+ - Add Java brownfield walkthrough to community walkthroughs (#1820)
1968
+
1969
+ ## [0.2.1] - 2026-03-11
1970
+
1971
+ ### Changed
1972
+
1973
+ - Added February 2026 newsletter (#1812)
1974
+ - feat: add Kimi Code CLI agent support (#1790)
1975
+ - docs: fix broken links in quickstart guide (#1759) (#1797)
1976
+ - docs: add catalog cli help documentation (#1793) (#1794)
1977
+ - fix: use quiet checkout to avoid exception on git checkout (#1792)
1978
+ - feat(extensions): support .extensionignore to exclude files during install (#1781)
1979
+ - feat: add Codex support for extension command registration (#1767)
1980
+
1981
+ ## [0.2.0] - 2026-03-09
1982
+
1983
+ ### Changed
1984
+
1985
+ - fix: sync agent list comments with actual supported agents (#1785)
1986
+ - feat(extensions): support multiple active catalogs simultaneously (#1720)
1987
+ - Pavel/add tabnine cli support (#1503)
1988
+ - Add Understanding extension to community catalog (#1778)
1989
+ - Add ralph extension to community catalog (#1780)
1990
+ - Update README with project initialization instructions (#1772)
1991
+ - feat: add review extension to community catalog (#1775)
1992
+ - Add fleet extension to community catalog (#1771)
1993
+ - Integration of Mistral vibe support into speckit (#1725)
1994
+ - fix: Remove duplicate options in specify.md (#1765)
1995
+ - fix: use global branch numbering instead of per-short-name detection (#1757)
1996
+ - Add Community Walkthroughs section to README (#1766)
1997
+ - feat(extensions): add Jira Integration to community catalog (#1764)
1998
+ - Add Azure DevOps Integration extension to community catalog (#1734)
1999
+ - Fix docs: update Antigravity link and add initialization example (#1748)
2000
+ - fix: wire after_tasks and after_implement hook events into command templates (#1702)
2001
+ - make c ignores consistent with c++ (#1747)
2002
+
2003
+ ## [0.1.13] - 2026-03-03
2004
+
2005
+ ### Changed
2006
+
2007
+ - feat: add kiro-cli and AGENT_CONFIG consistency coverage (#1690)
2008
+ - feat: add verify extension to community catalog (#1726)
2009
+ - Add Retrospective Extension to community catalog README table (#1741)
2010
+ - fix(scripts): add empty description validation and branch checkout error handling (#1559)
2011
+ - fix: correct Copilot extension command registration (#1724)
2012
+ - fix(implement): remove Makefile from C ignore patterns (#1558)
2013
+ - Add sync extension to community catalog (#1728)
2014
+ - fix(checklist): clarify file handling behavior for append vs create (#1556)
2015
+ - fix(clarify): correct conflicting question limit from 10 to 5 (#1557)
2016
+
2017
+ ## [0.1.12] - 2026-03-02
2018
+
2019
+ ### Changed
2020
+
2021
+ - fix: use RELEASE_PAT so tag push triggers release workflow (#1736)
2022
+
2023
+ ## [0.1.11] - 2026-03-02
2024
+
2025
+ ### Changed
2026
+
2027
+ - fix: release-trigger uses release branch + PR instead of direct push to main (#1733)
2028
+ - fix: Split release process to sync pyproject.toml version with git tags (#1732)
2029
+
2030
+ ## [0.1.10] - 2026-02-27
2031
+
2032
+ ### Changed
2033
+
2034
+ - fix: prepend YAML frontmatter to Cursor .mdc files (#1699)
2035
+
2036
+ ## [0.1.9] - 2026-02-28
2037
+
2038
+ ### Changed
2039
+
2040
+ - chore(deps): bump astral-sh/setup-uv from 6 to 7 (#1709)
2041
+
2042
+ ## [0.1.8] - 2026-02-28
2043
+
2044
+ ### Changed
2045
+
2046
+ - chore(deps): bump actions/setup-python from 5 to 6 (#1710)
2047
+
2048
+ ## [0.1.7] - 2026-02-27
2049
+
2050
+ ### Changed
2051
+
2052
+ - chore: Update outdated GitHub Actions versions (#1706)
2053
+ - docs: Document dual-catalog system for extensions (#1689)
2054
+ - Fix version command in documentation (#1685)
2055
+ - Add Cleanup Extension to README (#1678)
2056
+ - Add retrospective extension to community catalog (#1681)
2057
+
2058
+ ## [0.1.6] - 2026-02-23
2059
+
2060
+ ### Changed
2061
+
2062
+ - Add Cleanup Extension to catalog (#1617)
2063
+ - Fix parameter ordering issues in CLI (#1669)
2064
+ - Update V-Model Extension Pack to v0.4.0 (#1665)
2065
+ - docs: Fix doc missing step (#1496)
2066
+ - Update V-Model Extension Pack to v0.3.0 (#1661)
2067
+
2068
+ ## [0.1.5] - 2026-02-21
2069
+
2070
+ ### Changed
2071
+
2072
+ - Fix #1658: Add commands_subdir field to support non-standard agent directory structures (#1660)
2073
+ - feat: add GitHub issue templates (#1655)
2074
+ - Update V-Model Extension Pack to v0.2.0 in community catalog (#1656)
2075
+ - Add V-Model Extension Pack to catalog (#1640)
2076
+ - refactor: remove OpenAPI/GraphQL bias from templates (#1652)
2077
+
2078
+ ## [0.1.4] - 2026-02-20
2079
+
2080
+ ### Changed
2081
+
2082
+ - fix: rename Qoder AGENT_CONFIG key from 'qoder' to 'qodercli' to match actual CLI executable (#1651)
2083
+
2084
+ ## [0.1.3] - 2026-02-20
2085
+
2086
+ ### Changed
2087
+
2088
+ - Add generic agent support with customizable command directories (#1639)
2089
+
2090
+ ## [0.1.2] - 2026-02-20
2091
+
2092
+ ### Changed
2093
+
2094
+ - fix: pin click>=8.1 to prevent Python 3.14/Homebrew env isolation crash (#1648)
2095
+
2096
+ ## [0.0.102] - 2026-02-20
2097
+
2098
+ ### Changed
2099
+
2100
+ - fix: include 'src/**' path in release workflow triggers (#1646)
2101
+
2102
+ ## [0.0.101] - 2026-02-19
2103
+
2104
+ ### Changed
2105
+
2106
+ - chore(deps): bump github/codeql-action from 3 to 4 (#1635)
2107
+
2108
+ ## [0.0.100] - 2026-02-19
2109
+
2110
+ ### Changed
2111
+
2112
+ - Add pytest and Python linting (ruff) to CI (#1637)
2113
+ - feat: add pull request template for better contribution guidelines (#1634)
2114
+
2115
+ ## [0.0.99] - 2026-02-19
2116
+
2117
+ ### Changed
2118
+
2119
+ - Feat/ai skills (#1632)
2120
+
2121
+ ## [0.0.98] - 2026-02-19
2122
+
2123
+ ### Changed
2124
+
2125
+ - chore(deps): bump actions/stale from 9 to 10 (#1623)
2126
+ - feat: add dependabot configuration for pip and GitHub Actions updates (#1622)
2127
+
2128
+ ## [0.0.97] - 2026-02-18
2129
+
2130
+ ### Changed
2131
+
2132
+ - Remove Maintainers section from README.md (#1618)
2133
+
2134
+ ## [0.0.96] - 2026-02-17
2135
+
2136
+ ### Changed
2137
+
2138
+ - fix: typo in plan-template.md (#1446)
2139
+
2140
+ ## [0.0.95] - 2026-02-12
2141
+
2142
+ ### Changed
2143
+
2144
+ - Feat: add a new agent: Google Anti Gravity (#1220)
2145
+
2146
+ ## [0.0.94] - 2026-02-11
2147
+
2148
+ ### Changed
2149
+
2150
+ - Add stale workflow for 180-day inactive issues and PRs (#1594)
2151
+
2152
+ ## [0.0.93] - 2026-02-10
2153
+
2154
+ ### Changed
2155
+
2156
+ - Add modular extension system (#1551)
2157
+
2158
+ ## [0.0.92] - 2026-02-10
2159
+
2160
+ ### Changed
2161
+
2162
+ - Fixes #1586 - .specify.specify path error (#1588)
2163
+
2164
+ ## [0.0.91] - 2026-02-09
2165
+
2166
+ ### Changed
2167
+
2168
+ - fix: preserve constitution.md during reinitialization (#1541) (#1553)
2169
+ - fix: resolve markdownlint errors across documentation (#1571)
2170
+
2171
+ ## [0.0.90] - 2025-12-04
2172
+
2173
+ ### Changed
2174
+
2175
+ - Update Markdown formatting
2176
+ - Update Markdown formatting
2177
+ - docs: Add existing project initialization to getting started
2178
+
2179
+ ## [0.0.89] - 2025-12-02
2180
+
2181
+ ### Changed
2182
+
2183
+ - Update scripts/bash/create-new-feature.sh
2184
+ - fix(scripts): prevent octal interpretation in feature number parsing
2185
+ - fix: remove unused short_name parameter from branch numbering functions
2186
+ - Update scripts/powershell/create-new-feature.ps1
2187
+ - Update scripts/bash/create-new-feature.sh
2188
+ - fix: use global maximum for branch numbering to prevent collisions
2189
+
2190
+ ## [0.0.88] - 2025-12-01
2191
+
2192
+ ### Changed
2193
+
2194
+ - fix the incorrect task-template file path
2195
+
2196
+ ## [0.0.87] - 2025-12-01
2197
+
2198
+ ### Changed
2199
+
2200
+ - Limit width and height to 200px to match the small logo
2201
+ - docs: Switch readme logo to logo_large.webp
2202
+ - fix:merge
2203
+ - fix
2204
+ - fix
2205
+ - feat:qoder agent
2206
+ - docs: Enhance quickstart guide with admonitions and examples
2207
+ - docs: add constitution step to quickstart guide (fixes #906)
2208
+ - Update supported AI agents in README.md
2209
+ - cancel:test
2210
+ - test
2211
+ - fix:literal bug
2212
+ - fix:test
2213
+ - test
2214
+ - fix:qoder url
2215
+ - fix:download owner
2216
+ - test
2217
+ - feat:support Qoder CLI
2218
+
2219
+ ## [0.0.86] - 2025-11-26
2220
+
2221
+ ### Changed
2222
+
2223
+ - feat: add bob to new update-agent-context.ps1 + consistency in comments
2224
+ - feat: add support for IBM Bob IDE
2225
+
2226
+ ## [0.0.85] - 2025-11-14
2227
+
2228
+ ### Changed
2229
+
2230
+ - Unset CDPATH while getting SCRIPT_DIR
2231
+
2232
+ ## [0.0.84] - 2025-11-14
2233
+
2234
+ ### Changed
2235
+
2236
+ - docs: fix broken link and improve agent reference
2237
+ - docs: reorganize upgrade documentation structure
2238
+ - docs: remove related documentation section from upgrading guide
2239
+ - fix: remove broken link to existing project guide
2240
+ - docs: Add comprehensive upgrading guide for Spec Kit
2241
+ - Refactor ESLint configuration checks in implement.md to address deprecation
2242
+
2243
+ ## [0.0.83] - 2025-11-14
2244
+
2245
+ ### Changed
2246
+
2247
+ - feat: Add OVHcloud SHAI AI Agent
2248
+
2249
+ ## [0.0.82] - 2025-11-14
2250
+
2251
+ ### Changed
2252
+
2253
+ - fix: incorrect logic to create release packages with subset AGENTS or SCRIPTS
2254
+
2255
+ ## [0.0.81] - 2025-11-14
2256
+
2257
+ ### Changed
2258
+
2259
+ - Fix tasktoissues.md to use the 'github/github-mcp-server/issue_write' tool
2260
+
2261
+ ## [0.0.80] - 2025-11-14
2262
+
2263
+ ### Changed
2264
+
2265
+ - Refactor feature script logic and update agent context scripts
2266
+ - Update templates/commands/taskstoissues.md
2267
+ - Update CHANGELOG.md
2268
+ - Update agent configuration
2269
+ - Update scripts/powershell/create-new-feature.ps1
2270
+ - Update src/specify_cli/__init__.py
2271
+ - Create create-release-packages.ps1
2272
+ - Script changes
2273
+ - Update taskstoissues.md
2274
+ - Create taskstoissues.md
2275
+ - Update src/specify_cli/__init__.py
2276
+ - Update CONTRIBUTING.md
2277
+ - Potential fix for code scanning alert no. 3: Workflow does not contain permissions
2278
+ - Update src/specify_cli/__init__.py
2279
+ - Update CHANGELOG.md
2280
+ - Fixes #970
2281
+ - Fixes #975
2282
+ - Support for version command
2283
+ - Exclude generated releases
2284
+ - Lint fixes
2285
+ - Prompt updates
2286
+ - Hand offs with prompts
2287
+ - Chatmodes are back in vogue
2288
+ - Let's switch to proper prompts
2289
+ - Update prompts
2290
+ - Update with prompt
2291
+ - Testing hand-offs
2292
+ - Use VS Code handoffs
2293
+
2294
+ ## [0.0.79] - 2025-10-23
2295
+
2296
+ ### Changed
2297
+
2298
+ - docs: restore important note about JSON output in specify command
2299
+ - fix: improve branch number detection to check all sources
2300
+ - feat: check remote branches to prevent duplicate branch numbers
2301
+
2302
+ ## [0.0.78] - 2025-10-21
2303
+
2304
+ ### Changed
2305
+
2306
+ - Update CONTRIBUTING.md
2307
+ - docs: add steps for testing template and command changes locally
2308
+ - update specify to make "short-name" argu for create-new-feature.sh in the right position
2309
+
2310
+ ## [0.0.77] - 2025-10-21
2311
+
2312
+ ### Changed
2313
+
2314
+ - fix: include the latest changelog in the `GitHub Release`'s body
2315
+
2316
+ ## [0.0.76] - 2025-10-21
2317
+
2318
+ ### Changed
2319
+
2320
+ - Fix update-agent-context.sh to handle files without Active Technologies/Recent Changes sections
2321
+
2322
+ ## [0.0.75] - 2025-10-21
2323
+
2324
+ ### Changed
2325
+
2326
+ - Fixed indentation.
2327
+ - Added correct `install_url` for Amp agent CLI script.
2328
+ - Added support for Amp code agent.
2329
+
2330
+ ## [0.0.74] - 2025-10-21
2331
+
2332
+ ### Changed
2333
+
2334
+ - feat(ci): add markdownlint-cli2 for consistent markdown formatting
2335
+
2336
+ ## [0.0.73] - 2025-10-21
2337
+
2338
+ ### Changed
2339
+
2340
+ - revert vscode auto remove extra space
2341
+ - fix: correct command references in implement.md
2342
+ - fix regarding copilot suggestion
2343
+ - fix: correct command references in speckit.analyze.md
2344
+ - Support more lang/Devops of Common Patterns by Technology
2345
+ - chore: replace `bun` by `node/npm` in the `devcontainer` (as many CLI-based agents actually require a `node` runtime)
2346
+ - chore: add Claude Code extension to devcontainer configuration
2347
+ - chore: add installation of `codebuddy` CLI in the `devcontainer`
2348
+ - chore: fix path to powershell script in vscode settings
2349
+ - fix: correct `run_command` exit behavior and improve installation instructions (for `Amazon Q`) in `post-create.sh` + fix typos in `CONTRIBUTING.md`
2350
+ - chore: add `specify`'s github copilot chat settings to `devcontainer`
2351
+ - chore: add `devcontainer` support to ease developer workstation setup
2352
+
2353
+ ## [0.0.72] - 2025-10-18
2354
+
2355
+ ### Changed
2356
+
2357
+ - fix: correct argument parsing in create-new-feature.sh script
2358
+
2359
+ ## [0.0.71] - 2025-10-18
2360
+
2361
+ ### Changed
2362
+
2363
+ - fix: Skip CLI checks for IDE-based agents in check command
2364
+ - Change loop condition to include last argument
2365
+
2366
+ ## [0.0.70] - 2025-10-18
2367
+
2368
+ ### Changed
2369
+
2370
+ - fix: broken media files
2371
+ - Update README.md
2372
+ - The function parameters lack type hints. Consider adding type annotations for better code clarity and IDE support.
2373
+ - - **Smart JSON Merging for VS Code Settings**: `.vscode/settings.json` is now intelligently merged instead of being overwritten during `specify init --here` or `specify init .` - Existing settings are preserved - New Spec Kit settings are added - Nested objects are merged recursively - Prevents accidental loss of custom VS Code workspace configurations
2374
+ - Fix: incorrect command formatting in agent context file, refix #895
2375
+
2376
+ ## [0.0.69] - 2025-10-15
2377
+
2378
+ ### Changed
2379
+
2380
+ - Update scripts/bash/create-new-feature.sh
2381
+ - Update create-new-feature.sh
2382
+ - Update files
2383
+ - Update files
2384
+ - Create .gitattributes
2385
+ - Update wording
2386
+ - Update logic for arguments
2387
+ - Update script logic
2388
+
2389
+ ## [0.0.68] - 2025-10-15
2390
+
2391
+ ### Changed
2392
+
2393
+ - format content as copilot suggest
2394
+ - Ruby, PHP, Rust, Kotlin, C, C++
2395
+
2396
+ ## [0.0.67] - 2025-10-15
2397
+
2398
+ ### Changed
2399
+
2400
+ - Use the number prefix to find the right spec
2401
+
2402
+ ## [0.0.66] - 2025-10-15
2403
+
2404
+ ### Changed
2405
+
2406
+ - Update CodeBuddy agent name to 'CodeBuddy CLI'
2407
+ - Rename CodeBuddy to CodeBuddy CLI in update script
2408
+ - Update AI coding agent references in installation guide
2409
+ - Rename CodeBuddy to CodeBuddy CLI in AGENTS.md
2410
+ - Update README.md
2411
+ - Update CodeBuddy link in README.md
2412
+ - update codebuddyCli
2413
+
2414
+ ## [0.0.65] - 2025-10-15
2415
+
2416
+ ### Changed
2417
+
2418
+ - Fix: Fix incorrect command formatting in agent context file
2419
+ - docs: fix heading capitalization for consistency
2420
+ - Update README.md
2421
+
2422
+ ## [0.0.64] - 2025-10-14
2423
+
2424
+ ### Changed
2425
+
2426
+ - Update tasks.md
2427
+ - Update README.md
2428
+
2429
+ ## [0.0.63] - 2025-10-14
2430
+
2431
+ ### Changed
2432
+
2433
+ - fix: update CODEBUDDY file path in agent context scripts
2434
+ - docs(readme): add /speckit.tasks step and renumber walkthrough
2435
+
2436
+ ## [0.0.62] - 2025-10-11
2437
+
2438
+ ### Changed
2439
+
2440
+ - A few more places to update from code review
2441
+ - fix: align Cursor agent naming to use 'cursor-agent' consistently
2442
+
2443
+ ## [0.0.61] - 2025-10-10
2444
+
2445
+ ### Changed
2446
+
2447
+ - Update clarify.md
2448
+ - add how to upgrade specify installation
2449
+
2450
+ ## [0.0.60] - 2025-10-10
2451
+
2452
+ ### Changed
2453
+
2454
+ - Update vscode-settings.json
2455
+ - Update instructions and bug fix
2456
+
2457
+ ## [0.0.59] - 2025-10-10
2458
+
2459
+ ### Changed
2460
+
2461
+ - Update __init__.py
2462
+ - Consolidate Cursor naming
2463
+ - Update CHANGELOG.md
2464
+ - Git errors are now highlighted.
2465
+ - Update __init__.py
2466
+ - Refactor agent configuration
2467
+ - Update src/specify_cli/__init__.py
2468
+ - Update scripts/powershell/update-agent-context.ps1
2469
+ - Update AGENTS.md
2470
+ - Update templates/commands/implement.md
2471
+ - Update templates/commands/implement.md
2472
+ - Update CHANGELOG.md
2473
+ - Update changelog
2474
+ - Update plan.md
2475
+ - Add ignore file verification step to /speckit.implement command
2476
+ - Escape backslashes in TOML outputs
2477
+ - update CodeBuddy to international site
2478
+ - feat: support codebuddy ai
2479
+ - feat: support codebuddy ai
2480
+
2481
+ ## [0.0.58] - 2025-10-08
2482
+
2483
+ ### Changed
2484
+
2485
+ - Add escaping guidelines to command templates
2486
+ - Update README.md
2487
+ - Update README.md
2488
+
2489
+ ## [0.0.57] - 2025-10-06
2490
+
2491
+ ### Changed
2492
+
2493
+ - Update CHANGELOG.md
2494
+ - Update command reference
2495
+ - Package up VS Code settings for Copilot
2496
+ - Update tasks-template.md
2497
+ - Update templates/tasks-template.md
2498
+ - Cleanup
2499
+ - Update CLI changes
2500
+ - Update template and docs
2501
+ - Update checklist.md
2502
+ - Update templates
2503
+ - Cleanup redundancies
2504
+ - Update checklist.md
2505
+ - Codex CLI is now fully supported
2506
+ - Update specify.md
2507
+ - Prompt updates
2508
+ - Update prompt prefix
2509
+ - Update .github/workflows/scripts/create-release-packages.sh
2510
+ - Consistency updates to commands
2511
+ - Update commands.
2512
+ - Update logs
2513
+ - Template cleanup and reorganization
2514
+ - Remove Codex named args limitation warning
2515
+ - Remove Codex named args limitation from README.md
2516
+
2517
+ ## [0.0.56] - 2025-10-02
2518
+
2519
+ ### Changed
2520
+
2521
+ - docs(readme): link Amazon Q slash command limitation issue
2522
+ - docs: clarify Amazon Q limitation and update init docstring
2523
+ - feat(agent): Added Amazon Q Developer CLI Integration
2524
+
2525
+ ## [0.0.55] - 2025-09-30
2526
+
2527
+ ### Changed
2528
+
2529
+ - Update URLs to Contributing and Support Guides in Docs
2530
+ - fix: add UTF-8 encoding to file read/write operations in update-agent-context.ps1
2531
+ - Update __init__.py
2532
+ - Update src/specify_cli/__init__.py
2533
+ - docs: fix the paths of generated files (moved under a `.specify/` folder)
2534
+ - Update src/specify_cli/__init__.py
2535
+ - feat: support 'specify init .' for current directory initialization
2536
+ - feat: Add emacs-style up/down keys
2537
+
2538
+ ## [0.0.54] - 2025-09-25
2539
+
2540
+ ### Changed
2541
+
2542
+ - Update CONTRIBUTING.md
2543
+ - Refine `plan-template.md` with improved project type detection, clarified structure decision process, and enhanced research task guidance.
2544
+ - Update __init__.py
2545
+
2546
+ ## [0.0.53] - 2025-09-24
2547
+
2548
+ ### Changed
2549
+
2550
+ - Update template path for spec file creation
2551
+ - Update template path for spec file creation
2552
+ - docs: remove constitution_update_checklist from README
2553
+
2554
+ ## [0.0.52] - 2025-09-22
2555
+
2556
+ ### Changed
2557
+
2558
+ - Update analyze.md
2559
+ - Update templates/commands/analyze.md
2560
+ - Update templates/commands/clarify.md
2561
+ - Update templates/commands/plan.md
2562
+ - Update with extra commands
2563
+ - Update with --force flag
2564
+ - feat: add uv tool install instructions to README
2565
+
2566
+ ## [0.0.51] - 2025-09-21
2567
+
2568
+ ### Changed
2569
+
2570
+ - Update with Roo Code support
2571
+
2572
+ ## [0.0.50] - 2025-09-21
2573
+
2574
+ ### Changed
2575
+
2576
+ - Update generate-release-notes.sh
2577
+ - Update error messages
2578
+ - Auggie folder fix
2579
+
2580
+ ## [0.0.49] - 2025-09-21
2581
+
2582
+ ### Changed
2583
+
2584
+ - Update scripts/powershell/update-agent-context.ps1
2585
+ - Update templates/commands/implement.md
2586
+ - Cleanup the check command
2587
+ - Add support for Auggie
2588
+ - Update AGENTS.md
2589
+ - Updates with Kilo Code support
2590
+ - Update README.md
2591
+ - Update templates/commands/constitution.md
2592
+ - Update templates/commands/implement.md
2593
+ - Update templates/commands/plan.md
2594
+ - Update templates/commands/specify.md
2595
+ - Update templates/commands/tasks.md
2596
+ - Update README.md
2597
+ - Stop splitting the warning over multiple lines
2598
+ - Update templates based on #419
2599
+ - docs: Update README with codex in check command
2600
+
2601
+ ## [0.0.48] - 2025-09-21
2602
+
2603
+ ### Changed
2604
+
2605
+ - Update scripts/powershell/check-prerequisites.ps1
2606
+ - Update CHANGELOG.md
2607
+ - Update CHANGELOG.md
2608
+ - Update changelog
2609
+ - Update scripts/bash/update-agent-context.sh
2610
+ - Fix script config
2611
+ - Update scripts/bash/common.sh
2612
+ - Update scripts/powershell/update-agent-context.ps1
2613
+ - Update scripts/powershell/update-agent-context.ps1
2614
+ - Clarification
2615
+ - Update prompts
2616
+ - Update update-agent-context.ps1
2617
+ - Update CONTRIBUTING.md
2618
+ - Update CONTRIBUTING.md
2619
+ - Update CONTRIBUTING.md
2620
+ - Update CONTRIBUTING.md
2621
+ - Update CONTRIBUTING.md
2622
+ - Update contribution guidelines.
2623
+ - Root detection logic
2624
+ - Update templates/plan-template.md
2625
+ - Update scripts/bash/update-agent-context.sh
2626
+ - Update scripts/powershell/create-new-feature.ps1
2627
+ - Simplification
2628
+ - Script and template tweaks
2629
+ - Update config
2630
+ - Update scripts/powershell/check-prerequisites.ps1
2631
+ - Update scripts/bash/check-prerequisites.sh
2632
+ - Fix script path
2633
+ - Script cleanup
2634
+ - Update scripts/bash/check-prerequisites.sh
2635
+ - Update scripts/powershell/check-prerequisites.ps1
2636
+ - Update script delegation from GitHub Action
2637
+ - Cleanup the setup for generated packages
2638
+ - Use proper line endings
2639
+ - Consolidate scripts
2640
+
2641
+ ## [0.0.47] - 2025-09-20
2642
+
2643
+ ### Changed
2644
+
2645
+ - Updating agent context files
2646
+
2647
+ ## [0.0.46] - 2025-09-20
2648
+
2649
+ ### Changed
2650
+
2651
+ - Update update-agent-context.ps1
2652
+ - Update package release
2653
+ - Update config
2654
+ - Update __init__.py
2655
+ - Update __init__.py
2656
+ - Remove Codex-specific logic in the initialization script
2657
+ - Update version rev
2658
+ - Update __init__.py
2659
+ - Enhance Codex support by auto-syncing prompt files, allowing spec generation without git, and documenting clearer /specify usage.
2660
+ - Consistency tweaks
2661
+ - Consistent step coloring
2662
+ - Update __init__.py
2663
+ - Update __init__.py
2664
+ - Quick UI tweak
2665
+ - Update package release
2666
+ - Limit workspace command seeding to Codex init and update Codex documentation accordingly.
2667
+ - Clarify Codex-specific README note with rationale for its different workflow.
2668
+ - Bump to 0.0.7 and document Codex support
2669
+ - Normalize Codex command templates to the scripts-based schema and auto-upgrade generated commands.
2670
+ - Fix remaining merge conflict markers in __init__.py
2671
+ - Add Codex CLI support with AGENTS.md and commands bootstrap
2672
+
2673
+ ## [0.0.45] - 2025-09-19
2674
+
2675
+ ### Changed
2676
+
2677
+ - Update with Windsurf support
2678
+ - expose token as an argument through cli --github-token
2679
+ - add github auth headers if there are GITHUB_TOKEN/GH_TOKEN set
2680
+
2681
+ ## [0.0.44] - 2025-09-18
2682
+
2683
+ ### Changed
2684
+
2685
+ - Update specify.md
2686
+ - Update __init__.py
2687
+
2688
+ ## [0.0.43] - 2025-09-18
2689
+
2690
+ ### Changed
2691
+
2692
+ - Update with support for /implement
2693
+
2694
+ ## [0.0.42] - 2025-09-18
2695
+
2696
+ ### Changed
2697
+
2698
+ - Update constitution.md
2699
+
2700
+ ## [0.0.41] - 2025-09-18
2701
+
2702
+ ### Changed
2703
+
2704
+ - Update constitution.md
2705
+
2706
+ ## [0.0.40] - 2025-09-18
2707
+
2708
+ ### Changed
2709
+
2710
+ - Update constitution command
2711
+
2712
+ ## [0.0.39] - 2025-09-18
2713
+
2714
+ ### Changed
2715
+
2716
+ - Cleanup
2717
+ - fix: commands format for qwen
2718
+
2719
+ ## [0.0.38] - 2025-09-18
2720
+
2721
+ ### Changed
2722
+
2723
+ - Fix template path in update-agent-context.sh
2724
+ - docs: fix grammar mistakes in markdown files
2725
+
2726
+ ## [0.0.37] - 2025-09-17
2727
+
2728
+ ### Changed
2729
+
2730
+ - fix: add missing Qwen support to release workflow and agent scripts
2731
+
2732
+ ## [0.0.36] - 2025-09-17
2733
+
2734
+ ### Changed
2735
+
2736
+ - feat: Add opencode ai agent
2737
+ - Fix --no-git argument resolution.
2738
+
2739
+ ## [0.0.35] - 2025-09-17
2740
+
2741
+ ### Changed
2742
+
2743
+ - chore(release): bump version to 0.0.5 and update changelog
2744
+ - chore: address review feedback - remove comment and fix numbering
2745
+ - feat: add Qwen Code support to Spec Kit
2746
+
2747
+ ## [0.0.34] - 2025-09-15
2748
+
2749
+ ### Changed
2750
+
2751
+ - Update template.
2752
+
2753
+ ## [0.0.33] - 2025-09-15
2754
+
2755
+ ### Changed
2756
+
2757
+ - Update scripts
2758
+
2759
+ ## [0.0.32] - 2025-09-15
2760
+
2761
+ ### Changed
2762
+
2763
+ - Update template paths
2764
+
2765
+ ## [0.0.31] - 2025-09-15
2766
+
2767
+ ### Changed
2768
+
2769
+ - Update for Cursor rules & script path
2770
+ - Update Specify definition
2771
+ - Update README.md
2772
+ - Update with video header
2773
+ - fix(docs): remove redundant white space
2774
+
2775
+ ## [0.0.30] - 2025-09-12
2776
+
2777
+ ### Changed
2778
+
2779
+ - Update update-agent-context.ps1
2780
+
2781
+ ## [0.0.29] - 2025-09-12
2782
+
2783
+ ### Changed
2784
+
2785
+ - Update create-release-packages.sh
2786
+ - Update with check changes
2787
+
2788
+ ## [0.0.28] - 2025-09-12
2789
+
2790
+ ### Changed
2791
+
2792
+ - Update wording
2793
+ - Update release.yml
2794
+
2795
+ ## [0.0.27] - 2025-09-12
2796
+
2797
+ ### Changed
2798
+
2799
+ - Support Cursor
2800
+
2801
+ ## [0.0.26] - 2025-09-12
2802
+
2803
+ ### Changed
2804
+
2805
+ - Saner approach to scripts
2806
+
2807
+ ## [0.0.25] - 2025-09-12
2808
+
2809
+ ### Changed
2810
+
2811
+ - Update packaging
2812
+
2813
+ ## [0.0.24] - 2025-09-12
2814
+
2815
+ ### Changed
2816
+
2817
+ - Fix package logic
2818
+
2819
+ ## [0.0.23] - 2025-09-12
2820
+
2821
+ ### Changed
2822
+
2823
+ - Update config
2824
+ - Update __init__.py
2825
+ - Refactor with platform-specific constraints
2826
+ - Update README.md
2827
+ - Update CLI reference
2828
+ - Update __init__.py
2829
+ - refactor: extract Claude local path to constant for maintainability
2830
+ - fix: support Claude CLI installed via migrate-installer
2831
+
2832
+ ## [0.0.22] - 2025-09-11
2833
+
2834
+ ### Changed
2835
+
2836
+ - Update release.yml
2837
+ - Update create-release-packages.sh
2838
+ - Update create-release-packages.sh
2839
+ - Update release file
2840
+
2841
+ ## [0.0.21] - 2025-09-11
2842
+
2843
+ ### Changed
2844
+
2845
+ - Consolidate script creation
2846
+ - Update how Copilot prompts are created
2847
+ - Update local-development.md
2848
+ - Local dev guide and script updates
2849
+ - Update CONTRIBUTING.md
2850
+ - Enhance HTTP client initialization with optional SSL verification and bump version to 0.0.3
2851
+ - Complete Gemini CLI command instructions
2852
+ - Refactor HTTP client usage to utilize truststore for SSL context
2853
+ - docs: Update Commands sections renaming to match implementation
2854
+ - docs: Fix formatting issues in README.md for consistency
2855
+ - Update docs and release
2856
+
2857
+ ## [0.0.20] - 2025-09-08
2858
+
2859
+ ### Changed
2860
+
2861
+ - Update docs/quickstart.md
2862
+ - Docs setup
2863
+
2864
+ ## [0.0.19] - 2025-09-08
2865
+
2866
+ ### Changed
2867
+
2868
+ - Update README.md
2869
+
2870
+ ## [0.0.18] - 2025-09-08
2871
+
2872
+ ### Changed
2873
+
2874
+ - Update README.md
2875
+
2876
+ ## [0.0.17] - 2025-09-08
2877
+
2878
+ ### Changed
2879
+
2880
+ - Remove trailing whitespace from tasks.md template
2881
+
2882
+ ## [0.0.16] - 2025-09-07
2883
+
2884
+ ### Changed
2885
+
2886
+ - Fix release workflow to work with repository rules
2887
+
2888
+ ## [0.0.15] - 2025-09-07
2889
+
2890
+ ### Changed
2891
+
2892
+ - Use `/usr/bin/env bash` instead of `/bin/bash` for shebang
2893
+
2894
+ ## [0.0.14] - 2025-09-04
2895
+
2896
+ ### Changed
2897
+
2898
+ - fix: correct typos in spec-driven.md
2899
+
2900
+ ## [0.0.13] - 2025-09-04
2901
+
2902
+ ### Changed
2903
+
2904
+ - Fix formatting in usage instructions
2905
+
2906
+ ## [0.0.12] - 2025-09-04
2907
+
2908
+ ### Changed
2909
+
2910
+ - Fix template path in plan command documentation
2911
+
2912
+ ## [0.0.11] - 2025-09-04
2913
+
2914
+ ### Changed
2915
+
2916
+ - fix: incorrect tree structure in examples
2917
+
2918
+ ## [0.0.10] - 2025-09-04
2919
+
2920
+ ### Changed
2921
+
2922
+ - fix minor typo in Article I
2923
+
2924
+ ## [0.0.9] - 2025-09-03
2925
+
2926
+ ### Changed
2927
+
2928
+ - Update CLI commands from '/spec' to '/specify'
2929
+
2930
+ ## [0.0.8] - 2025-09-02
2931
+
2932
+ ### Changed
2933
+
2934
+ - adding executable permission to the scripts so they execute when the coding agent launches them
2935
+
2936
+ ## [0.0.7] - 2025-09-02
2937
+
2938
+ ### Changed
2939
+
2940
+ - doco(spec-driven): Fix small typo in document
2941
+
2942
+ ## [0.0.6] - 2025-08-25
2943
+
2944
+ ### Changed
2945
+
2946
+ - Update README.md
2947
+
2948
+ ## [0.0.5] - 2025-08-25
2949
+
2950
+ ### Changed
2951
+
2952
+ - Update .github/workflows/release.yml
2953
+ - Fix release workflow to work with repository rules
2954
+
2955
+ ## [0.0.4] - 2025-08-25
2956
+
2957
+ ### Changed
2958
+
2959
+ - Add John Lam as contributor and release badge
2960
+
2961
+ ## [0.0.3] - 2025-08-22
2962
+
2963
+ ### Changed
2964
+
2965
+ - Update requirements
2966
+
2967
+ ## [0.0.2] - 2025-08-22
2968
+
2969
+ ### Changed
2970
+
2971
+ - Update README.md
2972
+
2973
+ ## [0.0.1] - 2025-08-22
2974
+
2975
+ ### Changed
2976
+
2977
+ - Update release.yml