spec-kitty-cli 0.5.0__tar.gz → 0.7.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (419) hide show
  1. {spec_kitty_cli-0.5.0/.kittify/active-mission/commands → spec_kitty_cli-0.7.0/.kittify/missions/research/command-templates}/implement.md +52 -17
  2. {spec_kitty_cli-0.5.0/.kittify/templates/commands → spec_kitty_cli-0.7.0/.kittify/missions/research/command-templates}/merge.md +59 -12
  3. {spec_kitty_cli-0.5.0/.kittify/active-mission/commands → spec_kitty_cli-0.7.0/.kittify/missions/research/command-templates}/plan.md +15 -15
  4. spec_kitty_cli-0.7.0/.kittify/missions/research/command-templates/review.md +155 -0
  5. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/.kittify/missions/research/mission.yaml +24 -17
  6. spec_kitty_cli-0.7.0/.kittify/missions/research/templates/plan-template.md +161 -0
  7. spec_kitty_cli-0.7.0/.kittify/missions/research/templates/research/evidence-log.csv +18 -0
  8. spec_kitty_cli-0.7.0/.kittify/missions/research/templates/research/source-register.csv +18 -0
  9. spec_kitty_cli-0.7.0/.kittify/missions/research/templates/spec-template.md +64 -0
  10. spec_kitty_cli-0.7.0/.kittify/missions/research/templates/tasks-template.md +114 -0
  11. {spec_kitty_cli-0.5.0/.kittify/templates/commands → spec_kitty_cli-0.7.0/.kittify/missions/software-dev/command-templates}/implement.md +15 -17
  12. {spec_kitty_cli-0.5.0/.kittify/active-mission/commands → spec_kitty_cli-0.7.0/.kittify/missions/software-dev/command-templates}/merge.md +22 -0
  13. {spec_kitty_cli-0.5.0/.kittify/templates/commands → spec_kitty_cli-0.7.0/.kittify/missions/software-dev/command-templates}/plan.md +16 -25
  14. {spec_kitty_cli-0.5.0/.kittify/active-mission/commands → spec_kitty_cli-0.7.0/.kittify/missions/software-dev/command-templates}/review.md +15 -15
  15. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/CHANGELOG.md +318 -0
  16. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/PKG-INFO +246 -8
  17. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/README.md +244 -7
  18. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/pyproject.toml +23 -1
  19. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/check-prerequisites.sh +1 -1
  20. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/common.sh +3 -3
  21. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/create-new-feature.sh +69 -1
  22. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/setup-plan.sh +1 -1
  23. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/update-agent-context.sh +1 -1
  24. spec_kitty_cli-0.7.0/scripts/powershell/tasks-move-to-lane.ps1 +79 -0
  25. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/release/extract_changelog.py +1 -1
  26. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/release/validate_release.py +1 -1
  27. {spec_kitty_cli-0.5.0/.kittify → spec_kitty_cli-0.7.0}/scripts/tasks/acceptance_support.py +29 -1
  28. {spec_kitty_cli-0.5.0/.kittify → spec_kitty_cli-0.7.0}/scripts/tasks/task_helpers.py +2 -2
  29. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/tasks/tasks_cli.py +3 -3
  30. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/__init__.py +8 -2
  31. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/acceptance.py +29 -7
  32. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/cli/commands/__init__.py +6 -4
  33. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/cli/commands/init.py +110 -17
  34. spec_kitty_cli-0.7.0/src/specify_cli/cli/commands/mission.py +323 -0
  35. spec_kitty_cli-0.7.0/src/specify_cli/cli/commands/upgrade.py +223 -0
  36. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/cli/commands/validate_encoding.py +1 -1
  37. spec_kitty_cli-0.7.0/src/specify_cli/cli/commands/validate_tasks.py +185 -0
  38. spec_kitty_cli-0.5.0/src/specify_cli/cli/commands/diagnostics.py → spec_kitty_cli-0.7.0/src/specify_cli/cli/commands/verify.py +135 -16
  39. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/cli/helpers.py +3 -2
  40. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/core/config.py +4 -0
  41. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/core/project_resolver.py +1 -1
  42. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/core/tool_checker.py +13 -3
  43. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/handlers/api.py +53 -1
  44. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/handlers/features.py +23 -0
  45. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/handlers/router.py +4 -0
  46. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/lifecycle.py +37 -4
  47. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/scanner.py +33 -19
  48. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/server.py +3 -2
  49. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/static/dashboard/dashboard.css +21 -0
  50. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/static/dashboard/dashboard.js +46 -7
  51. spec_kitty_cli-0.7.0/src/specify_cli/dashboard/templates/__init__.py +36 -0
  52. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/templates/index.html +9 -0
  53. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/gitignore_manager.py +6 -5
  54. spec_kitty_cli-0.7.0/src/specify_cli/guards.py +145 -0
  55. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/manifest.py +2 -2
  56. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/mission.py +183 -30
  57. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/plan_validation.py +1 -1
  58. spec_kitty_cli-0.7.0/src/specify_cli/task_metadata_validation.py +274 -0
  59. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/tasks_support.py +2 -2
  60. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/template/asset_generator.py +4 -4
  61. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/template/manager.py +26 -13
  62. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/template/renderer.py +1 -1
  63. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/text_sanitization.py +4 -1
  64. spec_kitty_cli-0.7.0/src/specify_cli/upgrade/__init__.py +18 -0
  65. spec_kitty_cli-0.7.0/src/specify_cli/upgrade/detector.py +239 -0
  66. spec_kitty_cli-0.7.0/src/specify_cli/upgrade/metadata.py +182 -0
  67. spec_kitty_cli-0.7.0/src/specify_cli/upgrade/migrations/__init__.py +21 -0
  68. spec_kitty_cli-0.7.0/src/specify_cli/upgrade/migrations/base.py +80 -0
  69. spec_kitty_cli-0.7.0/src/specify_cli/upgrade/migrations/m_0_2_0_specify_to_kittify.py +80 -0
  70. spec_kitty_cli-0.7.0/src/specify_cli/upgrade/migrations/m_0_4_8_gitignore_agents.py +117 -0
  71. spec_kitty_cli-0.7.0/src/specify_cli/upgrade/migrations/m_0_5_0_encoding_hooks.py +141 -0
  72. spec_kitty_cli-0.7.0/src/specify_cli/upgrade/migrations/m_0_6_5_commands_rename.py +169 -0
  73. spec_kitty_cli-0.7.0/src/specify_cli/upgrade/migrations/m_0_6_7_ensure_missions.py +228 -0
  74. spec_kitty_cli-0.7.0/src/specify_cli/upgrade/registry.py +115 -0
  75. spec_kitty_cli-0.7.0/src/specify_cli/upgrade/runner.py +284 -0
  76. spec_kitty_cli-0.7.0/src/specify_cli/validators/__init__.py +14 -0
  77. spec_kitty_cli-0.7.0/src/specify_cli/validators/paths.py +154 -0
  78. spec_kitty_cli-0.7.0/src/specify_cli/validators/research.py +428 -0
  79. {spec_kitty_cli-0.5.0/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/implement.md +1 -2
  80. {spec_kitty_cli-0.5.0/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/review.md +23 -10
  81. spec_kitty_cli-0.5.0/.kittify/AGENTS.md +0 -105
  82. spec_kitty_cli-0.5.0/.kittify/missions/research/templates/research/evidence-log.csv +0 -1
  83. spec_kitty_cli-0.5.0/.kittify/missions/research/templates/research/source-register.csv +0 -1
  84. spec_kitty_cli-0.5.0/.kittify/scripts/bash/accept-feature.sh +0 -36
  85. spec_kitty_cli-0.5.0/.kittify/scripts/bash/check-prerequisites.sh +0 -222
  86. spec_kitty_cli-0.5.0/.kittify/scripts/bash/common.sh +0 -696
  87. spec_kitty_cli-0.5.0/.kittify/scripts/bash/create-new-feature.sh +0 -301
  88. spec_kitty_cli-0.5.0/.kittify/scripts/bash/mark-task-status.sh +0 -107
  89. spec_kitty_cli-0.5.0/.kittify/scripts/bash/merge-feature.sh +0 -56
  90. spec_kitty_cli-0.5.0/.kittify/scripts/bash/move-task-to-doing.sh +0 -74
  91. spec_kitty_cli-0.5.0/.kittify/scripts/bash/refresh-kittify-tasks.sh +0 -107
  92. spec_kitty_cli-0.5.0/.kittify/scripts/bash/setup-plan.sh +0 -76
  93. spec_kitty_cli-0.5.0/.kittify/scripts/bash/setup-sandbox.sh +0 -201
  94. spec_kitty_cli-0.5.0/.kittify/scripts/bash/tasks-add-history-entry.sh +0 -36
  95. spec_kitty_cli-0.5.0/.kittify/scripts/bash/tasks-list-lanes.sh +0 -36
  96. spec_kitty_cli-0.5.0/.kittify/scripts/bash/tasks-move-to-lane.sh +0 -56
  97. spec_kitty_cli-0.5.0/.kittify/scripts/bash/tasks-rollback-move.sh +0 -36
  98. spec_kitty_cli-0.5.0/.kittify/scripts/bash/update-agent-context.sh +0 -765
  99. spec_kitty_cli-0.5.0/.kittify/scripts/bash/validate-task-workflow.sh +0 -81
  100. spec_kitty_cli-0.5.0/.kittify/scripts/tasks/tasks_cli.py +0 -904
  101. spec_kitty_cli-0.5.0/.kittify/templates/AGENTS.md +0 -105
  102. spec_kitty_cli-0.5.0/.kittify/templates/agent-file-template.md +0 -25
  103. spec_kitty_cli-0.5.0/.kittify/templates/commands/analyze.md +0 -191
  104. spec_kitty_cli-0.5.0/.kittify/templates/commands/checklist.md +0 -294
  105. spec_kitty_cli-0.5.0/.kittify/templates/commands/clarify.md +0 -165
  106. spec_kitty_cli-0.5.0/.kittify/templates/commands/constitution.md +0 -82
  107. spec_kitty_cli-0.5.0/.kittify/templates/commands/dashboard.md +0 -130
  108. spec_kitty_cli-0.5.0/.kittify/templates/commands/research.md +0 -37
  109. spec_kitty_cli-0.5.0/.kittify/templates/commands/review.md +0 -115
  110. spec_kitty_cli-0.5.0/.kittify/templates/commands/specify.md +0 -242
  111. spec_kitty_cli-0.5.0/.kittify/templates/task-prompt-template.md +0 -88
  112. spec_kitty_cli-0.5.0/AGENTS.md +0 -278
  113. spec_kitty_cli-0.5.0/CLAUDE.md +0 -29
  114. spec_kitty_cli-0.5.0/CONTRIBUTING.md +0 -112
  115. spec_kitty_cli-0.5.0/ascii-art.txt +0 -26
  116. spec_kitty_cli-0.5.0/docs/.gitignore +0 -8
  117. spec_kitty_cli-0.5.0/docs/ARCHITECTURE.md +0 -582
  118. spec_kitty_cli-0.5.0/docs/CONTEXT_SWITCHING_GUIDE.md +0 -650
  119. spec_kitty_cli-0.5.0/docs/WORKTREE_MODEL.md +0 -659
  120. spec_kitty_cli-0.5.0/docs/assets/css/custom.css +0 -22
  121. spec_kitty_cli-0.5.0/docs/assets/images/dashboard-kanban.png +0 -0
  122. spec_kitty_cli-0.5.0/docs/assets/images/dashboard-overview.png +0 -0
  123. spec_kitty_cli-0.5.0/docs/assets/images/logo_small.webp +0 -0
  124. spec_kitty_cli-0.5.0/docs/claude-code-workflow.md +0 -100
  125. spec_kitty_cli-0.5.0/docs/docfx.json +0 -71
  126. spec_kitty_cli-0.5.0/docs/encoding-requirements.md +0 -195
  127. spec_kitty_cli-0.5.0/docs/encoding-validation.md +0 -554
  128. spec_kitty_cli-0.5.0/docs/index.md +0 -840
  129. spec_kitty_cli-0.5.0/docs/installation.md +0 -134
  130. spec_kitty_cli-0.5.0/docs/kanban-dashboard-guide.md +0 -67
  131. spec_kitty_cli-0.5.0/docs/local-development.md +0 -197
  132. spec_kitty_cli-0.5.0/docs/multi-agent-orchestration.md +0 -65
  133. spec_kitty_cli-0.5.0/docs/non-interactive-init.md +0 -428
  134. spec_kitty_cli-0.5.0/docs/plan-validation-guardrail.md +0 -202
  135. spec_kitty_cli-0.5.0/docs/quickstart.md +0 -201
  136. spec_kitty_cli-0.5.0/docs/releases/readiness-checklist.md +0 -167
  137. spec_kitty_cli-0.5.0/docs/spec-workflow-automation.md +0 -66
  138. spec_kitty_cli-0.5.0/docs/toc.yml +0 -31
  139. spec_kitty_cli-0.5.0/examples/agency-client-demo.md +0 -219
  140. spec_kitty_cli-0.5.0/examples/claude-cursor-collaboration.md +0 -85
  141. spec_kitty_cli-0.5.0/examples/constitution-driven-quality.md +0 -449
  142. spec_kitty_cli-0.5.0/examples/dashboard-driven-development.md +0 -66
  143. spec_kitty_cli-0.5.0/examples/multi-agent-feature-development.md +0 -42
  144. spec_kitty_cli-0.5.0/examples/parallel-implementation-tracking.md +0 -45
  145. spec_kitty_cli-0.5.0/examples/research-mission-example.md +0 -316
  146. spec_kitty_cli-0.5.0/examples/solo-developer-workflow.md +0 -180
  147. spec_kitty_cli-0.5.0/examples/worktree-parallel-features.md +0 -512
  148. spec_kitty_cli-0.5.0/kitty-specs/001-demo-feature/data-model.md +0 -0
  149. spec_kitty_cli-0.5.0/kitty-specs/001-demo-feature/research/evidence-log.csv +0 -0
  150. spec_kitty_cli-0.5.0/kitty-specs/001-demo-feature/research/source-register.csv +0 -0
  151. spec_kitty_cli-0.5.0/kitty-specs/001-demo-feature/research.md +0 -0
  152. spec_kitty_cli-0.5.0/kitty-specs/001-mission-system-architecture/meta.json +0 -7
  153. spec_kitty_cli-0.5.0/kitty-specs/001-mission-system-architecture/spec.md +0 -664
  154. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/checklists/requirements.md +0 -34
  155. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/contracts/github-release-workflow.yml +0 -59
  156. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/contracts/release-validation-cli.md +0 -33
  157. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/data-model.md +0 -63
  158. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/meta.json +0 -7
  159. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/plan.md +0 -68
  160. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/quickstart.md +0 -46
  161. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/research/evidence-log.csv +0 -0
  162. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/research/source-register.csv +0 -0
  163. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/research.md +0 -17
  164. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/spec.md +0 -93
  165. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/tasks/done/WP01-release-validation-tooling.md +0 -196
  166. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/tasks/done/WP02-pypi-release-automation.md +0 -124
  167. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/tasks/done/WP03-release-readiness-guardrails.md +0 -116
  168. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/tasks/done/WP04-documentation-and-secret-hygiene.md +0 -110
  169. spec_kitty_cli-0.5.0/kitty-specs/002-lightweight-pypi-release/tasks.md +0 -146
  170. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/checklists/requirements.md +0 -37
  171. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/contracts/gitignore-manager-api.yaml +0 -124
  172. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/contracts/test-contract.md +0 -50
  173. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/data-model.md +0 -0
  174. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/meta.json +0 -7
  175. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/plan.md +0 -176
  176. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/quickstart.md +0 -153
  177. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/research/evidence-log.csv +0 -8
  178. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/research/source-register.csv +0 -7
  179. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/research/test-data.csv +0 -6
  180. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/research.md +0 -184
  181. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/spec.md +0 -102
  182. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/tasks/done/WP01-create-gitignore-manager.md +0 -169
  183. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/tasks/done/WP02-core-protection-methods.md +0 -190
  184. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/tasks/done/WP03-replace-existing-implementation.md +0 -182
  185. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/tasks/done/WP04-testing-infrastructure.md +0 -219
  186. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/tasks/done/WP05-documentation-polish.md +0 -198
  187. spec_kitty_cli-0.5.0/kitty-specs/003-auto-protect-agent/tasks.md +0 -245
  188. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/checklists/requirements.md +0 -37
  189. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/contracts/module-interfaces.yaml +0 -319
  190. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/data-model.md +0 -438
  191. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/meta.json +0 -7
  192. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/plan.md +0 -284
  193. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/quickstart.md +0 -340
  194. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/research/evidence-log.csv +0 -11
  195. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/research/source-register.csv +0 -11
  196. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/research.md +0 -0
  197. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/spec.md +0 -297
  198. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/tasks/done/WP01-foundation-layer.md +0 -333
  199. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/tasks/done/WP02-dashboard-infrastructure.md +0 -377
  200. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/tasks/done/WP03-template-system.md +0 -224
  201. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/tasks/done/WP04-core-services.md +0 -210
  202. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/tasks/done/WP05-dashboard-handlers.md +0 -257
  203. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/tasks/done/WP06-cli-commands.md +0 -248
  204. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/tasks/done/WP07-github-init.md +0 -212
  205. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/tasks/done/WP08-integration-cleanup.md +0 -232
  206. spec_kitty_cli-0.5.0/kitty-specs/004-modular-code-refactoring/tasks.md +0 -307
  207. spec_kitty_cli-0.5.0/media/dashboard-kanban.png +0 -0
  208. spec_kitty_cli-0.5.0/media/dashboard-overview.png +0 -0
  209. spec_kitty_cli-0.5.0/media/logo_large.webp +0 -0
  210. spec_kitty_cli-0.5.0/media/logo_small.png +0 -0
  211. spec_kitty_cli-0.5.0/media/logo_small.webp +0 -0
  212. spec_kitty_cli-0.5.0/memory/constitution.md +0 -50
  213. spec_kitty_cli-0.5.0/node_modules/.bin/playwright +0 -1
  214. spec_kitty_cli-0.5.0/node_modules/.bin/playwright-core +0 -1
  215. spec_kitty_cli-0.5.0/node_modules/.package-lock.json +0 -71
  216. spec_kitty_cli-0.5.0/node_modules/@playwright/test/NOTICE +0 -5
  217. spec_kitty_cli-0.5.0/node_modules/@playwright/test/cli.js +0 -19
  218. spec_kitty_cli-0.5.0/node_modules/@playwright/test/index.d.ts +0 -18
  219. spec_kitty_cli-0.5.0/node_modules/@playwright/test/index.js +0 -17
  220. spec_kitty_cli-0.5.0/node_modules/@playwright/test/index.mjs +0 -18
  221. spec_kitty_cli-0.5.0/node_modules/@playwright/test/package.json +0 -35
  222. spec_kitty_cli-0.5.0/node_modules/@playwright/test/reporter.d.ts +0 -17
  223. spec_kitty_cli-0.5.0/node_modules/@playwright/test/reporter.js +0 -17
  224. spec_kitty_cli-0.5.0/node_modules/@playwright/test/reporter.mjs +0 -17
  225. spec_kitty_cli-0.5.0/node_modules/playwright/NOTICE +0 -5
  226. spec_kitty_cli-0.5.0/node_modules/playwright/ThirdPartyNotices.txt +0 -6277
  227. spec_kitty_cli-0.5.0/node_modules/playwright/cli.js +0 -19
  228. spec_kitty_cli-0.5.0/node_modules/playwright/index.d.ts +0 -17
  229. spec_kitty_cli-0.5.0/node_modules/playwright/index.js +0 -17
  230. spec_kitty_cli-0.5.0/node_modules/playwright/index.mjs +0 -18
  231. spec_kitty_cli-0.5.0/node_modules/playwright/jsx-runtime.js +0 -42
  232. spec_kitty_cli-0.5.0/node_modules/playwright/jsx-runtime.mjs +0 -21
  233. spec_kitty_cli-0.5.0/node_modules/playwright/package.json +0 -72
  234. spec_kitty_cli-0.5.0/node_modules/playwright/test.d.ts +0 -18
  235. spec_kitty_cli-0.5.0/node_modules/playwright/test.js +0 -24
  236. spec_kitty_cli-0.5.0/node_modules/playwright/test.mjs +0 -33
  237. spec_kitty_cli-0.5.0/node_modules/playwright/types/test.d.ts +0 -10160
  238. spec_kitty_cli-0.5.0/node_modules/playwright/types/testReporter.d.ts +0 -816
  239. spec_kitty_cli-0.5.0/node_modules/playwright-core/NOTICE +0 -5
  240. spec_kitty_cli-0.5.0/node_modules/playwright-core/ThirdPartyNotices.txt +0 -1502
  241. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/install_media_pack.ps1 +0 -5
  242. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/install_webkit_wsl.ps1 +0 -35
  243. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_chrome_beta_linux.sh +0 -42
  244. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_chrome_beta_mac.sh +0 -13
  245. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_chrome_beta_win.ps1 +0 -24
  246. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_chrome_stable_linux.sh +0 -42
  247. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_chrome_stable_mac.sh +0 -12
  248. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_chrome_stable_win.ps1 +0 -24
  249. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_msedge_beta_linux.sh +0 -48
  250. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_msedge_beta_mac.sh +0 -11
  251. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_msedge_beta_win.ps1 +0 -23
  252. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_msedge_dev_linux.sh +0 -48
  253. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_msedge_dev_mac.sh +0 -11
  254. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_msedge_dev_win.ps1 +0 -23
  255. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_msedge_stable_linux.sh +0 -48
  256. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_msedge_stable_mac.sh +0 -11
  257. spec_kitty_cli-0.5.0/node_modules/playwright-core/bin/reinstall_msedge_stable_win.ps1 +0 -24
  258. spec_kitty_cli-0.5.0/node_modules/playwright-core/browsers.json +0 -80
  259. spec_kitty_cli-0.5.0/node_modules/playwright-core/cli.js +0 -18
  260. spec_kitty_cli-0.5.0/node_modules/playwright-core/index.d.ts +0 -17
  261. spec_kitty_cli-0.5.0/node_modules/playwright-core/index.js +0 -32
  262. spec_kitty_cli-0.5.0/node_modules/playwright-core/index.mjs +0 -28
  263. spec_kitty_cli-0.5.0/node_modules/playwright-core/package.json +0 -42
  264. spec_kitty_cli-0.5.0/node_modules/playwright-core/types/protocol.d.ts +0 -23130
  265. spec_kitty_cli-0.5.0/node_modules/playwright-core/types/structs.d.ts +0 -45
  266. spec_kitty_cli-0.5.0/node_modules/playwright-core/types/types.d.ts +0 -22853
  267. spec_kitty_cli-0.5.0/package-lock.json +0 -76
  268. spec_kitty_cli-0.5.0/package.json +0 -6
  269. spec_kitty_cli-0.5.0/pytest.ini +0 -4
  270. spec_kitty_cli-0.5.0/run_tests.sh +0 -11
  271. spec_kitty_cli-0.5.0/scripts/powershell/tasks-move-to-lane.ps1 +0 -21
  272. spec_kitty_cli-0.5.0/scripts/tasks/acceptance_support.py +0 -641
  273. spec_kitty_cli-0.5.0/scripts/tasks/task_helpers.py +0 -352
  274. spec_kitty_cli-0.5.0/scripts/validate_encoding.py +0 -180
  275. spec_kitty_cli-0.5.0/spec-driven.md +0 -504
  276. spec_kitty_cli-0.5.0/src/specify_cli/cli/commands/check.py +0 -58
  277. spec_kitty_cli-0.5.0/src/specify_cli/cli/commands/verify.py +0 -58
  278. spec_kitty_cli-0.5.0/src/specify_cli/dashboard/templates/__init__.py +0 -22
  279. spec_kitty_cli-0.5.0/templates/checklist-template.md +0 -42
  280. spec_kitty_cli-0.5.0/templates/commands/accept.md +0 -66
  281. spec_kitty_cli-0.5.0/templates/commands/tasks.md +0 -139
  282. spec_kitty_cli-0.5.0/templates/plan-template.md +0 -108
  283. spec_kitty_cli-0.5.0/templates/spec-template.md +0 -118
  284. spec_kitty_cli-0.5.0/templates/tasks-template.md +0 -161
  285. spec_kitty_cli-0.5.0/templates/vscode-settings.json +0 -13
  286. spec_kitty_cli-0.5.0/tests/TESTING_PROGRESS.md +0 -261
  287. spec_kitty_cli-0.5.0/tests/TESTING_REQUIREMENTS_ENCODING_AND_PLAN_VALIDATION.md +0 -1056
  288. spec_kitty_cli-0.5.0/tests/__init__.py +0 -0
  289. spec_kitty_cli-0.5.0/tests/conftest.py +0 -77
  290. spec_kitty_cli-0.5.0/tests/integration/test_init_flow.py +0 -315
  291. spec_kitty_cli-0.5.0/tests/release/__init__.py +0 -1
  292. spec_kitty_cli-0.5.0/tests/release/test_validate_release.py +0 -202
  293. spec_kitty_cli-0.5.0/tests/specify_cli/test_cli/test_commands.py +0 -149
  294. spec_kitty_cli-0.5.0/tests/specify_cli/test_cli/test_init_command.py +0 -184
  295. spec_kitty_cli-0.5.0/tests/specify_cli/test_cli/test_ui.py +0 -62
  296. spec_kitty_cli-0.5.0/tests/specify_cli/test_core/test_config.py +0 -40
  297. spec_kitty_cli-0.5.0/tests/specify_cli/test_core/test_git_ops.py +0 -55
  298. spec_kitty_cli-0.5.0/tests/specify_cli/test_core/test_project_resolver.py +0 -51
  299. spec_kitty_cli-0.5.0/tests/specify_cli/test_core/test_tool_checker.py +0 -63
  300. spec_kitty_cli-0.5.0/tests/specify_cli/test_core/test_utils.py +0 -42
  301. spec_kitty_cli-0.5.0/tests/test_acceptance_support.py +0 -85
  302. spec_kitty_cli-0.5.0/tests/test_dashboard/__init__.py +0 -2
  303. spec_kitty_cli-0.5.0/tests/test_dashboard/check_api_response.js +0 -47
  304. spec_kitty_cli-0.5.0/tests/test_dashboard/check_dashboard.js +0 -101
  305. spec_kitty_cli-0.5.0/tests/test_dashboard/check_dashboard_full.js +0 -56
  306. spec_kitty_cli-0.5.0/tests/test_dashboard/check_features.js +0 -61
  307. spec_kitty_cli-0.5.0/tests/test_dashboard/test_diagnostics.py +0 -135
  308. spec_kitty_cli-0.5.0/tests/test_dashboard/test_imports.py +0 -15
  309. spec_kitty_cli-0.5.0/tests/test_dashboard/test_lifecycle.py +0 -111
  310. spec_kitty_cli-0.5.0/tests/test_dashboard/test_scanner.py +0 -42
  311. spec_kitty_cli-0.5.0/tests/test_dashboard/test_server.py +0 -58
  312. spec_kitty_cli-0.5.0/tests/test_dashboard/test_static.py +0 -23
  313. spec_kitty_cli-0.5.0/tests/test_encoding_validation_functional.py +0 -397
  314. spec_kitty_cli-0.5.0/tests/test_gitignore_management.py +0 -248
  315. spec_kitty_cli-0.5.0/tests/test_gitignore_manager_simple.py +0 -155
  316. spec_kitty_cli-0.5.0/tests/test_performance.py +0 -154
  317. spec_kitty_cli-0.5.0/tests/test_plan_validation.py +0 -224
  318. spec_kitty_cli-0.5.0/tests/test_task_helpers.py +0 -58
  319. spec_kitty_cli-0.5.0/tests/test_tasks_cli_commands.py +0 -352
  320. spec_kitty_cli-0.5.0/tests/test_template/__init__.py +0 -0
  321. spec_kitty_cli-0.5.0/tests/test_template/test_asset_generator.py +0 -70
  322. spec_kitty_cli-0.5.0/tests/test_template/test_github_client.py +0 -138
  323. spec_kitty_cli-0.5.0/tests/test_template/test_manager.py +0 -95
  324. spec_kitty_cli-0.5.0/tests/test_template/test_renderer.py +0 -54
  325. spec_kitty_cli-0.5.0/tests/unit/test_gitignore_manager.py +0 -368
  326. spec_kitty_cli-0.5.0/tests/utils.py +0 -75
  327. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/.gitignore +0 -0
  328. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/.kittify/missions/research/templates/data-model-template.md +0 -0
  329. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/.kittify/missions/research/templates/research-template.md +0 -0
  330. {spec_kitty_cli-0.5.0/.kittify/active-mission/commands → spec_kitty_cli-0.7.0/.kittify/missions/software-dev/command-templates}/accept.md +0 -0
  331. {spec_kitty_cli-0.5.0/.kittify/active-mission/commands → spec_kitty_cli-0.7.0/.kittify/missions/software-dev/command-templates}/analyze.md +0 -0
  332. {spec_kitty_cli-0.5.0/.kittify/active-mission/commands → spec_kitty_cli-0.7.0/.kittify/missions/software-dev/command-templates}/checklist.md +0 -0
  333. {spec_kitty_cli-0.5.0/.kittify/active-mission/commands → spec_kitty_cli-0.7.0/.kittify/missions/software-dev/command-templates}/clarify.md +0 -0
  334. {spec_kitty_cli-0.5.0/.kittify/active-mission/commands → spec_kitty_cli-0.7.0/.kittify/missions/software-dev/command-templates}/constitution.md +0 -0
  335. {spec_kitty_cli-0.5.0/.kittify/active-mission/commands → spec_kitty_cli-0.7.0/.kittify/missions/software-dev/command-templates}/dashboard.md +0 -0
  336. {spec_kitty_cli-0.5.0/.kittify/active-mission/commands → spec_kitty_cli-0.7.0/.kittify/missions/software-dev/command-templates}/specify.md +0 -0
  337. {spec_kitty_cli-0.5.0/.kittify/active-mission/commands → spec_kitty_cli-0.7.0/.kittify/missions/software-dev/command-templates}/tasks.md +0 -0
  338. {spec_kitty_cli-0.5.0/.kittify/active-mission → spec_kitty_cli-0.7.0/.kittify/missions/software-dev}/constitution/principles.md +0 -0
  339. {spec_kitty_cli-0.5.0/.kittify/active-mission → spec_kitty_cli-0.7.0/.kittify/missions/software-dev}/mission.yaml +0 -0
  340. {spec_kitty_cli-0.5.0/.kittify/active-mission → spec_kitty_cli-0.7.0/.kittify/missions/software-dev}/templates/plan-template.md +0 -0
  341. {spec_kitty_cli-0.5.0/.kittify/active-mission → spec_kitty_cli-0.7.0/.kittify/missions/software-dev}/templates/spec-template.md +0 -0
  342. {spec_kitty_cli-0.5.0/.kittify/active-mission → spec_kitty_cli-0.7.0/.kittify/missions/software-dev}/templates/task-prompt-template.md +0 -0
  343. {spec_kitty_cli-0.5.0/.kittify/active-mission → spec_kitty_cli-0.7.0/.kittify/missions/software-dev}/templates/tasks-template.md +0 -0
  344. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/LICENSE +0 -0
  345. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/docs/README.md +0 -0
  346. {spec_kitty_cli-0.5.0/.kittify → spec_kitty_cli-0.7.0}/memory/constitution.md +0 -0
  347. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/node_modules/@playwright/test/LICENSE +0 -0
  348. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/node_modules/@playwright/test/README.md +0 -0
  349. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/node_modules/playwright/LICENSE +0 -0
  350. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/node_modules/playwright/README.md +0 -0
  351. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/node_modules/playwright-core/LICENSE +0 -0
  352. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/node_modules/playwright-core/README.md +0 -0
  353. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/accept-feature.sh +0 -0
  354. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/mark-task-status.sh +0 -0
  355. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/merge-feature.sh +0 -0
  356. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/move-task-to-doing.sh +0 -0
  357. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/refresh-kittify-tasks.sh +0 -0
  358. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/setup-sandbox.sh +0 -0
  359. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/tasks-add-history-entry.sh +0 -0
  360. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/tasks-list-lanes.sh +0 -0
  361. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/tasks-move-to-lane.sh +0 -0
  362. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/tasks-rollback-move.sh +0 -0
  363. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/bash/validate-task-workflow.sh +0 -0
  364. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/debug-dashboard-scan.py +0 -0
  365. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/git-hooks/pre-commit-task-workflow.sh +0 -0
  366. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/powershell/Merge-Feature.ps1 +0 -0
  367. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/powershell/Set-TaskStatus.ps1 +0 -0
  368. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/powershell/accept-feature.ps1 +0 -0
  369. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/powershell/check-prerequisites.ps1 +0 -0
  370. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/powershell/common.ps1 +0 -0
  371. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/powershell/create-new-feature.ps1 +0 -0
  372. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/powershell/setup-plan.ps1 +0 -0
  373. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/powershell/tasks-add-history-entry.ps1 +0 -0
  374. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/powershell/tasks-list-lanes.ps1 +0 -0
  375. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/powershell/tasks-rollback-move.ps1 +0 -0
  376. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/powershell/update-agent-context.ps1 +0 -0
  377. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/scripts/release/README.md +0 -0
  378. {spec_kitty_cli-0.5.0/.kittify → spec_kitty_cli-0.7.0}/scripts/validate_encoding.py +0 -0
  379. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/cli/__init__.py +0 -0
  380. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/cli/commands/accept.py +0 -0
  381. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/cli/commands/dashboard.py +0 -0
  382. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/cli/commands/init_help.py +0 -0
  383. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/cli/commands/merge.py +0 -0
  384. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/cli/commands/research.py +0 -0
  385. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/cli/step_tracker.py +0 -0
  386. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/cli/ui.py +0 -0
  387. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/core/__init__.py +0 -0
  388. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/core/git_ops.py +0 -0
  389. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/core/utils.py +0 -0
  390. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/__init__.py +0 -0
  391. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/diagnostics.py +0 -0
  392. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/handlers/__init__.py +0 -0
  393. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/handlers/base.py +0 -0
  394. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/handlers/static.py +0 -0
  395. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/dashboard/static/spec-kitty.png +0 -0
  396. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/template/__init__.py +0 -0
  397. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/template/github_client.py +0 -0
  398. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/src/specify_cli/verify_enhanced.py +0 -0
  399. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/templates/AGENTS.md +0 -0
  400. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/templates/POWERSHELL_SYNTAX.md +0 -0
  401. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/templates/agent-file-template.md +0 -0
  402. {spec_kitty_cli-0.5.0/.kittify → spec_kitty_cli-0.7.0}/templates/checklist-template.md +0 -0
  403. {spec_kitty_cli-0.5.0/.kittify/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/accept.md +0 -0
  404. {spec_kitty_cli-0.5.0/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/analyze.md +0 -0
  405. {spec_kitty_cli-0.5.0/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/checklist.md +0 -0
  406. {spec_kitty_cli-0.5.0/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/clarify.md +0 -0
  407. {spec_kitty_cli-0.5.0/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/constitution.md +0 -0
  408. {spec_kitty_cli-0.5.0/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/dashboard.md +0 -0
  409. {spec_kitty_cli-0.5.0/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/merge.md +0 -0
  410. {spec_kitty_cli-0.5.0/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/plan.md +0 -0
  411. {spec_kitty_cli-0.5.0/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/research.md +0 -0
  412. {spec_kitty_cli-0.5.0/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/specify.md +0 -0
  413. {spec_kitty_cli-0.5.0/.kittify/templates/commands → spec_kitty_cli-0.7.0/templates/command-templates}/tasks.md +0 -0
  414. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/templates/git-hooks/pre-commit-encoding-check +0 -0
  415. {spec_kitty_cli-0.5.0/.kittify → spec_kitty_cli-0.7.0}/templates/plan-template.md +0 -0
  416. {spec_kitty_cli-0.5.0/.kittify → spec_kitty_cli-0.7.0}/templates/spec-template.md +0 -0
  417. {spec_kitty_cli-0.5.0 → spec_kitty_cli-0.7.0}/templates/task-prompt-template.md +0 -0
  418. {spec_kitty_cli-0.5.0/.kittify → spec_kitty_cli-0.7.0}/templates/tasks-template.md +0 -0
  419. {spec_kitty_cli-0.5.0/.kittify → spec_kitty_cli-0.7.0}/templates/vscode-settings.json +0 -0
@@ -17,29 +17,65 @@ You **MUST** consider the user input before proceeding (if not empty).
17
17
 
18
18
  ## Location Pre-flight Check (CRITICAL for AI Agents)
19
19
 
20
- Before proceeding with implementation, verify you are in the correct working directory:
20
+ Before proceeding with implementation, verify you are in the correct working directory by running the shared pre-flight validation:
21
21
 
22
- **Check your current branch:**
23
- ```bash
24
- git branch --show-current
25
- ```
26
-
27
- **Expected output:** A feature branch like `001-feature-name`
28
- **If you see `main`:** You are in the wrong location!
22
+ ```python
23
+ from specify_cli.guards import validate_worktree_location
29
24
 
30
- **This command MUST run from a feature worktree, not the main repository.**
25
+ # Validate location
26
+ result = validate_worktree_location()
27
+ if not result.is_valid:
28
+ print(result.format_error())
29
+ print("\nThis command MUST run from a feature worktree, not the main repository.")
30
+ exit(1)
31
+ ```
31
32
 
32
- If you're on the `main` branch:
33
- 1. Check for available worktrees: `ls .worktrees/`
34
- 2. Navigate to the appropriate feature worktree: `cd .worktrees/<feature-name>`
35
- 3. Verify you're in the right place: `git branch --show-current` should show the feature branch
36
- 4. Then re-run this command
33
+ **What this validates**:
34
+ - Current branch follows the feature pattern like `001-feature-name`
35
+ - You're not attempting to run from `main` or any release branch
36
+ - The validator prints clear navigation instructions if you're outside the feature worktree
37
37
 
38
- The script will fail if you're not in a feature worktree.
39
38
  **Path reference rule:** When you mention directories or files, provide either the absolute path or a path relative to the project root (for example, `kitty-specs/<feature>/tasks/`). Never refer to a folder by name alone.
40
39
 
41
40
  This is intentional - worktrees provide isolation for parallel feature development.
42
41
 
42
+ ## Citation Tracking Requirements (Research Mission)
43
+
44
+ As you conduct research and gather evidence, you MUST maintain proper citation tracking:
45
+
46
+ ### Evidence Log Maintenance
47
+
48
+ **File**: `research/evidence-log.csv`
49
+
50
+ **For each source you review**:
51
+ 1. Read the source and extract key findings
52
+ 2. Add a row to evidence-log.csv with:
53
+ - timestamp: Current time in ISO format (YYYY-MM-DDTHH:MM:SS)
54
+ - source_type: journal | conference | book | web | preprint
55
+ - citation: Full citation in BibTeX or APA format
56
+ - key_finding: 1-2 sentence summary of main takeaway
57
+ - confidence: high | medium | low (based on source quality)
58
+ - notes: Additional context, caveats, or limitations
59
+
60
+ **Citation Format Examples**:
61
+ - BibTeX: `@article{smith2024,author={Smith et al.},title={Paper Title},journal={Journal},year={2024}}`
62
+ - APA: `Smith, J., & Lee, K. (2024). Paper title. Journal Name, 10(2), 123-145.`
63
+ - Simple: `Smith (2024). Paper title. Journal Name. https://doi.org/...`
64
+
65
+ ### Source Registry Maintenance
66
+
67
+ **File**: `research/source-register.csv`
68
+
69
+ **When you discover a new source**:
70
+ 1. Add to source-register.csv immediately
71
+ 2. Assign unique source_id (e.g., "smith2024")
72
+ 3. Include full citation and URL
73
+ 4. Mark status as "pending"
74
+ 5. Update status to "reviewed" after reading
75
+ 6. Assign relevance rating (high/medium/low)
76
+
77
+ **Validation**: Citations will be validated during `/spec-kitty.review`. Errors block review, warnings are advisory.
78
+
43
79
  ## ⚠️ CRITICAL: Review Feedback Check
44
80
 
45
81
  **Before you start implementing**, check for prior review feedback:
@@ -178,7 +214,7 @@ This is intentional - worktrees provide isolation for parallel feature developme
178
214
  - **Kanban discipline**: Use the lane helper scripts to keep the prompt in `tasks/doing/`, update the Activity Log, and capture your shell PID (`echo $$`). These should already be complete from step 3—verify before coding.
179
215
 
180
216
  7. Implementation execution rules:
181
- - **Setup first**: Initialize project structure, dependencies, configuration
217
+ - **Setup first**: Initialize feature scaffolding, dependencies, configuration
182
218
  - **Tests before code**: If you need to write tests for contracts, entities, and integration scenarios
183
219
  - **Core development**: Implement models, services, CLI commands, endpoints
184
220
  - **Integration work**: Database connections, middleware, logging, external services
@@ -270,4 +306,3 @@ Leverage your agent’s native orchestration so one work package advances while
270
306
  - **Amazon Q Developer CLI** – Use Container Use recipes to create multiple isolated Q sessions so one agent handles reviews while another implements new changes.[^amazonq_parallel]
271
307
 
272
308
  If an agent lacks built-in subagents, mimic the pattern manually: open a second terminal, move a review prompt to `tasks/doing/`, and run the reviewer commands there while your primary session keeps coding.
273
-
@@ -4,10 +4,6 @@ scripts:
4
4
  sh: ".kittify/scripts/bash/merge-feature.sh"
5
5
  ps: ".kittify/scripts/powershell/Merge-Feature.ps1"
6
6
  ---
7
- **Path reference rule:** When you mention directories or files, provide either the absolute path or a path relative to the project root (for example, `kitty-specs/<feature>/tasks/`). Never refer to a folder by name alone.
8
-
9
- *Path: [templates/commands/merge.md](templates/commands/merge.md)*
10
-
11
7
 
12
8
  # Merge Feature Branch
13
9
 
@@ -20,13 +16,65 @@ Before running this command:
20
16
  1. ✅ Feature must pass `/spec-kitty.accept` checks
21
17
  2. ✅ All work packages must be in `tasks/done/`
22
18
  3. ✅ Working directory must be clean (no uncommitted changes)
23
- 4. ✅ Run the command from the feature worktree (Spec Kitty will move the merge to the primary repo automatically)
19
+ 4. ✅ You must be on the feature branch (or in its worktree)
20
+
21
+ ## Location Pre-flight Check (CRITICAL for AI Agents)
22
+
23
+ Before merging, verify you are in the correct working directory by running the shared pre-flight validation:
24
+
25
+ ```python
26
+ from specify_cli.guards import validate_worktree_location
27
+
28
+ # Validate location
29
+ result = validate_worktree_location()
30
+ if not result.is_valid:
31
+ print(result.format_error())
32
+ print("\nThis command MUST run from a feature worktree, not the main repository.")
33
+ exit(1)
34
+ ```
35
+
36
+ **What this validates**:
37
+ - Current branch follows the feature pattern like `001-feature-name`
38
+ - You're not attempting to run from `main` or any release branch
39
+ - The validator prints clear navigation instructions if you're outside the feature worktree
40
+
41
+ **Path reference rule:** When you mention directories or files, provide either the absolute path or a path relative to the project root (for example, `kitty-specs/<feature>/tasks/`). Never refer to a folder by name alone.
42
+
43
+ ## Final Research Integrity Check
44
+
45
+ Before merging research to main, perform final validation:
46
+
47
+ ```bash
48
+ # Quick citation validation
49
+ python -c "
50
+ from pathlib import Path
51
+ from specify_cli.validators.research import validate_citations, validate_source_register
52
+
53
+ feature_dir = Path('kitty-specs/$FEATURE_SLUG')
54
+ evidence = feature_dir / 'research' / 'evidence-log.csv'
55
+ sources = feature_dir / 'research' / 'source-register.csv'
56
+
57
+ if evidence.exists():
58
+ result = validate_citations(evidence)
59
+ if result.has_errors:
60
+ print('ERROR: Evidence log has citation errors')
61
+ exit(1)
62
+
63
+ if sources.exists():
64
+ result = validate_source_register(sources)
65
+ if result.has_errors:
66
+ print('ERROR: Source register has errors')
67
+ exit(1)
68
+
69
+ print('✓ Citations validated')
70
+ "
71
+ ```
24
72
 
25
73
  ## What This Command Does
26
74
 
27
75
  1. **Detects** your current feature branch and worktree status
28
76
  2. **Verifies** working directory is clean
29
- 3. **Switches** to the target branch (default: `main`) in the primary repository
77
+ 3. **Switches** to the target branch (default: `main`)
30
78
  4. **Updates** the target branch (`git pull --ff-only`)
31
79
  5. **Merges** the feature using your chosen strategy
32
80
  6. **Optionally pushes** to origin
@@ -142,7 +190,7 @@ my-project/ # Main repo (main branch)
142
190
  1. **Main branch** stays in the primary repo root
143
191
  2. **Feature branches** live in `.worktrees/<feature-slug>/`
144
192
  3. **Work on features** happens in their worktrees (isolation)
145
- 4. **Merge from worktrees** using this command – the CLI will hop to the primary repo for the Git merge
193
+ 4. **Merge from worktrees** using this command
146
194
  5. **Cleanup is automatic** - worktrees removed after merge
147
195
 
148
196
  ### Why Worktrees?
@@ -207,11 +255,10 @@ git branch -d <feature-branch>
207
255
  ## Safety Features
208
256
 
209
257
  1. **Clean working directory check** - Won't merge with uncommitted changes
210
- 2. **Primary repo hand-off** - Automatically runs Git operations from the main checkout when invoked in a worktree
211
- 3. **Fast-forward only pull** - Won't proceed if main has diverged
212
- 4. **Graceful failure** - If merge fails, you can fix manually
213
- 5. **Optional operations** - Push, branch delete, and worktree removal are configurable
214
- 6. **Dry run mode** - Preview exactly what will happen
258
+ 2. **Fast-forward only pull** - Won't proceed if main has diverged
259
+ 3. **Graceful failure** - If merge fails, you can fix manually
260
+ 4. **Optional operations** - Push, branch delete, and worktree removal are configurable
261
+ 5. **Dry run mode** - Preview exactly what will happen
215
262
 
216
263
  ## Examples
217
264
 
@@ -18,25 +18,25 @@ You **MUST** consider the user input before proceeding (if not empty).
18
18
 
19
19
  ## Location Pre-flight Check (CRITICAL for AI Agents)
20
20
 
21
- Before proceeding with planning, verify you are in the correct working directory:
21
+ Before proceeding with planning, verify you are in the correct working directory by running the shared pre-flight validation:
22
22
 
23
- **Check your current branch:**
24
- ```bash
25
- git branch --show-current
26
- ```
27
-
28
- **Expected output:** A feature branch like `001-feature-name`
29
- **If you see `main`:** You are in the wrong location!
23
+ ```python
24
+ from specify_cli.guards import validate_worktree_location
30
25
 
31
- **This command MUST run from a feature worktree, not the main repository.**
26
+ # Validate location
27
+ result = validate_worktree_location()
28
+ if not result.is_valid:
29
+ print(result.format_error())
30
+ print("\nThis command MUST run from a feature worktree, not the main repository.")
31
+ exit(1)
32
+ ```
32
33
 
33
- If you're on the `main` branch:
34
- 1. Check for available worktrees: `ls .worktrees/`
35
- 2. Navigate to the appropriate feature worktree: `cd .worktrees/<feature-name>`
36
- 3. Verify you're in the right place: `git branch --show-current` should show the feature branch
37
- 4. Then re-run this command
34
+ **What this validates**:
35
+ - Current branch follows the feature pattern like `001-feature-name`
36
+ - You're not attempting to run from `main` or any release branch
37
+ - The validator prints clear navigation instructions if you're outside the feature worktree
38
38
 
39
- The script will fail if you're not in a feature worktree. This is intentional - worktrees provide isolation for parallel feature development.
39
+ **Path reference rule:** When you mention directories or files, provide either the absolute path or a path relative to the project root (for example, `kitty-specs/<feature>/tasks/`). Never refer to a folder by name alone.
40
40
 
41
41
  ## Planning Interrogation (mandatory)
42
42
 
@@ -0,0 +1,155 @@
1
+ ---
2
+ description: Perform structured research review with citation validation.
3
+ scripts:
4
+ sh: scripts/bash/check-prerequisites.sh --json --include-tasks
5
+ ps: scripts/powershell/check-prerequisites.ps1 -Json -IncludeTasks
6
+ ---
7
+
8
+ ## User Input
9
+
10
+ ```text
11
+ $ARGUMENTS
12
+ ```
13
+
14
+ You **MUST** consider the user input before proceeding (if not empty).
15
+
16
+ ## Location Pre-flight Check (CRITICAL for AI Agents)
17
+
18
+ Before proceeding with review, verify you are in the correct working directory by running the shared pre-flight validation:
19
+
20
+ ```python
21
+ from specify_cli.guards import validate_worktree_location
22
+
23
+ # Validate location
24
+ result = validate_worktree_location()
25
+ if not result.is_valid:
26
+ print(result.format_error())
27
+ print("\nThis command MUST run from a feature worktree, not the main repository.")
28
+ exit(1)
29
+ ```
30
+
31
+ **What this validates**:
32
+ - Current branch follows the feature pattern like `001-feature-name`
33
+ - You're not attempting to run from `main` or any release branch
34
+ - The validator prints clear navigation instructions if you're outside the feature worktree
35
+
36
+ **Path reference rule:** When you mention directories or files, provide either the absolute path or a path relative to the project root (for example, `kitty-specs/<feature>/tasks/`). Never refer to a folder by name alone.
37
+
38
+ ## Citation Validation (Research Mission Specific)
39
+
40
+ Before reviewing research tasks, validate all citations and sources:
41
+
42
+ ```python
43
+ from pathlib import Path
44
+ from specify_cli.validators.research import validate_citations, validate_source_register
45
+
46
+ # Validate evidence log
47
+ evidence_log = FEATURE_DIR / "research" / "evidence-log.csv"
48
+ if evidence_log.exists():
49
+ result = validate_citations(evidence_log)
50
+ if result.has_errors:
51
+ print(result.format_report())
52
+ print("\nERROR: Citation validation failed. Fix errors before proceeding.")
53
+ exit(1)
54
+ elif result.warning_count > 0:
55
+ print(result.format_report())
56
+ print("\nWarnings found - consider addressing for better citation quality.")
57
+
58
+ # Validate source register
59
+ source_register = FEATURE_DIR / "research" / "source-register.csv"
60
+ if source_register.exists():
61
+ result = validate_source_register(source_register)
62
+ if result.has_errors:
63
+ print(result.format_report())
64
+ print("\nERROR: Source register validation failed.")
65
+ exit(1)
66
+ ```
67
+
68
+ **Validation Requirements**:
69
+ - All sources must be documented with unique `source_id` entries.
70
+ - Citations must be present in both CSVs (format warnings are advisory).
71
+ - Confidence levels should be filled for evidence entries.
72
+ - Research review cannot proceed if validation reports blocking errors.
73
+
74
+ ## Outline
75
+
76
+ 1. Run `{SCRIPT}` from repo root; capture `FEATURE_DIR`, `AVAILABLE_DOCS`, and `tasks.md` path.
77
+
78
+ 2. Determine the review target:
79
+ - If user input specifies a filename, validate it exists under `tasks/for_review/` (support phase subdirectories).
80
+ - Otherwise, select the oldest file in `tasks/for_review/` (lexical order is sufficient because filenames retain task ordering).
81
+ - Abort with instructional message if no files are waiting for review.
82
+
83
+ 3. Load context for the selected task:
84
+ - Read the prompt file frontmatter (lane MUST be `for_review`); note `task_id`, `phase`, `agent`, `shell_pid`.
85
+ - Read the body sections (Objective, Context, Implementation Guidance, etc.).
86
+ - Consult supporting documents as referenced: constitution, plan, spec, data-model, research, quickstart, code changes.
87
+ - Review the associated code in the repository (diffs, tests, docs) to validate the implementation.
88
+
89
+ 4. Conduct the review:
90
+ - Verify implementation against the prompt’s Definition of Done and Review Guidance.
91
+ - Run required tests or commands; capture results.
92
+ - Document findings explicitly: bugs, regressions, missing tests, risks, or validation notes.
93
+
94
+ 5. Decide outcome:
95
+ - **Needs changes**:
96
+ * Append a new entry in the prompt’s **Activity Log** detailing feedback (include timestamp, reviewer agent, shell PID).
97
+ * Update frontmatter `lane` back to `planned`, clear `assignee` if necessary, keep history entry.
98
+ * Add/revise a `## Review Feedback` section (create if missing) summarizing action items.
99
+ * Run `.kittify/scripts/bash/tasks-move-to-lane.sh <FEATURE> <TASK_ID> planned --note "Returned for changes"` (use the PowerShell equivalent on Windows) so the move and history update are staged consistently.
100
+ - **Approved**:
101
+ * Append Activity Log entry capturing approval details (capture shell PID via `echo $$` or helper script).
102
+ * Update frontmatter: set `lane=done`, set reviewer metadata (`agent`, `shell_pid`), optional `assignee` for approver.
103
+ * Use helper script to mark the task complete in `tasks.md` (see Step 6).
104
+ * Run `.kittify/scripts/bash/tasks-move-to-lane.sh <FEATURE> <TASK_ID> done --note "Approved for release"` (PowerShell variant available) to transition the prompt into `tasks/done/`.
105
+
106
+ 6. Update `tasks.md` automatically:
107
+ - Run `scripts/bash/mark-task-status.sh --task-id <TASK_ID> --status done` (POSIX) or `scripts/powershell/Set-TaskStatus.ps1 -TaskId <TASK_ID> -Status done` (PowerShell) from repo root.
108
+ - Confirm the task entry now shows `[X]` and includes a reference to the prompt file in its notes.
109
+
110
+ 7. Produce a review report summarizing:
111
+ - Task ID and filename reviewed.
112
+ - Approval status and key findings.
113
+ - Tests executed and their results.
114
+ - Follow-up actions (if any) for other team members.
115
+ - Reminder to push changes or notify teammates as per project conventions.
116
+
117
+ Context for review: {ARGS}
118
+
119
+ All review feedback must live inside the prompt file, ensuring future implementers understand historical decisions before revisiting the task.
120
+
121
+ ## Citation Validation (Research Mission Specific)
122
+
123
+ Before reviewing research tasks, validate all citations and sources:
124
+
125
+ ```python
126
+ from pathlib import Path
127
+ from specify_cli.validators.research import validate_citations, validate_source_register
128
+
129
+ # Validate evidence log
130
+ evidence_log = FEATURE_DIR / "research" / "evidence-log.csv"
131
+ if evidence_log.exists():
132
+ result = validate_citations(evidence_log)
133
+ if result.has_errors:
134
+ print(result.format_report())
135
+ print("\nERROR: Citation validation failed. Fix errors before proceeding.")
136
+ exit(1)
137
+ elif result.warning_count > 0:
138
+ print(result.format_report())
139
+ print("\nWarnings found - consider addressing for better citation quality.")
140
+
141
+ # Validate source register
142
+ source_register = FEATURE_DIR / "research" / "source-register.csv"
143
+ if source_register.exists():
144
+ result = validate_source_register(source_register)
145
+ if result.has_errors:
146
+ print(result.format_report())
147
+ print("\nERROR: Source register validation failed.")
148
+ exit(1)
149
+ ```
150
+
151
+ **Validation Requirements**:
152
+ - All sources must be documented with unique `source_id` entries.
153
+ - Citations must be present in both CSVs (format warnings are advisory).
154
+ - Confidence levels should be filled for evidence entries.
155
+ - Research review cannot proceed if validation reports blocking errors.
@@ -23,16 +23,16 @@ workflow:
23
23
  artifacts:
24
24
  required:
25
25
  - spec.md # Research question and scope
26
- - plan.md # Methodology plan
27
- - tasks.md # Research tasks
28
- - findings.md # Research findings
26
+ - plan.md # Methodology plan
27
+ - tasks.md # Research work packages
28
+ - findings.md # Synthesized findings
29
29
  optional:
30
- - sources/ # Source documents
31
- - data/ # Raw data
32
- - analysis/ # Analysis outputs
33
- - literature-review.md
34
- - methodology.md
35
- - synthesis.md
30
+ - sources/ # Source documents
31
+ - data/ # Raw data
32
+ - analysis/ # Analysis outputs
33
+ - literature-review.md # Optional extended literature review
34
+ - methodology.md # Detailed methodology appendix
35
+ - synthesis.md # Synthesis notes or drafts
36
36
 
37
37
  # Path conventions for this mission
38
38
  paths:
@@ -68,15 +68,22 @@ mcp_tools:
68
68
  # Agent personality/instructions
69
69
  agent_context: |
70
70
  You are a research agent conducting systematic literature reviews and empirical research.
71
- Your principles emphasize rigorous methodology, source documentation, and evidence synthesis.
72
- You work in structured phases: question → methodology → gather → analyze → synthesize → publish.
71
+ Your mission is to maintain research integrity and methodological rigor throughout every phase.
73
72
 
74
- Key practices:
75
- - Document all sources with proper citations
76
- - Clearly articulate research methodology
77
- - Distinguish evidence from interpretation
78
- - Identify limitations and future research directions
79
- - Synthesize findings to answer research questions
73
+ Key Practices:
74
+ - Document ALL sources in research/source-register.csv with proper citations, URLs, and access dates.
75
+ - Extract findings to research/evidence-log.csv with confidence levels (high/medium/low) and contextual notes.
76
+ - Clearly articulate methodology decisions for reproducibility and peer review.
77
+ - Distinguish raw evidence from interpretation; cite every claim.
78
+ - Identify limitations, threats to validity, and alternative explanations.
79
+ - Synthesize findings so that each conclusion traces back to documented evidence rows.
80
+
81
+ Citation Standards:
82
+ - Use BibTeX or APA format (include DOI or URL when available).
83
+ - Track access dates for all online sources.
84
+ - Assign confidence levels commensurate with source quality.
85
+
86
+ Workflow Phases: question → methodology → gather → analyze → synthesize → publish.
80
87
 
81
88
  # Task metadata fields
82
89
  task_metadata:
@@ -0,0 +1,161 @@
1
+ # Research Plan: [RESEARCH QUESTION]
2
+
3
+ **Branch**: `[###-research-name]` | **Date**: [DATE] | **Spec**: [link]
4
+
5
+ ## Summary
6
+ [One paragraph: research question + methodology + expected outcomes]
7
+
8
+ ## Research Context
9
+
10
+ **Research Question**: [Primary question]
11
+ **Research Type**: Literature Review | Empirical Study | Case Study
12
+ **Domain**: [Academic field or industry domain]
13
+ **Time Frame**: [When research will be conducted]
14
+ **Resources Available**: [Databases, tools, budget, time]
15
+
16
+ **Key Background**:
17
+ - [Context point 1]
18
+ - [Context point 2]
19
+
20
+ ## Methodology
21
+
22
+ ### Research Design
23
+
24
+ **Approach**: [Systematic Literature Review | Survey | Experiment | Mixed Methods]
25
+
26
+ **Phases**:
27
+ 1. **Question Formation** (Week 1)
28
+ - Define precise research question
29
+ - Identify sub-questions
30
+ - Establish scope and boundaries
31
+ 2. **Methodology Design** (Week 1-2)
32
+ - Select data collection methods
33
+ - Define analysis framework
34
+ - Establish quality criteria
35
+ 3. **Data Gathering** (Week 2-4)
36
+ - Search academic databases
37
+ - Screen sources for relevance
38
+ - Extract key findings
39
+ - Populate `research/evidence-log.csv`
40
+ 4. **Analysis** (Week 4-5)
41
+ - Code and categorize findings
42
+ - Identify patterns and themes
43
+ - Assess evidence quality
44
+ 5. **Synthesis** (Week 5-6)
45
+ - Draw conclusions
46
+ - Address research question
47
+ - Identify limitations
48
+ 6. **Publication** (Week 6)
49
+ - Write findings report
50
+ - Prepare presentation
51
+ - Share results
52
+
53
+ ### Data Sources
54
+
55
+ **Primary Sources**:
56
+ - [Database 1: e.g., IEEE Xplore, PubMed, arXiv]
57
+ - [Database 2]
58
+
59
+ **Secondary Sources**:
60
+ - [Gray literature, industry reports, etc.]
61
+
62
+ **Search Strategy**:
63
+ - **Keywords**: [List search terms]
64
+ - **Inclusion Criteria**: [What qualifies for review]
65
+ - **Exclusion Criteria**: [What will be filtered out]
66
+
67
+ ### Analysis Framework
68
+
69
+ **Coding Scheme**: [How findings will be categorized]
70
+ **Synthesis Method**: [Thematic analysis | Meta-analysis | Narrative synthesis]
71
+ **Quality Assessment**: [How source quality will be evaluated]
72
+
73
+ ## Data Management
74
+
75
+ ### Evidence Tracking
76
+
77
+ **File**: `research/evidence-log.csv`
78
+ **Purpose**: Track all evidence collected with citations and findings
79
+
80
+ **Columns**:
81
+ - `timestamp`: When evidence collected (ISO format)
82
+ - `source_type`: journal | conference | book | web | preprint
83
+ - `citation`: Full citation (BibTeX or APA format)
84
+ - `key_finding`: Main takeaway from this source
85
+ - `confidence`: high | medium | low
86
+ - `notes`: Additional context or caveats
87
+
88
+ **Agent Guidance**:
89
+ 1. Read source and extract key finding.
90
+ 2. Add row to evidence-log.csv.
91
+ 3. Assign confidence level based on source quality and clarity.
92
+ 4. Note limitations or alternative interpretations.
93
+
94
+ ### Source Registry
95
+
96
+ **File**: `research/source-register.csv`
97
+ **Purpose**: Maintain master list of all sources for bibliography
98
+
99
+ **Columns**:
100
+ - `source_id`: Unique identifier (e.g., "smith2025")
101
+ - `citation`: Full citation
102
+ - `url`: Link to source (if available)
103
+ - `accessed_date`: When source was accessed
104
+ - `relevance`: high | medium | low
105
+ - `status`: reviewed | pending | archived
106
+
107
+ **Agent Guidance**:
108
+ 1. Add source to register when first discovered.
109
+ 2. Update status as research progresses.
110
+ 3. Maintain relevance ratings to prioritize review.
111
+
112
+ ## Project Structure
113
+
114
+ ### Documentation (this research project)
115
+ ```
116
+ kitty-specs/[###-research]/
117
+ ├── spec.md # Research question and scope
118
+ ├── plan.md # This file - methodology
119
+ ├── tasks.md # Research work packages
120
+ ├── findings.md # Research findings
121
+ ├── research/
122
+ │ ├── evidence-log.csv # All evidence with citations
123
+ │ ├── source-register.csv # Master source list
124
+ │ └── methodology.md # Detailed methodology (optional)
125
+ └── data/ # Raw data (if empirical)
126
+ ```
127
+
128
+ ### Deliverables
129
+ ```
130
+ findings/
131
+ ├── report.md # Main research report
132
+ ├── bibliography.md # Formatted bibliography
133
+ └── presentation/ # Slides or summary (optional)
134
+ ```
135
+
136
+ ## Quality Gates
137
+
138
+ ### Before Data Gathering
139
+ - [ ] Research question is clear and focused
140
+ - [ ] Methodology is documented and reproducible
141
+ - [ ] Data sources identified and accessible
142
+ - [ ] Analysis framework defined
143
+
144
+ ### During Data Gathering
145
+ - [ ] All sources documented in source-register.csv
146
+ - [ ] Evidence logged with proper citations
147
+ - [ ] Confidence levels assigned
148
+ - [ ] Quality threshold maintained
149
+
150
+ ### Before Synthesis
151
+ - [ ] All sources reviewed
152
+ - [ ] Findings coded and categorized
153
+ - [ ] Patterns identified
154
+ - [ ] Limitations documented
155
+
156
+ ### Before Publication
157
+ - [ ] Research question answered
158
+ - [ ] All claims cited
159
+ - [ ] Methodology clear and reproducible
160
+ - [ ] Findings synthesized
161
+ - [ ] Bibliography complete
@@ -0,0 +1,18 @@
1
+ # Evidence Log: Track all research findings with citations
2
+ #
3
+ # Column Definitions:
4
+ # - timestamp: When evidence was collected (ISO format: YYYY-MM-DDTHH:MM:SS)
5
+ # - source_type: journal | conference | book | web | preprint
6
+ # - citation: Full citation (BibTeX, APA, or Simple format)
7
+ # - key_finding: Main takeaway from this source (1-2 sentences)
8
+ # - confidence: high | medium | low (based on source quality and clarity)
9
+ # - notes: Additional context, caveats, or methodological notes
10
+ #
11
+ # Validation: Citations must be non-empty, source_type must be valid
12
+ # Format: BibTeX (@article{...}) or APA (Author (Year). Title.) recommended
13
+ timestamp,source_type,citation,key_finding,confidence,notes
14
+ 2025-01-15T10:00:00,journal,"Smith, J. (2024). AI Code Assistants. Nature Comp Sci, 10(2), 123-145.",AI assistants improve productivity 30%,high,Meta-analysis of 50 peer-reviewed studies
15
+ 2025-01-15T11:30:00,conference,"@inproceedings{jones2024copilot,author={Jones et al.},title={Copilot Study},booktitle={ICSE},year={2024}}",Copilot acceptance rate averages 65%,medium,GitHub internal usage study
16
+ 2025-01-15T14:00:00,web,"GitHub Copilot Stats. https://github.blog/copilot-stats-2024",35M developers actively use Copilot,medium,Self-reported marketing data
17
+ 2025-01-15T15:30:00,preprint,"Lee, K. (2024). AI Pair Programming. arXiv:2024.12345",Real-time suggestions reduce onboarding time,low,Preprint pending peer review
18
+ 2025-01-16T09:00:00,book,"Brown, A. (2023). The AI Developer. O'Reilly Media.",Context-aware tools reduce cognitive load,high,Chapter 7 includes empirical study
@@ -0,0 +1,18 @@
1
+ # Source Register: Master list of all research sources
2
+ #
3
+ # Column Definitions:
4
+ # - source_id: Unique identifier (lowercase, no spaces, e.g., "smith2024")
5
+ # - citation: Full citation (BibTeX or APA format)
6
+ # - url: Direct link to source (DOI, arXiv, or web URL)
7
+ # - accessed_date: Date source was accessed (YYYY-MM-DD)
8
+ # - relevance: high | medium | low (to primary research question)
9
+ # - status: reviewed | pending | archived
10
+ #
11
+ # Usage: Add sources when discovered, update status as research progresses
12
+ # Validation: source_id must be unique
13
+ source_id,citation,url,accessed_date,relevance,status
14
+ smith2024,"Smith, J. (2024). AI Code Assistants. Nature Comp Sci, 10(2), 123-145.",https://doi.org/10.1038/example,2025-01-15,high,reviewed
15
+ jones2024,"@inproceedings{jones2024copilot,author={Jones et al.},title={Copilot Study},booktitle={ICSE 2024},year={2024}}",https://dl.acm.org/example,2025-01-15,high,reviewed
16
+ github2024,"GitHub Copilot Statistics. GitHub Blog.",https://github.blog/copilot-stats-2024,2025-01-15,medium,reviewed
17
+ lee2024,"Lee, K. (2024). AI Pair Programming. arXiv:2024.12345",https://arxiv.org/abs/2024.12345,2025-01-15,low,pending
18
+ brown2023,"Brown, A. (2023). The AI Developer: Human-Machine Collaboration. O'Reilly Media.",https://oreilly.com/example,2025-01-16,high,archived