spec-kitty-cli 3.2.0a7__tar.gz → 3.2.0a9__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.
- spec_kitty_cli-3.2.0a9/CHANGELOG.md +3352 -0
- spec_kitty_cli-3.2.0a9/PKG-INFO +1648 -0
- spec_kitty_cli-3.2.0a9/README.md +1550 -0
- spec_kitty_cli-3.2.0a9/kitty-specs/stability-and-hygiene-hardening-2026-04-01KQ4ARB/tasks/README.md +64 -0
- spec_kitty_cli-3.2.0a9/kitty-specs/stabilization-release-core-bug-fixes-01KPQJAN/tasks/README.md +64 -0
- spec_kitty_cli-3.2.0a9/kitty-specs/unified-charter-bundle-chokepoint-01KP5Q2G/tasks/README.md +64 -0
- spec_kitty_cli-3.2.0a9/pyproject.toml +423 -0
- spec_kitty_cli-3.2.0a9/src/charter/compiler.py +906 -0
- spec_kitty_cli-3.2.0a9/src/charter/interview.py +436 -0
- spec_kitty_cli-3.2.0a9/src/charter/resolver.py +270 -0
- spec_kitty_cli-3.2.0a9/src/charter/synthesizer/orchestrator.py +252 -0
- spec_kitty_cli-3.2.0a9/src/charter/synthesizer/resynthesize_pipeline.py +603 -0
- spec_kitty_cli-3.2.0a9/src/charter/synthesizer/synthesize_pipeline.py +586 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/acceptance/matrix.py +296 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/__init__.py +15 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/classifiers/__init__.py +1 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/classifiers/decisions_events.py +22 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/classifiers/handoff_events.py +22 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/classifiers/meta.py +75 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/classifiers/mission_events.py +96 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/classifiers/status_events.py +133 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/classifiers/status_json.py +101 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/classifiers/wp_files.py +105 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/detectors.py +169 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/engine.py +446 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/identity_adapter.py +212 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/models.py +160 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/serializer.py +27 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/audit/shape_registry.py +198 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/auth/http/me_fetch.py +36 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/auth/session.py +218 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/auth/token_manager.py +408 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/auth/transport.py +484 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/charter_lint/_drg.py +87 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/charter_lint/checks/contradiction.py +154 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/charter_lint/checks/orphan.py +76 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/charter_lint/checks/reference_integrity.py +141 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/charter_lint/checks/staleness.py +180 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/charter_lint/engine.py +146 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/_auth_doctor.py +883 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/advise.py +306 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/agent/mission.py +2314 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/agent/status.py +886 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/agent/tasks.py +3383 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/agent/workflow.py +1862 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/charter.py +2933 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/do_cmd.py +148 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/doctor.py +987 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/implement.py +718 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/invocations_cmd.py +361 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/merge.py +1551 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/migrate_cmd.py +504 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/mission_type.py +500 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/profiles_cmd.py +77 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/review.py +365 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/cli/commands/tracker.py +1125 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/core/execution_context.py +288 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/core/worktree_topology.py +308 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/dashboard/handlers/features.py +412 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/dashboard/handlers/glossary.py +176 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/dashboard/handlers/lint.py +78 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/dashboard/scanner.py +785 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/dashboard/static/dashboard/dashboard.js +1568 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/decisions/emit.py +230 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/doc_analysis/doc_state.py +401 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/doc_analysis/gap_analysis.py +877 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/doctrine_synthesizer/apply.py +834 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/doctrine_synthesizer/conflict.py +244 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/dossier/drift_detector.py +471 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/dossier/emitter_adapter.py +87 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/dossier/events.py +434 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/git/commit_helpers.py +332 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/git/sparse_checkout_remediation.py +450 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/glossary/entity_pages.py +343 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/identity/__init__.py +6 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/identity/project.py +339 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/intake/scanner.py +248 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/invocation/router.py +348 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/merge/preflight.py +239 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/migration/backfill_identity.py +472 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/migration/normalize_mission_lifecycle.py +259 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/mission_brief.py +233 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/missions/_legacy_aliases.py +49 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/missions/_substantive.py +242 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/next/_internal_runtime/discovery.py +358 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/orchestrator_api/commands.py +1093 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/policy/commit_guard.py +155 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/policy/commit_guard_hook.py +138 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/policy/merge_gates.py +276 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/post_merge/review_artifact_consistency.py +120 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/retrospective/mode.py +283 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/review/artifacts.py +252 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/review/prompt_metadata.py +205 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/status/__init__.py +169 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/status/adapters.py +128 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/status/emit.py +656 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/status/lifecycle.py +261 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/status/models.py +422 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/status/reducer.py +336 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/status/store.py +379 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/status/views.py +185 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/status/work_package_lifecycle.py +234 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/__init__.py +190 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/_team.py +76 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/background.py +504 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/batch.py +725 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/client.py +389 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/daemon.py +826 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/diagnostics.py +77 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/dossier_pipeline.py +266 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/emitter.py +1675 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/events.py +495 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/namespace.py +145 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/orphan_sweep.py +398 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/project_identity.py +30 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/queue.py +980 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/routing.py +150 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/runtime.py +396 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/sync/sharing_client.py +155 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/task_utils/support.py +421 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/template/renderer.py +213 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/tracker/origin.py +589 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/upgrade/migrations/m_3_2_4_kittify_profile_handoff.py +315 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/widen/state.py +189 -0
- spec_kitty_cli-3.2.0a9/src/specify_cli/workspace/context.py +804 -0
- spec_kitty_cli-3.2.0a9/tests/reliability/fixtures/README.md +9 -0
- spec_kitty_cli-3.2.0a7/CHANGELOG.md +0 -3289
- spec_kitty_cli-3.2.0a7/PKG-INFO +0 -1648
- spec_kitty_cli-3.2.0a7/README.md +0 -1550
- spec_kitty_cli-3.2.0a7/pyproject.toml +0 -423
- spec_kitty_cli-3.2.0a7/src/charter/compiler.py +0 -902
- spec_kitty_cli-3.2.0a7/src/charter/interview.py +0 -430
- spec_kitty_cli-3.2.0a7/src/charter/resolver.py +0 -269
- spec_kitty_cli-3.2.0a7/src/charter/synthesizer/orchestrator.py +0 -251
- spec_kitty_cli-3.2.0a7/src/charter/synthesizer/resynthesize_pipeline.py +0 -603
- spec_kitty_cli-3.2.0a7/src/charter/synthesizer/synthesize_pipeline.py +0 -586
- spec_kitty_cli-3.2.0a7/src/specify_cli/acceptance/matrix.py +0 -292
- spec_kitty_cli-3.2.0a7/src/specify_cli/auth/session.py +0 -195
- spec_kitty_cli-3.2.0a7/src/specify_cli/auth/token_manager.py +0 -270
- spec_kitty_cli-3.2.0a7/src/specify_cli/auth/transport.py +0 -483
- spec_kitty_cli-3.2.0a7/src/specify_cli/charter_lint/_drg.py +0 -89
- spec_kitty_cli-3.2.0a7/src/specify_cli/charter_lint/checks/contradiction.py +0 -154
- spec_kitty_cli-3.2.0a7/src/specify_cli/charter_lint/checks/orphan.py +0 -78
- spec_kitty_cli-3.2.0a7/src/specify_cli/charter_lint/checks/reference_integrity.py +0 -149
- spec_kitty_cli-3.2.0a7/src/specify_cli/charter_lint/checks/staleness.py +0 -184
- spec_kitty_cli-3.2.0a7/src/specify_cli/charter_lint/engine.py +0 -146
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/_auth_doctor.py +0 -883
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/advise.py +0 -305
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/agent/mission.py +0 -2306
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/agent/status.py +0 -882
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/agent/tasks.py +0 -3334
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/agent/workflow.py +0 -1886
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/charter.py +0 -2932
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/do_cmd.py +0 -147
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/doctor.py +0 -851
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/implement.py +0 -731
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/invocations_cmd.py +0 -360
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/merge.py +0 -1366
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/migrate_cmd.py +0 -504
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/mission_type.py +0 -499
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/profiles_cmd.py +0 -77
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/review.py +0 -299
- spec_kitty_cli-3.2.0a7/src/specify_cli/cli/commands/tracker.py +0 -1125
- spec_kitty_cli-3.2.0a7/src/specify_cli/core/execution_context.py +0 -288
- spec_kitty_cli-3.2.0a7/src/specify_cli/core/worktree_topology.py +0 -308
- spec_kitty_cli-3.2.0a7/src/specify_cli/dashboard/handlers/features.py +0 -402
- spec_kitty_cli-3.2.0a7/src/specify_cli/dashboard/handlers/glossary.py +0 -171
- spec_kitty_cli-3.2.0a7/src/specify_cli/dashboard/handlers/lint.py +0 -76
- spec_kitty_cli-3.2.0a7/src/specify_cli/dashboard/scanner.py +0 -785
- spec_kitty_cli-3.2.0a7/src/specify_cli/dashboard/static/dashboard/dashboard.js +0 -1538
- spec_kitty_cli-3.2.0a7/src/specify_cli/decisions/emit.py +0 -229
- spec_kitty_cli-3.2.0a7/src/specify_cli/doc_analysis/doc_state.py +0 -400
- spec_kitty_cli-3.2.0a7/src/specify_cli/doc_analysis/gap_analysis.py +0 -873
- spec_kitty_cli-3.2.0a7/src/specify_cli/doctrine_synthesizer/apply.py +0 -834
- spec_kitty_cli-3.2.0a7/src/specify_cli/doctrine_synthesizer/conflict.py +0 -244
- spec_kitty_cli-3.2.0a7/src/specify_cli/dossier/drift_detector.py +0 -471
- spec_kitty_cli-3.2.0a7/src/specify_cli/dossier/events.py +0 -448
- spec_kitty_cli-3.2.0a7/src/specify_cli/git/commit_helpers.py +0 -332
- spec_kitty_cli-3.2.0a7/src/specify_cli/git/sparse_checkout_remediation.py +0 -448
- spec_kitty_cli-3.2.0a7/src/specify_cli/glossary/entity_pages.py +0 -341
- spec_kitty_cli-3.2.0a7/src/specify_cli/identity/__init__.py +0 -5
- spec_kitty_cli-3.2.0a7/src/specify_cli/intake/scanner.py +0 -245
- spec_kitty_cli-3.2.0a7/src/specify_cli/invocation/router.py +0 -348
- spec_kitty_cli-3.2.0a7/src/specify_cli/migration/backfill_identity.py +0 -472
- spec_kitty_cli-3.2.0a7/src/specify_cli/migration/normalize_mission_lifecycle.py +0 -258
- spec_kitty_cli-3.2.0a7/src/specify_cli/mission_brief.py +0 -233
- spec_kitty_cli-3.2.0a7/src/specify_cli/missions/_legacy_aliases.py +0 -48
- spec_kitty_cli-3.2.0a7/src/specify_cli/missions/_substantive.py +0 -209
- spec_kitty_cli-3.2.0a7/src/specify_cli/next/_internal_runtime/discovery.py +0 -358
- spec_kitty_cli-3.2.0a7/src/specify_cli/orchestrator_api/commands.py +0 -1143
- spec_kitty_cli-3.2.0a7/src/specify_cli/policy/commit_guard.py +0 -96
- spec_kitty_cli-3.2.0a7/src/specify_cli/policy/commit_guard_hook.py +0 -116
- spec_kitty_cli-3.2.0a7/src/specify_cli/policy/merge_gates.py +0 -272
- spec_kitty_cli-3.2.0a7/src/specify_cli/retrospective/mode.py +0 -279
- spec_kitty_cli-3.2.0a7/src/specify_cli/review/artifacts.py +0 -203
- spec_kitty_cli-3.2.0a7/src/specify_cli/status/__init__.py +0 -163
- spec_kitty_cli-3.2.0a7/src/specify_cli/status/emit.py +0 -542
- spec_kitty_cli-3.2.0a7/src/specify_cli/status/lifecycle.py +0 -257
- spec_kitty_cli-3.2.0a7/src/specify_cli/status/models.py +0 -421
- spec_kitty_cli-3.2.0a7/src/specify_cli/status/reducer.py +0 -321
- spec_kitty_cli-3.2.0a7/src/specify_cli/status/store.py +0 -241
- spec_kitty_cli-3.2.0a7/src/specify_cli/status/views.py +0 -177
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/__init__.py +0 -123
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/background.py +0 -487
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/batch.py +0 -691
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/client.py +0 -421
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/daemon.py +0 -820
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/dossier_pipeline.py +0 -266
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/emitter.py +0 -1650
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/events.py +0 -495
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/namespace.py +0 -145
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/orphan_sweep.py +0 -398
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/project_identity.py +0 -332
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/queue.py +0 -958
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/routing.py +0 -150
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/runtime.py +0 -396
- spec_kitty_cli-3.2.0a7/src/specify_cli/sync/sharing_client.py +0 -155
- spec_kitty_cli-3.2.0a7/src/specify_cli/task_utils/support.py +0 -414
- spec_kitty_cli-3.2.0a7/src/specify_cli/template/renderer.py +0 -207
- spec_kitty_cli-3.2.0a7/src/specify_cli/tracker/origin.py +0 -589
- spec_kitty_cli-3.2.0a7/src/specify_cli/upgrade/migrations/m_3_2_4_kittify_profile_handoff.py +0 -315
- spec_kitty_cli-3.2.0a7/src/specify_cli/widen/state.py +0 -189
- spec_kitty_cli-3.2.0a7/src/specify_cli/workspace/context.py +0 -641
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/.gitignore +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/LICENSE +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/1.x/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/1.x/adr/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/1.x/notes/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/00_landscape/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/01_context/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/02_containers/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/03_components/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/04_implementation_mapping/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/adr/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/initiatives/2026-02-architecture-discovery-and-restructure/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/initiatives/2026-03-054-postmortem/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/initiatives/2026-03-doctrine-execution-integration/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/initiatives/2026-04-mission-nomenclature-reconciliation/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/initiatives/2026-04-tracker-binding-context-discovery/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/initiatives/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/initiatives/next-mission-mappings/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/initiatives/test_improvement/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/2.x/user_journey/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/adrs/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/audience/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/audience/external/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/audience/internal/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/calibration/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/architecture/glossary/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/docs/development/tracking/next-mission-mappings/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/docs/doctrine/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/docs/reference/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/glossary/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/007-frontmatter-only-lane/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/008-unified-python-cli/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/010-workspace-per-work-package-for-parallel-development/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/011-constitution-packaging-safety-and-redesign/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/012-documentation-mission/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/014-comprehensive-end-user-documentation/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/017-smarter-feature-merge-with-preflight/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/018-merge-preflight-documentation/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/019-autonomous-multi-agent-orchestration-research/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/020-autonomous-multi-agent-orchestrator/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/021-orchestrator-end-to-end-testing-suite/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/028-cli-event-emission-sync/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/032-identity-aware-cli-event-sync/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/034-feature-status-state-model-remediation/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/039-cli-2x-readiness/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/041-enable-plan-mission-runtime-support/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/045-mission-handoff-package-version-matrix/handoff/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/045-mission-handoff-package-version-matrix/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/047-mutmut-mutation-testing-ci/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/047-namespace-aware-artifact-body-sync/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/048-tracker-publish-resource-routing/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/049-fix-merge-target-resolution/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/050-state-model-cleanup-foundations/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/051-canonical-state-authority-single-metadata-writer/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/052-acceptance-pipeline-regression-fixes/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/053-orchestrator-api-json-contract-fidelity/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/054-constitution-interview-compiler-and-bootstrap/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/054-state-architecture-cleanup-phase-2/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/055-agent-skills-pack/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/056-documentation-parity-sprint/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/057-canonical-context-architecture-cleanup/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/058-hybrid-prompt-and-shim-agent-surface/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/059-saas-mediated-cli-tracker-reflow/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/060-canonical-status-model-cleanup/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/061-ticket-first-mission-origin-binding/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/062-fix-doctrine-migration-test-failures/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/062-tracker-binding-context-discovery/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/063-universal-charter-rename/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/064-complete-mission-identity-cutover/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/065-tasks-and-lane-stabilization/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/065-wp-metadata-state-type-hardening/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/066-review-loop-stabilization/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/067-runtime-recovery-and-audit-safety/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/068-post-merge-reliability-and-release-hardening/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/069-planning-pipeline-integrity/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/076-init-command-overhaul/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/077-mission-terminology-cleanup/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/078-planning-artifact-and-query-consistency/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/079-post-555-release-hardening/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/080-ci-hardening-and-lint-cleanup/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/080-wpstate-lane-consumer-strangler-fig-phase-2/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/081-canonical-baseline-and-repository-boundary/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/082-stealth-gated-saas-sync-hardening/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/083-agent-skills-codex-vibe/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/auth-tranche-2-5-cli-contract-consumption-01KQEJZK/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/bulk-edit-occurrence-classification-guardrail-01KP423X/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/charter-828-implementation-sprint-01KQD7VB/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/charter-contract-cleanup-tranche-1-01KQATS4/contracts/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/charter-contract-cleanup-tranche-1-01KQATS4/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/charter-e2e-827-followups-01KQAJA0/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/charter-end-user-docs-828-01KQCSYD/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/charter-golden-path-e2e-tranche-1-01KQ806X/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/charter-ownership-consolidation-and-neutrality-hardening-01KPD880/contracts/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/charter-ownership-consolidation-and-neutrality-hardening-01KPD880/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/charter-p7-release-closure-01KQF9B9/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/charter-p7-schema-versioning-provenance-01KQEG13/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/cli-interview-decision-moments-01KPWT8P/contracts/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/cli-interview-decision-moments-01KPWT8P/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/cli-session-survival-daemon-singleton-01KQ9M3M/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/cli-upgrade-nag-lazy-project-migrations-01KQ6YDN/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/cli-widen-mode-and-write-back-01KPXFGJ/contracts/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/cli-widen-mode-and-write-back-01KPXFGJ/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/complexity-code-smell-remediation-01KP15HB/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/doctrine-enrichment-frontend-brownfield-normalization-01KQ48XA/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/documentation-mission-composition-fixup-01KQ6N5X/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/documentation-mission-composition-rewrite-01KQ5M1Y/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/drg-phase-zero-01KP2YCE/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/excise-doctrine-curation-and-inline-references-01KP54J6/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/functional-ownership-map-01KPDY72/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/glossary-drg-chokepoint-01KPTE0P/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/glossary-drg-surfaces-and-charter-lint-01KPTY5Y/designs/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/glossary-drg-surfaces-and-charter-lint-01KPTY5Y/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/glossary-functional-module-extraction-01KPDYM9/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/intake-auto-detect-01KPNGCX/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/legacy-sparse-and-review-lock-hardening-01KP54ZW/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/local-custom-mission-loader-01KQ2VNJ/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/merge-review-status-hardening-sprint-01KQFF35/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/migration-shim-ownership-rules-01KPDYDW/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/mission-retrospective-learning-loop-01KQ6YEG/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/phase-3-charter-synthesizer-pipeline-01KPE222 → spec_kitty_cli-3.2.0a9/kitty-specs/p1-dependency-cycle-cleanup-01KQFXVC}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/phase-4-closeout-host-surfaces-and-trail-01KPWA5X → spec_kitty_cli-3.2.0a9/kitty-specs/phase-3-charter-synthesizer-pipeline-01KPE222}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/phase6-composition-stabilization-01KQ2JAS → spec_kitty_cli-3.2.0a9/kitty-specs/phase-4-closeout-host-surfaces-and-trail-01KPWA5X}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/profile-invocation-runtime-audit-trail-01KPQRX2 → spec_kitty_cli-3.2.0a9/kitty-specs/phase6-composition-stabilization-01KQ2JAS}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/research-mission-composition-rewrite-v2-01KQ4QVV → spec_kitty_cli-3.2.0a9/kitty-specs/private-teamspace-ingress-safeguards-01KQH03Y}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/retire-mission-identity-drift-window-01KP2JNZ → spec_kitty_cli-3.2.0a9/kitty-specs/profile-invocation-runtime-audit-trail-01KPQRX2}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/profile-roles-as-value-object-01KPRJRY/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/release-3-2-0a5-tranche-1-01KQ7YXH/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/release-3-2-0a6-tranche-2-01KQ9MKP/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/runtime-mission-execution-extraction-01KPDYGW → spec_kitty_cli-3.2.0a9/kitty-specs/release-320-workflow-reliability-01KQKV85}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/shared-package-boundary-cutover-01KQ22DS → spec_kitty_cli-3.2.0a9/kitty-specs/research-mission-composition-rewrite-v2-01KQ4QVV}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/software-dev-composition-rewrite-01KQ26CY → spec_kitty_cli-3.2.0a9/kitty-specs/retire-mission-identity-drift-window-01KP2JNZ}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/specify-brief-intake-mode-01KPMXQB → spec_kitty_cli-3.2.0a9/kitty-specs/runtime-mission-execution-extraction-01KPDYGW}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/stability-and-hygiene-hardening-2026-04-01KQ4ARB → spec_kitty_cli-3.2.0a9/kitty-specs/shared-package-boundary-cutover-01KQ22DS}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/stabilization-release-core-bug-fixes-01KPQJAN → spec_kitty_cli-3.2.0a9/kitty-specs/software-dev-composition-rewrite-01KQ26CY}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/kitty-specs/spdd-reasons-doctrine-pack-01KQC4AX/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7/kitty-specs/unified-charter-bundle-chokepoint-01KP5Q2G → spec_kitty_cli-3.2.0a9/kitty-specs/specify-brief-intake-mode-01KPMXQB}/tasks/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/scripts/release/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/scripts/tool_configs/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/_doctrine_paths.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/_drg_helpers.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/bundle.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/catalog.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/compact.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/context.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/corpus/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/corpus/generic.corpus.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/corpus/javascript.corpus.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/corpus/python.corpus.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/defaults.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/evidence/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/evidence/code_reader.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/evidence/corpus_loader.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/evidence/orchestrator.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/extractor.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/generator.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/hasher.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/language_scope.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/neutrality/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/neutrality/banned_terms.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/neutrality/language_scoped_allowlist.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/neutrality/lint.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/parser.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/reference_resolver.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/resolution.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/schemas.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/sync.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/adapter.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/artifact_naming.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/errors.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/evidence.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/fixture_adapter.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/generated_artifact_adapter.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/interview_mapping.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/manifest.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/path_guard.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/project_drg.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/provenance.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/request.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/staging.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/targets.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/topic_resolver.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/validation_gate.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/synthesizer/write_pipeline.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/charter/template_resolver.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/capabilities.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/profile.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/repository.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/schema_models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/architect-alphonso.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/curator-carla.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/designer-dagmar.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/frontend-freddy.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/generic-agent.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/human-in-charge.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/implementer-ivan.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/java-jenny.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/node-norris.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/planner-priti.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/python-pedro.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/researcher-robbie.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/retrospective-facilitator.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/shipped/reviewer-renata.agent.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/agent_profiles/validation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/artifact_kinds.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/base.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/repository.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/001-architectural-integrity-standard.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/003-decision-documentation-requirement.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/010-specification-fidelity-requirement.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/018-doctrine-versioning-requirement.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/024-locality-of-change.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/025-boy-scout-rule.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/028-search-tool-discipline.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/029-agent-commit-signing-policy.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/030-test-and-typecheck-quality-gate.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/031-context-aware-design.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/032-conceptual-alignment.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/033-targeted-staging-policy.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/034-test-first-development.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/035-bulk-edit-occurrence-classification.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/036-black-box-integration-testing.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/037-living-documentation-sync.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/038-structured-prompt-boundary.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/shipped/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/test-first.directive.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/directives/validation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/drg/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/drg/loader.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/drg/migration/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/drg/migration/calibrator.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/drg/migration/extractor.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/drg/migration/id_normalizer.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/drg/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/drg/query.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/drg/validator.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/graph.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/import_candidates/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/import_candidates/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/repository.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/documentation-audit.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/documentation-design.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/documentation-discover.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/documentation-generate.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/documentation-publish.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/documentation-validate.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/implement.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/plan.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/research-gathering.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/research-methodology.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/research-output.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/research-scoping.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/research-synthesis.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/review.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/specify.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/mission_step_contracts/shipped/tasks.step-contract.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/action_index.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/audit/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/audit/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/design/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/design/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/discover/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/discover/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/generate/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/generate/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/publish/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/publish/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/retrospect/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/validate/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/actions/validate/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/expected-artifacts.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/mission-runtime.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/mission.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/divio/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/divio/explanation-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/divio/howto-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/divio/reference-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/divio/tutorial-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/generators/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/generators/jsdoc.json.template +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/generators/sphinx-conf.py.template +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/plan-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/release-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/spec-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/task-prompt-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/documentation/templates/tasks-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/glossary_hook.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/plan/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/plan/mission-runtime.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/plan/mission.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/plan/templates/.gitkeep +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/plan/templates/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/primitives.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/repository.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/actions/gathering/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/actions/gathering/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/actions/methodology/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/actions/methodology/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/actions/output/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/actions/output/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/actions/retrospect/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/actions/scoping/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/actions/scoping/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/actions/synthesis/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/actions/synthesis/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/expected-artifacts.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/mission-runtime.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/mission.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/templates/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/templates/data-model-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/templates/plan-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/templates/research/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/templates/research/evidence-log.csv +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/templates/research/source-register.csv +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/templates/research-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/templates/spec-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/templates/task-prompt-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/research/templates/tasks-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/actions/implement/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/actions/implement/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/actions/plan/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/actions/plan/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/actions/retrospect/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/actions/review/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/actions/review/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/actions/specify/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/actions/specify/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/actions/tasks/guidelines.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/actions/tasks/index.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/expected-artifacts.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/mission-runtime.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/mission.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/templates/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/templates/plan-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/templates/spec-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/templates/task-prompt-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/missions/software-dev/templates/tasks-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/model_task_routing/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/model_task_routing/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/repository.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/shipped/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/shipped/atomic-design.paradigm.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/shipped/behaviour-driven-development.paradigm.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/shipped/c4-incremental-detail-modeling.paradigm.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/shipped/deep-module-design.paradigm.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/shipped/domain-driven-design.paradigm.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/shipped/specification-by-example.paradigm.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/shipped/structured-prompt-driven-development.paradigm.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/test-first.paradigm.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/paradigms/validation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/repository.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/bdd-scenario-lifecycle.procedure.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/disciplined-defect-diagnosis.procedure.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/documentation-gap-prioritization.procedure.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/domain-aware-decision-interview.procedure.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/drill-down-documentation.procedure.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/event-storming-discovery.procedure.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/example-mapping-workshop.procedure.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/issue-triage-state-machine.procedure.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/migrate-project-guidance-to-spec-kitty-charter.procedure.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/refactoring.procedure.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/situational-assessment.procedure.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/shipped/test-first-bug-fixing.procedure.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/procedures/validation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/pyproject.toml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/resolver.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/schemas/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/schemas/agent-profile.schema.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/schemas/directive.schema.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/schemas/import-candidate.schema.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/schemas/mission.schema.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/schemas/model-to-task_type.schema.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/schemas/occurrence-map.schema.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/schemas/paradigm.schema.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/schemas/procedure.schema.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/schemas/styleguide.schema.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/schemas/tactic.schema.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/schemas/toolguide.schema.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/service.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/shared/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/shared/errors.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/shared/exceptions.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/shared/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/shared/schema_utils.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/shared/scoping.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/ad-hoc-profile-load/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-bulk-edit-classification/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-charter-doctrine/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-charter-doctrine/references/charter-command-map.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-charter-doctrine/references/doctrine-artifact-structure.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-git-workflow/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-git-workflow/references/git-operations-matrix.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-glossary-context/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-glossary-context/references/glossary-field-guide.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-glossary-context/references/semantic-drift-examples.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-implement-review/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-implement-review/references/agent-dispatch-matrix.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-implement-review/references/rejection-loop-checklist.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-mission-review/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-mission-review/references/mission-review-fr-trace-guide.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-mission-system/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-mission-system/references/mission-comparison-matrix.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-orchestrator-api-operator/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-orchestrator-api-operator/references/host-boundary-rules.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-orchestrator-api-operator/references/orchestrator-api-contract.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-program-orchestrate/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-runtime-next/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-runtime-next/references/blocked-state-recovery.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-runtime-next/references/runtime-result-taxonomy.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-runtime-review/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-runtime-review/references/review-checklist.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-setup-doctor/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-setup-doctor/references/agent-path-matrix.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-setup-doctor/references/common-failure-signatures.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-setup-doctor/scripts/.gitkeep +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/skills/spec-kitty-spdd-reasons/SKILL.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/spdd_reasons/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/spdd_reasons/activation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/spdd_reasons/charter_context.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/spdd_reasons/template_renderer.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/python-implementation.styleguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/repository.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/shipped/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/shipped/aggregate-design-rules.styleguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/shipped/deployable-skill-authoring.styleguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/shipped/java-conventions.styleguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/shipped/mutation-aware-test-design.styleguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/shipped/python-conventions.styleguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/shipped/reasons-canvas-writing.styleguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/shipped/testing-principles.styleguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/shipped/writing/kitty-glossary-writing.styleguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/validation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/writing/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/styleguides/writing/kitty-glossary-writing.styleguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/acceptance-test-first.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/glossary-curation-interview.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/repository.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/ammerse-impact-analysis.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/analysis-extract-before-interpret.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/bounded-context-canvas-fill.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/bounded-context-identification.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/code-documentation-analysis.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/connascence-analysis.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/context-boundary-inference.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/context-mapping-classification.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/entity-value-object-classification.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/premortem-risk-identification.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/requirements-validation-workflow.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/reverse-speccing.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/safe-to-fail-experiment.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/strategic-domain-classification.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/analysis/terminology-extraction-mapping.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/aggregate-boundary-design.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/anti-corruption-layer.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/architecture-diagram-review-checklist.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/atomic-design-review-checklist.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/atomic-state-ownership.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/c4-zoom-in-architecture-documentation.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/compositional-stream-boundaries.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/cross-cutting-state-via-store.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/deepening-opportunity-assessment.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/dependency-hygiene.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/development-bdd.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/domain-event-capture.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/interface-variation-design.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/language-driven-design.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/problem-decomposition.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/architecture/reference-architectural-patterns.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/autonomous-operation-protocol.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/avoid-gold-plating.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/behavior-driven-development.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/change-apply-smallest-viable-diff.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/code-review-incremental.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/communication/adr-drafting-workflow.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/communication/decision-marker-capture.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/communication/documentation-curation-audit.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/communication/glossary-curation-interview.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/communication/stakeholder-alignment.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/communication/traceable-decisions.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/communication/usage-examples-sync.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/easy-to-change.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/eisenhower-prioritisation.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/input-validation-fail-fast.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/locality-of-change.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/occurrence-classification-workflow.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/reasons-canvas-fill.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/reasons-canvas-review.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-change-function-declaration.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-combine-functions-into-transform.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-conditional-to-strategy.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-consolidate-conditional-expression.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-encapsulate-record.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-encapsulate-variable.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-extract-class-by-responsibility-split.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-extract-first-order-concept.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-guard-clauses-before-polymorphism.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-inline-temp.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-introduce-null-object.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-move-field.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-move-method.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-replace-magic-number-with-symbolic-constant.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-replace-temp-with-query.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-retry-pattern.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-state-pattern-for-behavior.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/refactoring/refactoring-strangler-fig.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/review-intent-and-risk-first.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/secure-design-checklist.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/stopping-conditions.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/acceptance-test-first.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/atdd-adversarial-acceptance.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/black-box-integration-testing.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/bug-fixing-checklist.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/formalized-constraint-testing.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/function-over-form-testing.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/mutation-testing-workflow.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/no-parallel-duplicate-test-runs.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/quality-gate-verification.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/tdd-red-green-refactor.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/test-boundaries-by-responsibility.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/test-minimisation.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/test-pyramid-progression.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/test-readability-clarity-check.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/test-to-system-reconstruction.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/testing-select-appropriate-level.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/testing/zombies-tdd.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/shipped/work-package-completion-validation.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/tdd-red-green-refactor.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/validation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/tactics/zombies-tdd.tactic.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/AGENTS.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/agent-file-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/adr-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/ammerse-analysis-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/bounded-context-canvas-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/c4-component-mermaid-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/c4-container-mermaid-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/c4-context-mermaid-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/glossary-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/lightweight-prestudy-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/quality-attribute-assessment-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/risk-identification-assessment-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/stakeholder-persona-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/swot-analysis-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/system-context-canvas-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/architecture/user-journey-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/checklist-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/claudeignore-template +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/mermaid/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/mermaid/examples/causal-map-mermaid-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/mermaid/examples/content-map-mermaid-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/mermaid/examples/frontend-architecture-mermaid-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/mermaid/examples/repo-content-graph-mermaid-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/mermaid/examples/request-lifecycle-sequence-mermaid-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/mermaid/examples/structure-meta-model-mermaid-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/mermaid/examples/system-map-mermaid-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/mermaid/themes/mermaid-theme-bluegray-conversation-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/mermaid/themes/mermaid-theme-common-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/plantuml/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/plantuml/examples/causal-map-plantuml-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/plantuml/examples/content-map-plantuml-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/plantuml/examples/event-storming-plantuml-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/plantuml/examples/frontend-architecture-plantuml-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/plantuml/examples/repo-content-graph-plantuml-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/plantuml/examples/request-lifecycle-plantuml-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/plantuml/examples/structure-meta-model-plantuml-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/plantuml/examples/system-map-plantuml-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/plantuml/themes/plantuml-theme-bluegray-conversation-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/plantuml/themes/plantuml-theme-common-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/plantuml/themes/plantuml-theme-stickies-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/themes/mermaid-theme-bluegray-conversation-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/diagrams/themes/mermaid-theme-common-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/fragments/reasons-canvas-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/guides/HOW-TO.template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/occurrence-map-template.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/plan-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/profile-context.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/repository.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/sets/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/spec-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/structure/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/structure/REPO_MAP.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/structure/SURFACES.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/task-prompt-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/tasks-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/triage/agent-brief-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/triage/out-of-scope-record-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/templates/vscode-settings.json +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/POWERSHELL_SYNTAX.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/powershell-syntax.toolguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/repository.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/CONTEXTIVE.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/EFFICIENT_LOCAL_TOOLING.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/GIT_AGENT_COMMIT_SIGNING.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/MAVEN_REVIEW_CHECKS.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/MERMAID_DIAGRAMMING.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/PLANTUML_DIAGRAMMING.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/PYTHON_MUTATION_TOOLS.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/PYTHON_REVIEW_CHECKS.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/TYPESCRIPT_MUTATION_TOOLS.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/contextive.toolguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/efficient-local-tooling.toolguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/git-agent-commit-signing.toolguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/maven-review-checks.toolguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/mermaid-diagramming.toolguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/plantuml-diagramming.toolguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/python-mutation-tools.toolguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/python-review-checks.toolguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/system_tools/RTK_SEARCH_TOOLING.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/system_tools/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/system_tools/rtk-search-tooling.toolguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/shipped/typescript-mutation-tools.toolguide.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/toolguides/validation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/versioning.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/doctrine/yaml_utils.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/kernel/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/kernel/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/kernel/_safe_re.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/kernel/atomic.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/kernel/glossary_runner.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/kernel/glossary_types.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/kernel/paths.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/.contextive/dossier.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/.contextive/execution.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/.contextive/governance.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/.contextive/lexical.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/.contextive/orchestration.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/.contextive/system-events.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/.contextive/technology-foundations.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/__main__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/acceptance/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/acceptance/__main__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/acceptance_matrix.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/agent_utils/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/agent_utils/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/agent_utils/directories.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/agent_utils/status.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/config.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/device_flow/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/device_flow/poller.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/device_flow/state.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/errors.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/flows/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/flows/authorization_code.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/flows/device_code.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/flows/refresh.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/flows/revoke.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/http/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/http/transport.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/loopback/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/loopback/browser_launcher.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/loopback/callback_handler.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/loopback/callback_server.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/loopback/pkce.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/loopback/state.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/loopback/state_manager.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/manager.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/refresh_transaction.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/secure_storage/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/secure_storage/abstract.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/secure_storage/file_fallback.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/secure_storage/windows_storage.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/websocket/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/auth/websocket/token_provisioning.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/bulk_edit/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/bulk_edit/diff_check.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/bulk_edit/gate.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/bulk_edit/inference.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/bulk_edit/occurrence_map.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/calibration/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/calibration/inequality.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/calibration/walker.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/charter_lint/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/charter_lint/checks/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/charter_lint/findings.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/.contextive.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/_auth_login.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/_auth_logout.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/_auth_status.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/_auth_whoami.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/_branch_strategy_gate.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/accept.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/agent/README.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/agent/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/agent/config.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/agent/context.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/agent/release.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/agent/tests.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/agent_retrospect.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/auth.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/charter_bundle.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/config_cmd.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/context.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/dashboard.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/decision.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/glossary.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/init.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/init_help.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/intake.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/lifecycle.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/materialize.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/merge_driver.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/mission.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/next_cmd.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/ops.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/research.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/sync.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/upgrade.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/validate_encoding.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/validate_tasks.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/commands/verify.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/helpers.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/selector_resolution.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/step_tracker.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/cli/ui.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/_adapters/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/_adapters/detector.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/_adapters/gate.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/_adapters/version_checker.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/_detect/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/_detect/install_method.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/cache.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/config.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/doctor.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/messages.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/planner.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/provider.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/registry.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/safety.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/safety_modes.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/compat/upgrade_hint.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/context/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/context/errors.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/context/middleware.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/context/mission_resolver.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/context/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/context/resolver.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/context/store.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/agent_config.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/atomic.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/config.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/constants.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/context_validation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/contract_gate.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/dependency_graph.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/dependency_parser.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/file_lock.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/git_ops.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/git_preflight.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/identity_aliases.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/mission_creation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/paths.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/project_resolver.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/stale_detection.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/tool_checker.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/upstream_contract.json +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/utils.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/vcs/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/vcs/detection.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/vcs/exceptions.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/vcs/git.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/vcs/protocol.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/vcs/types.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/version_checker.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/worktree.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/core/wps_manifest.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/api_types.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/charter_path.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/diagnostics.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/handlers/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/handlers/api.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/handlers/base.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/handlers/router.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/handlers/static.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/lifecycle.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/server.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/static/dashboard/dashboard.css +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/static/js/dossier-panel.js +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/static/spec-kitty.png +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/templates/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/templates/glossary.html +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dashboard/templates/index.html +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/decisions/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/decisions/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/decisions/service.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/decisions/store.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/decisions/verify.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/diagnostics/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/diagnostics/dedup.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/doc_analysis/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/doc_analysis/doc_generators.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/doc_generators.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/doc_state.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/doctrine_synthesizer/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/doctrine_synthesizer/provenance.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dossier/.contextive.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dossier/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dossier/api.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dossier/hasher.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dossier/indexer.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dossier/manifest.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dossier/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/dossier/snapshot.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/encoding.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/events/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/events/adapter.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/frontmatter.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/gap_analysis.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/git/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/git/sparse_checkout.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/gitignore_manager.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/.contextive.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/attachment.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/checkpoint.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/chokepoint.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/clarification.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/conflict.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/drg_builder.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/events.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/exceptions.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/extraction.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/middleware.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/observation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/pipeline.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/prompts.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/py.typed +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/rendering.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/resolution.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/scope.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/semantic_events.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/store.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/glossary/strictness.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/identity/aliases.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/intake/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/intake/brief_writer.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/intake/errors.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/intake/provenance.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/intake_sources.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/invocation/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/invocation/errors.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/invocation/executor.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/invocation/lifecycle.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/invocation/modes.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/invocation/projection_policy.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/invocation/propagator.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/invocation/record.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/invocation/registry.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/invocation/writer.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/lanes/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/lanes/branch_naming.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/lanes/compute.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/lanes/implement_support.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/lanes/lane_env.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/lanes/merge.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/lanes/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/lanes/persistence.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/lanes/recovery.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/lanes/stale_check.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/lanes/worktree_allocator.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/legacy_detector.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/manifest.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/merge/.contextive.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/merge/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/merge/config.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/merge/conflict_resolver.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/merge/ordering.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/merge/state.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/merge/workspace.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/migration/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/migration/backfill_ownership.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/migration/gate.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/migration/rebuild_state.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/migration/rewrite_shims.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/migration/runner.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/migration/schema_version.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/migration/strip_frontmatter.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_loader/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_loader/command.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_loader/contract_synthesis.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_loader/errors.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_loader/registry.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_loader/retrospective.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_loader/validator.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_metadata.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_step_contracts/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_step_contracts/executor.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_v1/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_v1/compat.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_v1/events.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_v1/guards.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_v1/runner.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/mission_v1/schema.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/.contextive.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/expected-artifacts.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/mission-runtime.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/mission.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/templates/divio/explanation-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/templates/divio/howto-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/templates/divio/reference-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/templates/divio/tutorial-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/templates/generators/jsdoc.json.template +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/templates/generators/sphinx-conf.py.template +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/templates/plan-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/templates/release-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/templates/spec-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/templates/task-prompt-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/documentation/templates/tasks-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/plan/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/plan/mission-runtime.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/plan/mission.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/plan/plan_interview.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/plan/specify_interview.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/plan/templates/.gitkeep +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/research/expected-artifacts.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/research/mission-runtime.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/research/mission.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/research/templates/data-model-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/research/templates/plan-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/research/templates/research/evidence-log.csv +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/research/templates/research/source-register.csv +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/research/templates/research-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/research/templates/spec-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/research/templates/task-prompt-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/research/templates/tasks-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/command-templates/analyze.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/command-templates/charter.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/command-templates/implement.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/command-templates/plan.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/command-templates/research.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/command-templates/review.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/command-templates/specify.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/command-templates/tasks-finalize.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/command-templates/tasks-outline.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/command-templates/tasks-packages.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/command-templates/tasks.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/expected-artifacts.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/mission-runtime.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/mission.yaml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/templates/plan-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/templates/spec-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/templates/task-prompt-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/missions/software-dev/templates/tasks-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/contracts.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/emitter.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/engine.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/events.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/lifecycle.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/planner.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/raci.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/retrospective_hook.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/retrospective_terminus.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/schema.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_internal_runtime/significance.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/_runtime_pkg_notice.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/decision.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/prompt_builder.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/next/runtime_bridge.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/orchestrator_api/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/orchestrator_api/envelope.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/ownership/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/ownership/audit_targets.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/ownership/inference.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/ownership/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/ownership/validation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/ownership/workspace_strategy.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/paths/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/paths/windows_migrate.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/paths/windows_paths.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/plan_validation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/policy/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/policy/audit.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/policy/config.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/policy/hook_installer.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/policy/risk_scorer.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/post_merge/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/post_merge/stale_assertions.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/release/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/release/changelog.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/release/payload.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/release/version.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/requirement_mapping.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/retrospective/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/retrospective/cli.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/retrospective/config.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/retrospective/events.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/retrospective/gate.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/retrospective/lifecycle.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/retrospective/reader.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/retrospective/schema.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/retrospective/summary.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/retrospective/writer.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/review/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/review/arbiter.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/review/baseline.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/review/dirty_classifier.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/review/fix_prompt.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/review/lock.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/runtime/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/runtime/agent_commands.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/runtime/agent_skills.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/runtime/bootstrap.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/runtime/doctor.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/runtime/home.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/runtime/merge.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/runtime/migrate.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/runtime/resolver.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/runtime/show_origin.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/saas/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/saas/readiness.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/saas/rollout.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/saas_client/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/saas_client/auth.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/saas_client/client.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/saas_client/endpoints.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/saas_client/errors.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/schemas/wps.schema.json +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/scripts/tasks/acceptance_support.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/scripts/tasks/task_helpers.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/scripts/tasks/tasks_cli.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/shims/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/shims/generator.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/shims/registry.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/_user_input_block.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/command_installer.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/command_renderer.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/data/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/data/skills-manifest.schema.json +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/installer.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/manifest.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/manifest_errors.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/manifest_store.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/paths.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/registry.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/verifier.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/skills/vibe_config.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/state/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/state/contract.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/state/doctor.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/state_contract.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/.contextive.yml +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/bootstrap.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/doctor.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/event_log_merge.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/history_parser.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/identity_audit.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/lane_reader.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/locking.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/preflight.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/progress.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/transition_context.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/transitions.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/validate.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/wp_metadata.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/status/wp_state.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/sync/body_queue.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/sync/body_transport.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/sync/body_upload.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/sync/clock.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/sync/config.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/sync/diagnose.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/sync/feature_flags.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/sync/git_metadata.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/sync/replay.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/sync/runtime_event_emitter.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/sync/tracker_client_glue.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/task_metadata_validation.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/task_profile.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/task_utils/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tasks_support.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/template/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/template/asset_generator.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/template/manager.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/templates/AGENTS.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/templates/POWERSHELL_SYNTAX.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/templates/agent-file-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/templates/checklist-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/templates/claudeignore-template +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/templates/plan-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/templates/spec-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/templates/task-prompt-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/templates/tasks-template.md +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/templates/vscode-settings.json +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/text_sanitization.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/config.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/credentials.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/discovery.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/factory.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/feature_flags.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/local_service.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/origin_models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/saas_client.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/saas_service.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/service.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/store.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/tracker/ticket_context.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/compat.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/detector.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/feature_meta.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/metadata.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/_legacy_codex_hashes.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/base.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_10_0_python_only.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_10_12_charter_cleanup.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_10_14_update_implement_slash_command.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_10_1_populate_slash_commands.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_10_2_update_slash_commands.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_10_6_workflow_simplification.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_10_8_fix_memory_structure.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_10_9_repair_templates.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_11_1_improved_workflow_templates.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_11_1_update_implement_slash_command.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_11_2_improved_workflow_templates.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_11_3_workflow_agent_flag.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_12_0_documentation_mission.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_12_1_remove_kitty_specs_from_gitignore.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_13_0_research_csv_schema_check.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_13_0_update_charter_templates.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_13_0_update_research_implement_templates.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_13_1_exclude_worktrees.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_13_5_add_commit_workflow_to_templates.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_13_8_target_branch.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_14_0_centralized_feature_detection.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_16_2_remove_wp_status_gitignore_rule.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_2_0_specify_to_kittify.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_4_8_gitignore_agents.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_6_5_commands_rename.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_6_7_ensure_missions.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_7_2_worktree_commands_dedup.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_7_3_update_scripts.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_8_0_remove_active_mission.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_8_0_worktree_agents_symlink.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_9_0_frontmatter_only_lanes.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_9_1_complete_lane_migration.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_0_9_2_research_mission_templates.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_0_0_charter_directory.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_0_0_historical_status_migration.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_0_0_retire_git_hooks.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_0_11_install_skills.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_0_11_remove_clarify_command.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_0_1_fix_generated_command_templates.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_0_1_tool_config_key_rename.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_0_2_charter_context_bootstrap.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_0_6_consistency_sweep.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_0_7_fix_stale_overrides.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_0_9_state_gitignore.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_1_1_repair_skill_pack.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_1_2_fix_charter_doctrine_skill.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_1_2_fix_glossary_context_skill.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_1_2_fix_orchestrator_api_skill.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_1_2_fix_runtime_next_skill.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_1_2_install_git_workflow_skill.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_1_2_install_mission_system_skill.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_1_2_remove_release_skill.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_1_3_fix_planning_repository_terminology.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_1_3_restore_prompt_commands.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_1_4_enforce_command_file_state.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_2_2_0_profile_context_deployment.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_0_0_canonical_context.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_0_2_restore_prompt_commands.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_0_3_globalize_skill_pack.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_1_1_charter_rename.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_1_1_direct_canonical_commands.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_1_1_event_log_merge_driver.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_1_1_normalize_status_json.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_1_2_globalize_commands.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_2_0_codex_to_skills.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_2_0_update_planning_templates.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_2_0a4_normalize_mission_lifecycle.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_2_0a4_safe_globalize_commands.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_2_1_strip_selection_config.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_2_3_unified_bundle.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_2_4_repository_root_checkout_terminology.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_2_5_fix_prompt_file_workaround.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/migrations/m_3_2_6_charter_bundle_v2.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/registry.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/runner.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/upgrade/skill_update.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/validators/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/validators/csv_schema.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/validators/paths.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/validators/research.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/verify_enhanced.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/version_utils.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/widen/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/widen/audience.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/widen/flow.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/widen/interview_helpers.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/widen/models.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/widen/prereq.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/widen/review.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/workspace/__init__.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/workspace/assert_initialized.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/workspace/root_resolver.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/src/specify_cli/workspace_context.py +0 -0
- {spec_kitty_cli-3.2.0a7 → spec_kitty_cli-3.2.0a9}/tests/README.md +0 -0
|
@@ -0,0 +1,3352 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
<!-- markdownlint-disable MD024 -->
|
|
4
|
+
|
|
5
|
+
All notable changes to the Spec Kitty CLI and templates are documented here.
|
|
6
|
+
|
|
7
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
8
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
9
|
+
|
|
10
|
+
## [Unreleased]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
### Removed
|
|
19
|
+
|
|
20
|
+
## [3.2.0a9] - 2026-05-03
|
|
21
|
+
|
|
22
|
+
3.2.0a9 is a prerelease that adds mission-state audit diagnostics and hardens
|
|
23
|
+
the 3.2.0 workflow reliability path for implementation, review, merge, and
|
|
24
|
+
release-blocker triage.
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
|
|
28
|
+
- Added a read-only mission-state audit engine for inspecting mission status,
|
|
29
|
+
work package state, review artifacts, and lifecycle consistency without
|
|
30
|
+
mutating project state.
|
|
31
|
+
- Added reliability fixture coverage for branch, mission, review prompt, and
|
|
32
|
+
sync workflows used by the 3.2.0 release-blocker tranche.
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
|
|
36
|
+
- Implementation start is now idempotent across planned, claimed, and
|
|
37
|
+
in-progress task states, preventing duplicate or inconsistent lifecycle
|
|
38
|
+
transitions (#946).
|
|
39
|
+
- Merge preflight now refreshes the target branch tracking ref before enforcing
|
|
40
|
+
target-branch synchronization, so stale local `origin/main` state cannot
|
|
41
|
+
allow an unsafe merge (#959).
|
|
42
|
+
- Merge, review prompt, worktree ownership, sync finalization, and review
|
|
43
|
+
artifact consistency checks now have tighter diagnostics and regression
|
|
44
|
+
coverage for the 3.2.0 workflow reliability tranche (#959).
|
|
45
|
+
- Command JSON output now avoids leaking non-serializable status event mocks in
|
|
46
|
+
covered move-task paths, preserving strict JSON command contracts.
|
|
47
|
+
|
|
48
|
+
### Internal
|
|
49
|
+
|
|
50
|
+
- Recorded the atomic work-package start lifecycle ADR and expanded regression
|
|
51
|
+
coverage around status persistence, bootstrap seeding, merge preflight, and
|
|
52
|
+
test sync isolation.
|
|
53
|
+
- Restored CI release confidence by covering the previously failing
|
|
54
|
+
`fast-tests-core-misc`, `integration-tests-merge`, `integration-tests-cli`,
|
|
55
|
+
and `diff-coverage` gates.
|
|
56
|
+
|
|
57
|
+
## [3.2.0a8] - 2026-05-01
|
|
58
|
+
|
|
59
|
+
3.2.0a8 is a prerelease that hardens direct SaaS sync ingress around the
|
|
60
|
+
Private Teamspace boundary. CLI sync side effects now resolve a canonical
|
|
61
|
+
Private Teamspace target, rehydrate session membership once when needed, and
|
|
62
|
+
skip direct ingress with a diagnostic instead of falling back to a shared team.
|
|
63
|
+
|
|
64
|
+
### Fixed
|
|
65
|
+
|
|
66
|
+
- Direct sync ingress for `/api/v1/events/batch/` and `/api/v1/ws-token` now
|
|
67
|
+
uses a strict Private Teamspace resolver and refuses shared-team fallbacks
|
|
68
|
+
from stale `default_team_id`, `teams[0]`, or websocket state (#943).
|
|
69
|
+
- Auth refresh and session rehydration now update team membership from
|
|
70
|
+
`/api/v1/me`, recomputing `default_team_id` from the refreshed private team
|
|
71
|
+
list instead of preserving stale shared defaults (#943).
|
|
72
|
+
- `--json` command stdout remains parseable when SaaS sync cannot connect or
|
|
73
|
+
cannot resolve a Private Teamspace; sync diagnostics route to stderr or
|
|
74
|
+
structured logs rather than contaminating stdout (#943).
|
|
75
|
+
|
|
76
|
+
### Internal
|
|
77
|
+
|
|
78
|
+
- Added strict resolver, sync call-site, websocket, offline queue, and
|
|
79
|
+
strict-JSON regression coverage for the Private Teamspace ingress boundary.
|
|
80
|
+
- Added mission review evidence for
|
|
81
|
+
`private-teamspace-ingress-safeguards-01KQH03Y`.
|
|
82
|
+
|
|
83
|
+
## [3.2.0a7] - 2026-05-01
|
|
84
|
+
|
|
85
|
+
3.2.0a7 is a focused prerelease that bounds WebSocket sync startup and
|
|
86
|
+
shutdown behavior. Short-lived agent commands now fail over to batch sync
|
|
87
|
+
instead of hanging indefinitely when a local sync socket accepts the
|
|
88
|
+
connection but never emits the initial snapshot.
|
|
89
|
+
|
|
90
|
+
### Fixed
|
|
91
|
+
|
|
92
|
+
- WebSocket sync startup now has bounded open, initial snapshot, and close
|
|
93
|
+
deadlines so `spec-kitty agent mission setup-plan` and other short-lived
|
|
94
|
+
commands degrade to batch sync instead of blocking forever on a stalled
|
|
95
|
+
sync socket (#936).
|
|
96
|
+
|
|
97
|
+
### Internal
|
|
98
|
+
|
|
99
|
+
- Added regression coverage for a WebSocket connection that never sends the
|
|
100
|
+
initial snapshot and for shutdown paths where the close handshake stalls.
|
|
101
|
+
- Aligned existing Bandit suppressions in touched sync/readiness callsites so
|
|
102
|
+
local and CI security scans recognize the intended safe dynamic SQL and
|
|
103
|
+
localhost URL patterns.
|
|
104
|
+
|
|
105
|
+
## [3.2.0a6] - 2026-04-30
|
|
106
|
+
|
|
107
|
+
3.2.0a6 is a prerelease hardening sweep that restores the documented
|
|
108
|
+
fresh-project golden path (`init` → charter `setup`/`generate`/
|
|
109
|
+
`synthesize` → `next`), locks in strict JSON for covered `--json` commands
|
|
110
|
+
under any SaaS state, fixes agent identity parsing and review-cycle
|
|
111
|
+
accounting, adds paired profile-invocation lifecycle observability for
|
|
112
|
+
`spec-kitty next`, and tightens merge/review/status recovery paths. The
|
|
113
|
+
release introduces the new top-level `spec-kitty review` mission-review
|
|
114
|
+
command and no new top-level runtime dependencies.
|
|
115
|
+
|
|
116
|
+
### Fixed
|
|
117
|
+
|
|
118
|
+
- `charter bundle validate --json` now fail-closes on incomplete Charter
|
|
119
|
+
synthesis state while preserving strict JSON stdout. Sidecar-only bundles,
|
|
120
|
+
manifest-only bundles, incompatible bundle versions, missing provenance
|
|
121
|
+
sidecars, dangling sidecar references, and synthesis manifest integrity
|
|
122
|
+
failures all produce parseable failure envelopes with actionable
|
|
123
|
+
`synthesis_state` details (#914, closes the final Phase 7 release gap for
|
|
124
|
+
#469/#515).
|
|
125
|
+
- Stamp `schema_version` and a `schema_capabilities` block in
|
|
126
|
+
`.kittify/metadata.yaml` on `spec-kitty init` so a fresh project no
|
|
127
|
+
longer requires hand-edits before subsequent CLI commands; existing
|
|
128
|
+
schema fields are preserved (additive, idempotent) (#840, WP01).
|
|
129
|
+
- Strict JSON envelope contract for covered `--json` commands: stdout is
|
|
130
|
+
parseable by `json.loads` regardless of SaaS sync state (disabled,
|
|
131
|
+
unauthorized, network-failed, success); sync/auth diagnostics route to
|
|
132
|
+
stderr or nest inside the envelope (#842, WP02).
|
|
133
|
+
- `WPMetadata.resolved_agent()` parses 4-segment colon-delimited agent
|
|
134
|
+
strings (`tool:model:profile:role`) and preserves every supplied field
|
|
135
|
+
through implement and review prompt rendering, with deterministic
|
|
136
|
+
fallback for partial strings (#833, WP03).
|
|
137
|
+
- Review-cycle counter advances exactly once per genuine reviewer
|
|
138
|
+
rejection; reclaim/regenerate of an `implement` prompt no longer
|
|
139
|
+
inflates the counter or writes a spurious `review-cycle-N.md`
|
|
140
|
+
artifact (#676, WP04).
|
|
141
|
+
- `spec-kitty next` writes paired `started`/`completed` profile-invocation
|
|
142
|
+
lifecycle records keyed to the canonical mission step + action it
|
|
143
|
+
issued, observable via `spec-kitty doctor invocation-pairing` (#843,
|
|
144
|
+
WP05).
|
|
145
|
+
- `charter generate` auto-tracks the produced `charter.md` and ensures
|
|
146
|
+
the required `.gitignore` entries exist; `charter bundle validate`
|
|
147
|
+
succeeds immediately afterwards with no operator `git add` between
|
|
148
|
+
the two commands. Outside a git working tree, `generate` fails fast
|
|
149
|
+
with an actionable error that names `git init` as the remediation
|
|
150
|
+
(#841, WP06).
|
|
151
|
+
- `charter synthesize` succeeds on a fresh project via the public CLI
|
|
152
|
+
with no hand-seeded `.kittify/doctrine/`; the bounded fresh-project
|
|
153
|
+
path materialises a minimal doctrine tree (`PROVENANCE.md`) so the
|
|
154
|
+
shipped doctrine layer can supply content (#839, WP06).
|
|
155
|
+
- `spec-kitty merge --abort` now clears the global merge lock, removes
|
|
156
|
+
legacy merge-state files, aborts an in-progress Git merge when present,
|
|
157
|
+
and remains idempotent when no merge is active (#903).
|
|
158
|
+
- Approved/done work packages with stale `verdict: rejected` review
|
|
159
|
+
artifacts are now surfaced across status views, including
|
|
160
|
+
`spec-kitty agent tasks status` and `show_kanban_status()`. Review
|
|
161
|
+
artifact lookup follows the real `tasks/<WP-slug>/review-cycle-N.md`
|
|
162
|
+
layout, and `in_review` work packages now warn when reviewer movement
|
|
163
|
+
stalls beyond the configured threshold (#904, #909).
|
|
164
|
+
- Review lane-guard failures now name the planning branch and include a
|
|
165
|
+
concrete `git show <planning-branch>:<path>` command for the first
|
|
166
|
+
contaminated path, instead of a placeholder path (#905).
|
|
167
|
+
- Work-package review definition-of-done coverage now includes real error
|
|
168
|
+
path and artifact-deletion regressions, not only happy-path review
|
|
169
|
+
behavior (#906).
|
|
170
|
+
- Broad `except Exception` / BLE001 suppressions in touched runtime paths
|
|
171
|
+
were audited and now carry inline justification where fail-open behavior
|
|
172
|
+
is intentional (#907).
|
|
173
|
+
- `spec-kitty review <mission>` is now a first-class mission-review CLI
|
|
174
|
+
command with structured status/exit behavior for post-merge mission
|
|
175
|
+
fidelity checks (#908).
|
|
176
|
+
|
|
177
|
+
### Internal
|
|
178
|
+
|
|
179
|
+
- Consolidated golden-path E2E (`tests/e2e/test_charter_epic_golden_path.py`)
|
|
180
|
+
rewritten to drive the fresh-project chain through the public CLI
|
|
181
|
+
only — no hand seeding of `.kittify/doctrine/`, no edits to
|
|
182
|
+
`.kittify/metadata.yaml`, no manual `git add` of charter artifacts
|
|
183
|
+
between `generate` and `bundle validate`. Runs in well under the
|
|
184
|
+
120-second NFR-007 budget. Also exercises strict JSON parsability of
|
|
185
|
+
`mission branch-context --json` (WP02 spot-check) and the `started`
|
|
186
|
+
lifecycle record (WP05 spot-check) (WP07).
|
|
187
|
+
- Governance setup docs (`docs/how-to/setup-governance.md`) note that
|
|
188
|
+
`charter generate` now auto-tracks `charter.md`, removing any
|
|
189
|
+
expectation that operators run `git add` between `generate` and
|
|
190
|
+
`bundle validate` (WP07).
|
|
191
|
+
- Added regression coverage for merge abort cleanup, stale rejected review
|
|
192
|
+
artifacts, stalled in-review work packages, lane-guard remediation text,
|
|
193
|
+
mission-review command behavior, review DoD deletion/error cases, and
|
|
194
|
+
agent-shard coverage for status warning paths (#903-#909).
|
|
195
|
+
|
|
196
|
+
### Tranche-2 acceptance pass (SC-001..SC-008)
|
|
197
|
+
|
|
198
|
+
- **SC-001 (Fresh-path completion)** — `tests/e2e/test_charter_epic_golden_path.py::test_charter_epic_golden_path` walks `init → charter interview → generate → bundle validate → synthesize → mission create → setup-plan → finalize-tasks → next` against a fresh project with no `.kittify/` hand-edits and no `git add` of charter artifacts. Passes locally in <20s.
|
|
199
|
+
- **SC-002 (JSON parsability)** — `tests/integration/test_json_envelope_strict.py` (WP02) covers the SaaS state matrix; the consolidated E2E spot-checks `mission branch-context --json` via `json.loads(stdout)`.
|
|
200
|
+
- **SC-003 (Identity preservation rate)** — WP03 unit + integration tests cover colon arities 1–4 and assert `model`/`profile_id`/`role` in rendered prompts.
|
|
201
|
+
- **SC-004 (Review-cycle precision)** — WP04 tests assert the counter is unchanged across ≥3 reclaim/regenerate runs and advances by exactly 1 on a real rejection.
|
|
202
|
+
- **SC-005 (Lifecycle observability)** — `tests/integration/test_next_lifecycle_records.py` (WP05) covers ≥5 issuances with mid-cycle orphan; the consolidated E2E asserts at least one `started` record after `next` issues an action and that the `canonical_action_id` matches the issued step id.
|
|
203
|
+
- **SC-006 (Charter parity rate)** — `tests/specify_cli/cli/commands/test_charter_generate_autotrack.py` (WP06) covers the auto-track + non-git fail-fast contract; the consolidated E2E exercises `generate → bundle validate` with no intervening git ops.
|
|
204
|
+
- **SC-007 (Documentation/CLI agreement)** — `docs/how-to/setup-governance.md` updated; no documented governance-setup flow contains a `git add charter.md` step between `charter generate` and `charter bundle validate`.
|
|
205
|
+
- **SC-008 (Release-surface discipline)** — Diff inventory: one new top-level public CLI command, `spec-kitty review`, added for mission-review fidelity checks (#908); one new `spec-kitty doctor invocation-pairing` subcommand under the existing `doctor` group for lifecycle observability; zero new top-level runtime dependencies in `pyproject.toml` `[project.dependencies]`.
|
|
206
|
+
|
|
207
|
+
## [3.2.0a5] - 2026-04-27
|
|
208
|
+
|
|
209
|
+
### Fixed
|
|
210
|
+
|
|
211
|
+
- CLI auth now consumes the server Tranche 2 contract end to end: logout posts refresh tokens to `/oauth/revoke`, local credential cleanup failures are reported truthfully, refresh handles benign 409 replay without resubmitting a spent token, and `auth doctor --server` checks `/api/v1/session-status` with safe re-authentication guidance (#902).
|
|
212
|
+
- Fix `spec-kitty upgrade` silently leaving projects in PROJECT_MIGRATION_NEEDED state by stamping `schema_version` after metadata save (#705, WP01).
|
|
213
|
+
- `spec-kitty init` in a non-git directory now prints an actionable "run `git init`" message (#636, WP05).
|
|
214
|
+
- Suppress misleading "shutdown / final-sync" red error lines after a successful `spec-kitty agent mission create --json` payload (#735, WP06).
|
|
215
|
+
- Deduplicate "Not authenticated, skipping sync" / "token refresh failed" diagnostics to at most once per CLI invocation (#717, WP06).
|
|
216
|
+
- Fix `read_events()` raising `KeyError('wp_id')` on `DecisionPointOpened` / `DecisionPointResolved` events that share `status.events.jsonl` with lane-transition events. Restores `finalize-tasks` / `materialize` / dashboard for any mission that uses the Decision Moment Protocol (#830, WP08).
|
|
217
|
+
|
|
218
|
+
### Changed
|
|
219
|
+
|
|
220
|
+
- Loosen `.python-version` from a hard `3.13` pin to `3.11` (the floor declared by `pyproject.toml`) and restore `mypy --strict` cleanliness on `mission_step_contracts/executor.py` (#805, WP03).
|
|
221
|
+
|
|
222
|
+
### Removed
|
|
223
|
+
|
|
224
|
+
- Retire the deprecated `/spec-kitty.checklist` command surface from every supported agent's rendered output. The canonical requirements checklist at `kitty-specs/<mission>/checklists/requirements.md` is unaffected (#815, supersedes #635, WP04).
|
|
225
|
+
|
|
226
|
+
### Internal
|
|
227
|
+
|
|
228
|
+
- Add regression tests confirming `--feature` aliases stay hidden from `--help` while remaining accepted (#790, WP07).
|
|
229
|
+
- Add regression test confirming `spec-kitty agent decision` command shape stays consistent across docs / help / skill snapshots (#774, WP07).
|
|
230
|
+
|
|
231
|
+
### Added
|
|
232
|
+
|
|
233
|
+
- **Frontend Freddy agent profile** — browser-side implementer specialising in HTML/CSS/JavaScript/TypeScript, component frameworks (React, Vue, Svelte), WCAG 2.1 accessibility, Core Web Vitals performance, and frontend testing (vitest, Playwright). Specialises from `implementer-ivan`. Self-review protocol enforces lint, type-check, unit/component tests, e2e smoke, axe accessibility gate, and bundle budget. Avoidance boundary explicitly names Node Norris's server-side domain.
|
|
234
|
+
- **Node Norris agent profile** — server-side Node.js implementer specialising in HTTP APIs (Express/Fastify/NestJS), async/Promise discipline, streaming, npm security (`npm audit`), and integration testing (supertest). Specialises from `implementer-ivan`. Avoidance boundary explicitly names Frontend Freddy's browser-rendering domain. The two profiles are mutually exclusive by design.
|
|
235
|
+
- **BDD paradigm** (`behaviour-driven-development`) — encodes BDD as a three-phase collaboration practice: Discovery (Three Amigos conversations), Formulation (Given/When/Then specifications), and Automation (executable living documentation). References `DIRECTIVE_034` and `DIRECTIVE_037`.
|
|
236
|
+
- **BDD Scenario Lifecycle procedure** (`bdd-scenario-lifecycle`) — covers the Formulation → Automation → Maintenance phases that follow an Example Mapping Workshop. Toolchain-agnostic (Cucumber-JVM, Cucumber-JS, Behave, SpecFlow). Encodes four anti-patterns: imperative Gherkin, rubber-stamp scenarios, shared mutable state, and orphaned step definitions.
|
|
237
|
+
- **New tactics:**
|
|
238
|
+
- `reference-architectural-patterns` — structured selection of named reference patterns (Layered, Hexagonal, Event-Driven, CQRS, Microservices, Modular Monolith) scored against coupling, scalability, and operational complexity constraints.
|
|
239
|
+
- `development-bdd` — architecture-level BDD tactic for expressing observable behavioral contracts at system boundaries before implementation; distinct from the existing `behavior-driven-development` technique tactic.
|
|
240
|
+
- `bug-fixing-checklist` — language-agnostic test-first defect resolution: write a reproduction test before touching production code.
|
|
241
|
+
- `test-readability-clarity-check` — dual-perspective reconstruction check: read only tests, reconstruct system understanding, compare against spec to surface documentation gaps.
|
|
242
|
+
- `code-documentation-analysis` — brownfield boundary discovery by extracting and clustering domain terminology from code and documentation artifacts. Contributes foundational analysis tactics toward the brownfield investigation skill described in [#666](https://github.com/Priivacy-ai/spec-kitty/issues/666).
|
|
243
|
+
- `terminology-extraction-mapping` — systematic extraction and relationship mapping of domain terms across multiple sources to produce a maintainable glossary. Complementary artifact to the bounded-context linguistic discovery approach targeted by [#666](https://github.com/Priivacy-ai/spec-kitty/issues/666).
|
|
244
|
+
- **Tactic directory normalization** — shipped tactics reorganised into four category subdirectories: `testing/` (15 tactics), `analysis/` (14), `communication/` (7), `architecture/` (14). Cross-cutting tactics remain in the `shipped/` root. The existing `rglob` loader requires no changes.
|
|
245
|
+
- **`tasks-finalize` command skill** — added to `CANONICAL_COMMANDS` in the agent skills pipeline and deployed to `.agents/skills/spec-kitty.tasks-finalize/`. Closes the gap where this command was missing from Codex/Vibe skill packages.
|
|
246
|
+
|
|
247
|
+
### Changed
|
|
248
|
+
|
|
249
|
+
- **Profile enrichment** — four existing profiles updated with additive tactic and paradigm references:
|
|
250
|
+
- `implementer-ivan`: `bug-fixing-checklist` tactic reference (propagates to all specialist profiles via `resolve_profile()` union merge).
|
|
251
|
+
- `reviewer-renata`: `test-readability-clarity-check` and `bdd-scenario-lifecycle` tactic references; `behaviour-driven-development` paradigm in context sources.
|
|
252
|
+
- `architect-alphonso`: `development-bdd` tactic reference; BDD paradigm, example-mapping-workshop, and bdd-scenario-lifecycle in additional context sources.
|
|
253
|
+
- `java-jenny`: `behavior-driven-development` and `bdd-scenario-lifecycle` tactic references; `bdd-scenarios` self-review step (Cucumber-JVM + Serenity BDD gate).
|
|
254
|
+
- **`behavior-driven-development` tactic enriched** — extended `notes` with a toolchain landscape section (Cucumber family, Playwright, Selenium, Serenity BDD, custom DSLs; source: `patterns.sddevelopment.be/primers/toolchain-and-automation/bdd`); three new `failure_modes` (rubber-stamp scenarios, shared mutable state between scenarios, orphaned step definitions); cross-references to the new BDD paradigm and procedure.
|
|
255
|
+
- **`tactic-references` union-merged in `resolve_profile()`** — `tactic-references` added to `_LIST_FIELDS` in `src/doctrine/agent_profiles/repository.py`. Specialist profiles now inherit base-profile tactic references via `_union_merge` at resolution time rather than overriding them.
|
|
256
|
+
- **Tactic compliance test extended** — `test_tactic_compliance.py` `ARTIFACT_DIRS` now includes `procedure` and `paradigm` types, enabling cross-type reference validation for tactics that reference procedures or paradigms.
|
|
257
|
+
- **Shared package boundary cutover** (mission `shared-package-boundary-cutover-01KQ22DS`) — `spec-kitty-runtime` is no longer a dependency of `spec-kitty-cli`. The CLI now owns its own runtime internally under `src/specify_cli/next/_internal_runtime/`; `spec-kitty next` works from a clean install of `spec-kitty-cli` alone. `spec-kitty-events` and `spec-kitty-tracker` are external PyPI dependencies consumed via their public import surfaces (`spec_kitty_events`, `spec_kitty_tracker`). The vendored events tree under `src/specify_cli/spec_kitty_events/` has been removed (~23 kLoC). Developers who relied on editable cross-package overrides should consult [`docs/development/local-overrides.md`](docs/development/local-overrides.md); operators upgrading from a pre-cutover release should consult [`docs/migration/shared-package-boundary-cutover.md`](docs/migration/shared-package-boundary-cutover.md). Decision rationale recorded in [ADR 2026-04-25-1](architecture/2.x/adr/2026-04-25-1-shared-package-boundary.md).
|
|
258
|
+
|
|
259
|
+
### Removed
|
|
260
|
+
|
|
261
|
+
- **`constraints.txt`** — the file existed solely to paper over a transitive pin conflict with the retired `spec-kitty-runtime` package and is no longer needed.
|
|
262
|
+
|
|
263
|
+
### Fixed
|
|
264
|
+
|
|
265
|
+
- `spec-kitty agent config list/status` now checks global command roots for slash-command agents instead of reporting missing project-local command directories after `init`.
|
|
266
|
+
- `spec-kitty agent config add/sync --create-missing` no longer recreates retired project-local command directories for globally managed slash-command agents.
|
|
267
|
+
- `spec-kitty agent config remove/sync` now removes only the managed command surface for project-local agent directories, preserving unrelated files such as `.github/workflows/`.
|
|
268
|
+
|
|
269
|
+
### Added — Documentation mission composition rewrite (#502, #461, Phase 6 WP6.4)
|
|
270
|
+
|
|
271
|
+
- Documentation mission now runs on the StepContractExecutor composition substrate, mirroring research (#504) and software-dev (#503). The runtime resolves the new composed step contracts ahead of the legacy `mission.yaml` workflow via the existing `_resolve_runtime_template_in_root` precedence — no loader changes were required.
|
|
272
|
+
- New runtime sidecar templates: `src/specify_cli/missions/documentation/mission-runtime.yaml` and `src/doctrine/missions/documentation/mission-runtime.yaml`.
|
|
273
|
+
- Six shipped step contracts under `src/doctrine/mission_step_contracts/shipped/documentation-{discover,audit,design,generate,validate,publish}.step-contract.yaml`.
|
|
274
|
+
- Six action doctrine bundles under `src/doctrine/missions/documentation/actions/{discover,audit,design,generate,validate,publish}/` (governance guidelines + directive/tactic indices).
|
|
275
|
+
- DRG action nodes and edges for `action:documentation/{discover,audit,design,generate,validate,publish}` in `src/doctrine/graph.yaml`.
|
|
276
|
+
- Composition wiring in `src/specify_cli/next/runtime_bridge.py`: `_COMPOSED_ACTIONS_BY_MISSION["documentation"]` and a fail-closed guard branch in `_check_composed_action_guard()` raising a structured error for unknown documentation actions. `src/specify_cli/mission_step_contracts/executor.py` adds six `_ACTION_PROFILE_DEFAULTS` entries (`researcher-robbie` for discover/audit, `architect-alphonso` for design, `implementer-ivan` for generate, `reviewer-renata` for validate/publish).
|
|
277
|
+
- Real-runtime integration walk at `tests/integration/test_documentation_runtime_walk.py` proving SC-001 / SC-003 / SC-004 from a freshly initialized temp repo.
|
|
278
|
+
|
|
279
|
+
#### Backward compatibility
|
|
280
|
+
|
|
281
|
+
- The legacy `src/specify_cli/missions/documentation/mission.yaml` and `src/doctrine/missions/documentation/mission.yaml` files remain on disk for backward reference. Existing documentation-mission projects that authored against the legacy workflow continue to work; runtime template resolution prefers the new `mission-runtime.yaml` ahead of the legacy file via the existing precedence in `_resolve_runtime_template_in_root` (no loader changes in this PR).
|
|
282
|
+
|
|
283
|
+
### Added
|
|
284
|
+
|
|
285
|
+
- **Upgrade compatibility planner** — `spec-kitty upgrade` now separates CLI
|
|
286
|
+
update guidance from current-project schema compatibility. New flags
|
|
287
|
+
`--cli`, `--project`, `--yes`, and `--no-nag` support CLI-only guidance,
|
|
288
|
+
project-only migrations, non-interactive confirmation, and explicit nag
|
|
289
|
+
suppression. `spec-kitty upgrade --dry-run --json` emits the stable
|
|
290
|
+
compatibility-plan contract for automation.
|
|
291
|
+
- **Host-surface parity matrix** at `docs/host-surface-parity.md` — authoritative record of how each of the 15 supported host surfaces teaches the advise/ask/do governance-injection contract. Closes the remaining `#496` host-surface breadth rollout.
|
|
292
|
+
- **Mode of work runtime derivation** — every `advise`, `ask`, `do` invocation now records its `mode_of_work` (`advisory`, `task_execution`, `mission_step`, `query`) on the `started` event. Derivation is from the CLI entry command.
|
|
293
|
+
- **Correlation links** — `spec-kitty profile-invocation complete` accepts `--artifact <path>` (repeatable) and `--commit <sha>` (singular); each appends an additive event to the invocation JSONL for single-file request→artifact/commit correlation.
|
|
294
|
+
- **SaaS read-model policy** at `src/specify_cli/invocation/projection_policy.py` — typed module mapping `(mode, event)` to projection rules. Documented in `docs/trail-model.md`.
|
|
295
|
+
- **Tier 2 SaaS projection decision** — decisively documented as deferred in `docs/trail-model.md`. Tier 2 evidence stays local-only in 3.2.x.
|
|
296
|
+
- **README Governance layer subsection** — entry point for operators discovering the advise/ask/do surface.
|
|
297
|
+
- **Decision Moment Ledger (V1)** — new `spec-kitty agent decision` subgroup with five
|
|
298
|
+
subcommands: `open`, `resolve`, `defer`, `cancel`, `verify`. Mints ULID `decision_id`s
|
|
299
|
+
at interview ask-time, writes paper trail under `kitty-specs/<mission>/decisions/`
|
|
300
|
+
(`index.json` + `DM-<id>.md`), and appends `DecisionPointOpened(interview)` /
|
|
301
|
+
`DecisionPointResolved(interview)` events to `status.events.jsonl`. Local-only;
|
|
302
|
+
no SaaS sync required.
|
|
303
|
+
- **Charter integration** — `spec-kitty charter interview` now calls `decision open`
|
|
304
|
+
before each question and the appropriate terminal command after each answer.
|
|
305
|
+
`answers.yaml` behavior is unchanged.
|
|
306
|
+
- **Specify + Plan template updates** — `specify.md` and `plan.md` source templates
|
|
307
|
+
gain a Decision Moment Protocol section instructing the LLM to call decision
|
|
308
|
+
subcommands at ask/resolution time and write `<!-- decision_id: <id> -->` anchors
|
|
309
|
+
for deferred decisions.
|
|
310
|
+
- **`decision verify` gate** — scans `spec.md` / `plan.md` for
|
|
311
|
+
`[NEEDS CLARIFICATION: ...] <!-- decision_id: <id> -->` sentinels and
|
|
312
|
+
cross-checks against the decisions index. Exits non-zero on drift
|
|
313
|
+
(`DEFERRED_WITHOUT_MARKER`, `MARKER_WITHOUT_DECISION`, `STALE_MARKER`).
|
|
314
|
+
- **Widen Mode (#758)** — `spec-kitty agent decision widen` + `resolve --from-widen`
|
|
315
|
+
lifecycle. Writes `widen-pending.jsonl`, emits `DecisionPointWidened` events,
|
|
316
|
+
integrates with charter/specify/plan widen affordances. Surfaces decision
|
|
317
|
+
write-back errors explicitly instead of silently suppressing them.
|
|
318
|
+
|
|
319
|
+
### Changed
|
|
320
|
+
|
|
321
|
+
- Project schema compatibility is now enforced by the centralized compat
|
|
322
|
+
planner. Out-of-date CLI notices are passive and throttled; incompatible
|
|
323
|
+
project schemas block unsafe commands with exit codes 4, 5, or 6 and exact
|
|
324
|
+
remediation guidance.
|
|
325
|
+
- `spec-kitty profile-invocation complete --evidence` is now mode-gated: rejected on `advisory` / `query` invocations with `InvalidModeForEvidenceError`. Rejection occurs before any write; the invocation stays open.
|
|
326
|
+
- `_propagate_one` consults the new projection policy after the sync-gate and authentication lookup. Existing `task_execution` / `mission_step` projection behaviour is preserved exactly.
|
|
327
|
+
- Dashboard user-visible wording: the mission selector, current-mission header, overview heading, analysis heading, and empty-state prompt now read "Mission Run" / "mission" instead of "Feature". Backend identifiers (CSS classes, HTML IDs, cookie keys, API route segments, JSON field names) are unchanged.
|
|
328
|
+
- **`spec-kitty-events` bumped to `==4.0.0`** — vendored copy at
|
|
329
|
+
`src/specify_cli/spec_kitty_events/` refreshed. Introduces
|
|
330
|
+
`DecisionPointOpenedInterviewPayload`, `DecisionPointResolvedInterviewPayload`,
|
|
331
|
+
`OriginSurface.PLANNING_INTERVIEW` (`origin_surface: planning_interview`),
|
|
332
|
+
`OriginFlow` enum (values `specify`, `plan`), `DecisionPointWidened`, and
|
|
333
|
+
`TerminalOutcome` enum.
|
|
334
|
+
- **`[tool.uv.sources]`** redirects `spec-kitty-events` to `../spec-kitty-events/`
|
|
335
|
+
in editable mode for monorepo development. Dev-only; ignored by pip / PyPI.
|
|
336
|
+
|
|
337
|
+
### Deferred
|
|
338
|
+
|
|
339
|
+
- `spec-kitty explain` (issue #534) remains deferred to Phase 5 pending DRG glossary addressability (#499, #759).
|
|
340
|
+
|
|
341
|
+
### Out of scope (tracked separately)
|
|
342
|
+
|
|
343
|
+
- SaaS sync projection for widened decisions — tracked in spec-kitty-saas#110, #111.
|
|
344
|
+
- Tasks-phase interview support — future mission.
|
|
345
|
+
|
|
346
|
+
### Migration notes
|
|
347
|
+
|
|
348
|
+
**No operator action required for routine upgrade.** The trail model is additive:
|
|
349
|
+
|
|
350
|
+
- Pre-mission invocation records (no `mode_of_work`) continue to accept `--evidence` and project under legacy `task_execution` rules.
|
|
351
|
+
- Existing SaaS dashboards see no change for `task_execution` / `mission_step` traffic.
|
|
352
|
+
- New advisory events now appear in the SaaS timeline as minimal entries without body — this is a deliberate behaviour change documented in the SaaS Read-Model Policy table.
|
|
353
|
+
|
|
354
|
+
### Added (Phase 4 trail follow-on)
|
|
355
|
+
|
|
356
|
+
- `docs/trail-model.md`: Formal operator documentation for the Phase 4 trail contract,
|
|
357
|
+
mode-of-work taxonomy, tier promotion rules, SaaS projection policy, intake positioning,
|
|
358
|
+
and explain deferral (WP04).
|
|
359
|
+
- "Governance context injection" section in `.agents/skills/spec-kitty.advise/SKILL.md`
|
|
360
|
+
for Codex/Vibe hosts, enabling Tier 1 trail recording without host-side SaaS auth (WP03).
|
|
361
|
+
- "Standalone invocations (outside missions)" section in
|
|
362
|
+
`src/doctrine/skills/spec-kitty-runtime-next/SKILL.md` for Claude Code and gstack hosts,
|
|
363
|
+
covering when to open an invocation record outside the mission workflow (WP04).
|
|
364
|
+
- End-to-end invocation integration tests in
|
|
365
|
+
`tests/specify_cli/invocation/test_invocation_e2e.py` covering Tier 1 JSONL write,
|
|
366
|
+
complete-event append, local-only list read, and sync-gate suppression (WP05).
|
|
367
|
+
|
|
368
|
+
### Fixed
|
|
369
|
+
|
|
370
|
+
- `propagator.py` (`_propagate_one`): Invocation events are now suppressed when
|
|
371
|
+
`effective_sync_enabled = False`, even when the user is authenticated. Previously,
|
|
372
|
+
sync-disabled checkouts could still emit SaaS events if a WebSocket client was
|
|
373
|
+
connected (WP01).
|
|
374
|
+
- `executor.complete_invocation` now calls `promote_to_evidence()` when the
|
|
375
|
+
`--evidence` flag is supplied, enabling correct Tier 2 artifact promotion (WP03).
|
|
376
|
+
|
|
377
|
+
### Changed
|
|
378
|
+
|
|
379
|
+
- Issue #496: Priority-surface slice complete in 3.2.x (Claude Code via
|
|
380
|
+
`spec-kitty-runtime-next` doctrine skill, Codex CLI via SKILL.md governance context
|
|
381
|
+
injection). Remaining 9 surfaces tracked in #496 for a follow-on patch or Phase 5.
|
|
382
|
+
- Issue #534: `spec-kitty explain` explicitly deferred to Phase 5 (requires DRG
|
|
383
|
+
glossary addressability, issue #499). A partial implementation without glossary
|
|
384
|
+
citations would be misleading.
|
|
385
|
+
|
|
386
|
+
## [3.2.0a4] - 2026-04-21
|
|
387
|
+
|
|
388
|
+
### Added
|
|
389
|
+
|
|
390
|
+
- **Mutation-aware test suites** — kill-the-survivor passes for `doctrine.resolver`, `doctrine.agent_profiles`, `doctrine.missions`, `doctrine.shared`, and `specify_cli.compat.registry`. Achieves 75–85 % kill rates per module; residuals documented as trampoline-equivalent, unloadable, or functionally equivalent in `docs/development/mutation-testing-findings.md`.
|
|
391
|
+
- `_OPTIONAL_KEYS` / `_ALL_KNOWN_KEYS` constants in `specify_cli.compat.registry._validate_entry` — unknown YAML keys now raise `RegistrySchemaError` before `ShimEntry(**entry)` can raise `TypeError`.
|
|
392
|
+
- `model_dump(mode="json")` on WP frontmatter serialization in `finalize_tasks` — prevents `Path` objects from reaching YAML serialization.
|
|
393
|
+
|
|
394
|
+
### Added
|
|
395
|
+
|
|
396
|
+
## [3.2.0a3] - 2026-04-21
|
|
397
|
+
|
|
398
|
+
### Fixed
|
|
399
|
+
|
|
400
|
+
- Release publish no longer hard-fails when the private `SPEC_KITTY_SAAS_READ_TOKEN` secret is absent. The pipeline still enforces runtime drift and exact wheel installability, and it runs the SaaS consumer-contract check whenever the private compatibility reference can actually be fetched.
|
|
401
|
+
|
|
402
|
+
## [3.2.0a2] - 2026-04-21
|
|
403
|
+
|
|
404
|
+
### Changed
|
|
405
|
+
|
|
406
|
+
- `spec-kitty-runtime` is now pinned to `0.4.4`, matching the corrected published runtime line rather than the broken `0.4.3` metadata.
|
|
407
|
+
- Release readiness and tag-time publish pipelines now verify shared-package drift, candidate-wheel installability with plain `pip`, and candidate compatibility against the SaaS consumer contract before publish.
|
|
408
|
+
|
|
409
|
+
### Removed
|
|
410
|
+
|
|
411
|
+
- Temporary `tool.uv.override-dependencies` masking for `spec-kitty-events`. Release validation now requires the published runtime metadata to resolve cleanly without local overrides.
|
|
412
|
+
|
|
413
|
+
## [3.2.0a1] - 2026-04-20
|
|
414
|
+
|
|
415
|
+
### Added
|
|
416
|
+
|
|
417
|
+
- **Mutation testing** — `mutmut` 3.5.0 added to `[project.optional-dependencies.test]` and configured in `[tool.mutmut]` as a **local-only** quality gate. Includes a curated doctrine set: `tactic:mutation-testing-workflow`, `styleguide:mutation-aware-test-design`, and language-specific toolguides for Python (`mutmut`) and TypeScript (`stryker`), all anchored to `DIRECTIVE_034` in the DRG graph. ADR `2026-04-20-1-mutation-testing-as-local-only-quality-gate.md` records the decision, the sandbox constraints, and the two-marker exclusion taxonomy.
|
|
418
|
+
- **`non_sandbox` / `flaky` pytest markers** — registered in `pytest.ini` and `pyproject.toml[tool.pytest.ini_options].markers`. Per-file `--ignore=` entries for sandbox-incompatible tests have been migrated to module-level `pytestmark` declarations; `[tool.mutmut].pytest_add_cli_args` now deselects via `-m "not non_sandbox and not flaky ..."`. Directory-level ignores remain only where tests fail during pytest *collection* (import errors that markers cannot intercept). 1 test is currently marked `flaky` as debt to be root-caused.
|
|
419
|
+
- **`docs/how-to/run-mutation-tests.md`** — Contributor how-to covering local `mutmut run` invocation, the kill-the-survivor workflow, equivalent-mutant suppression, and the `non_sandbox` / `flaky` marker taxonomy.
|
|
420
|
+
- Charter synthesizer now has a real harness-owned operator path: the new generated-artifact adapter reads agent-authored YAML from `.kittify/charter/generated/` and promotes validated doctrine into the live `.kittify/doctrine/` tree.
|
|
421
|
+
- `spec-kitty charter resynthesize --list-topics` now lists valid project-artifact selectors, DRG URNs, and interview-section selectors, including hyphenated aliases for section names.
|
|
422
|
+
- `spec-kitty charter status --provenance` now reports synthesis generation state, evidence summary, manifest health, and per-artifact provenance visibility alongside the older charter sync surface.
|
|
423
|
+
- ADR `2026-04-19-6-harness-owned-generated-artifact-charter-handoff.md` now records the host-side charter handoff contract: exact file layout, identity rules, and CLI sequence.
|
|
424
|
+
- **`architecture/2.x/06_migration_and_shim_rules.md`** — Authoritative compatibility shim lifecycle
|
|
425
|
+
rulebook covering 4 rule families: schema/version gating, bundle/runtime migration authoring contract,
|
|
426
|
+
shim lifecycle (with copy-paste template), and removal plans/registry contract. Required reading for
|
|
427
|
+
all future extraction missions (#615).
|
|
428
|
+
- **`architecture/2.x/shim-registry.yaml`** — Machine-readable registry of all known compatibility
|
|
429
|
+
shims. Starts empty (zero-shim baseline confirmed at mission-615 start). Future shims must be
|
|
430
|
+
registered here before merging. Validated by `spec-kitty doctor shim-registry` (#615).
|
|
431
|
+
- **`spec-kitty doctor shim-registry`** — New CI enforcement subcommand that classifies each
|
|
432
|
+
registered shim as `pending`, `overdue`, `grandfathered`, or `removed`. Exits 1 when any shim
|
|
433
|
+
is overdue; exits 2 on configuration error. Supports `--json` for machine-readable CI output (#615).
|
|
434
|
+
|
|
435
|
+
### Changed
|
|
436
|
+
|
|
437
|
+
- `spec-kitty charter synthesize` and `spec-kitty charter resynthesize` now default to the generated-artifact adapter. `--adapter fixture` remains available only for deterministic offline regression runs.
|
|
438
|
+
- `spec-kitty charter synthesize --dry-run` is now a real stage-and-validate pass: it writes the staged artifact set, runs project DRG validation and neutrality gating, and only skips the final promote step.
|
|
439
|
+
- Shared contract-library pins now align with the current released pair consumed across the CLI and SaaS surfaces: `spec-kitty-events==3.2.0` and `spec-kitty-tracker==0.4.2`.
|
|
440
|
+
- Release pipeline now generates and attaches a CycloneDX SBOM (`sbom.cdx.json`) to every GitHub Release. The SBOM is an environment-snapshot of the fully resolved dependency tree at build time, making it straightforward for enterprise users to ingest the inventory into tools like Dependency-Track for continuous CVE monitoring without rescanning the package themselves.
|
|
441
|
+
|
|
442
|
+
### Fixed
|
|
443
|
+
|
|
444
|
+
- Directive provenance now records canonical URNs (`directive:PROJECT_<NNN>`) instead of slug-based placeholders, which restores correct directive filenames, provenance reload, and `directive:PROJECT_<NNN>` resynthesis.
|
|
445
|
+
- Bounded resynthesis now preserves evidence inputs end-to-end, so regenerated provenance entries keep the correct `evidence_bundle_hash` and `corpus_snapshot_id`.
|
|
446
|
+
- Generated-artifact synthesis errors now point to the exact expected file path and exact expected artifact id, which makes harness handoff mistakes easier to diagnose.
|
|
447
|
+
- Charter neutrality lint now scans mission `templates/` directories in addition to `command-templates/`, so banned terms in generic mission prompt files are caught by the default repo scan (#653 tripwire).
|
|
448
|
+
- Bump `requests` floor to `>=2.33.0` (CVE-2026-25645).
|
|
449
|
+
- Bump `pytest` floor to `>=9.0.3` (CVE-2025-71176).
|
|
450
|
+
- Pin `pygments>=2.20.0` explicitly to resolve CVE-2026-4539 in the transitive dependency pulled in via `rich`.
|
|
451
|
+
- `auth refresh` now treats `HTTP 401` responses with `invalid_grant` or `session_invalid` error codes identically to `HTTP 400`, and clears the locally stored session on server-side refresh rejection so `auth status` no longer reports stale credentials as authenticated.
|
|
452
|
+
|
|
453
|
+
### Removed
|
|
454
|
+
|
|
455
|
+
- **`specify_cli.charter` compatibility shim** — The re-export shim at `src/specify_cli/charter/` has been
|
|
456
|
+
removed. External code importing `specify_cli.charter.*` must migrate to the canonical package:
|
|
457
|
+
`from charter import <name>`. See
|
|
458
|
+
[architecture/2.x/05_ownership_map.md](architecture/2.x/05_ownership_map.md) for the full
|
|
459
|
+
charter slice entry and the reference exemplar pattern. Closes #611.
|
|
460
|
+
|
|
461
|
+
## [3.1.6] - 2026-04-20
|
|
462
|
+
|
|
463
|
+
### Fixed
|
|
464
|
+
|
|
465
|
+
- `spec-kitty agent action implement` now exposes and forwards
|
|
466
|
+
`--acknowledge-not-bulk-edit` to the underlying workspace-allocation command,
|
|
467
|
+
allowing non-bulk-edit missions to suppress false-positive bulk-edit inference
|
|
468
|
+
warnings during workspace creation.
|
|
469
|
+
|
|
470
|
+
### Docs
|
|
471
|
+
|
|
472
|
+
- Spec Kitty's internal maintainer charter now records the ownership boundary
|
|
473
|
+
for user-authored custom commands, custom skills, and project overrides, with
|
|
474
|
+
an explicit proof trail showing that package-owned mutation flows must preserve
|
|
475
|
+
files whose ownership is not proven by managed-path or manifest data.
|
|
476
|
+
|
|
477
|
+
## [3.1.5] - 2026-04-16
|
|
478
|
+
|
|
479
|
+
### Changed
|
|
480
|
+
|
|
481
|
+
- Keep `main` on the stable `3.x` release line. Release docs, install guidance,
|
|
482
|
+
and README messaging now point new users at `3.1.x` on GitHub Releases and PyPI,
|
|
483
|
+
while keeping `1.x-maintenance` explicitly maintenance-only.
|
|
484
|
+
|
|
485
|
+
### Fixed
|
|
486
|
+
|
|
487
|
+
- Make `spec-kitty upgrade` auto-commit safely through the charter rename migration.
|
|
488
|
+
The `safe_commit` backstop now disables rename collapsing during its staged-path
|
|
489
|
+
probe, and upgrade auto-commit expands changed directories into concrete paths
|
|
490
|
+
before validating the staging area. This closes the false-positive abort reported
|
|
491
|
+
in [#643](https://github.com/Priivacy-ai/spec-kitty/issues/643).
|
|
492
|
+
- Remove pytest/junit prompt bias from charter defaults, plan templates, and doctrine
|
|
493
|
+
guidance. Packaged defaults now start from neutral selections, language inference
|
|
494
|
+
flows through explicit repo signals, and language-scoped doctrine artifacts remain
|
|
495
|
+
available when no active language filter is provided.
|
|
496
|
+
|
|
497
|
+
### Docs
|
|
498
|
+
|
|
499
|
+
- Align README and user-facing release docs around swim-lane terminology and the
|
|
500
|
+
`3.1.x` stable release line.
|
|
501
|
+
|
|
502
|
+
## [3.1.4] - 2026-04-15
|
|
503
|
+
|
|
504
|
+
### Fixed
|
|
505
|
+
|
|
506
|
+
- Make `/spec-kitty.plan` stop instructing agents to update imaginary
|
|
507
|
+
agent-specific context files or hunt for non-existent `agent context update`
|
|
508
|
+
commands. Planning now stays focused on the actual mission artifacts it owns.
|
|
509
|
+
- Clarify `/spec-kitty.specify` mission-handle timing and non-blocking charter
|
|
510
|
+
behavior so creation-time flows do not assume a mission already exists or stop
|
|
511
|
+
on missing charter state.
|
|
512
|
+
- Tighten generated `/spec-kitty.implement`, `/spec-kitty.review`, and
|
|
513
|
+
`/spec-kitty.merge` wrappers so they use the canonical `--mission <handle>`
|
|
514
|
+
language and explicitly avoid redundant context rediscovery, including
|
|
515
|
+
separate charter loads.
|
|
516
|
+
|
|
517
|
+
## [3.1.3] - 2026-04-15
|
|
518
|
+
|
|
519
|
+
### Fixed
|
|
520
|
+
|
|
521
|
+
- Make `/spec-kitty.charter` use an LLM-led interview by default, with better
|
|
522
|
+
repo-scan guidance for greenfield/bootstrap repos, explicit doctrine-gap
|
|
523
|
+
handling, natural-language questioning, depth scaling, and commit-after-generate
|
|
524
|
+
behavior.
|
|
525
|
+
- Preserve explicit empty `selected_paradigms`, `selected_directives`, and
|
|
526
|
+
`available_tools` during charter compilation instead of broadening them to
|
|
527
|
+
packaged defaults.
|
|
528
|
+
|
|
529
|
+
### Docs
|
|
530
|
+
|
|
531
|
+
- Add ADR recording that explicit empty charter selections must remain empty and
|
|
532
|
+
must not silently expand to shipped defaults.
|
|
533
|
+
|
|
534
|
+
## [3.1.2] - 2026-04-15
|
|
535
|
+
|
|
536
|
+
### Fixed — CI recovery & release readiness
|
|
537
|
+
|
|
538
|
+
- **`release-readiness` workflow now filters `windows_ci` tests** on the Linux runner. The job was running the full suite with no marker filter, failing 10 Windows-only tests (auth file-fallback, kernel paths, sync daemon paths, tracker credentials, migrate messaging, keyring packaging, lock contention, Windows home path). Those tests continue to run on the native `ci-windows.yml` job.
|
|
539
|
+
- **Kiro agent registration completed**: added `.kiro/` to `gitignore_manager.AGENT_DIRECTORIES`, regenerated 11 canonical command baselines under `tests/specify_cli/regression/_twelve_agent_baseline/kiro/`, and updated the four count constants that had drifted after PR #626 (13 slash-command agents, 15 `AGENT_DIRECTORIES` entries).
|
|
540
|
+
- **Auth test fixtures aligned with the hardened HTTP transport** introduced in `Harden SaaS auth and restore build sync emission`. Tests for `AuthorizationCodeFlow`, `TokenRefreshFlow`, `WebSocketTokenProvisioner`, and the browser-login/refresh-transport integration paths now patch `PublicHttpClient` in each flow module's own namespace (matching the production call graph) instead of raw `httpx.AsyncClient`. Network-error paths raise `NetworkError` from the client mock rather than `httpx.ConnectError` to match the new `except NetworkError` contract.
|
|
541
|
+
- **`ResolutionTier` unified across `doctrine.resolver` and `specify_cli.runtime.resolver`**. `specify_cli.runtime.resolver` is now a thin re-export shim, as its own docstring had claimed. Tests assert tier equivalence via `.name` to stay robust against `pytestarch`'s filesystem-walk loader, which can load the same source file under alternate module names during `pytest --import-mode=importlib`.
|
|
542
|
+
- **Post-`unified-charter-bundle-chokepoint` test fixture hardening**: three pre-existing tests (`test_local_support_declarations_end_to_end`, `test_template_prompt_bootstrap_context_first_load`, `test_all_pass_with_healthy_setup`) now `git init` their tmp directories to satisfy the new `resolve_canonical_repo_root` precondition that calls `git rev-parse --git-common-dir`.
|
|
543
|
+
- **Codex / Vibe Agent Skills migration test alignment**: five tests that pre-dated mission 083 were updated to assert the new `.agents/skills/spec-kitty.<cmd>/SKILL.md` layout rather than the retired `.codex/prompts/` layout. Invariants preserved (direct `spec-kitty agent action` CLI calls, per-agent argument handling, agent assets generation); only the probe path changed to match the post-083 architecture.
|
|
544
|
+
- **Contract handoff fixture** updated to include `BuildRegistered` and `BuildHeartbeat` event types added on the emitter side by the SaaS-auth hardening.
|
|
545
|
+
- **Miscellaneous tails**: redacted a dev-machine path literal in an architecture review doc (caught by `test_command_template_cleanliness`); fixed `test_rewrite_shims.py::test_result_counts` to use two slash-command agents since codex is no longer one; marked `test_home_unit.py::TestGetKittifyHomeWindows::test_windows_default_path` `windows_ci` since DRIFT-3 of the Windows Compatibility Hardening mission made `get_kittify_home()` delegate to `specify_cli.paths.get_runtime_root().base`, which the monkeypatch-based simulation no longer drives reliably on non-Windows runners.
|
|
546
|
+
- **Kiro regenerated baselines** for all 12 canonical commands, closing the `tests/specify_cli/regression/test_twelve_agent_parity.py` baseline-missing cluster introduced by PR #626.
|
|
547
|
+
|
|
548
|
+
### Added
|
|
549
|
+
|
|
550
|
+
- **Unified charter bundle manifest v1.0.0** at `src/charter/bundle.py` declaring the three `sync()`-produced derivatives (`governance.yaml`, `directives.yaml`, `metadata.yaml`) as the authoritative bundle contract. `references.yaml` and `context-state.json` are explicitly out of v1.0.0 scope; they are produced by other pipelines.
|
|
551
|
+
- **Canonical-root resolver** at `src/charter/resolution.py` (`resolve_canonical_repo_root()`). Readers running inside a git worktree now transparently observe the main-checkout charter bundle without per-worktree materialisation. Closes Priivacy-ai/spec-kitty#339.
|
|
552
|
+
- **`spec-kitty charter bundle validate [--json]`** CLI surface for operator and CI bundle-health checks.
|
|
553
|
+
- **Migration `m_3_2_3_unified_bundle`** advances 3.x projects to the unified bundle layout. On a populated project it validates the bundle against the v1.0.0 manifest, invokes `ensure_charter_bundle_fresh()` to regenerate any missing derivatives, and emits a structured JSON report (see `kitty-specs/unified-charter-bundle-chokepoint-01KP5Q2G/contracts/migration-report.schema.json`). Idempotent — the second apply against an already-upgraded project is a clean no-op. Refs Priivacy-ai/spec-kitty#464, #479.
|
|
554
|
+
|
|
555
|
+
### Changed
|
|
556
|
+
|
|
557
|
+
- **`SyncResult` extended with `canonical_root: Path`** — `files_written` remains a list of file names relative to `canonical_root / .kittify/charter/`. Existing readers were rewired in lockstep; no compatibility shim.
|
|
558
|
+
- **`ensure_charter_bundle_fresh()` is now the sole chokepoint** for readers of `governance.yaml`, `directives.yaml`, and `metadata.yaml`. Direct reads of those files are forbidden and are enforced by an AST-walk coverage test (`tests/charter/test_chokepoint_coverage.py`). Refs Priivacy-ai/spec-kitty#461, #464.
|
|
559
|
+
|
|
560
|
+
### Unchanged (explicitly)
|
|
561
|
+
|
|
562
|
+
- **`.kittify/memory/` and `.kittify/AGENTS.md` symlinks in worktrees** remain as-is — they provide project-memory and agent-instructions sharing, documented-intentional per `src/specify_cli/templates/AGENTS.md:168-179`. They are NOT part of the charter bundle; the canonical-root resolver fixes the worktree charter-visibility story without touching `src/specify_cli/core/worktree.py` (C-011).
|
|
563
|
+
- **Files under `.kittify/charter/` that are not v1.0.0 manifest files** (`references.yaml`, `context-state.json`, `interview/answers.yaml`, `library/*.md`) are unchanged. The migration lists them under `bundle_validation.unexpected` for operator visibility but does not delete, move, or rewrite them (C-012).
|
|
564
|
+
- **Project `.gitignore` is not reconciled** by the migration. The v1.0.0 manifest's required entries already match the repository `.gitignore` verbatim; the migration performs no read or write against `.gitignore` (D-12).
|
|
565
|
+
|
|
566
|
+
### Refs
|
|
567
|
+
|
|
568
|
+
- EPIC: Priivacy-ai/spec-kitty#461 (Charter as Synthesis & Doctrine Reference Graph).
|
|
569
|
+
- Phase 2 tracking: Priivacy-ai/spec-kitty#464.
|
|
570
|
+
- Closes on merge: Priivacy-ai/spec-kitty#339, #451.
|
|
571
|
+
|
|
572
|
+
### Fixed
|
|
573
|
+
|
|
574
|
+
- **`mission merge` no longer silently loses content when the repository carries legacy sparse-checkout state** — the stash/merge/stash-pop cascade used by the merge driver previously recorded phantom deletions for paths filtered out by a sparse-checkout pattern, and the subsequent housekeeping commit silently reverted content the preceding merge had introduced. Merge and `agent action implement` now run a sparse-checkout preflight and fail closed unless the operator passes `--allow-sparse-checkout`, `safe_commit` now aborts commits whose staging area contains paths outside the intended scope, and `mission merge` performs a post-merge refresh and invariant check before leaving the integration branch. Closes Priivacy-ai/spec-kitty#588.
|
|
575
|
+
- **`move-task --to approved` and `--to planned` on a lane-worktree review no longer require `--force` when the only untracked content is `.spec-kitty/`** — the review-lock uncommitted-changes guard now treats the execution lane's own `.spec-kitty/` scratch directory as expected content rather than an unexplained untracked path, so operators stop being trained to pass `--force` reflexively. Closes Priivacy-ai/spec-kitty#589.
|
|
576
|
+
- **Retry guidance emitted by the uncommitted-changes guard now names the actual target lane** rather than hardcoded `for_review`, so operators see the transition they were attempting instead of a misleading default.
|
|
577
|
+
|
|
578
|
+
### Added
|
|
579
|
+
|
|
580
|
+
- **`spec-kitty doctor sparse-checkout --fix`** — detection and one-command migration for repositories upgraded from pre-3.0 spec-kitty that still carry `core.sparseCheckout=true` and a `.git/info/sparse-checkout` pattern file. The fix removes the git-config entry, clears the pattern file, and verifies post-fix state.
|
|
581
|
+
- **`--allow-sparse-checkout` flag on `mission merge` and `agent action implement`** — explicit escape hatch for users with intentional sparse configurations. Use of the flag emits a `WARNING`-level structured log record (`spec_kitty.override.sparse_checkout`) at the CLI layer. Durable cross-repo audit event support is tracked as Priivacy-ai/spec-kitty#617.
|
|
582
|
+
- **Commit-time backstop inside `safe_commit`** — fail-closed check that aborts commits whose staging area contains paths outside the intended scope, independent of the preflight. This is the universal defence that catches sparse-stash-pop phantom-deletion cascades regardless of which command initiated them.
|
|
583
|
+
- **Per-worktree `.spec-kitty/` exclude entry** — every lane worktree now receives a local git exclude entry for `.spec-kitty/` at worktree creation, so lane scratch content stays invisible to the working-tree guard even in worktrees initialised before the fix.
|
|
584
|
+
- **Session-scoped sparse-checkout warning** at review-lock and task-command entry points — surfaces detected legacy sparse-checkout state once per process before an operator wastes a commit cycle, without blocking.
|
|
585
|
+
- **ADR `2026-04-14-1-sparse-checkout-defense-in-depth`** — documents the four-layer hybrid defence (merge/implement preflight, `safe_commit` backstop, session warning, `doctor --fix`) and the alternatives considered.
|
|
586
|
+
|
|
587
|
+
### Recovery for users already affected
|
|
588
|
+
|
|
589
|
+
If a prior `mission merge` landed on your target branch with a silent content
|
|
590
|
+
reversion (symptoms: a follow-up `chore: record done transitions` commit that
|
|
591
|
+
deleted content merged in the preceding commit), restore the content from the
|
|
592
|
+
merge commit that introduced it:
|
|
593
|
+
|
|
594
|
+
```bash
|
|
595
|
+
# Identify the merge commit
|
|
596
|
+
git log --merges --oneline -- <affected-file>
|
|
597
|
+
|
|
598
|
+
# Restore content from that merge
|
|
599
|
+
git checkout <merge-sha> -- <affected-file> [...]
|
|
600
|
+
|
|
601
|
+
# Commit the restoration
|
|
602
|
+
git add <affected-file> [...]
|
|
603
|
+
git commit -m "fix: restore content reverted by phantom-deletion bug"
|
|
604
|
+
```
|
|
605
|
+
|
|
606
|
+
Then run the migration to prevent recurrence:
|
|
607
|
+
|
|
608
|
+
```bash
|
|
609
|
+
spec-kitty doctor sparse-checkout --fix
|
|
610
|
+
```
|
|
611
|
+
|
|
612
|
+
Root-cause diagnostic trail: [Priivacy-ai/spec-kitty#588 (comment)](https://github.com/Priivacy-ai/spec-kitty/issues/588#issuecomment-4242179946).
|
|
613
|
+
|
|
614
|
+
## [3.1.2a4] - 2026-04-14
|
|
615
|
+
|
|
616
|
+
### Added
|
|
617
|
+
|
|
618
|
+
- **Kiro CLI as first-class agent** — `spec-kitty init --ai kiro` registers the Kiro CLI (Amazon Q Developer CLI's rebrand) with its own `.kiro/prompts/` directory and `kiro-cli` binary check. Legacy `--ai q` (→ `.amazonq/prompts/`) remains supported for backwards compatibility. README and `docs/reference/supported-agents.md` now document the shell-quoting requirement for `$ARGUMENTS` pass-through (see kirodotdev/Kiro#4141). Closes #246.
|
|
619
|
+
|
|
620
|
+
### Fixed
|
|
621
|
+
|
|
622
|
+
- **`diff-coverage` CI job no longer fails with "no merge base"** — the base-branch fetch was passing `--depth=1` after `actions/checkout@v6` had already fetched full history, which truncated `origin/<base>` back to a single commit and broke `diff-cover`'s merge-base computation. Dropped `--depth=1`.
|
|
623
|
+
- **`test_mission_v1_guards_unit.py::test_registry_keys` now matches the guard registry** — synchronised the `EXPECTED_GUARDS` set with the `occurrence_map_complete` guard added in #616.
|
|
624
|
+
|
|
625
|
+
## [3.1.2a3] - 2026-04-12
|
|
626
|
+
|
|
627
|
+
### Fixed
|
|
628
|
+
|
|
629
|
+
- **Merge-time numbering lock and retry safety** — `mission_number` assignment now acquires a file lock before scanning existing prefixes, MergeState uses `mission_id` as its canonical key, and interrupted merges no longer risk duplicate or skipped numbers on retry. Closes #601.
|
|
630
|
+
- **CLI no longer hangs 15–20 min when offline queue is full and session expired** — the offline queue drain path now respects a bounded timeout instead of blocking indefinitely on expired-session retries. Closes #598, #602.
|
|
631
|
+
- **Sonar readiness and parser findings addressed** — actionable maintenance issues flagged by SonarCloud (code smells, complexity, minor bugs) are resolved. Closes #599, #600.
|
|
632
|
+
|
|
633
|
+
## [3.1.2a2] - 2026-04-11
|
|
634
|
+
|
|
635
|
+
### Added
|
|
636
|
+
|
|
637
|
+
- **Hosted readiness control surfaces** — the CLI now exposes the canonical SaaS rollout/readiness module, a six-state hosted readiness evaluator, and a background-daemon policy/intent model that keeps stealth rollout behavior explicit while making enabled-mode failures actionable.
|
|
638
|
+
|
|
639
|
+
### Changed
|
|
640
|
+
|
|
641
|
+
- **Tracker command classification is corrected for first-run flows** — `tracker discover` no longer requires an existing mission binding, `tracker providers` remains available as static output without hosted prerequisites, and hosted/manual-daemon checks are applied according to command intent rather than indiscriminately.
|
|
642
|
+
- **Tracker dependency advances to the hardened hosted-discovery release line** — the CLI now targets `spec-kitty-tracker==0.4.1`, aligning the prerelease with the published runtime validation and canonical discovery contract shipped in the tracker SDK.
|
|
643
|
+
|
|
644
|
+
### Fixed
|
|
645
|
+
|
|
646
|
+
- **Background-daemon policy no longer blocks local-provider sync flows** — local tracker providers continue to execute direct sync operations even when hosted SaaS daemon startup is set to manual.
|
|
647
|
+
|
|
648
|
+
## [3.1.2a1] - 2026-04-10
|
|
649
|
+
|
|
650
|
+
### Added
|
|
651
|
+
|
|
652
|
+
- **Browser-mediated CLI auth preview** — `spec-kitty auth login` now supports browser-based OAuth with Device Authorization Flow fallback, centralized token management, secure storage, and WebSocket token provisioning against the SaaS contract.
|
|
653
|
+
|
|
654
|
+
### Changed
|
|
655
|
+
|
|
656
|
+
- **Human CLI auth now flows through the new auth subsystem** — HTTP transport, sync runtime, and tracker SaaS callers now refresh through the shared token manager instead of the legacy password/JWT credential path.
|
|
657
|
+
|
|
658
|
+
### Fixed
|
|
659
|
+
|
|
660
|
+
- **Browser auth CI coverage gaps** — test dependencies and stale tracker refresh patch targets were corrected so the new auth stack passes the core and integration suites reliably in CI.
|
|
661
|
+
|
|
662
|
+
## [3.1.1] - 2026-04-09
|
|
663
|
+
|
|
664
|
+
### Added
|
|
665
|
+
|
|
666
|
+
- **Semantic status-event merge driver** — `kitty-specs/**/status.events.jsonl` now uses a Spec Kitty merge driver that unions append-only event logs by `event_id`, rejects conflicting payloads, and fails closed when merged WPs do not reach `done` in the canonical event log.
|
|
667
|
+
- **Forward-safe mission identity** — newly created missions now mint a ULID `mission_id` at creation time, persist it to `meta.json`, and emit it through mission-created event payloads.
|
|
668
|
+
- **Release hygiene guardrail** — release validation now enforces `pyproject.toml` and `.kittify/metadata.yaml` version sync before a cut can proceed.
|
|
669
|
+
|
|
670
|
+
### Changed
|
|
671
|
+
|
|
672
|
+
- **`spec-kitty init` now produces a minimal file scaffold** — init no longer initializes git, creates bootstrap commits, or seeds `.agents/skills/`. The generated next steps now point users at `spec-kitty next` plus `spec-kitty agent action implement/review` as the canonical workflow.
|
|
673
|
+
- **Planning-artifact WPs are first-class lane-owned items** — the canonical planning lane is now `lane-planning`, and it resolves to the main repository checkout instead of an ad hoc special-case path.
|
|
674
|
+
- **Top-level `implement` is de-emphasized** — onboarding and command docs now treat `spec-kitty implement` as internal infrastructure rather than the primary user-facing flow.
|
|
675
|
+
|
|
676
|
+
### Fixed
|
|
677
|
+
|
|
678
|
+
- **Merge conflict recovery for `status.events.jsonl`** — append-only status events are no longer silently dropped during merge conflict resolution, and fresh repositories now self-heal the local git merge-driver config when running merge flows. Closes #574.
|
|
679
|
+
- **Planning/query consistency after PR #555** — mixed planning/code review-context resolution no longer crashes when a dependency resolves to the repo-root workspace, and fresh-run query mode now returns `run_id: null` instead of leaking a deleted temporary run id.
|
|
680
|
+
- **Dependency parser trailing-prose bleed** — the final WP section is now bounded at non-WP `##` headings so trailing prose does not get misread as dependency declarations.
|
|
681
|
+
- **Concurrent auth refresh race** — stale 401 responses during token rotation no longer wipe valid shared credentials from active CLI sessions.
|
|
682
|
+
|
|
683
|
+
## [3.1.1a3] - 2026-04-07
|
|
684
|
+
|
|
685
|
+
### Added
|
|
686
|
+
|
|
687
|
+
- **Global slash command installation** — all 16 spec-kitty slash commands are now installed globally to `~/.<agent-dir>/` (e.g. `~/.claude/commands/`, `~/.gemini/commands/`, `~/.codex/prompts/`, etc.) at every CLI startup, for all 13 supported agents. No `spec-kitty init` or per-project `spec-kitty upgrade` is required for commands to be available. Commands update automatically when the CLI is upgraded.
|
|
688
|
+
- **Migration `3.1.2_globalize_commands`** — removes existing per-project `spec-kitty.*` command files from `.claude/commands/`, `.gemini/commands/`, and equivalent directories in all configured agents. Runs automatically on `spec-kitty upgrade`.
|
|
689
|
+
- **ADR `2026-04-07-1-global-slash-command-installation`** — documents the decision to install commands globally, the full 13-agent table with global roots, and the rationale.
|
|
690
|
+
|
|
691
|
+
### Changed
|
|
692
|
+
|
|
693
|
+
- `spec-kitty init` no longer writes per-project command files. Commands are managed exclusively by the global startup hook.
|
|
694
|
+
|
|
695
|
+
## [3.1.1a2] - 2026-04-07
|
|
696
|
+
|
|
697
|
+
### Fixed
|
|
698
|
+
|
|
699
|
+
- **`spec-kitty init` / any CLI command no longer dirties the git repo** — every CLI invocation that touched status was unconditionally rewriting `kitty-specs/*/status.json`, even when nothing had changed, leaving ~60 files modified in `git status`. Root cause: `materialize()` stamped a fresh `datetime.now(UTC)` into `materialized_at` on every call. Fixed in `reducer.py` (3.1.1a1): `materialized_at` is now derived deterministically from the last event's `at` timestamp (or `""` for features with no events), and a content-equality guard skips the write when the file is already up to date. Closes #524.
|
|
700
|
+
|
|
701
|
+
### Added
|
|
702
|
+
|
|
703
|
+
- **Migration `3.1.1_normalize_status_json`** — one-shot upgrade migration that normalises all existing `kitty-specs/*/status.json` files to the new deterministic format. Runs automatically on `spec-kitty upgrade` for any project where the committed files still carry old wall-clock timestamps or the legacy `feature_slug` field. After the migration the skip-write guard in `materialize()` keeps all status snapshots stable indefinitely.
|
|
704
|
+
|
|
705
|
+
### Changed
|
|
706
|
+
|
|
707
|
+
- **`StatusSnapshot` and `ProgressResult` serialisation no longer emits `feature_slug`** — `with_tracked_mission_slug_aliases` previously injected a redundant `feature_slug` alias into every serialised snapshot. Now only `mission_slug` is written. Reading still accepts both keys for backward compat with existing files.
|
|
708
|
+
|
|
709
|
+
## [3.1.1a1] - 2026-04-07
|
|
710
|
+
|
|
711
|
+
### Added
|
|
712
|
+
|
|
713
|
+
- **Typed `WPMetadata` Pydantic model** (`src/specify_cli/status/wp_metadata.py`) — immutable, validated work package metadata with `update()` builder API; replaces all raw `frontmatter.get()` dict access across consumer files. Closes #410.
|
|
714
|
+
- **`Lane` enum state machine** — valid lane transitions enforced at the type level; all runtime consumers migrated from string comparisons to `Lane` enum values.
|
|
715
|
+
- **Typed dashboard API contracts** (`src/specify_cli/dashboard/handlers/api.py`) — Pydantic response models replace untyped dicts.
|
|
716
|
+
- **RE2 shim** (`src/kernel/_safe_re.py`) — `types.ModuleType`-based shim backed by `google-re2`; exposes the full `re` API and mitigates Sonar DOS hotspot findings. `google-re2>=1.1` added as a core runtime dependency.
|
|
717
|
+
- **CI status-layer test stages** — new `fast-tests-status` and `integration-tests-status` jobs run the `tests/status/` and `tests/specify_cli/status/` suites in parallel with existing core/doctrine jobs; their coverage outputs feed the `diff-coverage` gate.
|
|
718
|
+
- **`WPMetadata.display_title` property** — safe fallback for missing or empty WP titles.
|
|
719
|
+
|
|
720
|
+
### Changed
|
|
721
|
+
|
|
722
|
+
- All `frontmatter.get()` calls outside `frontmatter.py` migrated to typed `WPMetadata` access. Migration scripts retain raw dict access annotated `# MIGRATION-ONLY`.
|
|
723
|
+
- `WPMetadata.title` is now optional; WP read errors propagate gracefully via `read_wp_frontmatter()`.
|
|
724
|
+
- `OwnershipManifest.from_frontmatter()` accepts `WPMetadata` directly.
|
|
725
|
+
- `diff-coverage` job wired to consume `coverage-kernel.xml`, `coverage-fast-status.xml`, and `coverage-integration-status.xml` in both enforced (critical-path 90%) and advisory (full-diff) steps.
|
|
726
|
+
- GitHub Actions upgraded to Node.js 24 compatible versions (`actions/checkout@v6`, `actions/setup-python@v6`, `actions/setup-node@v6`, `actions/upload-artifact@v7`, `actions/download-artifact@v8`) across all workflow files.
|
|
727
|
+
|
|
728
|
+
### Fixed
|
|
729
|
+
|
|
730
|
+
- `ValidationError` caught in phase-1 status mirror (`status/emit.py`) — prevents NoneType crashes on malformed WP files.
|
|
731
|
+
- Ruff and mypy violations cleaned up in all files touched by the migration.
|
|
732
|
+
- Sonar false-positive NOSONAR suppressions added in `arbiter.py` and `dashboard/handlers/api.py`.
|
|
733
|
+
- WP03 validation report (mission 068) decision corrected from `close_with_evidence` to `tighten_workflow` to reflect the CI logic additions; `test_tighten_workflow_passes_large_pr_sample` implemented to verify the advisory-only contract.
|
|
734
|
+
|
|
735
|
+
## [3.1.0] - 2026-04-07
|
|
736
|
+
|
|
737
|
+
### Added
|
|
738
|
+
|
|
739
|
+
- **Planning pipeline integrity (mission 069)** — four structural fixes eliminating fragilities discovered during mission 068:
|
|
740
|
+
- **Dirty-git reads fix (WP01)** — `materialize()` now derives `materialized_at` from the last event timestamp (deterministic) and skips the write when content is byte-identical. `materialize_if_stale()` returns a read-only `reduce()` call. All read-only commands leave zero modified files in `git status`. Fixes #524.
|
|
741
|
+
- **Structured WP manifest — `wps.yaml` (WP02, WP03, WP04)** — new `src/specify_cli/core/wps_manifest.py` with Pydantic model, YAML loader, and `generate_tasks_md_from_manifest()`. JSON Schema at `src/specify_cli/schemas/wps.schema.json`. When `wps.yaml` is present, `finalize-tasks` derives dependencies exclusively from the manifest; `tasks.md` is regenerated as a derived artifact. `/spec-kitty.tasks-outline` and `/spec-kitty.tasks-packages` templates updated to produce/consume `wps.yaml`. Migration `m_3_2_0_update_planning_templates` propagates changes to existing installations. Fixes #525.
|
|
742
|
+
- **`spec-kitty next` query mode (WP05)** — bare `spec-kitty next` (no `--result`) enters query mode: returns current step with `[QUERY — no result provided, state not advanced]` prefix without advancing the state machine. Prevents ghost completions when agents call `next` while disoriented. Fixes #526.
|
|
743
|
+
- **Slug validator digit-prefix support (WP06)** — `KEBAB_CASE_PATTERN` updated to accept `NNN-*` slugs following spec-kitty's own naming convention. Fixes #527.
|
|
744
|
+
|
|
745
|
+
## [3.1.0a8] - 2026-04-07
|
|
746
|
+
|
|
747
|
+
### Added
|
|
748
|
+
|
|
749
|
+
- **Post-merge reliability and release hardening (mission 068)** — 5 work packages closing the workflow-stabilization track:
|
|
750
|
+
- **Stale-assertion analyzer (WP01)** — new `src/specify_cli/post_merge/` package: stdlib `ast`-based tool that detects test assertions likely invalidated by merged source changes. CLI: `spec-kitty agent tests stale-check --base <ref> --head <ref> [--json]`. Integrated into the merge runner. No new dependencies, no network calls.
|
|
751
|
+
- **Merge strategy + safe-commit + linear-history hint (WP02)** — `MergeStrategy` enum (MERGE/SQUASH/REBASE) in new `src/specify_cli/merge/config.py` with `--strategy` CLI flag (resolves: flag → `.kittify/config.yaml` → squash default). `safe_commit()` called after `_mark_wp_merged_done` before worktree removal (FR-019). Linear-history rejection hint guides users past protected-branch push failures. Closes #456.
|
|
752
|
+
- **Diff-coverage policy validation (WP03)** — validation report confirms the enforce/advisory split already satisfies the policy intent. CI step names tightened to `diff-coverage (critical-path, enforced)` and `diff-coverage (full-diff, advisory)`. Closes #455.
|
|
753
|
+
- **Release-prep CLI (WP04)** — new `src/specify_cli/release/` package: `propose_version()`, `build_changelog_block()`, `ReleasePrepPayload`. CLI: `spec-kitty agent release prep --channel {alpha,beta,stable} [--json]`. Zero network calls. Closes #457.
|
|
754
|
+
- **Recovery extension + mission close (WP05)** — `scan_recovery_state()` extended with `consult_status_events=True` to detect merged-and-deleted WPs via event log; new `RecoveryState.ready_to_start_from_target` field. `spec-kitty implement` gains `--base <ref>` flag for explicit worktree branching. Closes #415.
|
|
755
|
+
|
|
756
|
+
### Fixed
|
|
757
|
+
|
|
758
|
+
- **`implement --base` Typer pattern** — changed to Annotated pattern, fixing test isolation failures where direct Python calls received `OptionInfo` objects instead of `None`
|
|
759
|
+
- **`implement` console capsys isolation** — `_json_safe_output` wrapper now resets `console._file = None` in `finally` to prevent "I/O operation on closed file" when tests run in sequence with pytest capsys
|
|
760
|
+
- **Replay parity test** — corrected `reduced.mission_key == "replay-mission"` (was wrong field name and wrong value)
|
|
761
|
+
|
|
762
|
+
## [3.1.0a7] - 2026-04-06
|
|
763
|
+
|
|
764
|
+
### Added
|
|
765
|
+
|
|
766
|
+
- **Runtime recovery and audit safety (mission 067)** -- 6 work packages delivering resilience and audit infrastructure:
|
|
767
|
+
- **Merge resume recovery (WP01)** -- `spec-kitty merge --resume` recovers from interrupted merges with persistent state tracking in `.kittify/merge-state.json`
|
|
768
|
+
- **Implementation crash recovery (WP02)** -- `spec-kitty implement --recover` restores execution context after agent crashes, rebuilding worktree state and resuming from last known checkpoint
|
|
769
|
+
- **Stale-claim doctor checks (WP03)** -- `spec-kitty doctor` detects orphaned claims, stale locks, and zombie worktrees with structured diagnostic output
|
|
770
|
+
- **Audit-mode scope relaxation (WP04)** -- ownership validation supports `scope: codebase-wide` for audit/cutover WPs; new `validate_audit_coverage()` warns on uncovered audit targets
|
|
771
|
+
- **Shim-to-canonical migration (WP05)** -- all `spec-kitty agent shim <action>` calls replaced with direct `spec-kitty agent action <action>` across 48 agent command files
|
|
772
|
+
- **Finalize-tasks audit wiring (WP06)** -- `validate_audit_coverage()` integrated into finalize-tasks ownership validation pipeline as a soft warning check
|
|
773
|
+
|
|
774
|
+
### Fixed
|
|
775
|
+
|
|
776
|
+
- **Agent command files** -- regenerated all 48 agent command files to use canonical `spec-kitty agent action` instead of deprecated `spec-kitty agent shim`
|
|
777
|
+
- **Post-merge test regressions** -- fixed 4 stale test assertions after mission 067 merge (implement template content, merge resume behavior, --recover flag default)
|
|
778
|
+
|
|
779
|
+
## [3.1.0a6] - 2026-04-06
|
|
780
|
+
|
|
781
|
+
### Added
|
|
782
|
+
|
|
783
|
+
- **Review loop stabilization (mission 066)** — new `src/specify_cli/review/` module with 6 submodules:
|
|
784
|
+
- `artifacts.py` — persisted review-cycle artifacts at `kitty-specs/<mission>/tasks/<WP-slug>/review-cycle-{N}.md` with YAML frontmatter. Replaces ephemeral `.git/spec-kitty/feedback/` storage. Backward-compatible `feedback://` pointer resolution retained (#432, #433).
|
|
785
|
+
- `fix_prompt.py` — focused fix-mode prompt generation from review-cycle artifacts. Rejected WPs get ~40-line targeted prompts instead of replaying 400-500 line full WP prompts (#430).
|
|
786
|
+
- `dirty_classifier.py` — dirty-state classification for review handoff. Partitions `git status --porcelain` output into blocking (WP-owned files) vs benign (status artifacts, other WP files, metadata). External reviewers no longer need `--force` for unrelated dirtiness (#439).
|
|
787
|
+
- `baseline.py` — baseline test capture at implement time via `pytest --junitxml` + JUnit XML parsing. Review prompts include "Baseline Context" section distinguishing pre-existing failures from regressions. Configurable `review.test_command` for non-pytest projects (#444).
|
|
788
|
+
- `lock.py` — concurrent review serialization via `.spec-kitty/review-lock.json`. Stale lock detection via PID check. Opt-in env-var isolation for projects that configure `review.concurrent_isolation` in config.yaml (#440).
|
|
789
|
+
- `arbiter.py` — structured arbiter checklist with 5 standard rationale categories (pre-existing failure, wrong context, cross-scope, infra/environmental, custom). Override detection on forward `--force` from planned after rejection event. Decisions persisted in review-cycle artifact frontmatter (#441).
|
|
790
|
+
- **147 new tests** across the review module (avg 93% coverage, range 91-99%)
|
|
791
|
+
- **Implement-review skill update** — parallel sprint pattern, merge/conflict resolution guide, dead-code detection warning, post-merge validation steps
|
|
792
|
+
- **Tasks template handoff** — `/spec-kitty.tasks` now offers to invoke `/spec-kitty-implement-review` skill at completion for automated full-sprint execution
|
|
793
|
+
|
|
794
|
+
### Fixed
|
|
795
|
+
|
|
796
|
+
- **ReviewLock wired into live command path** — `ReviewLock.acquire()` called in `workflow.py review()` after workspace resolution; `ReviewLock.release()` called in `tasks.py move-task` on review completion
|
|
797
|
+
- **Removed dead `wp_prompt_path` parameter** from `generate_fix_prompt()` and all callers
|
|
798
|
+
|
|
799
|
+
## [3.1.0a5] - 2026-04-06
|
|
800
|
+
|
|
801
|
+
### Fixed
|
|
802
|
+
|
|
803
|
+
- **Dependency parsing in finalize-tasks** — new shared parser (`core/dependency_parser.py`) recognizes inline, colon-header, and bullet-list dependency formats. Both `agent mission finalize-tasks` and `agent tasks finalize-tasks` use the same parser. Non-empty disagreement between tasks.md and WP frontmatter triggers a diagnostic error instead of silently overwriting (#406).
|
|
804
|
+
- **validate-only is genuinely non-mutating** — all file writes gated behind `if not validate_only`. JSON output reports `would_modify`/`unchanged`/`preserved` without touching disk (#417).
|
|
805
|
+
- **Lane computation completeness** — every executable WP must appear in `lanes.json` or lane computation fails with a diagnostic error. Missing ownership manifests are a hard failure. Planning-artifact WPs surfaced in diagnostic summary. Zero-match globs and `src/**` fallback emit warnings (#422).
|
|
806
|
+
- **Parallelism collapse reporting** — new `CollapseReport` records every union-find merge with rule name and evidence. Rule 3 (surface heuristics) now gated on `_are_disjoint()` — WPs with provably disjoint owned files are not collapsed by keyword matches alone (#423).
|
|
807
|
+
- **Pipe-table mark-status support** — column-aware parser recognizes `[P]` in Parallel column (not corrupted), updates Status column or appends one. Checkbox format remains canonical for new generation (#438).
|
|
808
|
+
- **Agent command guidance** — all error messages, shim templates, and command-template examples now use `--mission` consistently. Five `require_explicit_feature()` callers fixed from `--feature` to `--mission`. Error messages include complete copy-pasteable example commands (#434).
|
|
809
|
+
- **Full --feature → --mission sweep** — 12 typer.Option declarations, 4 argparse declarations, 11 error messages, and 5 docstrings updated. `--mission` is the primary displayed flag name; `--feature` retained as hidden backward-compatibility alias (#448).
|
|
810
|
+
|
|
811
|
+
### Added
|
|
812
|
+
|
|
813
|
+
- `src/specify_cli/core/dependency_parser.py` — canonical shared dependency parser
|
|
814
|
+
- `CollapseEvent` and `CollapseReport` data models in `lanes/models.py`
|
|
815
|
+
- `LaneComputationError` exception for diagnostic lane failures
|
|
816
|
+
- `validate_glob_matches()` in ownership validation
|
|
817
|
+
- `planning_artifact_wps` field on `LanesManifest`
|
|
818
|
+
- Charter regression vigilance rules for `--mission` terminology canon
|
|
819
|
+
|
|
820
|
+
## [3.1.0a4] - 2026-04-06
|
|
821
|
+
|
|
822
|
+
### Fixed
|
|
823
|
+
|
|
824
|
+
- **Mission-era host surface cleanup** — removed remaining feature-era host command references from shipped templates, agent-facing prompts, and smoke-test scaffolding so new missions no longer regenerate `create-feature`, `feature_slug`, or `--feature` guidance on canonical paths.
|
|
825
|
+
- **Runtime mission metadata normalization** — mission resolution now prefers canonical `mission_type` metadata and rehydrates mission identity consistently in diagnostics, verification, and rebuild-state migrations.
|
|
826
|
+
- **Release-readiness regressions after host cutover** — updated cross-cutting, orchestrator, parity, body-sync, gitignore-isolation, and e2e smoke coverage to validate the mission-era CLI and contract instead of the removed feature-era host surface.
|
|
827
|
+
|
|
828
|
+
## [3.1.0a3] - 2026-04-05
|
|
829
|
+
|
|
830
|
+
### Fixed
|
|
831
|
+
|
|
832
|
+
- **Doctrine artifact discovery in subdirectories** — all 7 doctrine repositories now use `rglob()` instead of `glob()`, so artifacts in subdirectories of `shipped/` are no longer silently skipped (#396).
|
|
833
|
+
- **Dashboard `/api/features` empty response** — `StatusEvent.from_dict()` now accepts both `feature_slug` and `mission_slug` field names and normalizes the legacy `in_review` lane to `for_review`.
|
|
834
|
+
- **Stale `patch()` targets caught at lint time** — new `scripts/check_patch_targets.py` validates every `@patch()` target string resolves, added as an `[ENFORCED]` CI lint step (#394).
|
|
835
|
+
- **Architectural layer coverage guards** — meta-tests fail when a `src/` package has no layer assignment or a defined layer matches no module (#395).
|
|
836
|
+
- **Sonar reliability bugs** — resolved 7 findings: unreachable code (S1763), identical branches (S3923), premature async task GC (S7502), always-true condition (S2583), tautological assertion (S3981), CSS shorthand override (S4657), parameter shadowing (S1226).
|
|
837
|
+
- **Async task GC in event emitter** — `asyncio.ensure_future()` results held in `_pending_tasks` set with done-callback cleanup, preventing premature garbage collection.
|
|
838
|
+
- **`check-readiness` CI gate unblocked** — post-release version bump missed after tagging v3.1.0a2 (#408).
|
|
839
|
+
|
|
840
|
+
### Changed
|
|
841
|
+
|
|
842
|
+
- **CI test parallelization** — `fast-tests` and `integration-tests` split into `doctrine` + `core` phases running in parallel (#397).
|
|
843
|
+
- **`--mission-run` as canonical CLI flag** — added as alias for `--feature` across all CLI commands. `--feature` remains accepted as legacy alias.
|
|
844
|
+
- **Node.js 20 → 22** in CI workflows (current LTS).
|
|
845
|
+
- **Mutation testing CI job disabled** — too slow to run reliably.
|
|
846
|
+
- **Ruff max line length** increased from 120 to 164.
|
|
847
|
+
- **Defunct `tests/legacy` references removed**.
|
|
848
|
+
|
|
849
|
+
### Added
|
|
850
|
+
|
|
851
|
+
- **RTK search tooling toolguide** — new shipped doctrine artifact documenting RTK interception patterns and correct search tooling for worktree sessions.
|
|
852
|
+
- **`last_updated` field** on Toolguide model and schema.
|
|
853
|
+
- **Integration tests for nested artifact discovery** — 281-line test suite covering all 8 doctrine repository types.
|
|
854
|
+
- **`integration` pytest marker** registered in `pyproject.toml`.
|
|
855
|
+
|
|
856
|
+
## [3.1.0a2] - 2026-04-05
|
|
857
|
+
|
|
858
|
+
### Changed
|
|
859
|
+
|
|
860
|
+
- **Prerelease publishing is now first-class** — tag-mode release validation accepts matching prerelease tags such as `v3.1.0a0`, GitHub Releases are marked as prereleases automatically for those tags, and maintainer docs now document the end-to-end prerelease PyPI/GitHub publish path.
|
|
861
|
+
- **Rebased doctrine-stack work onto `main`'s execution architecture** — carry forward the doctrine, constitution, and template-repository work from PR #305 into PR #348 while preserving `main`'s context, ownership, event-log, merge-engine, and shim foundations instead of reviving deleted subsystems.
|
|
862
|
+
- **Kernel established as the shared dependency floor** — `src/kernel/` now owns shared path, atomic-write, and glossary-boundary primitives; doctrine no longer reaches back into `specify_cli`, and the package boundary is documented by ADRs and enforced by architectural tests.
|
|
863
|
+
- **Constitution now acts as the local routing layer for governance assets** — project-local mission path construction flows through `ProjectMissionPaths`, while doctrine-backed mission/template access is routed through `MissionTemplateRepository` and constitution-facing resolvers instead of scattered path assembly.
|
|
864
|
+
- **Mission terminology split clarified as the architectural answer to issue #241** — a direct `--feature` → `--mission` rename would have collided with the existing mission-type concept, so the branch now separates `mission type` (`--mission-type`) from `mission run` (`--mission-run`) and keeps legacy `--feature` compatibility where required during the deprecation window.
|
|
865
|
+
- **CI flows extended for the new package layout** — quality workflows now cover doctrine and kernel explicitly, including dedicated kernel coverage enforcement and updated readiness/release paths.
|
|
866
|
+
- **Fork-safe SonarCloud targeting via repository variables** — CI now resolves SonarCloud settings from `SONAR_ORGANIZATION`, `SONAR_PROJECT_KEY`, and optional `SONAR_HOST_URL`, with upstream-safe defaults and a fallback project-key convention of `<organization>_<repo-name>` when `SONAR_PROJECT_KEY` is unset.
|
|
867
|
+
|
|
868
|
+
### Fixed
|
|
869
|
+
|
|
870
|
+
- **Dashboard loading regressions on shared mission installs** — repaired the shared dashboard JavaScript syntax error, made feature scanning tolerate unreadable legacy event logs, hardened `/api/features` error handling, and marked the scanner regressions as part of the `fast` suite so CI/Sonar coverage reflects the new branches.
|
|
871
|
+
- **Narrow exception handlers in doctrine repositories** — Replace 21 bare `except Exception` handlers across `src/doctrine/` with specific exception tuples (`YAMLError`, `ValidationError`, `OSError`, `ModuleNotFoundError`, `TypeError`, `UnicodeDecodeError`) matching actual failure modes. Addresses PR #305 review finding M1.
|
|
872
|
+
- **Fix `spec-kitty --help` crash** — Add missing `Optional` import to `workflow.py` and `tasks.py`. `from __future__ import annotations` defers annotation evaluation; Typer's `eval()` of `Optional[str]` annotations raised `NameError` at app construction time.
|
|
873
|
+
- **Address PR #305 architectural review gaps in the rebased branch** — resolve the core review findings by removing doctrine→`specify_cli` dependency leakage, bringing doctrine into CI coverage, lifting shared glossary/path primitives into kernel, and documenting the resulting boundary in the architecture corpus.
|
|
874
|
+
|
|
875
|
+
### Documentation
|
|
876
|
+
|
|
877
|
+
- **Doctrine inclusion assessment** — `docs/development/doctrine-inclusion-assessment.md` evaluates the current state of the three Doctrine+Kitty merger pillars (agent profiles ~80%, mission type customization ~45%, ad-hoc experimentation ~25%) with gap analysis, dependency violation status, and phased recommendations.
|
|
878
|
+
- **Doctrine skills README** — `src/doctrine/skills/README.md` documents the skills-vs-mission-composition boundary, the iterative context loading pattern, and the skill inventory. Captures the architectural distinction from the PR #305 review.
|
|
879
|
+
- **Updated skill: spec-kitty-runtime-next** — new "Doctrine-Aware Step Execution" section teaches agents to load agent profiles at init, apply action-scoped constitution context at step boundaries, and pull specific tactics/directives on demand instead of dumping all doctrine upfront.
|
|
880
|
+
- **Updated skill: spec-kitty-constitution-doctrine** — new "Programmatic Doctrine Access", "Doctrine Artifact Kinds", and "Iterative Context Loading Pattern" sections document `DoctrineService` entry points, explain all 8 artifact kinds (directives, tactics, paradigms, styleguides, toolguides, procedures, agent profiles, step contracts) with access patterns, and teach the anti-pattern of upfront context dumps.
|
|
881
|
+
- **Updated skill: spec-kitty-mission-system** — new "Doctrine Composition Layer" section documents `MissionStepContract`, `Procedure`, and action index artifacts as the structured primitives backing mission behavior.
|
|
882
|
+
- **New skill: ad-hoc-profile-load** — teaches agents how to load a profile on demand for interactive sessions outside the mission loop: resolve by ID or task context, adopt identity/boundaries/governance scope, maintain role throughout the session, and persist to tool context.
|
|
883
|
+
- **Recorded the remaining follow-on work after the PR #305 -> PR #348 transition** — the compiler-backed mission-bundle follow-up remains relevant, the skills-vs-mission-composition boundary still needs to stay explicit, constitution-local routing should expand beyond mission-path centralization, issue #241 still has compatibility/documentation cleanup left on older `--feature`-based surfaces, and residual runtime/test debt remains outside this rebase-focused integration.
|
|
884
|
+
|
|
885
|
+
## [3.0.3] - 2026-04-01
|
|
886
|
+
|
|
887
|
+
### Added
|
|
888
|
+
|
|
889
|
+
- **Ticket-first mission origin binding** (feature 061): Service-layer workflow for starting a mission from an existing Jira or Linear ticket. Adds `search_origin_candidates()`, `bind_mission_origin()`, and `start_mission_from_ticket()` in `tracker/origin.py`. Persists durable `origin_ticket` provenance in `meta.json` with 7-field validation. Emits `MissionOriginBound` observational telemetry event. SaaS-first write ordering ensures local metadata never runs ahead of the authoritative control plane.
|
|
890
|
+
- **Reusable feature-creation API**: Extracted `create_feature_core()` from the CLI command into `core/feature_creation.py` — a stable, programmatic API returning `FeatureCreationResult` with domain exceptions instead of `typer.Exit()`.
|
|
891
|
+
- **SaaS tracker client extensions**: `search_issues()` and `bind_mission_origin()` transport methods on `SaaSTrackerClient` with full retry, auth refresh, and error handling.
|
|
892
|
+
|
|
893
|
+
## [3.0.2] - 2026-04-01
|
|
894
|
+
|
|
895
|
+
### Fixed
|
|
896
|
+
|
|
897
|
+
- **Missing prompt-driven slash commands**: `rewrite_agent_shims()` (3.0.0 migration step 6) deleted 9 prompt-driven template files (specify, plan, tasks, etc.) leaving only 7 CLI shims. Now regenerates all 16 command files per the hybrid architecture (feature 058). Added `m_3_0_2` migration to restore prompt files for already-affected projects.
|
|
898
|
+
- **Event log not created at feature birth**: `status.events.jsonl` was only bootstrapped during `finalize-tasks`, causing `CanonicalStatusNotFoundError` when the dashboard scanned features in the specify/plan phase. Now initialized when `create-feature` runs.
|
|
899
|
+
- **Dashboard scanner crash on pre-finalization features**: `_count_wps_by_lane()` and `_process_wp_file()` propagate `CanonicalStatusNotFoundError` (hard-fail contract); callers `scan_all_features()` and `scan_feature_kanban()` catch at feature level with actionable error messages.
|
|
900
|
+
- **Stale `/spec-kitty.clarify` references**: Removed 14 remaining references to the deleted clarify command across kitty-specs checklists, coverage tables, and `pyproject.toml`.
|
|
901
|
+
- **Missing `.gitignore` entries**: Added `.kittify/workspaces/` and `.kittify/merge-state.json` to match `state_contract.py` expectations.
|
|
902
|
+
|
|
903
|
+
## [3.0.1] - 2026-03-31
|
|
904
|
+
|
|
905
|
+
### Fixed
|
|
906
|
+
|
|
907
|
+
- **Canonical status hard cutover completed.** Work-package lane state is now consistently sourced from `status.events.jsonl` across active CLI commands, packaged task tooling, templates, docs, and standalone helpers. Frontmatter lane fallbacks and `lane=` body-log writes are removed from active 3.0 flows.
|
|
908
|
+
- **Canonical bootstrap and hard-fail behavior hardened.** `finalize-tasks` now seeds canonical `planned` state for generated WPs, while runtime commands fail explicitly when canonical status is missing instead of silently reconstructing it from abandoned frontmatter state.
|
|
909
|
+
- **Release automation updated for 3.x.** GitHub release validation, maintainer docs, and workflow tag handling now use semantic `vX.Y.Z` tags generically, so `v3.0.1` publishes correctly to GitHub Releases and PyPI.
|
|
910
|
+
|
|
911
|
+
## [3.0.0] - 2026-03-30
|
|
912
|
+
|
|
913
|
+
### Breaking Changes
|
|
914
|
+
|
|
915
|
+
- **Event log is sole authority for mutable WP state.** Frontmatter `lane`, `review_status`, `reviewed_by`, and `progress` fields are no longer written or read at runtime. Status is read from `status.events.jsonl` via the reducer.
|
|
916
|
+
- **`feature_detection.py` deleted.** All commands require explicit `--feature <slug>` in multi-feature repos. No branch scanning, no env var detection, no cwd walking.
|
|
917
|
+
- **Legacy worktree file filtering removed.** `planning_artifact` WPs work in-repo; `code_change` WPs use standard full worktrees.
|
|
918
|
+
- **Command templates restored as hybrid.** Planning commands (specify, plan, tasks, etc.) install as full prompts; execution commands (implement, review, merge, etc.) install as thin CLI-dispatch shims.
|
|
919
|
+
|
|
920
|
+
### Added
|
|
921
|
+
|
|
922
|
+
- **MissionContext** — opaque token-based bound identity for all workflow commands (`src/specify_cli/context/`)
|
|
923
|
+
- **WP Ownership Manifest** — `execution_mode`, `owned_files`, `authoritative_surface` per WP (`src/specify_cli/ownership/`)
|
|
924
|
+
- **Lane-weighted progress** — `planned=0.0`, `in_progress=0.3`, `for_review=0.6`, `done=1.0` (`src/specify_cli/status/progress.py`)
|
|
925
|
+
- **`spec-kitty materialize`** command for CI/debugging regeneration of derived views
|
|
926
|
+
- **Dedicated merge workspace** at `.kittify/runtime/merge/` with per-mission state and atomic lock
|
|
927
|
+
- **Merge conflict auto-resolution** for event logs (append-merge) and metadata (take-theirs)
|
|
928
|
+
- **Thin agent shims** for CLI-driven commands with `spec-kitty agent shim <command>` entrypoints
|
|
929
|
+
- **Schema version gate** (disabled until 3.0.0 migration ships to consumers)
|
|
930
|
+
- **One-shot migration framework** — `backfill_identity`, `backfill_ownership`, `rebuild_state`, `strip_frontmatter`
|
|
931
|
+
- **`--validate-only`** flag on `finalize-tasks`
|
|
932
|
+
- **`spec-kitty next`** hint in `tasks status` output
|
|
933
|
+
- **Integration Verification** section in WP prompt template
|
|
934
|
+
- **Doctor `command-files`** check — detects stale/missing/wrong-type agent command files
|
|
935
|
+
- **Version markers** in generated command files (`<!-- spec-kitty-command-version: X.Y.Z -->`)
|
|
936
|
+
- **Migration `m_2_1_4`** — unconditionally enforces correct hybrid command file state
|
|
937
|
+
|
|
938
|
+
### Removed
|
|
939
|
+
|
|
940
|
+
- `feature_detection.py` (668 lines) — replaced by MissionContext tokens
|
|
941
|
+
- `status/legacy_bridge.py`, `status/phase.py`, `status/reconcile.py`, `status/migrate.py`
|
|
942
|
+
- `merge/executor.py`, `merge/forecast.py`, `merge/status_resolver.py`
|
|
943
|
+
- `core/agent_context.py` — tech-stack parsing no longer needed
|
|
944
|
+
- ~56 command template files (replaced by 9 canonical prompts + 7 thin shims)
|
|
945
|
+
- Sparse checkout policy enforcement
|
|
946
|
+
- Frontmatter lane/review_status read/write throughout codebase
|
|
947
|
+
- Dual-write (event log + frontmatter) behavior
|
|
948
|
+
|
|
949
|
+
### Fixed
|
|
950
|
+
|
|
951
|
+
- "planning repository" → "project root checkout" terminology (migration included)
|
|
952
|
+
- Template path references removed from agent prompts (agents no longer search for `.kittify/missions/` files)
|
|
953
|
+
- Workflow `implement`/`review` now emit status events (was silently failing)
|
|
954
|
+
- Merge reconciliation marks ALL ancestor WPs as done (not just effective tips)
|
|
955
|
+
- `require_explicit_feature()` lists available features in error message
|
|
956
|
+
- YAML parse errors in frontmatter now logged as warnings (not silently swallowed)
|
|
957
|
+
- Merge engine uses `git reset --hard` on detached HEAD (not `git checkout` which fails when branch is checked out elsewhere)
|
|
958
|
+
- Migration backup covers `kitty-specs/` and `.gitignore` (not just `.kittify/`)
|
|
959
|
+
- `rebuild_state.py` uses max timestamp (not last file line) for terminal state
|
|
960
|
+
- Merge lock uses atomic `open('x')` (not TOCTOU `exists()` + `write_text()`)
|
|
961
|
+
- `merge --resume` errors when multiple paused merges exist (not silently picks first)
|
|
962
|
+
|
|
963
|
+
## [2.1.4] - 2026-03-27
|
|
964
|
+
|
|
965
|
+
### Added
|
|
966
|
+
|
|
967
|
+
**Enforce correct command file state**: Version markers and migration to guarantee all agent command files are always in the correct state.
|
|
968
|
+
|
|
969
|
+
- `<!-- spec-kitty-command-version: X.Y.Z -->` marker added as the first line of every generated command file (both full prompts and thin shims)
|
|
970
|
+
- Migration `m_2_1_4_enforce_command_file_state` unconditionally writes all 16 command files per configured agent; idempotent on subsequent runs when version markers match
|
|
971
|
+
- `spec-kitty doctor command-files` subcommand checks all agent command files for missing files, stale version markers, and wrong file type (full prompt vs thin shim)
|
|
972
|
+
|
|
973
|
+
## [2.1.3] - 2026-03-27
|
|
974
|
+
|
|
975
|
+
### 🐛 Fixed
|
|
976
|
+
|
|
977
|
+
**Preserve explicit WP args in workflow prompts**: Slash-command arguments passed to `/spec-kitty.implement` and `/spec-kitty.review` are now forwarded into the resolver-first flow instead of being silently dropped. Agents receiving explicit WP selectors (e.g., `WP03`, `--base WP01`) will correctly pass them to `spec-kitty agent context resolve` via `--wp-id` and `--base` flags.
|
|
978
|
+
|
|
979
|
+
- `implement.md` and `review.md` mission templates now include an `{ARGS}` placeholder with conditional forwarding instructions
|
|
980
|
+
- Public slash-command docs updated: `/spec-kitty.implement` documents `[--base WP_ID]` support; `/spec-kitty.review` is now WP-only (removed stale "or prompt path" syntax)
|
|
981
|
+
- Regression tests added across Markdown and TOML agent formats to ensure argument placeholders survive rendering
|
|
982
|
+
|
|
983
|
+
## [2.1.2] - 2026-03-23
|
|
984
|
+
|
|
985
|
+
### 🔧 Improved
|
|
986
|
+
|
|
987
|
+
**Skills audit and expansion**: All 6 distributed skills audited, command-verified, and expanded with full architecture documentation. Skills now document internal systems (glossary pipeline, constitution extraction, runtime DAG, git workflow boundary) so agents can operate effectively.
|
|
988
|
+
|
|
989
|
+
- setup-doctor: Fixed wrong CLI commands (`verify` → `verify-setup`, `status` → `agent tasks status`), added `--remove-orphaned` safety warning
|
|
990
|
+
- runtime-review: Added discovery step, `--feature` flags, empty-lane guidance
|
|
991
|
+
- glossary-context: Added 5-layer middleware pipeline, extraction methods, checkpoint/resume, step config
|
|
992
|
+
- constitution-doctrine: Added extraction rules, governance.yaml schema, interview profiles, answers.yaml schema
|
|
993
|
+
- runtime-next: Added decision algorithm, WP iteration logic, 6 guard primitives, agent loop pattern
|
|
994
|
+
- orchestrator-api: Added JSON output examples, error code catalog, idempotency behavior, preflight details
|
|
995
|
+
|
|
996
|
+
### ✨ Added
|
|
997
|
+
|
|
998
|
+
**2 new skills**: `spec-kitty-mission-system` (explains missions, 4 types, template resolution, guards) and `spec-kitty-git-workflow` (documents Python vs agent git operation boundary).
|
|
999
|
+
|
|
1000
|
+
**Reusable skill update utility**: `src/specify_cli/upgrade/skill_update.py` for finding and patching skill files across all 13 agent skill roots.
|
|
1001
|
+
|
|
1002
|
+
**10 upgrade migrations** for consumer projects: 6 skill fixes, 1 release skill removal, 2 new skill installations, 1 glossary skill expansion.
|
|
1003
|
+
|
|
1004
|
+
**Documentation parity sprint (Feature 056)**: DocFX build now includes all 4 Divio categories (was only building 1x/ and 2x/). 5 new user guides distilled from skills, 4 existing docs expanded, 22 fact-check corrections across 20 files.
|
|
1005
|
+
|
|
1006
|
+
### 🐛 Fixed
|
|
1007
|
+
|
|
1008
|
+
**DocFX build gap**: 56 docs files (tutorials, how-to, reference, explanation) were in the repo but excluded from the docs.spec-kitty.ai build. Now included via updated `docfx.json`.
|
|
1009
|
+
|
|
1010
|
+
**8-lane state machine documentation**: All docs updated from outdated 4-lane model (planned/doing/for_review/done) to correct 8-lane model (planned/claimed/in_progress/for_review/approved/done/blocked/canceled) with 24 allowed transitions.
|
|
1011
|
+
|
|
1012
|
+
**CLI reference completeness**: Added 12 missing commands to cli-commands.md, 7 missing subcommands to agent-subcommands.md. Fixed `spec-kitty sync` (documented as flat command, actually a group with 6 subcommands).
|
|
1013
|
+
|
|
1014
|
+
### 🧹 Maintenance
|
|
1015
|
+
|
|
1016
|
+
- Removed `release` skill from distribution (spec-kitty development only, not for consumers)
|
|
1017
|
+
- Removed obsolete `docs/how-to/upgrade-to-0-11-0.md`
|
|
1018
|
+
- Fixed all cross-reference links in new docs (0 new DocFX build warnings)
|
|
1019
|
+
|
|
1020
|
+
## [2.1.1] - 2026-03-21
|
|
1021
|
+
|
|
1022
|
+
### 🐛 Fixed
|
|
1023
|
+
|
|
1024
|
+
- **Bundled doctrine payload in wheels**: the PyPI wheel now includes the full `doctrine/` package tree, including the canonical skill pack under `doctrine/skills/`, so `spec-kitty init` and `spec-kitty upgrade` can install managed skills for shipped builds.
|
|
1025
|
+
- **2.1.0 repair migration**: added `2.1.1_repair_skill_pack` so projects that already upgraded on broken `2.1.0` wheels reinstall the canonical managed skill pack on `spec-kitty upgrade`.
|
|
1026
|
+
- **Release verification guard**: the release workflow now fails if the built wheel omits doctrine files or bundled skills, and distribution tests now assert that a wheel-installed `spec-kitty init` produces the managed skill manifest and installed skill files.
|
|
1027
|
+
|
|
1028
|
+
## [2.1.0] - 2026-03-21
|
|
1029
|
+
|
|
1030
|
+
### ✅ Added
|
|
1031
|
+
|
|
1032
|
+
- **Agent Skills Pack (`#330`)**: added canonical bundled skills, registry/installer/verification flow, manifest support, and upgrade migration `m_2_0_11_install_skills`.
|
|
1033
|
+
- **Structured requirement mapping (`#329`)**: added requirement-to-work-package mapping support with CLI integration for tracing delivery intent into execution planning.
|
|
1034
|
+
|
|
1035
|
+
### 🔧 Changed
|
|
1036
|
+
|
|
1037
|
+
- **Deterministic planning branch intent (`#328`)**: `specify` and `plan` commands now inject explicit target-branch metadata into templates to reduce ambiguity in downstream execution.
|
|
1038
|
+
- **Primary release line promotion**: `2.x` becomes the stable `main` line, with GitHub Releases and PyPI publication starting at `2.1.0`.
|
|
1039
|
+
|
|
1040
|
+
### ⚠️ Deprecated
|
|
1041
|
+
|
|
1042
|
+
- **`1.x` overall**: the former `1.x` line is now deprecated and moves to `1.x-maintenance` for critical fixes only. No new `1.x` PyPI releases are planned.
|
|
1043
|
+
|
|
1044
|
+
### 🗑️ Removed
|
|
1045
|
+
|
|
1046
|
+
- **Public `/spec-kitty.clarify` slash command (`#322`)**: removed the legacy clarify command, template, and migration path in favor of the current planning/discovery flow.
|
|
1047
|
+
|
|
1048
|
+
## [2.0.11] - 2026-03-20
|
|
1049
|
+
|
|
1050
|
+
### 📄 Documentation
|
|
1051
|
+
|
|
1052
|
+
- **2.x release metadata refresh**: updated the README's current-release banner so the branch advertises the active GitHub-only 2.x release line instead of the initial `v2.0.0` placeholder.
|
|
1053
|
+
|
|
1054
|
+
## [2.0.10] - 2026-03-20
|
|
1055
|
+
|
|
1056
|
+
### ✅ Added
|
|
1057
|
+
|
|
1058
|
+
- **Project-level `auto_commit` setting (`#321`)**: repos can now configure automatic commit behavior directly in project config.
|
|
1059
|
+
- **Sync queue resilience and diagnostics (`#320`)**: offline queue now supports FIFO eviction, coalescing, configurable caps, and sync doctor coverage for failure recovery.
|
|
1060
|
+
|
|
1061
|
+
### 🐛 Fixed
|
|
1062
|
+
|
|
1063
|
+
- **Merge target resolution (`#272`)**: merge target branch is now resolved from feature `meta.json`, preventing merges from targeting the wrong branch.
|
|
1064
|
+
- **Acceptance and state persistence hardening (`#319`)**: state writes are now centralized around canonical metadata/state handling to reduce drift across acceptance, mission, and status flows.
|
|
1065
|
+
- **Feature context fallback restored**: ambiguous agent/task resolution now falls back to the latest incomplete feature instead of stopping on a stale explicit-selection error.
|
|
1066
|
+
- **Upgrade downgrade protection**: `spec-kitty upgrade` now refuses older targets instead of silently rewriting project metadata backwards.
|
|
1067
|
+
- **Migration discovery fail-fast**: broken `m_*.py` modules now fail discovery immediately instead of being skipped with a stderr warning.
|
|
1068
|
+
- **Upgrade metadata durability**: successful and failed migration records are now persisted immediately so retries can resume from an accurate state after mid-run failures.
|
|
1069
|
+
- **Safe auto-commit stash isolation**: `safe_commit()` now restores only the stash entry it created, preventing unrelated user stashes from being popped during upgrade/status auto-commits.
|
|
1070
|
+
- **Embedded task script compatibility**: copied `.kittify/scripts/tasks` helpers now fall back cleanly when the host `specify_cli` install is older than the copied templates.
|
|
1071
|
+
|
|
1072
|
+
### 🔧 Changed
|
|
1073
|
+
|
|
1074
|
+
- **State architecture cleanup phase 2 (`#319`)**: consolidated atomic-write and state-contract handling across runtime, acceptance, and feature metadata paths.
|
|
1075
|
+
- **Test and quality isolation follow-ups**: retained the refactors that separated policy/test churn from release-critical behavior on the 2.x line.
|
|
1076
|
+
|
|
1077
|
+
## [2.0.9] - 2026-03-15
|
|
1078
|
+
|
|
1079
|
+
### ✅ Added
|
|
1080
|
+
|
|
1081
|
+
- **Mutation testing CI integration (feat #047)**: mutmut toolchain setup, CI integration, and targeted kill sessions for `status/` reducer and transitions.
|
|
1082
|
+
- **Agentic mutation testing remediation workflow**: GitHub Agentic Workflow (gh-aw) replaces the legacy Claude workflow for mutation testing remediation.
|
|
1083
|
+
- **SonarCloud integration**: added SonarCloud config; `develop` branch recognized as 2.x-equivalent in CI quality gates.
|
|
1084
|
+
- **Architecture corpus restructure**: versioned architecture docs under `architecture/1.x/` and `architecture/2.x/`, 45 ADRs, glossary contexts across 10 bounded domains, Contextive integration, and stakeholder persona definitions.
|
|
1085
|
+
- **`meta.json` schema example in specify template**: documents `"target_branch"` and `"vcs"` as required explicit fields.
|
|
1086
|
+
|
|
1087
|
+
### 🐛 Fixed
|
|
1088
|
+
|
|
1089
|
+
- **Post-rebase quality fixes**: resolved unmatched `)` syntax error, `gap_analysis_path` undefined name (F821), `timezone` → `UTC` reference, unused `type: ignore` comments, and `toml` import-untyped mypy errors.
|
|
1090
|
+
- **Test isolation**: moved misplaced test package; fixed 3 test failures and Pydantic V1 deprecation warnings.
|
|
1091
|
+
- **Sync offline queue**: redirect offline queue warning to stderr instead of stdout.
|
|
1092
|
+
- **CI branch detection**: `develop` now recognized as a 2.x branch for branch-contract guards.
|
|
1093
|
+
|
|
1094
|
+
### 🔧 Changed
|
|
1095
|
+
|
|
1096
|
+
- **Ruff lint compliance**: full ruff clean pass across `src/` and `tests/`; added ruff lint config to `pyproject.toml`.
|
|
1097
|
+
- **Documentation site updates**: 2.x docs site refresh with Contextive IDE integration guide.
|
|
1098
|
+
- **Test suite restructuring**: migrated to vertical-slice layout; redesigned CI quality workflow; annotated suite with fast/slow/git_repo markers; deleted tests/legacy/ after extracting unique behaviours.
|
|
1099
|
+
|
|
1100
|
+
## [2.0.8] - 2026-03-11
|
|
1101
|
+
|
|
1102
|
+
### 🐛 Fixed
|
|
1103
|
+
|
|
1104
|
+
- **Dashboard approved lane**: WPs with `lane: "approved"` no longer silently fall back to the "planned" column. Added "Approved" as a 5th kanban column between For Review and Done, with `claimed`→planned and `in_progress`→doing lane normalization in the scanner.
|
|
1105
|
+
- **Slim FEATURE_CONTEXT_UNRESOLVED payload**: reduced error payload size for LLM consumption to stay within agent context budgets.
|
|
1106
|
+
|
|
1107
|
+
## [2.0.7] - 2026-03-11
|
|
1108
|
+
|
|
1109
|
+
### ✅ Added
|
|
1110
|
+
|
|
1111
|
+
- **Mutation testing CI integration (feat #047)**: mutmut toolchain setup, CI integration, and targeted kill sessions for `status/` reducer and transitions (#275).
|
|
1112
|
+
- **Agentic mutation testing remediation workflow**: GitHub Agentic Workflow (gh-aw) replaces the legacy Claude workflow for mutation testing remediation.
|
|
1113
|
+
- **SonarCloud integration**: added SonarCloud config; `develop` branch recognized as 2.x-equivalent in CI quality gates.
|
|
1114
|
+
- **Architecture corpus restructure**: versioned architecture docs under `architecture/1.x/` and `architecture/2.x/`, 45 ADRs, glossary contexts across 10 bounded domains, Contextive integration, and stakeholder persona definitions.
|
|
1115
|
+
- **Google Antigravity as first-class agent (#266)**: added Google Antigravity to the supported agent roster with directory, templates, and migration coverage.
|
|
1116
|
+
- **Commands own workflow context (#261)**: commands now carry their own workflow context rather than relying on ambient state.
|
|
1117
|
+
- **Tracker snapshot publish payload (feat #048)**: resource routing in publish path (WP01) and batch API contract for tracker snapshot publish (WP02).
|
|
1118
|
+
|
|
1119
|
+
### 🐛 Fixed
|
|
1120
|
+
|
|
1121
|
+
- **Stale overrides from upgrade version-skew (#285)**: `classify_asset()` now compares project `.kittify/` files against immutable package-bundled defaults (`get_package_asset_root()`) instead of the mutable `~/.kittify/` directory. This prevents old managed templates from being misclassified as user customizations and permanently shadowing newer templates in `.kittify/overrides/` during upgrades.
|
|
1122
|
+
- **New `SUPERSEDED` disposition**: managed files that differ from the current package default are now correctly classified as `SUPERSEDED` (removed) rather than `CUSTOMIZED` (moved to overrides). Only files with no package counterpart are treated as genuine user customizations.
|
|
1123
|
+
- **Repair migration for already-affected users**: new `2.0.7_fix_stale_overrides` migration scans `.kittify/overrides/` for files byte-identical to current package defaults and removes them. Genuine user customizations are preserved.
|
|
1124
|
+
- **Constitution: resolve_doctrine_root fallback for pip-installed users (#278)**: `resolve_doctrine_root()` no longer crashes when the `doctrine` package directory is missing from pip wheels; falls back to `specify_cli` package root.
|
|
1125
|
+
- **Merge: worktree/branch cleanup when feature is already integrated (#271)**: `spec-kitty merge` now runs worktree removal and branch deletion when all WP branches are already merged, instead of exiting with "Nothing to merge" and leaving cleanup to the user.
|
|
1126
|
+
- **Post-rebase quality fixes (#273)**: resolved unmatched `)` syntax error, `gap_analysis_path` undefined name (F821), `timezone` → `UTC` reference, unused `type: ignore` comments, and `toml` import-untyped mypy errors.
|
|
1127
|
+
- **Test isolation**: moved misplaced test package; fixed 3 test failures and Pydantic V1 deprecation warnings.
|
|
1128
|
+
- **Sync offline queue**: redirect offline queue warning to stderr instead of stdout.
|
|
1129
|
+
- **CI branch detection**: `develop` now recognized as a 2.x branch for branch-contract guards.
|
|
1130
|
+
- **Tracker publish path normalization (feat #048)**: normalize provider in publish path and document auth token resolution.
|
|
1131
|
+
|
|
1132
|
+
### 🔧 Changed
|
|
1133
|
+
|
|
1134
|
+
- **Ruff lint compliance**: full ruff clean pass across `src/` and `tests/`; added ruff lint config to `pyproject.toml`.
|
|
1135
|
+
- **Documentation site updates**: 2.x docs site refresh with Contextive IDE integration guide.
|
|
1136
|
+
|
|
1137
|
+
## [2.0.6] - 2026-03-10
|
|
1138
|
+
|
|
1139
|
+
### 🐛 Fixed
|
|
1140
|
+
|
|
1141
|
+
- **Upgrade consistency sweep**: added a new `2.0.6_consistency_sweep` migration that backfills missing or blank feature `meta.json`, infers `target_branch` from feature docs or the repo primary branch, reconstructs missing `status.events.jsonl`, regenerates `status.json` and generated `tasks.md` status blocks, normalizes legacy WP frontmatter lane aliases/quoting, rewrites stale prompt paths, and archives orphan empty `status.json` snapshots before rebuilding canonical state.
|
|
1142
|
+
- **Worktree upgrade coverage**: `spec-kitty upgrade` now upgrades worktrees that have `kitty-specs/` or legacy `.specify/` state even when `.kittify/` has not been created yet.
|
|
1143
|
+
- **Detector false positives**: runtime-managed 2.x installs no longer trip legacy project-local mission migrations, and the constitution migration only flags the legacy `.kittify/memory/constitution.md` path.
|
|
1144
|
+
- **Target-branch backfill correctness**: the `0.13.8_target_branch` migration now uses repo-aware branch inference instead of the obsolete hardcoded Feature 025 exception.
|
|
1145
|
+
|
|
1146
|
+
## [2.0.5] - 2026-03-10
|
|
1147
|
+
|
|
1148
|
+
### ✅ Added
|
|
1149
|
+
|
|
1150
|
+
- **Namespace-aware artifact body sync (Feature 047)**: Full offline-first pipeline for pushing spec artifact bodies (markdown content) to the SaaS backend, including `NamespaceRef` typed identifiers, `OfflineBodyUploadQueue` SQLite persistence, body upload preparation and filtering, HTTP transport with response classification, dossier pipeline orchestration with partial failure handling, background sync queue drain, and end-to-end diagnostics/logging.
|
|
1151
|
+
|
|
1152
|
+
### 🐛 Fixed
|
|
1153
|
+
|
|
1154
|
+
- **Init default directory (`#258`)**: `spec-kitty init` now defaults to the current directory when project name is omitted on the 2.x line.
|
|
1155
|
+
- **Sync integration**: Completed namespace artifact body sync wiring for end-to-end operation.
|
|
1156
|
+
|
|
1157
|
+
### 📄 Documentation
|
|
1158
|
+
|
|
1159
|
+
- **Connector auth binding ADR**: Added architectural decision record for connector authentication binding and installation model gap analysis.
|
|
1160
|
+
- **Command-owned action context ADR**: Defined command-owned action context pattern.
|
|
1161
|
+
|
|
1162
|
+
## [2.0.4] - 2026-03-06
|
|
1163
|
+
|
|
1164
|
+
### 🐛 Fixed
|
|
1165
|
+
|
|
1166
|
+
- **Upgrade JSON machine-parseability hardening (`#254`)**: `spec-kitty upgrade --json` now emits raw JSON output without Rich console wrapping.
|
|
1167
|
+
- **Upgrade migration status consistency (`#256`)**: non-applicable migrations are reported as `skipped` instead of incorrectly marked as applied.
|
|
1168
|
+
|
|
1169
|
+
### 🔧 Changed
|
|
1170
|
+
|
|
1171
|
+
- **Contract hardening closeout (`#213`-`#218`)**: merged deterministic branch/runtime contracts, typed artifact-path payloads, merge/preflight JSON enrichment, and banner suppression in agent contexts.
|
|
1172
|
+
- **Codex/Copilot slash-flow reliability (`#128`)**: integrated slash-command output stability improvements via deterministic JSON/banners/template alignment.
|
|
1173
|
+
- **Worktree/preflight stability (`#226`)**: released preflight and command-contract hardening on the 2.x line for end-to-end spec→implement→review runs.
|
|
1174
|
+
|
|
1175
|
+
## [2.0.2] - 2026-02-27
|
|
1176
|
+
|
|
1177
|
+
### ✅ Added
|
|
1178
|
+
|
|
1179
|
+
- **Flag-gated tracker command group**: added `spec-kitty tracker ...` commands behind `SPEC_KITTY_ENABLE_SAAS_SYNC`, including provider listing, bind/unbind, mapping, local sync pull/push/run, and snapshot publish.
|
|
1180
|
+
- **Tracker host-local persistence + credentials support**: added CLI-owned tracker SQLite cache/checkpoints and provider credential handling consistent with existing Spec Kitty host persistence patterns.
|
|
1181
|
+
|
|
1182
|
+
### 🔧 Changed
|
|
1183
|
+
|
|
1184
|
+
- **Dependency floor hardening for 2.x installs**: added explicit lower bounds for previously unbounded core CLI direct dependencies to reduce resolver drift in fresh environments.
|
|
1185
|
+
- **Workflow review lane guard**: review start now requires a valid `for_review` lane state before progressing.
|
|
1186
|
+
|
|
1187
|
+
## [2.0.1] - 2026-02-26
|
|
1188
|
+
|
|
1189
|
+
### 🐛 Fixed
|
|
1190
|
+
|
|
1191
|
+
- **Main bias fix**: `resolve_primary_branch()` now checks the current branch before the hardcoded `[main, master, develop]` list. Repos on non-standard primary branches (e.g., `2.x`) no longer get blocked by `spec-kitty specify`.
|
|
1192
|
+
- `create_feature()` records the current branch as `target_branch` in `meta.json` instead of guessing via heuristics. Added `--target-branch` CLI option for explicit override.
|
|
1193
|
+
- `guards.py` uses `resolve_primary_branch()` instead of hardcoded `{"main", "master"}` set.
|
|
1194
|
+
- `merge-feature --target` auto-detects from `meta.json` when not specified.
|
|
1195
|
+
- Template references to "main" replaced with "target branch" throughout command templates.
|
|
1196
|
+
|
|
1197
|
+
### 🔧 Changed
|
|
1198
|
+
|
|
1199
|
+
- **Dashboard `--open` flag**: Browser auto-open is now disabled by default. Pass `--open` to open the dashboard URL in your browser. Prevents browser windows from spawning during tests or CI.
|
|
1200
|
+
- Consolidated 3 ad-hoc branch-check functions into `_show_branch_context()` for consistent branch banners across all planning commands.
|
|
1201
|
+
|
|
1202
|
+
## [2.0.0] - 2026-02-22
|
|
1203
|
+
|
|
1204
|
+
### 🔧 Changed
|
|
1205
|
+
|
|
1206
|
+
- Start semantic versioning for `2.x` GitHub-only releases using `v2.<minor>.<patch>` tags.
|
|
1207
|
+
- `2.x` release automation now publishes GitHub Releases only (no PyPI publish step).
|
|
1208
|
+
|
|
1209
|
+
### 🐛 Fixed
|
|
1210
|
+
|
|
1211
|
+
- `spec-kitty next` no longer short-circuits `--result failed|blocked` in the CLI bridge; both now flow through `spec-kitty-runtime` `next_step(...)`, preserving canonical runtime lifecycle behavior and run metadata.
|
|
1212
|
+
- Runtime mission template selection for `next` now follows deterministic precedence tiers (`explicit`, `env`, `project override`, `project legacy`, `user global`, `project config`, `builtin`) when resolving `mission-runtime.yaml`.
|
|
1213
|
+
- `--answer --json` integration coverage now exercises a real pending-decision success path (runtime `requires_inputs`) instead of fake decision IDs.
|
|
1214
|
+
- Added replay-parity integration coverage in `spec-kitty` against `spec-kitty-events` canonical fixture stream (`mission-next-replay-full-lifecycle`).
|
|
1215
|
+
- **WP prompt tracking reliability**: removed stale `kitty-specs/**/tasks/*.md` from tracked `.gitignore`, migrated existing projects away from that rule, and hardened workflow status commits to fail loudly if claim commits cannot be written.
|
|
1216
|
+
|
|
1217
|
+
## [2.0.0a5] - 2026-02-14
|
|
1218
|
+
|
|
1219
|
+
### 🐛 Fixed
|
|
1220
|
+
|
|
1221
|
+
**Backported orchestrator deadlock fixes from v0.15.3**:
|
|
1222
|
+
|
|
1223
|
+
- **Orchestrator deadlock**: Fixed false "No progress possible" detection when WP tasks raise exceptions or complete but leave WPs in intermediate states (IMPLEMENTATION/REVIEW). The orchestrator now properly marks failed WPs as FAILED and restarts orphaned WPs, preventing deadlock cascades. (Backport of #137 by @tannn)
|
|
1224
|
+
- **Exception handling**: Task exceptions now properly mark WPs as FAILED with error details, allowing dependent WPs to recognize failure instead of blocking indefinitely
|
|
1225
|
+
- **WP restart logic**: Added restart counter to prevent infinite restart loops if WP repeatedly fails to advance state. Restarts are now capped at `max_retries` (default: 3)
|
|
1226
|
+
- **State recovery**: Improved detection of interrupted implementations (IMPLEMENTATION status without `implementation_completed` timestamp) to automatically reset and retry
|
|
1227
|
+
|
|
1228
|
+
### 🧹 Maintenance
|
|
1229
|
+
|
|
1230
|
+
- **Test coverage**: Added 8 new orchestrator tests covering exception handling, restart scenarios, deadlock detection, and state persistence
|
|
1231
|
+
- **Test quality**: Reorganized test suite with proper markers (`@pytest.mark.orchestrator_exception_handling`, `@pytest.mark.orchestrator_deadlock_detection`) and class grouping following project conventions
|
|
1232
|
+
|
|
1233
|
+
## [2.0.0a4] - 2026-02-13
|
|
1234
|
+
|
|
1235
|
+
### 🐛 Fixed
|
|
1236
|
+
|
|
1237
|
+
**Backported v0.15.2 hotfix from main branch**:
|
|
1238
|
+
|
|
1239
|
+
- **Branch detection**: Replaced single `rev-parse --abbrev-ref HEAD` with dual-strategy
|
|
1240
|
+
approach (`git branch --show-current` primary, `rev-parse` fallback). Fixes unborn branch
|
|
1241
|
+
detection and detached HEAD handling. Updated all inline callers in tasks.py, workflow.py,
|
|
1242
|
+
and vcs/git.py.
|
|
1243
|
+
|
|
1244
|
+
- **Subprocess encoding safety**: Added `encoding="utf-8", errors="replace"` to all ~135
|
|
1245
|
+
`subprocess.run(text=True)` calls across 36 files. Prevents crashes on non-UTF-8 git output (Windows, locale mismatches).
|
|
1246
|
+
|
|
1247
|
+
- **Pre-commit hook safety**: Removed `set -e` from encoding check hook, expanded Python
|
|
1248
|
+
interpreter detection (loops through python3/python/py with smoke test), fixed exit code
|
|
1249
|
+
handling to distinguish encoding errors (exit 2) from execution failures.
|
|
1250
|
+
|
|
1251
|
+
- **Init fail-fast**: `spec-kitty init` now raises RuntimeError immediately after git init
|
|
1252
|
+
failure instead of falling through to "project ready" success message.
|
|
1253
|
+
|
|
1254
|
+
- **PowerShell templates**: Added PowerShell equivalent blocks to implement.md templates
|
|
1255
|
+
for software-dev, research, and documentation missions.
|
|
1256
|
+
|
|
1257
|
+
## [2.0.0a3] - 2026-02-11
|
|
1258
|
+
|
|
1259
|
+
### 🐛 Fixed
|
|
1260
|
+
|
|
1261
|
+
**Complete Bug #119 cherry-pick**:
|
|
1262
|
+
- Fixed missing update to `scripts/tasks/acceptance_support.py` (root-level test helper)
|
|
1263
|
+
- This file was missed in the original Bug #119 cherry-pick, causing test failures
|
|
1264
|
+
- Now all acceptance_support.py copies correctly exclude 'done' lane from assignee requirement
|
|
1265
|
+
|
|
1266
|
+
## [2.0.0a2] - 2026-02-11
|
|
1267
|
+
|
|
1268
|
+
### 🐛 Fixed
|
|
1269
|
+
|
|
1270
|
+
**Cherry-picked 7 critical bug fixes from v0.15.0 (main branch)**:
|
|
1271
|
+
|
|
1272
|
+
- **Bug #95**: Enforce kebab-case validation for feature slugs
|
|
1273
|
+
- Rejects slugs with spaces, underscores, uppercase, or leading numbers
|
|
1274
|
+
- Prevents invalid directory structures and broken workflow commands
|
|
1275
|
+
- Added 8 comprehensive validation tests
|
|
1276
|
+
|
|
1277
|
+
- **Bug #120**: Use local git exclude for worktree ignores
|
|
1278
|
+
- Worktree-specific ignores now written to `.git/info/exclude` instead of `.gitignore`
|
|
1279
|
+
- Prevents `.gitignore` pollution when merging worktrees
|
|
1280
|
+
- VCS abstraction layer handles legacy worktree filtering consistently
|
|
1281
|
+
|
|
1282
|
+
- **Bug #117**: Improve dashboard lifecycle and error diagnostics
|
|
1283
|
+
- Dashboard process detection no longer reports false failures
|
|
1284
|
+
- Distinguishes between health check timeout (process running) vs actual failure
|
|
1285
|
+
- Provides specific error messages for missing metadata, port conflicts, permission errors
|
|
1286
|
+
|
|
1287
|
+
- **Bug #124**: Unify branch resolution, stop implicit master fallback
|
|
1288
|
+
- Respects user's current branch instead of auto-checkout
|
|
1289
|
+
- Shows notification when current branch differs from feature target
|
|
1290
|
+
- No more surprise checkouts during `spec-kitty implement` or `move-task`
|
|
1291
|
+
- Consistent branch resolution across all commands
|
|
1292
|
+
|
|
1293
|
+
- **Bug #119**: Relax strict assignee gate in acceptance validation
|
|
1294
|
+
- Assignee now optional for completed work packages in 'done' lane
|
|
1295
|
+
- Strict validation still enforces assignee for 'doing' and 'for_review'
|
|
1296
|
+
- Required fields (lane, agent, shell_pid) still mandatory
|
|
1297
|
+
|
|
1298
|
+
- **Bug #122**: Prevent staged files from leaking into status commits
|
|
1299
|
+
- New `safe_commit()` helper explicitly stages only intended files
|
|
1300
|
+
- Status commits no longer capture unrelated staged changes
|
|
1301
|
+
- Preserves user's staging area across workflow operations
|
|
1302
|
+
|
|
1303
|
+
- **Bug #123**: Call lane transition before status update (atomic state)
|
|
1304
|
+
- Lane transitions now happen BEFORE internal state updates
|
|
1305
|
+
- Prevents inconsistent state when operations fail mid-transition
|
|
1306
|
+
- Applies to orchestrator implementation and review phases
|
|
1307
|
+
|
|
1308
|
+
All fixes include comprehensive test coverage (54+ new tests) and maintain backward compatibility.
|
|
1309
|
+
|
|
1310
|
+
## [0.13.26] - 2026-02-04
|
|
1311
|
+
|
|
1312
|
+
### 🛠️ Refactored
|
|
1313
|
+
|
|
1314
|
+
**Consolidated workflow implement workspace creation**:
|
|
1315
|
+
- `spec-kitty agent workflow implement` now delegates workspace creation to `spec-kitty implement` when needed
|
|
1316
|
+
- Removes duplicated worktree setup in the agent command
|
|
1317
|
+
- Prevents agents from creating worktrees from inside another worktree
|
|
1318
|
+
|
|
1319
|
+
### 🐛 Fixed
|
|
1320
|
+
|
|
1321
|
+
**Clearer recovery guidance for multi-parent merge failures**:
|
|
1322
|
+
- When auto-merge fails, instructions now show concrete recovery steps
|
|
1323
|
+
- Explicitly warns there is no `spec-kitty agent workflow merge` command
|
|
1324
|
+
- Points agents to the correct `spec-kitty agent feature merge` command
|
|
1325
|
+
|
|
1326
|
+
## [0.13.25] - 2026-02-04
|
|
1327
|
+
|
|
1328
|
+
### 🐛 Fixed
|
|
1329
|
+
|
|
1330
|
+
**`spec-kitty upgrade` not bumping version when no migrations needed**:
|
|
1331
|
+
- When `spec-kitty upgrade` found no applicable migrations, it returned early without updating the version in `.kittify/metadata.yaml`
|
|
1332
|
+
- This left the project stuck at its old version (e.g., 0.13.21) even though the CLI was newer (0.13.24)
|
|
1333
|
+
- The dashboard then blocked with a version mismatch error
|
|
1334
|
+
- Fixed both `upgrade.py` (CLI command path) and `runner.py` (programmatic path) to stamp the version even when no migrations are needed
|
|
1335
|
+
|
|
1336
|
+
## [0.13.24] - 2026-02-04
|
|
1337
|
+
|
|
1338
|
+
### 🔧 Improved
|
|
1339
|
+
|
|
1340
|
+
**Review workflow shows git context for reviewers**:
|
|
1341
|
+
- `spec-kitty agent workflow review` now displays the WP's branch name, base branch, and commit count
|
|
1342
|
+
- Reviewers see exactly which commits belong to the WP vs inherited history
|
|
1343
|
+
- Provides ready-to-use `git log <base>..HEAD` and `git diff <base>..HEAD` commands
|
|
1344
|
+
- Base branch auto-detected from WP dependencies (tries dependency branches first, then main/2.x)
|
|
1345
|
+
- Prevents reviewers from accidentally diffing against the wrong base (e.g., `main` instead of `2.x`)
|
|
1346
|
+
|
|
1347
|
+
## [0.13.20] - 2026-01-30
|
|
1348
|
+
|
|
1349
|
+
### 🐛 Fixed
|
|
1350
|
+
|
|
1351
|
+
**Merged Single-Parent Dependency Workflow Gap** (ADR-18):
|
|
1352
|
+
- Fixed `spec-kitty implement` failing when single-parent dependency has been merged to target branch
|
|
1353
|
+
- Issue: WP01 merged to 2.x → WP02 can't implement (looks for non-existent WP01 workspace branch)
|
|
1354
|
+
- Root cause: Implement command didn't distinguish between in-progress vs merged dependencies
|
|
1355
|
+
- Solution: Auto-detect when dependency lane is "done" and branch from target branch instead
|
|
1356
|
+
- Behavior:
|
|
1357
|
+
- If `base_wp.lane == "done"`: Branch from target branch (e.g., 2.x) - merged work already there
|
|
1358
|
+
- If `base_wp.lane != "done"`: Branch from workspace branch (e.g., 025-feature-WP01) - work in progress
|
|
1359
|
+
- Eliminates need for manual frontmatter editing (remove dependencies, update base_branch)
|
|
1360
|
+
- Complements ADR-15 (multi-parent all-done suggestion) for single-parent case
|
|
1361
|
+
- **Impact**: Critical fix for normal workspace-per-WP workflow where dependencies complete before dependents start
|
|
1362
|
+
- **Technical Story**: Feature 025-cli-event-log-integration WP02/WP08 blocked on merged WP01
|
|
1363
|
+
|
|
1364
|
+
## [0.13.7] - 2026-01-27
|
|
1365
|
+
|
|
1366
|
+
### 🐛 Fixed
|
|
1367
|
+
|
|
1368
|
+
**Activity Log Parser Failing on Hyphenated Agent Names** ([#111](https://github.com/Priivacy-ai/spec-kitty/pull/111)):
|
|
1369
|
+
- Fixed `activity_entries()` regex in `tasks_support.py` to handle hyphenated agent names
|
|
1370
|
+
- Parser was using `[^–-]+?` pattern which treated hyphens as field separators
|
|
1371
|
+
- Agent names like `cursor-agent`, `claude-reviewer`, `cursor-reviewer` now parse correctly
|
|
1372
|
+
- Acceptance validation no longer fails with "Activity Log missing entry for lane=done" for hyphenated agents
|
|
1373
|
+
- Changed pattern to `\S+(?:\s+\S+)*?` (matches non-whitespace), aligning with `task_helpers.py`
|
|
1374
|
+
- Added comprehensive test suite with 11 test cases covering hyphenated names, backward compatibility, and edge cases
|
|
1375
|
+
- **Contributors**: Rodrigo D. L. (bruj0)
|
|
1376
|
+
|
|
1377
|
+
**Workflow Completion Instructions Missing Git Commit Step** ([#104](https://github.com/Priivacy-ai/spec-kitty/pull/104)):
|
|
1378
|
+
- Fixed agents not committing implementation files before marking tasks done
|
|
1379
|
+
- Issue caused cascading failures where dependent work packages started from empty branches
|
|
1380
|
+
- WP02 worktree had HTML + CSS ✅
|
|
1381
|
+
- WP03 worktree had HTML only (missing WP02's CSS) ❌
|
|
1382
|
+
- WP04 worktree had HTML only (missing CSS and JS from WP02 and WP03) ❌
|
|
1383
|
+
- Root cause: "WHEN YOU'RE DONE" instructions in `workflow implement` command didn't include git commit step
|
|
1384
|
+
- Fix: Added explicit git commit instruction as step 1 in completion checklist
|
|
1385
|
+
- Updated both in-prompt instructions (shown twice) and terminal output summary
|
|
1386
|
+
- Added warning: "The move-task command will FAIL if you have uncommitted changes! Commit all implementation files BEFORE moving to for_review. Dependent work packages need your committed changes."
|
|
1387
|
+
- **Impact**: Critical fix for multi-agent parallel development workflows using workspace-per-WP model (v0.11.0+)
|
|
1388
|
+
- **Contributors**: Jerome Lacube
|
|
1389
|
+
|
|
1390
|
+
**Dashboard Command Template Generating Python Code Instead of Running CLI** ([#94](https://github.com/Priivacy-ai/spec-kitty/issues/94), [#99](https://github.com/Priivacy-ai/spec-kitty/pull/99)):
|
|
1391
|
+
- Fixed `/spec-kitty.dashboard` command template to use `spec-kitty dashboard` CLI command
|
|
1392
|
+
- Removed outdated Python code that manually checked dashboard status and opened browsers
|
|
1393
|
+
- Dashboard now properly:
|
|
1394
|
+
- Starts automatically if not running
|
|
1395
|
+
- Opens in default browser
|
|
1396
|
+
- Handles worktree detection automatically
|
|
1397
|
+
- Updated all three dashboard template files:
|
|
1398
|
+
- `.kittify/missions/software-dev/command-templates/dashboard.md`
|
|
1399
|
+
- `src/specify_cli/missions/software-dev/command-templates/dashboard.md`
|
|
1400
|
+
- `src/specify_cli/templates/command-templates/dashboard.md`
|
|
1401
|
+
- Reduced template code from ~264 lines to ~47 lines
|
|
1402
|
+
- **Contributors**: Jerome Lacube
|
|
1403
|
+
|
|
1404
|
+
## [0.13.6] - 2026-01-27
|
|
1405
|
+
|
|
1406
|
+
### 🐛 Fixed
|
|
1407
|
+
|
|
1408
|
+
**Critical JSON Mode Corruption Fix** (Release Blocker):
|
|
1409
|
+
- Fixed JSON output corruption in `spec-kitty implement --json` mode (GitHub Issue #72 follow-up)
|
|
1410
|
+
- **Bug**: Warning messages from empty branch detection were written to stdout, corrupting JSON output
|
|
1411
|
+
- **Impact**: Automated workflows using `--json` flag would fail with JSON parse errors
|
|
1412
|
+
- **Fix**: Changed warning messages to use `file=sys.stderr` to separate warnings from JSON output
|
|
1413
|
+
- **File**: `src/specify_cli/core/multi_parent_merge.py:142-144`
|
|
1414
|
+
- **Tests**: Updated 5 tests in `test_multi_parent_merge_empty_branches.py` to check stderr instead of stdout
|
|
1415
|
+
|
|
1416
|
+
**Missing Migration Fix** (Existing Users Affected):
|
|
1417
|
+
- Fixed missing migration for commit workflow section (GitHub Issue #72 follow-up)
|
|
1418
|
+
- **Bug**: New projects got commit workflow section in implement.md, but existing projects didn't after upgrade
|
|
1419
|
+
- **Impact**: Existing users remained vulnerable to agents forgetting to commit work
|
|
1420
|
+
- **Fix**: Created migration `m_0_13_5_add_commit_workflow_to_templates.py` to update all agent templates
|
|
1421
|
+
- **Coverage**: Updates both software-dev and documentation mission templates for all 12 agents
|
|
1422
|
+
- **Migration**: Automatically runs on `spec-kitty upgrade` for projects missing commit workflow
|
|
1423
|
+
|
|
1424
|
+
**Subprocess Error Handling** (Defensive Programming):
|
|
1425
|
+
- Added timeout and error handling to multi-parent merge git commands
|
|
1426
|
+
- **Bug**: Git commands in empty branch detection lacked timeout parameters and try/except blocks
|
|
1427
|
+
- **Impact**: Function could hang forever or crash on git errors (corrupted repo, permission issues)
|
|
1428
|
+
- **Fix**: Added 10-second timeouts and exception handling to all git subprocess calls
|
|
1429
|
+
- **File**: `src/specify_cli/core/multi_parent_merge.py:117-144`
|
|
1430
|
+
- **Errors handled**: TimeoutExpired (>10s git commands), general exceptions with warning
|
|
1431
|
+
|
|
1432
|
+
### Added
|
|
1433
|
+
|
|
1434
|
+
- Git commit validation for "done" status transitions - prevents completing WPs with uncommitted changes
|
|
1435
|
+
- Empty branch detection in merge-base creation - warns when dependencies have no commits
|
|
1436
|
+
- Git commit workflow section in documentation mission template (consistency with software-dev/research)
|
|
1437
|
+
- Comprehensive troubleshooting guide for empty branch recovery in the legacy workspace-model documentation
|
|
1438
|
+
- Migration to add commit workflow section to existing projects (`m_0_13_5_add_commit_workflow_to_templates.py`)
|
|
1439
|
+
|
|
1440
|
+
### Changed
|
|
1441
|
+
|
|
1442
|
+
- `move-task --to done` now validates git status (same checks as "for_review")
|
|
1443
|
+
- Use `--force` flag to bypass validation (not recommended)
|
|
1444
|
+
- Warning messages in multi-parent merge now output to stderr instead of stdout (preserves JSON output integrity)
|
|
1445
|
+
|
|
1446
|
+
### Fixed (Non-Critical)
|
|
1447
|
+
|
|
1448
|
+
- WP agents can no longer mark tasks as "done" without committing implementation files
|
|
1449
|
+
- Multi-parent merge-bases no longer silently accept empty dependency branches
|
|
1450
|
+
- Documentation mission now instructs agents to commit work before review
|
|
1451
|
+
- Stale WP detection now correctly detects default branch name (main/master/develop) instead of hardcoding "main"
|
|
1452
|
+
- **Bug**: Fresh worktrees incorrectly flagged as stale when repository used non-standard default branch
|
|
1453
|
+
- **Root Cause**: Code hardcoded "main" as default branch; when `git merge-base HEAD main` failed, it fell through to using parent branch's old commit timestamp
|
|
1454
|
+
- **Fix**: Added `get_default_branch()` helper to dynamically detect default branch via origin HEAD or local branch existence
|
|
1455
|
+
- **Impact**: Prevents false staleness warnings for fresh worktrees in repos using "master", "develop", or other default branches
|
|
1456
|
+
|
|
1457
|
+
## [0.13.5] - 2026-01-26
|
|
1458
|
+
|
|
1459
|
+
### 🐛 Fixed
|
|
1460
|
+
|
|
1461
|
+
**Fixed /spec-kitty.clarify Command Template**:
|
|
1462
|
+
- Fixed broken placeholder in clarify template that prevented agents from running clarification workflow
|
|
1463
|
+
- **Bug**: Template contained `(Missing script command for sh)` placeholder instead of actual command
|
|
1464
|
+
- **Impact**: Agents couldn't get feature context, invented non-existent commands like `spec-kitty agent feature get-active --json`
|
|
1465
|
+
- **Fix**: Replaced manual detection logic with `spec-kitty agent feature check-prerequisites --json --paths-only`
|
|
1466
|
+
- **Consistency**: Now matches pattern used in specify.md, plan.md, and tasks.md templates
|
|
1467
|
+
- Migration `m_0_13_5_fix_clarify_template.py` automatically updates all 12 agent directories on upgrade
|
|
1468
|
+
- Source template: `src/specify_cli/missions/software-dev/command-templates/clarify.md`
|
|
1469
|
+
|
|
1470
|
+
**Testing**:
|
|
1471
|
+
- Added comprehensive test suite with 34 tests covering all scenarios
|
|
1472
|
+
- Parametrized tests for all 12 agents (claude, copilot, gemini, cursor, qwen, opencode, windsurf, codex, kilocode, auggie, roo, q)
|
|
1473
|
+
- Tests for detection, application, agent config respect, idempotency, dry-run
|
|
1474
|
+
- Template content validation (ensures no broken placeholders, matches tasks.md pattern)
|
|
1475
|
+
- End-to-end integration test verifying migration actually runs and fixes templates
|
|
1476
|
+
|
|
1477
|
+
## [0.13.4] - 2026-01-26
|
|
1478
|
+
|
|
1479
|
+
### 🐛 Fixed
|
|
1480
|
+
|
|
1481
|
+
**Critical Dependency Validation Fix**:
|
|
1482
|
+
- Fixed `spec-kitty agent workflow implement` not validating WP dependencies before creating workspaces
|
|
1483
|
+
- **Bug**: WP with single dependency could create workspace without `--base` flag
|
|
1484
|
+
- **Impact**: Workspace branched from main instead of dependency branch (silent correctness bug)
|
|
1485
|
+
- **Fix**: Added shared validation utility that errors when single dependency but no `--base` provided
|
|
1486
|
+
- **Example**: `WP06` depends on `WP04` → command now errors and suggests `--base WP04`
|
|
1487
|
+
- Created `src/specify_cli/core/implement_validation.py` with `validate_and_resolve_base()`
|
|
1488
|
+
- Agent commands now delegate to top-level commands (no more legacy script calls)
|
|
1489
|
+
|
|
1490
|
+
**Fixed Broken Agent Commands**:
|
|
1491
|
+
- Fixed `spec-kitty agent feature accept` calling non-existent `scripts/tasks/tasks_cli.py`
|
|
1492
|
+
- Now delegates to top-level `accept()` command
|
|
1493
|
+
- Fixed `spec-kitty agent feature merge` calling non-existent `scripts/tasks/tasks_cli.py`
|
|
1494
|
+
- Now delegates to top-level `merge()` command
|
|
1495
|
+
- Parameter mapping: `keep_branch` → `delete_branch` (inverted logic)
|
|
1496
|
+
|
|
1497
|
+
**Critical Merge Workflow Fix**:
|
|
1498
|
+
- Fixed merge failing when main branch lacks upstream tracking (Issue reported post-0.13.2 release)
|
|
1499
|
+
- 0.13.2 only checked if remote EXISTS, but not if branch TRACKS it
|
|
1500
|
+
- Added `has_tracking_branch()` function to check upstream tracking
|
|
1501
|
+
- Merge now skips pull if: (1) no remote OR (2) no upstream tracking
|
|
1502
|
+
- Affects users with local-only repos or repos where main doesn't track origin/main
|
|
1503
|
+
|
|
1504
|
+
**Testing & Prevention**:
|
|
1505
|
+
- Added 22 new tests for dependency validation and agent command wrappers
|
|
1506
|
+
- Unit tests: `test_implement_validation.py` (11 tests)
|
|
1507
|
+
- Integration tests: `test_agent_command_wrappers.py` (11 tests)
|
|
1508
|
+
- Added `TestMigrationRegistryCompleteness` test (prevents 0.13.2-style release blocker)
|
|
1509
|
+
- Verifies all `m_*.py` migration files are imported in `__init__.py`
|
|
1510
|
+
- Prevents silent bugs where migrations exist but never run
|
|
1511
|
+
- Added integration tests for merge with untracked branches
|
|
1512
|
+
- Added unit tests for `has_tracking_branch()` function
|
|
1513
|
+
|
|
1514
|
+
**Documentation**:
|
|
1515
|
+
- Added `src/specify_cli/cli/commands/agent/README.md` (wrapper pattern documentation)
|
|
1516
|
+
- Dependency validation best practices
|
|
1517
|
+
- Parameter mapping guidelines
|
|
1518
|
+
- Common pitfalls and examples
|
|
1519
|
+
- Updated RELEASE_CHECKLIST.md with mandatory migration registry verification
|
|
1520
|
+
|
|
1521
|
+
## [0.13.2] - 2026-01-26
|
|
1522
|
+
|
|
1523
|
+
### 🐛 Fixed
|
|
1524
|
+
|
|
1525
|
+
**Critical Windows Compatibility Issues**:
|
|
1526
|
+
- Fixed UTF-8 encoding errors causing Windows crashes (Issue #101)
|
|
1527
|
+
- Added `encoding='utf-8'` to all `write_text()` and `read_text()` calls
|
|
1528
|
+
- Affected files: feature.py, worktree.py, agent_context.py, doc_generators.py, gap_analysis.py
|
|
1529
|
+
- Completes PR #100 which missed several locations
|
|
1530
|
+
- Fixed hardcoded `python3` breaking Windows installations (Issue #105)
|
|
1531
|
+
- Replaced with `sys.executable` in Python code (feature.py)
|
|
1532
|
+
- Added dynamic Python detection in git hooks (tries python3, falls back to python)
|
|
1533
|
+
- Windows users no longer need to create python3 hardlinks/aliases
|
|
1534
|
+
|
|
1535
|
+
**Workflow Improvements**:
|
|
1536
|
+
- Added `--base` parameter to `spec-kitty agent workflow implement` (Issue #96)
|
|
1537
|
+
- Enables agents to create dependent WP worktrees via workflow command
|
|
1538
|
+
- Provides feature parity with top-level `spec-kitty implement` command
|
|
1539
|
+
- Example: `spec-kitty agent workflow implement WP02 --base WP01 --agent claude`
|
|
1540
|
+
|
|
1541
|
+
**Template and Documentation Fixes**:
|
|
1542
|
+
- Fixed broken `/spec-kitty.clarify` skill (Issue #106)
|
|
1543
|
+
- Removed unresolved `{SCRIPT}` and `{ARGS}` placeholders
|
|
1544
|
+
- Replaced with auto-detection instructions for feature paths
|
|
1545
|
+
- Fixed outdated template path references (Issue #102)
|
|
1546
|
+
- Updated 6 references from `.kittify/templates/` to `src/specify_cli/missions/`
|
|
1547
|
+
- Templates now reference correct bundled locations
|
|
1548
|
+
- Fixed upgrade version detection for modern projects (Issue #108)
|
|
1549
|
+
- Added detection for versions 0.7.0-0.13.0
|
|
1550
|
+
- Prevents unnecessary migrations on modern projects
|
|
1551
|
+
- Regenerated all 12 agent constitution templates (Issue #97)
|
|
1552
|
+
- All agents now correctly suggest `/spec-kitty.specify` as next step (not `/spec-kitty.plan`)
|
|
1553
|
+
|
|
1554
|
+
### 📚 Documentation
|
|
1555
|
+
|
|
1556
|
+
- Added GitHub CLI authentication troubleshooting to CLAUDE.md
|
|
1557
|
+
- Documents `unset GITHUB_TOKEN` technique for organization repos
|
|
1558
|
+
|
|
1559
|
+
**Issues Closed**: #96, #97, #101, #102, #105, #106, #108, #103 (not a bug), #107 (not a bug)
|
|
1560
|
+
|
|
1561
|
+
## [0.13.1] - 2026-01-25
|
|
1562
|
+
|
|
1563
|
+
### ✨ Added
|
|
1564
|
+
|
|
1565
|
+
**Adversarial Test Suite for 0.13.0 Release**:
|
|
1566
|
+
- **Distribution tests**: Validate PyPI user experience without SPEC_KITTY_TEMPLATE_ROOT bypass (prevents 0.10.8-style packaging failures)
|
|
1567
|
+
- **Path validation security tests**: Test directory traversal, symlink attacks, case-sensitivity bypasses, and path injection prevention
|
|
1568
|
+
- **CSV schema attack tests**: Validate handling of formula injection, encoding errors, duplicate columns, and empty files
|
|
1569
|
+
- **Git state detection tests**: Verify accuracy of uncommitted work, merge state, and branch divergence detection
|
|
1570
|
+
- **Migration robustness tests**: Test UTF-8 encoding, idempotency, and partial/corrupted file handling
|
|
1571
|
+
- **Multi-parent merge tests**: Validate dependency-order merging and conflict resolution
|
|
1572
|
+
- **Context & config tests**: Test non-interactive modes, agent configuration, and workspace validation
|
|
1573
|
+
|
|
1574
|
+
**Test Infrastructure**:
|
|
1575
|
+
- New `tests/adversarial/` directory with shared fixtures and attack vectors
|
|
1576
|
+
- `@pytest.mark.distribution` and `@pytest.mark.slow` markers for CI optimization
|
|
1577
|
+
- Session-scoped `wheel_install` fixture for efficient testing
|
|
1578
|
+
- Platform-specific skip conditions for cross-platform compatibility
|
|
1579
|
+
|
|
1580
|
+
### 📚 Documentation
|
|
1581
|
+
|
|
1582
|
+
**Testing**:
|
|
1583
|
+
- Comprehensive adversarial test documentation in feature 024 spec
|
|
1584
|
+
- Attack vector catalog with prevention strategies
|
|
1585
|
+
- CI integration guidance for slow/distribution tests
|
|
1586
|
+
|
|
1587
|
+
## [0.13.0] - 2026-01-25
|
|
1588
|
+
|
|
1589
|
+
### ✨ Added
|
|
1590
|
+
|
|
1591
|
+
**Deterministic CSV Schema Enforcement for Research Missions**:
|
|
1592
|
+
- **Canonical schema documentation**: Research CSV schemas now documented in all 12 agent implement.md templates
|
|
1593
|
+
- **Two schemas enforced**:
|
|
1594
|
+
- `evidence-log.csv`: `timestamp,source_type,citation,key_finding,confidence,notes`
|
|
1595
|
+
- `source-register.csv`: `source_id,citation,url,accessed_date,relevance,status`
|
|
1596
|
+
- **Schema visibility**: Agents see schemas before editing (in "Research CSV Schemas" section with examples)
|
|
1597
|
+
- **Detection migration**: `m_0_13_0_research_csv_schema_check.py` scans existing features for schema mismatches (informational only, no auto-fix)
|
|
1598
|
+
- **Template propagation**: `m_0_13_0_update_research_implement_templates.py` updates all agent templates with schema documentation
|
|
1599
|
+
- **Reusable validator**: `src/specify_cli/validators/csv_schema.py` provides `CSVSchemaValidation` dataclass for exact schema matching
|
|
1600
|
+
- **Exported constants**: `EVIDENCE_REQUIRED_COLUMNS` and `SOURCE_REGISTER_REQUIRED_COLUMNS` now importable from `research.py`
|
|
1601
|
+
- **ADR #8**: Documents architecture decision for documentation-based enforcement vs runtime enforcement/auto-migration
|
|
1602
|
+
|
|
1603
|
+
**Problem Solved**: Agents were modifying CSV schemas during implementation, creating different schemas in parallel WPs, causing merge conflicts and validation failures at review time.
|
|
1604
|
+
|
|
1605
|
+
**Solution Approach**: Document schemas where agents can see them (prevention) rather than runtime enforcement or auto-migration (data loss risk).
|
|
1606
|
+
|
|
1607
|
+
**Fully Non-Interactive Init Support**:
|
|
1608
|
+
- Added `--non-interactive` / `--yes` and `SPEC_KITTY_NON_INTERACTIVE` to disable prompts
|
|
1609
|
+
- Added `--agent-strategy`, `--preferred-implementer`, and `--preferred-reviewer` to expose all selection options via CLI
|
|
1610
|
+
- Non-interactive mode now avoids arrow-key menus and requires `--force` for non-empty `--here` directories
|
|
1611
|
+
- Updated documentation for automation and CI usage
|
|
1612
|
+
|
|
1613
|
+
### 🐛 Fixed
|
|
1614
|
+
|
|
1615
|
+
**Windows UTF-8 Encoding Crashes**:
|
|
1616
|
+
- Fixed all `write_text()` calls to include `encoding='utf-8'` parameter
|
|
1617
|
+
- Affects feature creation, worktree setup, gap analysis, doc generators, agent context, and test fixtures
|
|
1618
|
+
- Windows users can now create features without charmap encoding errors
|
|
1619
|
+
- Fixes #101, incorporates PR #100
|
|
1620
|
+
|
|
1621
|
+
**Constitution Template Workflow**:
|
|
1622
|
+
- Fixed incorrect next-step suggestion after creating constitution
|
|
1623
|
+
- Now correctly suggests `/spec-kitty.specify` instead of `/spec-kitty.plan`
|
|
1624
|
+
- Propagated fix to all 12 agent directories via migration
|
|
1625
|
+
- Fixes #97 (inspired by PR #98)
|
|
1626
|
+
|
|
1627
|
+
**Research Mission Detection**:
|
|
1628
|
+
- Fixed `spec-kitty mission current` to show feature-level missions
|
|
1629
|
+
- Now auto-detects feature from current directory (kitty-specs or worktree)
|
|
1630
|
+
- Added `--feature` flag for explicit feature specification
|
|
1631
|
+
- No longer always defaults to software-dev for research features
|
|
1632
|
+
- Fixes #93
|
|
1633
|
+
|
|
1634
|
+
### 🎉 Closed
|
|
1635
|
+
|
|
1636
|
+
**Agent Configuration Feature**:
|
|
1637
|
+
- Closed #51 as completed (already implemented in v0.12.0)
|
|
1638
|
+
- Feature: `spec-kitty agent config add/remove/list`
|
|
1639
|
+
|
|
1640
|
+
### 📚 Documentation
|
|
1641
|
+
|
|
1642
|
+
**Release Management**:
|
|
1643
|
+
- Added `RELEASE_CHECKLIST.md` - Comprehensive release preparation checklist with version-specific sections for research missions, agent management, and workspace-per-WP changes
|
|
1644
|
+
|
|
1645
|
+
### Migration Notes
|
|
1646
|
+
|
|
1647
|
+
**For users with existing research features**:
|
|
1648
|
+
1. Run `spec-kitty upgrade` to trigger detection migration
|
|
1649
|
+
2. See informational report with schema diffs and migration tips
|
|
1650
|
+
3. Use LLM agent to help migrate data:
|
|
1651
|
+
- Read canonical schema in `.claude/commands/spec-kitty.implement.md`
|
|
1652
|
+
- Create new CSV with correct headers
|
|
1653
|
+
- Map old columns → new columns
|
|
1654
|
+
- Replace old file and commit to main
|
|
1655
|
+
|
|
1656
|
+
**For new research features (0.13.0+)**:
|
|
1657
|
+
- Templates already have correct schemas
|
|
1658
|
+
- Agents see schema documentation before editing
|
|
1659
|
+
- Follow append-only pattern to avoid overwrites
|
|
1660
|
+
- Validation passes at review
|
|
1661
|
+
|
|
1662
|
+
## [0.12.1] - 2026-01-24
|
|
1663
|
+
|
|
1664
|
+
### 🐛 Fixed
|
|
1665
|
+
|
|
1666
|
+
**kitty-specs/ in .gitignore Blocking Feature Creation**:
|
|
1667
|
+
- Fixed issue where users with `kitty-specs/` in their `.gitignore` couldn't create features
|
|
1668
|
+
- Error manifested as: "Issue Detected: The spec-kitty agent feature create-feature command failed to commit because .gitignore contains kitty-specs/"
|
|
1669
|
+
- New migration `m_0_12_1_remove_kitty_specs_from_gitignore` automatically removes blocking entries
|
|
1670
|
+
- Only removes patterns that block the entire `kitty-specs/` directory
|
|
1671
|
+
- Preserves worktree-specific patterns like `kitty-specs/**/tasks/*.md` (used to prevent merge conflicts)
|
|
1672
|
+
|
|
1673
|
+
### Migration Notes
|
|
1674
|
+
|
|
1675
|
+
**For users experiencing this bug:**
|
|
1676
|
+
1. Run `spec-kitty upgrade` to apply the fix automatically
|
|
1677
|
+
2. Or manually remove `kitty-specs/` from your `.gitignore`
|
|
1678
|
+
|
|
1679
|
+
The migration will detect and remove entries like:
|
|
1680
|
+
- `kitty-specs`
|
|
1681
|
+
- `kitty-specs/`
|
|
1682
|
+
- `/kitty-specs`
|
|
1683
|
+
- `/kitty-specs/`
|
|
1684
|
+
|
|
1685
|
+
It will NOT remove specific subpath patterns that are intentionally used in worktrees.
|
|
1686
|
+
|
|
1687
|
+
## [0.12.0] - 2026-01-23
|
|
1688
|
+
|
|
1689
|
+
### ✨ Added
|
|
1690
|
+
|
|
1691
|
+
**Config-Driven Agent Management** (Feature 022):
|
|
1692
|
+
- **Single source of truth**: `.kittify/config.yaml` now controls which agents are configured
|
|
1693
|
+
- **New CLI commands**: `spec-kitty agent config list|add|remove|status|sync`
|
|
1694
|
+
- `list`: Show configured agents
|
|
1695
|
+
- `add <agents...>`: Add agents to configuration
|
|
1696
|
+
- `remove <agents...>`: Remove agents from configuration
|
|
1697
|
+
- `status`: Show configured vs orphaned agents
|
|
1698
|
+
- `sync`: Synchronize filesystem with configuration
|
|
1699
|
+
- **Migrations respect config**: `get_agent_dirs_for_project()` helper only processes configured agents
|
|
1700
|
+
- **Orphan detection**: Identifies agent directories not in config (from manual deletions)
|
|
1701
|
+
- **ADR #6**: Documents architectural decision for config-driven approach
|
|
1702
|
+
|
|
1703
|
+
**Smarter Feature Merge with Pre-flight** (Feature 017):
|
|
1704
|
+
- **Pre-flight validation**: Checks all WP worktrees for uncommitted changes, missing worktrees, and target branch divergence before any merge starts
|
|
1705
|
+
- **Conflict forecasting**: `--dry-run` predicts which files will conflict and classifies them as auto-resolvable (status files) or manual
|
|
1706
|
+
- **Smart merge order**: WPs merged in dependency order based on frontmatter `dependencies` field
|
|
1707
|
+
- **Status file auto-resolution**: Conflicts in WP prompt files (`kitty-specs/*/tasks/*.md`) automatically resolved by taking advanced lane status
|
|
1708
|
+
- **Merge state persistence**: Progress saved to `.kittify/merge-state.json` for recovery
|
|
1709
|
+
- **Resume/abort flags**: `--resume` continues interrupted merges, `--abort` clears state and starts fresh
|
|
1710
|
+
- **Auto-cleanup**: Worktrees and branches removed after successful merge (configurable with `--keep-worktree`, `--keep-branch`)
|
|
1711
|
+
|
|
1712
|
+
### 📚 Documentation
|
|
1713
|
+
|
|
1714
|
+
**Merge Preflight Documentation** (Feature 018):
|
|
1715
|
+
- Added `docs/how-to/merge-feature.md` - Complete merge workflow guide with pre-flight, dry-run, strategies, and cleanup options
|
|
1716
|
+
- Added `docs/how-to/troubleshoot-merge.md` - Comprehensive troubleshooting guide with error reference table
|
|
1717
|
+
- Updated CLAUDE.md with Merge & Preflight Patterns section documenting MergeState dataclass and public API
|
|
1718
|
+
|
|
1719
|
+
**Agent Management Documentation Sprint** (Feature 023):
|
|
1720
|
+
- Added `docs/how-to/manage-agents.md` - Complete guide to adding, removing, and managing AI agent integrations
|
|
1721
|
+
- Added `docs/how-to/upgrade-to-0-12-0.md` - Migration guide for config-driven agent management
|
|
1722
|
+
- Updated `docs/reference/cli-commands.md` with comprehensive `agent config` subcommand documentation
|
|
1723
|
+
- Updated `docs/reference/agent-subcommands.md`, `docs/reference/configuration.md`, `docs/reference/supported-agents.md` with accurate cross-references
|
|
1724
|
+
- Updated `docs/how-to/install-spec-kitty.md` with agent configuration guidance
|
|
1725
|
+
|
|
1726
|
+
### 🐛 Fixed
|
|
1727
|
+
|
|
1728
|
+
**Merge Resume Bug**:
|
|
1729
|
+
- Fixed `merge_workspace_per_wp()` missing `resume_state` parameter causing `TypeError` when using `--resume`
|
|
1730
|
+
|
|
1731
|
+
**Agent Workflow Output Truncation** (GitHub Codex compatibility):
|
|
1732
|
+
- Fixed workflow commands (`implement`, `review`) outputting 300+ lines which got truncated by agents like GitHub Codex
|
|
1733
|
+
- Prompts now written to temp file with concise 15-line summary to stdout
|
|
1734
|
+
- Added directive language (`▶▶▶ NEXT STEP: Read the full prompt file now:`) so agents automatically read the file
|
|
1735
|
+
- Agents no longer miss work package requirements due to output truncation
|
|
1736
|
+
|
|
1737
|
+
**False Staleness for Newly-Created Worktrees**:
|
|
1738
|
+
- Fixed stale detection flagging new worktrees as stale immediately
|
|
1739
|
+
- Previously, `git log -1` returned parent branch's commit time (could be hours old)
|
|
1740
|
+
- Now checks if branch has commits since diverging from main
|
|
1741
|
+
- Worktrees with no new commits are NOT flagged as stale (agent just started)
|
|
1742
|
+
|
|
1743
|
+
## [0.11.1] - 2026-01-16
|
|
1744
|
+
|
|
1745
|
+
### 🐛 Fixed
|
|
1746
|
+
|
|
1747
|
+
**Merge Template Improvements**:
|
|
1748
|
+
- Added explicit preflight validation code using `python3 -c` with `validate_worktree_location()`
|
|
1749
|
+
- Added clear visual "⛔ Location Pre-flight Check (CRITICAL)" section to prevent agents running merge from wrong location
|
|
1750
|
+
- Fixed contradictory instructions in software-dev mission merge template (was incorrectly saying "run from main")
|
|
1751
|
+
- Fixed empty Python code block in research mission merge template that confused agents
|
|
1752
|
+
- Added workspace-per-WP model (0.11.0+) documentation vs legacy pattern in worktree strategy section
|
|
1753
|
+
|
|
1754
|
+
**Documentation Accuracy** (Feature 014):
|
|
1755
|
+
- Rewrote `multi-agent-orchestration.md` for the 0.11.0+ isolated-WP worktree model:
|
|
1756
|
+
- Planning happens in main repo (not worktrees)
|
|
1757
|
+
- Each WP gets its own worktree (not shared)
|
|
1758
|
+
- Removed references to non-existent scripts
|
|
1759
|
+
- Updated lane tracking to frontmatter (not directories)
|
|
1760
|
+
- Added parallelization patterns and status monitoring
|
|
1761
|
+
- Fixed the legacy isolated-worktree guide merge command syntax (runs from worktree without feature argument)
|
|
1762
|
+
- Fixed `documentation-mission.md` broken source links
|
|
1763
|
+
- Fixed `reference/README.md` - replaced outdated "Planned Content" with actual content links
|
|
1764
|
+
- Fixed `kanban-workflow.md` - clarified `/spec-kitty.accept` works on features, not individual WPs
|
|
1765
|
+
|
|
1766
|
+
### 📚 Added
|
|
1767
|
+
|
|
1768
|
+
**Comprehensive End-User Documentation** (Feature 014):
|
|
1769
|
+
- Complete Divio 4-type documentation suite:
|
|
1770
|
+
- **Tutorials**: Getting Started, Your First Feature, Claude Code Integration, Claude Code Workflow, Multi-Agent Workflow, Missions Overview
|
|
1771
|
+
- **How-To Guides**: 14 task-oriented guides covering installation, specifications, planning, implementation, review, dependencies, parallel development, dashboard usage, and migration
|
|
1772
|
+
- **Reference**: CLI Commands, Slash Commands, Agent Subcommands, Configuration, Environment Variables, File Structure, Missions, Supported Agents
|
|
1773
|
+
- **Explanations**: Spec-Driven Development, Divio Documentation, legacy isolated worktree model, Git Worktrees, Mission System, Kanban Workflow, AI Agent Architecture, Documentation Mission, Multi-Agent Orchestration
|
|
1774
|
+
- Cross-references between all documentation types
|
|
1775
|
+
- DocFX-compatible structure with `toc.yml` navigation
|
|
1776
|
+
|
|
1777
|
+
## [0.11.0] - 2026-01-12
|
|
1778
|
+
|
|
1779
|
+
### 🚨 BREAKING CHANGES - Workspace Model Changed (Feature 010)
|
|
1780
|
+
|
|
1781
|
+
**Old (0.10.x)**: One worktree per feature
|
|
1782
|
+
- `/spec-kitty.specify` created `.worktrees/###-feature/`
|
|
1783
|
+
- All WPs worked in same worktree
|
|
1784
|
+
- Sequential development (one agent at a time)
|
|
1785
|
+
|
|
1786
|
+
**New (0.11.0)**: One worktree per work package
|
|
1787
|
+
- Planning commands (specify, plan, tasks) work in main repository (NO worktree created)
|
|
1788
|
+
- `spec-kitty implement WP##` creates `.worktrees/###-feature-WP##/`
|
|
1789
|
+
- Each WP has isolated worktree with dedicated branch
|
|
1790
|
+
- Enables parallel multi-agent development
|
|
1791
|
+
|
|
1792
|
+
### ⚠️ Migration Required
|
|
1793
|
+
|
|
1794
|
+
**You MUST complete or delete all in-progress features before upgrading to 0.11.0.**
|
|
1795
|
+
|
|
1796
|
+
See [docs/upgrading-to-0-11-0.md](docs/upgrading-to-0-11-0.md) for complete migration guide.
|
|
1797
|
+
|
|
1798
|
+
### 🔒 Security (IMPORTANT) - Feature 011
|
|
1799
|
+
|
|
1800
|
+
- **Comprehensive adversarial review framework**
|
|
1801
|
+
- Expanded review template from 3 bullets (109 lines) to 12 scrutiny categories (505 lines)
|
|
1802
|
+
- **Security scrutiny now mandatory**: 10 detailed security subsections
|
|
1803
|
+
- **Mandatory verification**: 7 security grep commands must be run on EVERY review
|
|
1804
|
+
- **Automatic rejection** if any security check fails
|
|
1805
|
+
- **Impact**: All future features will have security-first reviews
|
|
1806
|
+
|
|
1807
|
+
### ✨ Added
|
|
1808
|
+
|
|
1809
|
+
**Legacy isolated-WP worktree features (010)**:
|
|
1810
|
+
- **New command**: `spec-kitty implement WP## [--base WPXX]` - Create workspace for work package
|
|
1811
|
+
- `--base` flag branches from another WP's branch (for dependencies)
|
|
1812
|
+
- Automatically moves WP from `planned` → `doing` lane
|
|
1813
|
+
- **New command**: `spec-kitty agent feature finalize-tasks` - Finalize WP generation
|
|
1814
|
+
- Parses dependencies from tasks.md
|
|
1815
|
+
- Generates `dependencies: []` field in WP frontmatter
|
|
1816
|
+
- Validates dependency graph (cycle detection, invalid references)
|
|
1817
|
+
- **Dependency tracking**: WP frontmatter includes `dependencies: []` field
|
|
1818
|
+
- **Dependency graph utilities**: `src/specify_cli/core/dependency_graph.py`
|
|
1819
|
+
- **Review warnings**: Alert when dependent WPs need rebase
|
|
1820
|
+
|
|
1821
|
+
**Constitution Features (011)**:
|
|
1822
|
+
- **Interactive constitution command** (Phase-based discovery)
|
|
1823
|
+
- 4-phase discovery workflow (Technical, Quality, Tribal Knowledge, Governance)
|
|
1824
|
+
- Two paths: Minimal (Phase 1 only) or Comprehensive (all phases)
|
|
1825
|
+
- Skip options for each phase
|
|
1826
|
+
- Truly optional - all commands work without constitution
|
|
1827
|
+
|
|
1828
|
+
### ♻️ Refactored - Feature 011
|
|
1829
|
+
|
|
1830
|
+
- **Template source relocation** (Safe dogfooding - Critical)
|
|
1831
|
+
- Moved ALL template sources from `.kittify/` to `src/specify_cli/`
|
|
1832
|
+
- Updated template manager to load from package resources
|
|
1833
|
+
- Removed `.kittify/*` force-includes from `pyproject.toml`
|
|
1834
|
+
- **Impact**: Developers can now safely dogfood without packaging risk
|
|
1835
|
+
|
|
1836
|
+
- **Mission-specific constitutions removed**
|
|
1837
|
+
- Single project-level constitution model (`.kittify/memory/constitution.md`)
|
|
1838
|
+
- Migration removes mission constitutions from user projects
|
|
1839
|
+
|
|
1840
|
+
### 🐛 Fixed - Feature 011
|
|
1841
|
+
|
|
1842
|
+
- **Windows dashboard ERR_EMPTY_RESPONSE** (#71)
|
|
1843
|
+
- Replaced POSIX-only signal handling with cross-platform psutil
|
|
1844
|
+
- Added `psutil>=5.9.0` dependency
|
|
1845
|
+
- Dashboard now works on Windows 10/11
|
|
1846
|
+
|
|
1847
|
+
- **Upgrade migration failures** (#70)
|
|
1848
|
+
- Fixed multiple migrations to handle missing files gracefully
|
|
1849
|
+
- All migrations now idempotent
|
|
1850
|
+
- Upgrade path from 0.6.4 → 0.10.12 completes without intervention
|
|
1851
|
+
|
|
1852
|
+
### 🐛 Fixed - Feature 012
|
|
1853
|
+
|
|
1854
|
+
- **`/spec-kitty.status` template instructed agents to run Python code**
|
|
1855
|
+
- AI agents cannot execute arbitrary Python - they use CLI tools
|
|
1856
|
+
- Updated template to use CLI command as primary method
|
|
1857
|
+
- Python API now documented as alternative for Jupyter/scripts
|
|
1858
|
+
|
|
1859
|
+
### 📖 Documentation - Feature 010
|
|
1860
|
+
|
|
1861
|
+
- **New docs**: legacy isolated-worktree workflow guide with examples
|
|
1862
|
+
- **New docs**: `docs/upgrading-to-0-11-0.md` - Migration instructions
|
|
1863
|
+
|
|
1864
|
+
### 🎯 Why These Changes?
|
|
1865
|
+
|
|
1866
|
+
**Feature 010 (Workspace-per-WP)**:
|
|
1867
|
+
- Enables parallel multi-agent development
|
|
1868
|
+
- Better isolation per work package
|
|
1869
|
+
- Explicit dependencies with validation
|
|
1870
|
+
- Scalability for large features (10+ WPs)
|
|
1871
|
+
|
|
1872
|
+
**Feature 011 (Constitution & Packaging Safety)**:
|
|
1873
|
+
- Safe dogfooding (no packaging contamination)
|
|
1874
|
+
- Cross-platform dashboard support
|
|
1875
|
+
- Optional, interactive constitution setup
|
|
1876
|
+
- Smooth upgrade migrations
|
|
1877
|
+
|
|
1878
|
+
## [0.10.13] - 2026-01-12
|
|
1879
|
+
|
|
1880
|
+
### 🐛 Fixed
|
|
1881
|
+
|
|
1882
|
+
- **CRITICAL: Missing migration in PyPI v0.10.12 package**
|
|
1883
|
+
- Migration `m_0_10_12_constitution_cleanup.py` was missing from PyPI package uploaded on 2026-01-07
|
|
1884
|
+
- File existed in source repository but was not included in distributed wheel
|
|
1885
|
+
- Caused constitution cleanup to not run during upgrades from v0.10.11
|
|
1886
|
+
- v0.10.13 includes the missing migration file
|
|
1887
|
+
- Users who installed v0.10.12 should run `spec-kitty upgrade` again after upgrading to v0.10.13
|
|
1888
|
+
- **Root cause**: PyPI package was built before migration file was committed to repository
|
|
1889
|
+
- **Prevention**: Added migration file count verification to release workflow
|
|
1890
|
+
|
|
1891
|
+
### ♻️ Improved
|
|
1892
|
+
|
|
1893
|
+
- **Release workflow hardening**
|
|
1894
|
+
- Added verification step to count migration files in built wheel
|
|
1895
|
+
- Release now fails if migration count doesn't match source repository
|
|
1896
|
+
- Prevents future packaging bugs where files are missing from distribution
|
|
1897
|
+
|
|
1898
|
+
### 📋 Migration for v0.10.12 Users
|
|
1899
|
+
|
|
1900
|
+
If you installed v0.10.12 from PyPI and upgraded from v0.10.11:
|
|
1901
|
+
```bash
|
|
1902
|
+
pip install --upgrade spec-kitty-cli
|
|
1903
|
+
spec-kitty upgrade # Run again to apply missing migration 0.10.12
|
|
1904
|
+
```
|
|
1905
|
+
|
|
1906
|
+
The migration will remove mission-specific constitution directories:
|
|
1907
|
+
- `.kittify/missions/software-dev/constitution/` → removed
|
|
1908
|
+
- `.kittify/missions/research/constitution/` → removed
|
|
1909
|
+
- Single project-level constitution: `.kittify/memory/constitution.md` (kept)
|
|
1910
|
+
|
|
1911
|
+
## [0.10.12] - 2026-01-12
|
|
1912
|
+
|
|
1913
|
+
### 🔒 Security (IMPORTANT)
|
|
1914
|
+
|
|
1915
|
+
- **Comprehensive adversarial review framework**
|
|
1916
|
+
- Expanded review template from 3 bullets (109 lines) to 12 scrutiny categories (505 lines)
|
|
1917
|
+
- **Security scrutiny now mandatory**: 10 detailed security subsections
|
|
1918
|
+
- **Mandatory verification**: 7 security grep commands must be run on EVERY review
|
|
1919
|
+
- **Automatic rejection** if any security check fails
|
|
1920
|
+
- **Impact**: All future features will have security-first reviews
|
|
1921
|
+
- **Rationale**: Prevents systematic quality issues (TODOs in prod, mocked implementations, security vulnerabilities)
|
|
1922
|
+
- See spec footnote and commit `61d7d01` for complete rationale
|
|
1923
|
+
|
|
1924
|
+
### 🐛 Fixed
|
|
1925
|
+
|
|
1926
|
+
- **Windows dashboard ERR_EMPTY_RESPONSE** (#71)
|
|
1927
|
+
- Replaced POSIX-only signal handling with cross-platform psutil library
|
|
1928
|
+
- `signal.SIGKILL` and `signal.SIGTERM` don't exist on Windows
|
|
1929
|
+
- Added `psutil>=5.9.0` dependency for cross-platform process management
|
|
1930
|
+
- Refactored `src/specify_cli/dashboard/lifecycle.py`:
|
|
1931
|
+
- `os.kill(pid, 0)` → `psutil.Process(pid).is_running()`
|
|
1932
|
+
- `signal.SIGKILL` → `psutil.Process(pid).kill()` (6 locations)
|
|
1933
|
+
- `signal.SIGTERM` → `psutil.Process(pid).terminate()` with timeout
|
|
1934
|
+
- Added proper exception handling (NoSuchProcess, AccessDenied, TimeoutExpired)
|
|
1935
|
+
- Dashboard now starts, serves HTML, and stops cleanly on Windows 10/11
|
|
1936
|
+
- All 41 dashboard tests passing
|
|
1937
|
+
|
|
1938
|
+
- **Upgrade migration failures** (#70)
|
|
1939
|
+
- Fixed `m_0_7_3_update_scripts.py` to handle missing bash scripts gracefully
|
|
1940
|
+
- Fixed `m_0_10_6_workflow_simplification.py` to copy templates before validation
|
|
1941
|
+
- Fixed `m_0_10_2_update_slash_commands.py` to explicitly remove legacy .toml files
|
|
1942
|
+
- Fixed `m_0_10_0_python_only.py` to explicitly remove `.kittify/scripts/tasks/`
|
|
1943
|
+
- Created `m_0_10_12_constitution_cleanup.py` to remove mission constitutions
|
|
1944
|
+
- All migrations now idempotent (safe to run multiple times)
|
|
1945
|
+
- Upgrade path from 0.6.4 → 0.10.12 now completes without manual intervention
|
|
1946
|
+
|
|
1947
|
+
- **Upgrade migration parameter mismatch** (#68 follow-up)
|
|
1948
|
+
- Fixed `m_0_10_9_repair_templates.py` migration calling `generate_agent_assets()` with wrong parameter name
|
|
1949
|
+
- Changed `ai=ai_config` to `agent_key=ai_config` to match function signature
|
|
1950
|
+
|
|
1951
|
+
### ♻️ Refactored
|
|
1952
|
+
|
|
1953
|
+
- **Template source relocation** (Safe dogfooding - Critical)
|
|
1954
|
+
- Moved ALL template sources from `.kittify/` to `src/specify_cli/`
|
|
1955
|
+
- Templates: `.kittify/templates/` → `src/specify_cli/templates/`
|
|
1956
|
+
- Missions: `.kittify/missions/` → `src/specify_cli/missions/`
|
|
1957
|
+
- Scripts: `.kittify/scripts/` → `src/specify_cli/scripts/`
|
|
1958
|
+
- Updated `src/specify_cli/template/manager.py` to load from `src/` not `.kittify/`
|
|
1959
|
+
- Removed ALL `.kittify/*` force-includes from `pyproject.toml`
|
|
1960
|
+
- **Impact**: Spec-kitty developers can now safely dogfood spec-kitty without risk of packaging their filled-in constitutions
|
|
1961
|
+
- **Verification**: Building wheel produces ZERO `.kittify/` or `memory/constitution.md` entries
|
|
1962
|
+
- Package now only contains `src/specify_cli/` (proper Python packaging)
|
|
1963
|
+
|
|
1964
|
+
- **Mission-specific constitutions removed**
|
|
1965
|
+
- Removed `mission.constitution_dir` property from `src/specify_cli/mission.py`
|
|
1966
|
+
- Removed constitution scanning from `src/specify_cli/manifest.py`
|
|
1967
|
+
- Deleted all `missions/*/constitution/` directories
|
|
1968
|
+
- **Impact**: Single project-level constitution model (`.kittify/memory/constitution.md`)
|
|
1969
|
+
- **Migration**: `m_0_10_12_constitution_cleanup.py` removes mission constitutions from user projects
|
|
1970
|
+
- Eliminates confusion about which constitution applies
|
|
1971
|
+
|
|
1972
|
+
## [0.10.11] - 2026-01-07
|
|
1973
|
+
|
|
1974
|
+
### 🐛 Fixed
|
|
1975
|
+
|
|
1976
|
+
- **Upgrade migration parameter mismatch** (#68 follow-up)
|
|
1977
|
+
- Fixed `m_0_10_9_repair_templates.py` migration calling `generate_agent_assets()` with wrong parameter name
|
|
1978
|
+
- Changed `ai=ai_config` to `agent_key=ai_config` to match function signature
|
|
1979
|
+
- Corrected parameter order to match function definition
|
|
1980
|
+
- **Root cause**: Migration was using deprecated parameter name, blocking users from upgrading to 0.10.11
|
|
1981
|
+
- **Impact**: Users unable to run `spec-kitty upgrade` to get template fixes from 0.10.11
|
|
1982
|
+
|
|
1983
|
+
## [0.10.11] - 2026-01-07
|
|
1984
|
+
|
|
1985
|
+
### 🐛 Fixed
|
|
1986
|
+
|
|
1987
|
+
- **Deprecated script references in mission templates** (#68)
|
|
1988
|
+
- Fixed `.kittify/missions/software-dev/templates/task-prompt-template.md` to use workflow commands instead of deprecated `python3 .kittify/scripts/tasks/tasks_cli.py`
|
|
1989
|
+
- Fixed `.kittify/templates/task-prompt-template.md` with same update
|
|
1990
|
+
- Fixed `.kittify/missions/software-dev/command-templates/tasks.md` to reference workflow commands
|
|
1991
|
+
- Updated `.kittify/templates/POWERSHELL_SYNTAX.md` to document spec-kitty CLI instead of obsolete PowerShell scripts
|
|
1992
|
+
- **Root cause**: Migration 0.10.9 fixed agent command templates but missed mission-specific templates
|
|
1993
|
+
- **Impact**: Agents were executing users' local `cli.py` files instead of spec-kitty CLI on Windows
|
|
1994
|
+
|
|
1995
|
+
### ✨ Added
|
|
1996
|
+
|
|
1997
|
+
- **Template compliance tests** - Prevent deprecated script references
|
|
1998
|
+
- `test_no_deprecated_script_references()` - Detects old `.kittify/scripts/` paths in templates
|
|
1999
|
+
- `test_templates_use_spec_kitty_cli()` - Ensures templates reference spec-kitty CLI commands
|
|
2000
|
+
- Tests run on all mission templates and global templates
|
|
2001
|
+
- Prevents regression of issue #68
|
|
2002
|
+
|
|
2003
|
+
## [0.10.10] - 2026-01-06
|
|
2004
|
+
|
|
2005
|
+
### 🐛 Fixed
|
|
2006
|
+
|
|
2007
|
+
- **Windows UTF-8 encoding error in agent commands** (#66)
|
|
2008
|
+
- Fixed `'charmap' codec can't encode characters` error on Windows
|
|
2009
|
+
- `spec-kitty agent feature create-feature` now works correctly on Windows
|
|
2010
|
+
- Added UTF-8 stdout/stderr reconfiguration in main() entry point
|
|
2011
|
+
- Handles Unicode characters in git output and error messages
|
|
2012
|
+
- Gracefully falls back for Python < 3.7
|
|
2013
|
+
|
|
2014
|
+
## [0.10.9] - 2026-01-06
|
|
2015
|
+
|
|
2016
|
+
### 🐛 Fixed
|
|
2017
|
+
|
|
2018
|
+
- **CRITICAL: Wrong templates bundled in PyPI packages** (#62, #63, #64)
|
|
2019
|
+
- Fixed pyproject.toml to bundle .kittify/templates/ instead of outdated /templates/
|
|
2020
|
+
- Removed outdated /templates/ directory entirely to prevent confusion
|
|
2021
|
+
- All PyPI installations now receive correct Python CLI templates
|
|
2022
|
+
- No more bash script references in command templates
|
|
2023
|
+
- Migration 0.10.0 now handles missing templates gracefully
|
|
2024
|
+
- Added package bundling validation tests to prevent regression
|
|
2025
|
+
|
|
2026
|
+
- **Template divergence eliminated**
|
|
2027
|
+
- 10 of 13 command templates were outdated in /templates/
|
|
2028
|
+
- implement.md was 199 lines longer in old location (277 vs 78 lines)
|
|
2029
|
+
- Git hooks were missing (1 vs 3)
|
|
2030
|
+
- claudeignore-template was missing
|
|
2031
|
+
|
|
2032
|
+
- **All 12 AI agent integrations fixed**
|
|
2033
|
+
- Claude Code, GitHub Copilot, Cursor, Gemini, Qwen Code, OpenCode, Windsurf,
|
|
2034
|
+
GitHub Codex, Kilocode, Augment Code, Roo Cline, Amazon Q
|
|
2035
|
+
- All agents now receive correct Python CLI slash commands
|
|
2036
|
+
|
|
2037
|
+
### ✨ Added
|
|
2038
|
+
|
|
2039
|
+
- **Repair migration (0.10.9_repair_templates)** - Automatically fixes broken installations
|
|
2040
|
+
- Detects projects with broken template references
|
|
2041
|
+
- Regenerates all agent slash commands from correct templates
|
|
2042
|
+
- Runs automatically during `spec-kitty upgrade`
|
|
2043
|
+
- Verifies repair was successful
|
|
2044
|
+
|
|
2045
|
+
- **Package bundling validation tests** - Prevents future regressions
|
|
2046
|
+
- Validates correct templates are bundled in sdist and wheel
|
|
2047
|
+
- Checks for bash script references before release
|
|
2048
|
+
- Tests importlib.resources accessibility
|
|
2049
|
+
|
|
2050
|
+
### 📚 Migration & Upgrade Path
|
|
2051
|
+
|
|
2052
|
+
**For users with broken installations (issues #62, #63, #64):**
|
|
2053
|
+
|
|
2054
|
+
1. **Upgrade spec-kitty package:**
|
|
2055
|
+
```bash
|
|
2056
|
+
pip install --upgrade spec-kitty-cli
|
|
2057
|
+
spec-kitty --version # Should show 0.10.9
|
|
2058
|
+
```
|
|
2059
|
+
|
|
2060
|
+
2. **Run upgrade to apply repair migration:**
|
|
2061
|
+
```bash
|
|
2062
|
+
cd /path/to/your/project
|
|
2063
|
+
spec-kitty upgrade
|
|
2064
|
+
```
|
|
2065
|
+
This will automatically detect and fix broken templates.
|
|
2066
|
+
|
|
2067
|
+
3. **Verify repair:**
|
|
2068
|
+
```bash
|
|
2069
|
+
# Check for bash script references (should return nothing)
|
|
2070
|
+
grep -r "scripts/bash" .claude/commands/
|
|
2071
|
+
```
|
|
2072
|
+
|
|
2073
|
+
**For new projects:**
|
|
2074
|
+
- Automatically get correct templates from package
|
|
2075
|
+
- No action needed
|
|
2076
|
+
|
|
2077
|
+
**For existing healthy projects:**
|
|
2078
|
+
- Run `spec-kitty upgrade` to stay current
|
|
2079
|
+
- No breaking changes
|
|
2080
|
+
|
|
2081
|
+
### 🔒 Breaking Changes
|
|
2082
|
+
|
|
2083
|
+
None - Fully backwards compatible. Existing projects will upgrade smoothly.
|
|
2084
|
+
|
|
2085
|
+
## [0.10.8] - 2025-12-30
|
|
2086
|
+
|
|
2087
|
+
### 🐛 Fixed
|
|
2088
|
+
|
|
2089
|
+
- **Critical: Constitution not copied to worktrees** (#46)
|
|
2090
|
+
- Moved `memory/` directory from root to `.kittify/memory/` where code expects it
|
|
2091
|
+
- Removed broken circular symlinks (`.kittify/memory` → `../../../.kittify/memory`)
|
|
2092
|
+
- Fixed `.kittify/AGENTS.md` to be real file instead of broken symlink
|
|
2093
|
+
- Fixed worktree.py symlink handling (check for symlink before trying rmtree)
|
|
2094
|
+
- Added migration to automatically fix existing projects
|
|
2095
|
+
- Worktrees now correctly access constitution from main repo
|
|
2096
|
+
|
|
2097
|
+
- **Migration system** (v0.10.8_fix_memory_structure)
|
|
2098
|
+
- Automatically moves `memory/` to `.kittify/memory/` in existing projects
|
|
2099
|
+
- Removes broken symlinks and creates proper structure
|
|
2100
|
+
- Updates worktrees to use correct paths
|
|
2101
|
+
- Handles both Unix symlinks and Windows file copies
|
|
2102
|
+
|
|
2103
|
+
### 🔧 Changed
|
|
2104
|
+
|
|
2105
|
+
- **Directory structure standardization**
|
|
2106
|
+
- `memory/` → `.kittify/memory/` (matches `.kittify/scripts/`, `.kittify/templates/`)
|
|
2107
|
+
- `.kittify/AGENTS.md` is now a real file (not symlink)
|
|
2108
|
+
- All `.kittify/` resources now follow consistent pattern
|
|
2109
|
+
|
|
2110
|
+
## [0.10.7] - 2025-12-30
|
|
2111
|
+
|
|
2112
|
+
### 🐛 Fixed
|
|
2113
|
+
|
|
2114
|
+
- **Critical: Copilot initialization bug** (#53, fixes #61, #50)
|
|
2115
|
+
- Fixed NameError when running `spec-kitty init --ai copilot`
|
|
2116
|
+
- Changed `commands_dir` to `command_templates_dir` in asset_generator.py
|
|
2117
|
+
- Unblocks all users trying to initialize projects with Copilot
|
|
2118
|
+
|
|
2119
|
+
- **Critical: Dashboard contracts and checklists missing** (#59, fixes #52)
|
|
2120
|
+
- Restored contracts and checklists handlers that were lost in Nov 11 dashboard refactoring
|
|
2121
|
+
- Added generic `_handle_artifact_directory()` helper method
|
|
2122
|
+
- Both contracts and checklists now display correctly in dashboard
|
|
2123
|
+
- Fixed frontend to use full filepath instead of filename only
|
|
2124
|
+
|
|
2125
|
+
- **Critical: Windows UTF-8 encoding errors** (#56)
|
|
2126
|
+
- Added explicit `encoding='utf-8'` to read_text() calls
|
|
2127
|
+
- Fixes dashboard diagnostics showing "undefined" on Windows
|
|
2128
|
+
- Affects manifest.py and migration files
|
|
2129
|
+
- Windows defaults to cp1252, causing UnicodeDecodeError with UTF-8 content
|
|
2130
|
+
|
|
2131
|
+
- **Plan.md location validation** (#60)
|
|
2132
|
+
- Improved validation messaging in plan.md template
|
|
2133
|
+
- Added prominent ⚠️ STOP header for AI agents
|
|
2134
|
+
- Clearer examples of correct vs wrong worktree locations
|
|
2135
|
+
- Template-only change (no code modifications)
|
|
2136
|
+
|
|
2137
|
+
### 🔄 Closed
|
|
2138
|
+
|
|
2139
|
+
- PR #58 - Obsolete (PowerShell scripts deleted in v0.10.0)
|
|
2140
|
+
- PR #57 - Obsolete (PowerShell scripts deleted in v0.10.0)
|
|
2141
|
+
- PR #49 - Superseded by #59 (better architecture)
|
|
2142
|
+
- PR #43 - Obsolete (PowerShell scripts deleted in v0.10.0)
|
|
2143
|
+
|
|
2144
|
+
## [0.10.6] - 2025-12-18
|
|
2145
|
+
|
|
2146
|
+
### ✨ Added
|
|
2147
|
+
|
|
2148
|
+
- **Workflow commands for simplified agent experience**
|
|
2149
|
+
- New `spec-kitty agent workflow implement [WP_ID]` command
|
|
2150
|
+
- New `spec-kitty agent workflow review [WP_ID]` command
|
|
2151
|
+
- Commands display full WP prompt directly to agents (no file navigation)
|
|
2152
|
+
- Auto-detect first planned/for_review WP when no ID provided
|
|
2153
|
+
- Auto-move WP to "doing" lane before displaying prompt
|
|
2154
|
+
- Show "WHEN YOU'RE DONE" instructions at top of output
|
|
2155
|
+
- Display source file path for easy re-reading
|
|
2156
|
+
- Prevents race conditions (two agents picking same WP)
|
|
2157
|
+
|
|
2158
|
+
### 🔧 Changed
|
|
2159
|
+
|
|
2160
|
+
- **Slash command template simplification**
|
|
2161
|
+
- implement.md: 78 lines → 11 lines (calls workflow command)
|
|
2162
|
+
- review.md: 72 lines → 11 lines (calls workflow command)
|
|
2163
|
+
- Templates now just run workflow commands instead of complex instructions
|
|
2164
|
+
- Agents see prompts immediately without navigation confusion
|
|
2165
|
+
|
|
2166
|
+
- **Consistent lane management**
|
|
2167
|
+
- Both implement and review workflows move WP to "doing" at start
|
|
2168
|
+
- Prevents ambiguity about which lane means "actively working"
|
|
2169
|
+
- Review workflow now supports auto-detect (no argument needed)
|
|
2170
|
+
|
|
2171
|
+
### 🐛 Fixed
|
|
2172
|
+
|
|
2173
|
+
- **Worktree path resolution**
|
|
2174
|
+
- Fixed `_find_first_planned_wp()` to work correctly in worktrees
|
|
2175
|
+
- Fixed `_find_first_for_review_wp()` to work correctly in worktrees
|
|
2176
|
+
- Auto-detect now finds WPs in worktree's kitty-specs/, not main repo
|
|
2177
|
+
|
|
2178
|
+
- **Legacy subdirectory cleanup**
|
|
2179
|
+
- Migrated features 007 and 010 from old subdirectory structure to flat structure
|
|
2180
|
+
- Moved 15 WP files from `tasks/done/phase-*/` to flat `tasks/`
|
|
2181
|
+
- All features now use proper flat structure with frontmatter-only lanes
|
|
2182
|
+
|
|
2183
|
+
## [0.9.4] - 2025-12-17
|
|
2184
|
+
|
|
2185
|
+
### 📚 Documentation & Validation
|
|
2186
|
+
|
|
2187
|
+
- **Prevent agent-created subdirectories in tasks/**
|
|
2188
|
+
- Added explicit warnings to tasks/README.md
|
|
2189
|
+
- Updated AGENTS.md with flat structure requirements
|
|
2190
|
+
- Updated /spec-kitty.tasks template to forbid subdirectories
|
|
2191
|
+
- Added runtime validation in check-prerequisites.sh
|
|
2192
|
+
- Blocks execution if phase-*, component-*, or any subdirectories found
|
|
2193
|
+
- Clear error messages with examples of correct vs wrong paths
|
|
2194
|
+
|
|
2195
|
+
This prevents Claude agents from creating organizational subdirectories like `tasks/phase-1/`, `tasks/backend/`, etc.
|
|
2196
|
+
|
|
2197
|
+
## [0.9.3] - 2025-12-17
|
|
2198
|
+
|
|
2199
|
+
### 🐛 Fixed
|
|
2200
|
+
|
|
2201
|
+
- **Critical symlink detection fix**
|
|
2202
|
+
- Now checks `is_symlink()` BEFORE `exists()` (exists() returns False for broken symlinks!)
|
|
2203
|
+
- Properly removes both working and broken symlinks from worktrees
|
|
2204
|
+
- Fixes remaining test failures in worktree cleanup migration
|
|
2205
|
+
- Handles all symlink scenarios correctly
|
|
2206
|
+
|
|
2207
|
+
This completes the fix for symlink removal in worktree cleanup.
|
|
2208
|
+
|
|
2209
|
+
## [0.9.2] - 2025-12-17
|
|
2210
|
+
|
|
2211
|
+
### 🐛 Fixed
|
|
2212
|
+
|
|
2213
|
+
- **Symlink handling in worktree cleanup**
|
|
2214
|
+
- Migration now properly detects and removes symlinks to command directories
|
|
2215
|
+
- Uses `unlink()` for symlinks instead of `shutil.rmtree()`
|
|
2216
|
+
- Fixes "Cannot call rmtree on a symbolic link" error during upgrade
|
|
2217
|
+
- Handles both symlinks and regular directories correctly
|
|
2218
|
+
|
|
2219
|
+
This fixes the upgrade failure when worktrees have symlinked agent command directories.
|
|
2220
|
+
|
|
2221
|
+
## [0.9.1] - 2025-12-17
|
|
2222
|
+
|
|
2223
|
+
### 🔧 Bug Fixes & Improvements
|
|
2224
|
+
|
|
2225
|
+
This release fixes critical issues found in v0.9.0 and adds version checking to prevent compatibility problems.
|
|
2226
|
+
|
|
2227
|
+
### 🆕 Added
|
|
2228
|
+
|
|
2229
|
+
- **Version compatibility checking**
|
|
2230
|
+
- CLI now checks for version mismatches between installed spec-kitty-cli and project version
|
|
2231
|
+
- Hard error with explicit instructions when versions don't match
|
|
2232
|
+
- Special critical warning for v0.9.0+ upgrade explaining breaking changes
|
|
2233
|
+
- Shows detailed before/after directory structure comparison
|
|
2234
|
+
- Version checks in all CLI commands and bash scripts
|
|
2235
|
+
- Graceful handling of legacy projects without metadata
|
|
2236
|
+
|
|
2237
|
+
- **Programmatic frontmatter management**
|
|
2238
|
+
- New `specify_cli.frontmatter` module for consistent YAML operations
|
|
2239
|
+
- Uses ruamel.yaml for absolute formatting consistency
|
|
2240
|
+
- No more manual YAML editing by LLMs or scripts
|
|
2241
|
+
- Prevents quoted vs unquoted value inconsistencies
|
|
2242
|
+
|
|
2243
|
+
### 🐛 Fixed
|
|
2244
|
+
|
|
2245
|
+
- **Migration improvements**
|
|
2246
|
+
- v0.9.0 migration now finds ALL markdown files (not just WP*.md)
|
|
2247
|
+
- Detects and removes empty lane subdirectories
|
|
2248
|
+
- Uses shutil.rmtree() for robust directory removal
|
|
2249
|
+
- Better detection of legacy format
|
|
2250
|
+
|
|
2251
|
+
- **Complete lane migration (v0.9.1)**
|
|
2252
|
+
- Migrates files missed by v0.9.0 (phase-*.md, task-*.md, etc.)
|
|
2253
|
+
- Removes ALL agent command directories from worktrees (.codex/prompts/, .gemini/commands/, etc.)
|
|
2254
|
+
- Removes .kittify/scripts/ from worktrees (inherit from main repo)
|
|
2255
|
+
- Normalizes all frontmatter to consistent YAML format
|
|
2256
|
+
- Fixes issue where worktrees had old command templates referencing deprecated scripts
|
|
2257
|
+
|
|
2258
|
+
- **Flat structure in new features**
|
|
2259
|
+
- Fixed create-new-feature.sh to create flat tasks/ directory (not subdirectories)
|
|
2260
|
+
- Updated README.md documentation to reflect v0.9.0+ structure
|
|
2261
|
+
- New features now work correctly with frontmatter-only lanes from day one
|
|
2262
|
+
|
|
2263
|
+
- **Lane validation**
|
|
2264
|
+
- tasks_cli.py update command now validates lane values
|
|
2265
|
+
- Rejects invalid lanes before processing
|
|
2266
|
+
- Clear error messages for invalid input
|
|
2267
|
+
|
|
2268
|
+
### 🔧 Changed
|
|
2269
|
+
|
|
2270
|
+
- Added `ruamel.yaml>=0.18.0` dependency for consistent YAML handling
|
|
2271
|
+
- Updated success messages to reflect flat structure
|
|
2272
|
+
|
|
2273
|
+
### 🚀 Migration
|
|
2274
|
+
|
|
2275
|
+
If you upgraded to v0.9.0 and still have issues, run `spec-kitty upgrade` again to apply v0.9.1 fixes:
|
|
2276
|
+
- Completes any remaining lane migrations
|
|
2277
|
+
- Cleans up worktree command directories
|
|
2278
|
+
- Normalizes all frontmatter for consistency
|
|
2279
|
+
|
|
2280
|
+
## [0.9.0] - 2025-12-17
|
|
2281
|
+
|
|
2282
|
+
### 🎯 Major Release: Frontmatter-Only Lane Management
|
|
2283
|
+
|
|
2284
|
+
This release fundamentally changes how Spec Kitty manages work package lanes, eliminating directory-based lane tracking in favor of a simpler, conflict-free frontmatter-only system.
|
|
2285
|
+
|
|
2286
|
+
### ⚠️ Breaking Changes
|
|
2287
|
+
|
|
2288
|
+
- **Lane system completely redesigned**
|
|
2289
|
+
- Work packages now live in a flat `kitty-specs/<feature>/tasks/` directory
|
|
2290
|
+
- Lane status determined **solely by `lane:` frontmatter field** (no more subdirectories)
|
|
2291
|
+
- Old system: `tasks/planned/WP01.md`, `tasks/doing/WP02.md` ❌
|
|
2292
|
+
- New system: `tasks/WP01.md` with `lane: "planned"` ✅
|
|
2293
|
+
|
|
2294
|
+
- **Command renamed: `move` → `update`**
|
|
2295
|
+
- Legacy `tasks_cli.py move` command removed
|
|
2296
|
+
- Use `tasks_cli.py update <feature> <WP> <lane>` instead
|
|
2297
|
+
- Semantic clarity: command updates metadata, doesn't move files
|
|
2298
|
+
- Legacy format detection: `update` command refuses to work on old directory-based structure
|
|
2299
|
+
|
|
2300
|
+
- **Direct frontmatter editing now supported**
|
|
2301
|
+
- You can now directly edit the `lane:` field in WP frontmatter
|
|
2302
|
+
- Previous "DO NOT EDIT" warnings removed from all templates
|
|
2303
|
+
- System recognizes manual lane changes immediately
|
|
2304
|
+
- No file movement required for lane transitions
|
|
2305
|
+
|
|
2306
|
+
### 🆕 Added
|
|
2307
|
+
|
|
2308
|
+
- **Migration command: `spec-kitty upgrade`**
|
|
2309
|
+
- Automatically migrates features from directory-based to frontmatter-only format
|
|
2310
|
+
- Preserves all lane assignments during migration
|
|
2311
|
+
- Idempotent: safe to run multiple times
|
|
2312
|
+
- Cleans up empty lane subdirectories after migration
|
|
2313
|
+
- Migrates both main repo and worktree features
|
|
2314
|
+
|
|
2315
|
+
- **Legacy format detection**
|
|
2316
|
+
- `is_legacy_format()` function detects old directory-based structure
|
|
2317
|
+
- CLI commands display helpful warnings when legacy format detected
|
|
2318
|
+
- Dashboard shows migration prompt for legacy features
|
|
2319
|
+
- Non-blocking: legacy features remain functional until migrated
|
|
2320
|
+
|
|
2321
|
+
- **Enhanced status command**
|
|
2322
|
+
- Better formatted output with lane grouping
|
|
2323
|
+
- Auto-detects feature from branch/worktree when not specified
|
|
2324
|
+
- Shows work packages organized by current lane
|
|
2325
|
+
- Works with both legacy and new formats
|
|
2326
|
+
|
|
2327
|
+
### 🔧 Changed
|
|
2328
|
+
|
|
2329
|
+
- **Work package location logic**
|
|
2330
|
+
- `locate_work_package()` now searches flat `tasks/` directory first
|
|
2331
|
+
- Falls back to legacy subdirectory search for backwards compatibility
|
|
2332
|
+
- Exact WP ID matching (WP04 won't match WP04b)
|
|
2333
|
+
|
|
2334
|
+
- **Lane extraction utilities**
|
|
2335
|
+
- New `get_lane_from_frontmatter()` function extracts lane from YAML
|
|
2336
|
+
- Defaults to "planned" when `lane:` field missing
|
|
2337
|
+
- Validates lane values against allowed set
|
|
2338
|
+
- Available in both `task_helpers.py` and `tasks_support.py`
|
|
2339
|
+
|
|
2340
|
+
- **Dashboard scanner updates**
|
|
2341
|
+
- Reads lane from frontmatter instead of directory location
|
|
2342
|
+
- Displays legacy format warnings
|
|
2343
|
+
- Works seamlessly with both formats during transition
|
|
2344
|
+
|
|
2345
|
+
- **Activity log behavior**
|
|
2346
|
+
- Lane transitions still append activity log entries
|
|
2347
|
+
- Captures agent, shell PID, and timestamp
|
|
2348
|
+
- No file movement logged (because no movement occurs)
|
|
2349
|
+
|
|
2350
|
+
### 📚 Documentation
|
|
2351
|
+
|
|
2352
|
+
- **Updated all templates**
|
|
2353
|
+
- `.kittify/templates/task-prompt-template.md` - Removed "DO NOT EDIT" warnings
|
|
2354
|
+
- `.kittify/templates/tasks-template.md` - Updated for flat structure
|
|
2355
|
+
- `.kittify/templates/AGENTS.md` - New lane management instructions
|
|
2356
|
+
- `tasks/README.md` - Rewritten for flat directory layout
|
|
2357
|
+
|
|
2358
|
+
- **Updated mission templates**
|
|
2359
|
+
- All mission-specific templates updated (software-dev, research)
|
|
2360
|
+
- Command templates updated (`implement.md`, `review.md`, `merge.md`)
|
|
2361
|
+
- Examples updated to show new workflow
|
|
2362
|
+
|
|
2363
|
+
- **Updated main documentation**
|
|
2364
|
+
- `README.md` - Updated quick start examples
|
|
2365
|
+
- `docs/quickstart.md` - New lane management workflow
|
|
2366
|
+
- `docs/multi-agent-orchestration.md` - Updated collaboration examples
|
|
2367
|
+
- All `examples/` updated with new commands
|
|
2368
|
+
|
|
2369
|
+
### 🧪 Testing
|
|
2370
|
+
|
|
2371
|
+
- 286 tests passing (0 failures)
|
|
2372
|
+
- New tests for frontmatter-only lane system
|
|
2373
|
+
- Legacy format detection tests
|
|
2374
|
+
- Migration command tests
|
|
2375
|
+
- Dual-format compatibility tests
|
|
2376
|
+
|
|
2377
|
+
### 🚀 Migration Guide
|
|
2378
|
+
|
|
2379
|
+
**For existing projects:**
|
|
2380
|
+
|
|
2381
|
+
1. **Back up your work** (commit changes, push to remote)
|
|
2382
|
+
2. **Run migration**: `spec-kitty upgrade`
|
|
2383
|
+
3. **Verify**: `spec-kitty status --feature <your-feature>`
|
|
2384
|
+
4. **Update workflows**: Replace `move` with `update` in scripts/docs
|
|
2385
|
+
|
|
2386
|
+
**Key benefits of upgrading:**
|
|
2387
|
+
|
|
2388
|
+
- ✅ No file conflicts during lane changes (especially in worktrees)
|
|
2389
|
+
- ✅ Direct editing of `lane:` field supported
|
|
2390
|
+
- ✅ Better multi-agent compatibility
|
|
2391
|
+
- ✅ Simpler mental model (one directory, not four)
|
|
2392
|
+
- ✅ Fewer git operations per lane change
|
|
2393
|
+
|
|
2394
|
+
**Legacy format still works** - You can continue using old directory structure until ready to migrate. All commands detect format automatically.
|
|
2395
|
+
|
|
2396
|
+
### 🐛 Fixed
|
|
2397
|
+
|
|
2398
|
+
- File conflicts during simultaneous lane changes by multiple agents
|
|
2399
|
+
- Git staging issues with lane transitions
|
|
2400
|
+
- Race conditions in worktree-based parallel development
|
|
2401
|
+
- Lane mismatch validation errors (no longer possible with frontmatter-only)
|
|
2402
|
+
|
|
2403
|
+
### 🔗 Related
|
|
2404
|
+
|
|
2405
|
+
- Feature implementation: `007-frontmatter-only-lane`
|
|
2406
|
+
- All 6 work packages completed and reviewed
|
|
2407
|
+
- Comprehensive test coverage added
|
|
2408
|
+
|
|
2409
|
+
---
|
|
2410
|
+
|
|
2411
|
+
## [0.8.2] - 2025-12-17
|
|
2412
|
+
|
|
2413
|
+
### Added
|
|
2414
|
+
|
|
2415
|
+
- **Task lane management documentation** - Added clear instructions to AGENTS.md and task templates warning agents never to manually edit the `lane:` YAML field
|
|
2416
|
+
- Lane is determined by directory location, not YAML field
|
|
2417
|
+
- Editing `lane:` without moving the file creates a mismatch that breaks the system
|
|
2418
|
+
- All templates now include YAML comment: `# DO NOT EDIT - use: workflow commands` (legacy note)
|
|
2419
|
+
- Added "Task Lane Management Rule" section to project AGENTS.md
|
|
2420
|
+
|
|
2421
|
+
## [0.8.1] - 2025-12-17
|
|
2422
|
+
|
|
2423
|
+
### Fixed
|
|
2424
|
+
|
|
2425
|
+
- **Work package move race conditions** - Multiple agents can now work on different WPs simultaneously without blocking each other
|
|
2426
|
+
- Conflict detection now only blocks on changes to the same WP, not unrelated WP files
|
|
2427
|
+
- Agents working on WP05 no longer block moves of WP04
|
|
2428
|
+
|
|
2429
|
+
- **Exact WP ID matching** - `WP04` no longer incorrectly matches `WP04b`
|
|
2430
|
+
- Changed from prefix matching to exact boundary matching
|
|
2431
|
+
- Pattern now requires WP ID to be followed by `-`, `_`, `.`, or end of filename
|
|
2432
|
+
|
|
2433
|
+
- **Cleanup no longer leaves staged deletions** - Stale copy cleanup uses filesystem delete instead of `git rm`
|
|
2434
|
+
- Prevents orphaned staged deletions from blocking subsequent operations
|
|
2435
|
+
- Automatically unstages any previously staged changes to cleaned files
|
|
2436
|
+
|
|
2437
|
+
## [0.8.0] - 2025-12-15
|
|
2438
|
+
|
|
2439
|
+
### Breaking Changes
|
|
2440
|
+
|
|
2441
|
+
- **Mission system refactored to per-feature model**
|
|
2442
|
+
- Missions are now selected during `/spec-kitty.specify` instead of `spec-kitty init`
|
|
2443
|
+
- Each feature stores its mission in `meta.json` (field: `"mission": "software-dev"`)
|
|
2444
|
+
- `.kittify/active-mission` symlink/file is no longer used
|
|
2445
|
+
- Run `spec-kitty upgrade` to clean up existing projects
|
|
2446
|
+
|
|
2447
|
+
- **Removed commands**
|
|
2448
|
+
- `spec-kitty mission switch` - Missions are now per-feature, not per-project
|
|
2449
|
+
- Running this command now shows a helpful error message explaining the new workflow
|
|
2450
|
+
|
|
2451
|
+
- **Removed flags**
|
|
2452
|
+
- `--mission` flag from `spec-kitty init` - Use `/spec-kitty.specify` instead
|
|
2453
|
+
- Flag is hidden but shows deprecation warning if used
|
|
2454
|
+
|
|
2455
|
+
### Added
|
|
2456
|
+
|
|
2457
|
+
- **Mission inference during `/spec-kitty.specify`** - LLM analyzes feature description and suggests appropriate mission:
|
|
2458
|
+
- "Build a REST API" → suggests `software-dev`
|
|
2459
|
+
- "Research best practices" → suggests `research`
|
|
2460
|
+
- User confirms or overrides the suggestion
|
|
2461
|
+
- Explicit `--mission` flag bypasses inference
|
|
2462
|
+
|
|
2463
|
+
- **Per-feature mission storage** - Selected mission stored in feature's `meta.json`:
|
|
2464
|
+
- All downstream commands read mission from feature context
|
|
2465
|
+
- Legacy features without mission field default to `software-dev`
|
|
2466
|
+
|
|
2467
|
+
- **Mission discovery** - New `discover_missions()` function returns all available missions with source indicators
|
|
2468
|
+
|
|
2469
|
+
- **Updated `spec-kitty mission list`** - Shows source column (project/built-in) for each mission
|
|
2470
|
+
|
|
2471
|
+
- **Migration for v0.8.0** - `spec-kitty upgrade` removes obsolete `.kittify/active-mission` file
|
|
2472
|
+
|
|
2473
|
+
- **AGENTS.md worktree fix** - New worktrees get AGENTS.md symlink, and `spec-kitty upgrade` fixes existing worktrees
|
|
2474
|
+
|
|
2475
|
+
### Changed
|
|
2476
|
+
|
|
2477
|
+
- All downstream commands (`/spec-kitty.plan`, `/spec-kitty.tasks`, `/spec-kitty.implement`, `/spec-kitty.review`, `/spec-kitty.accept`) now read mission from feature's `meta.json`
|
|
2478
|
+
- `create-new-feature.sh` accepts `--mission <key>` parameter to set mission in meta.json
|
|
2479
|
+
- Common bash/PowerShell scripts updated to resolve mission from feature directory
|
|
2480
|
+
- `spec-kitty mission current` shows current default mission (for informational purposes)
|
|
2481
|
+
- Dashboard template now includes dynamic AGENTS.md path discovery instructions
|
|
2482
|
+
|
|
2483
|
+
### Deprecated
|
|
2484
|
+
|
|
2485
|
+
- `set_active_mission()` function - Shows deprecation warning, will be removed in future version
|
|
2486
|
+
|
|
2487
|
+
### Migration Guide
|
|
2488
|
+
|
|
2489
|
+
1. Run `spec-kitty upgrade` to remove `.kittify/active-mission`
|
|
2490
|
+
2. Existing features without `mission` field will use `software-dev` by default
|
|
2491
|
+
3. New features will have mission set during `/spec-kitty.specify`
|
|
2492
|
+
|
|
2493
|
+
## [0.7.4] - 2025-12-14
|
|
2494
|
+
|
|
2495
|
+
### Added
|
|
2496
|
+
|
|
2497
|
+
- **Script Update Migration** – `spec-kitty upgrade` now updates project scripts:
|
|
2498
|
+
- Copies latest `create-new-feature.sh` from package to project
|
|
2499
|
+
- Fixes worktree feature numbering bug in existing projects
|
|
2500
|
+
- Previously, projects kept old scripts from when they were initialized
|
|
2501
|
+
|
|
2502
|
+
## [0.7.3] - 2025-12-14
|
|
2503
|
+
|
|
2504
|
+
### Fixed
|
|
2505
|
+
|
|
2506
|
+
- **Duplicate Feature Numbers with Worktrees** – Script now scans both `kitty-specs/` AND `.worktrees/` for existing feature numbers:
|
|
2507
|
+
- Previously only scanned `kitty-specs/` which was empty when using worktrees
|
|
2508
|
+
- This caused new features to get `001` even when `001-*` worktree already existed
|
|
2509
|
+
- Now correctly finds highest number across both locations
|
|
2510
|
+
|
|
2511
|
+
## [0.7.2] - 2025-12-14
|
|
2512
|
+
|
|
2513
|
+
### Fixed
|
|
2514
|
+
|
|
2515
|
+
- **Duplicate Slash Commands in Worktrees (Corrected)** – Fixed the fix from v0.7.1:
|
|
2516
|
+
- v0.7.1 incorrectly removed commands from main repo (broke `/` commands there)
|
|
2517
|
+
- v0.7.2 removes commands from **worktrees** instead (they inherit from main repo)
|
|
2518
|
+
- Claude Code traverses UP, so worktrees find main repo's `.claude/commands/`
|
|
2519
|
+
- Main repo keeps commands, worktrees don't need their own copy
|
|
2520
|
+
|
|
2521
|
+
## [0.7.1] - 2025-12-14 [YANKED]
|
|
2522
|
+
|
|
2523
|
+
### Fixed
|
|
2524
|
+
|
|
2525
|
+
- ~~Duplicate Slash Commands in Worktrees~~ – **Incorrect fix, replaced by v0.7.2**
|
|
2526
|
+
|
|
2527
|
+
## [0.7.0] - 2025-12-14
|
|
2528
|
+
|
|
2529
|
+
### Added
|
|
2530
|
+
|
|
2531
|
+
- **`spec-kitty upgrade` Command** – Automatically migrate existing projects to current version:
|
|
2532
|
+
- Detects project version via metadata or directory structure heuristics
|
|
2533
|
+
- Applies all necessary migrations in order (0.2.0 → 0.6.7)
|
|
2534
|
+
- Auto-upgrades worktrees alongside main project
|
|
2535
|
+
- Supports `--dry-run`, `--verbose`, `--json`, `--target`, `--no-worktrees` options
|
|
2536
|
+
- Tracks applied migrations in `.kittify/metadata.yaml`
|
|
2537
|
+
- Idempotent - safe to run multiple times
|
|
2538
|
+
|
|
2539
|
+
- **Migration System** – Five automatic migrations for project structure updates:
|
|
2540
|
+
- `0.2.0`: `.specify/` → `.kittify/` directory rename
|
|
2541
|
+
- `0.4.8`: Add all 12 agent directories to `.gitignore`
|
|
2542
|
+
- `0.5.0`: Install encoding validation git hooks
|
|
2543
|
+
- `0.6.5`: `commands/` → `command-templates/` rename
|
|
2544
|
+
- `0.6.7`: Ensure software-dev and research missions are present
|
|
2545
|
+
|
|
2546
|
+
- **Broken Mission Detection** – `VersionDetector.detect_broken_mission_system()` identifies corrupted mission.yaml files
|
|
2547
|
+
|
|
2548
|
+
- **Migration Registry Validation** – Duplicate migration IDs and missing required fields now raise `ValueError`
|
|
2549
|
+
|
|
2550
|
+
### Fixed
|
|
2551
|
+
|
|
2552
|
+
- **Test Timeout in Dashboard CLI Tests** – Reduced port cleanup from 763 ports to 8 specific test ports
|
|
2553
|
+
- **Playwright Window Handling** – Tests now open new windows (not tabs) and close properly on exit
|
|
2554
|
+
|
|
2555
|
+
## [0.6.7] - 2025-12-13
|
|
2556
|
+
|
|
2557
|
+
### Fixed
|
|
2558
|
+
|
|
2559
|
+
- **Missing software-dev Mission in PyPI Package** – Fixed build configuration to include all missions:
|
|
2560
|
+
- Added explicit sdist include patterns to pyproject.toml
|
|
2561
|
+
- The `software-dev` mission was missing from v0.6.5 and v0.6.6 wheel builds
|
|
2562
|
+
- Root cause: `force-include` only applied to wheel target, not sdist (wheel was built from sdist)
|
|
2563
|
+
- Now both `software-dev` and `research` missions are correctly packaged
|
|
2564
|
+
|
|
2565
|
+
## [0.6.6] - 2025-12-13
|
|
2566
|
+
|
|
2567
|
+
### Fixed
|
|
2568
|
+
|
|
2569
|
+
- **Test Suite Updated for 12 Agent Directories** – All tests now expect 12 agents (added `.github/copilot/`):
|
|
2570
|
+
- Updated `test_init_flow.py`, `test_gitignore_management.py`, `test_gitignore_manager_simple.py`
|
|
2571
|
+
- Updated `tests/unit/test_gitignore_manager.py` to expect 12 agents
|
|
2572
|
+
- Fixed template manager tests to use new `.kittify/` source paths
|
|
2573
|
+
|
|
2574
|
+
### Changed
|
|
2575
|
+
|
|
2576
|
+
- **Template Source Paths** – Tests now use correct `.kittify/templates/command-templates/` paths
|
|
2577
|
+
|
|
2578
|
+
## [0.6.5] - 2025-12-13
|
|
2579
|
+
|
|
2580
|
+
### Added
|
|
2581
|
+
|
|
2582
|
+
- **Pre-commit Git Hooks** – Automatic protection against committing agent directories:
|
|
2583
|
+
- Blocks commits containing `.claude/`, `.codex/`, `.gemini/`, etc.
|
|
2584
|
+
- Warns about `.github/copilot/` (nested in `.github/` which is usually committed)
|
|
2585
|
+
- Installed automatically during `spec-kitty init`
|
|
2586
|
+
|
|
2587
|
+
- **GitHub Copilot Directory Protection** – Added `.github/copilot/` as 12th protected agent directory
|
|
2588
|
+
|
|
2589
|
+
- **.claudeignore Generation** – Optimizes Claude Code token usage by excluding templates
|
|
2590
|
+
|
|
2591
|
+
### Fixed
|
|
2592
|
+
|
|
2593
|
+
- **Worktree Constitution Symlinks** – Feature worktrees now share constitution via symlink
|
|
2594
|
+
- **Git Hooks Installation Timing** – Hooks now install after `.git/` is created
|
|
2595
|
+
|
|
2596
|
+
## [0.6.4] - 2025-11-26
|
|
2597
|
+
|
|
2598
|
+
### Fixed
|
|
2599
|
+
|
|
2600
|
+
- **Agent Commands Missing in Worktrees** – Slash commands now work in all feature worktrees for all AI agents:
|
|
2601
|
+
- `create-new-feature.sh` now symlinks agent command directories from main repo to worktrees
|
|
2602
|
+
- Supports all 12 agent types: Claude, Gemini, Copilot, Cursor, Qwen, OpenCode, Windsurf, Codex, KiloCode, Auggie, Roo, Amazon Q
|
|
2603
|
+
- Fixes `/spec-kitty.research`, `/spec-kitty.plan`, and all other slash commands in worktrees
|
|
2604
|
+
- Existing worktrees get symlinks added when reused (backward compatible)
|
|
2605
|
+
- Root cause: worktrees are separate working directories that don't share `.claude/commands/` etc.
|
|
2606
|
+
|
|
2607
|
+
## [0.6.3] - 2025-11-25
|
|
2608
|
+
|
|
2609
|
+
### Fixed
|
|
2610
|
+
|
|
2611
|
+
- **Mission Directory Not Copied During Init** – Projects initialized with `spec-kitty init` now correctly receive mission templates:
|
|
2612
|
+
- Fixed `copy_specify_base_from_package()` to look at correct path `specify_cli/missions` (matching pyproject.toml)
|
|
2613
|
+
- Previously looked at wrong paths: `.kittify/missions` and `template_data/missions`
|
|
2614
|
+
- `software-dev` mission was missing from initialized projects, breaking `/spec-kitty.plan` and other commands
|
|
2615
|
+
- Root cause: pyproject.toml packages missions to `specify_cli/missions` but code looked elsewhere
|
|
2616
|
+
|
|
2617
|
+
## [0.6.2] - 2025-11-18
|
|
2618
|
+
|
|
2619
|
+
### Fixed
|
|
2620
|
+
|
|
2621
|
+
- **PowerShell Wrapper Parameter Handling** – Windows lane transitions now work correctly:
|
|
2622
|
+
- Fixed legacy `tasks-move-to-lane.ps1` to properly parse named PowerShell parameters
|
|
2623
|
+
- Translates Spec Kitty's named params (`-FeatureName`, `-TaskId`, `-TargetLane`) to `tasks_cli.py` positional args
|
|
2624
|
+
- Resolves `unrecognized arguments` error that broke `/spec-kitty.review` on Windows
|
|
2625
|
+
- Maintains backward compatibility with positional argument usage
|
|
2626
|
+
- Fixes #34
|
|
2627
|
+
|
|
2628
|
+
## [0.6.1] - 2025-11-18
|
|
2629
|
+
|
|
2630
|
+
### Fixed
|
|
2631
|
+
|
|
2632
|
+
- **Untracked Task File Moves** – Task move workflow now handles untracked files:
|
|
2633
|
+
- Added `is_file_tracked()` helper to detect if file is in git index
|
|
2634
|
+
- Move command automatically stages untracked source files before moving
|
|
2635
|
+
- Fixes `/spec-kitty.implement` failures when `/spec-kitty.tasks` doesn't commit
|
|
2636
|
+
- Provides clear feedback: `[spec-kitty] Added untracked file: ...`
|
|
2637
|
+
- Defensive fix works with both existing untracked files and future workflows
|
|
2638
|
+
|
|
2639
|
+
## [0.6.0] - 2025-11-16
|
|
2640
|
+
|
|
2641
|
+
### Fixed
|
|
2642
|
+
|
|
2643
|
+
- **Dashboard Constitution Tracking** – Feature-level constitution.md files now tracked and displayed:
|
|
2644
|
+
- Added constitution to scanner artifact list
|
|
2645
|
+
- Constitution appears in overview with ⚖️ icon
|
|
2646
|
+
- Frontend properly detects constitution.exists property
|
|
2647
|
+
|
|
2648
|
+
- **Dashboard Modification Detection** – Dashboard now detects file modifications, not just existence:
|
|
2649
|
+
- Scanner returns {exists, mtime, size} for each artifact instead of boolean
|
|
2650
|
+
- Frontend updated to use .exists property with optional chaining
|
|
2651
|
+
- Overview auto-reloads when artifacts change during polling
|
|
2652
|
+
- No manual refresh required to see new/modified files
|
|
2653
|
+
|
|
2654
|
+
- **Dashboard Project Constitution Endpoint** – Project constitution now loads in dashboard:
|
|
2655
|
+
- Added /api/constitution endpoint to serve .kittify/memory/constitution.md
|
|
2656
|
+
- Sidebar Constitution link now displays file content instead of "not found"
|
|
2657
|
+
- Separate from feature-level constitution tracking
|
|
2658
|
+
|
|
2659
|
+
- **Work Package Conflict Detection Too Strict** – Moving WP no longer blocked by unrelated WP changes:
|
|
2660
|
+
- Conflict detection now scoped to same work package ID only
|
|
2661
|
+
- Moving WP04 no longer fails if WP06/WP08 have uncommitted changes
|
|
2662
|
+
- Reduces false positives from ~90% to ~5%
|
|
2663
|
+
- Agents don't need --force for unrelated work packages
|
|
2664
|
+
- Still catches real conflicts (same WP in multiple lanes)
|
|
2665
|
+
|
|
2666
|
+
- **Accept Command Over-Questioning** – Acceptance workflow now auto-detects instead of asking:
|
|
2667
|
+
- Feature slug auto-detected from git branch
|
|
2668
|
+
- Mode defaults to 'local' (most common)
|
|
2669
|
+
- Validation commands searched in git log
|
|
2670
|
+
- Only asks user if auto-detection fails
|
|
2671
|
+
- Reduces user questions from 3-4 to 0 in typical case
|
|
2672
|
+
|
|
2673
|
+
- **Init Command Blocking on Optional Tools** – Project init no longer fails on missing agent tools:
|
|
2674
|
+
- Changed from red error + exit(1) to yellow warning + continue
|
|
2675
|
+
- Gemini CLI and other tools are optional
|
|
2676
|
+
- Users can install tools later without re-init
|
|
2677
|
+
- --ignore-agent-tools flag still available but rarely needed
|
|
2678
|
+
|
|
2679
|
+
- **Encoding Normalization Incomplete** – Unicode smart quotes now properly normalized to ASCII:
|
|
2680
|
+
- Added character mapping for 12 common Unicode characters
|
|
2681
|
+
- Smart quotes (U+2018/U+2019) → ASCII apostrophe
|
|
2682
|
+
- Em/en dashes → hyphens
|
|
2683
|
+
- Ellipsis, bullets, nbsp → ASCII equivalents
|
|
2684
|
+
- --normalize-encoding now produces true ASCII output
|
|
2685
|
+
|
|
2686
|
+
### Changed
|
|
2687
|
+
|
|
2688
|
+
- **Mission Display Simplified** – Reduced verbose mission card to single line:
|
|
2689
|
+
- Removed domain label, version number, path display
|
|
2690
|
+
- Removed redundant refresh button (auto-updates every second)
|
|
2691
|
+
- Changed from card layout to inline text: "Mission: {name}"
|
|
2692
|
+
- Cleaner, less cluttered header
|
|
2693
|
+
|
|
2694
|
+
### Added
|
|
2695
|
+
|
|
2696
|
+
- **Mission System Architecture** – Complete mission-based workflow system (feature 005):
|
|
2697
|
+
- Guards module for pre-flight validation
|
|
2698
|
+
- Pydantic mission schema validation
|
|
2699
|
+
- Mission CLI commands (list, current, switch, info)
|
|
2700
|
+
- Research mission templates and citation validators
|
|
2701
|
+
- Path convention validation
|
|
2702
|
+
- Dashboard mission display
|
|
2703
|
+
- Comprehensive integration tests
|
|
2704
|
+
|
|
2705
|
+
## [0.5.3] - 2025-11-15
|
|
2706
|
+
|
|
2707
|
+
### Fixed
|
|
2708
|
+
|
|
2709
|
+
- **Dashboard Orphaned Process Cleanup** – Fixed dashboard startup failures caused by orphaned test processes:
|
|
2710
|
+
- Dashboard now detects and cleans up orphaned processes when health check fails due to project path mismatch
|
|
2711
|
+
- Added retry logic after successful orphan cleanup
|
|
2712
|
+
- Orphan cleanup triggers on health check failure (not just port exhaustion)
|
|
2713
|
+
- Eliminates false "Unable to start dashboard" errors when orphaned test dashboards occupy ports
|
|
2714
|
+
|
|
2715
|
+
- **Dashboard Subprocess Import Failure** – Fixed ModuleNotFoundError in complex Python environments:
|
|
2716
|
+
- Dashboard subprocess now always inserts spec-kitty path at sys.path[0]
|
|
2717
|
+
- Fixes import failures when user's PYTHONPATH or .pth files contain spec-kitty path at lower priority
|
|
2718
|
+
- Ensures correct spec-kitty installation takes precedence over environment paths
|
|
2719
|
+
- Resolves "ModuleNotFoundError: No module named 'specify_cli.dashboard'" in subprocesses
|
|
2720
|
+
|
|
2721
|
+
### Changed
|
|
2722
|
+
|
|
2723
|
+
- **Test Suite Cleanup Improvements** – Enhanced dashboard test cleanup to prevent orphaned processes:
|
|
2724
|
+
- Module-level cleanup fixture kills all orphaned dashboards before and after test runs
|
|
2725
|
+
- Expanded cleanup port range from 9992-9999 to 9237-10000 (covers default and test ranges)
|
|
2726
|
+
- Added `kill_all_spec_kitty_dashboards()` helper using pgrep/pkill
|
|
2727
|
+
- Two-tier cleanup strategy: module-level (all processes) + function-level (specific ports)
|
|
2728
|
+
|
|
2729
|
+
### Added
|
|
2730
|
+
|
|
2731
|
+
- **Testing Guidelines for Agents** (`docs/testing-guidelines.md`) – Comprehensive testing best practices:
|
|
2732
|
+
- Required cleanup patterns for dashboard tests (pytest fixtures, autouse fixtures)
|
|
2733
|
+
- Anti-patterns to avoid (cleanup in test body, shared directories, no exception handling)
|
|
2734
|
+
- Impact analysis of orphaned processes on local development and CI/CD
|
|
2735
|
+
- Examples of proper test isolation and resource management
|
|
2736
|
+
|
|
2737
|
+
### Changed
|
|
2738
|
+
|
|
2739
|
+
- **Command Consolidation** – Merged `spec-kitty check` and `spec-kitty diagnostics` into `spec-kitty verify-setup`:
|
|
2740
|
+
- Removed redundant `spec-kitty check` and `spec-kitty diagnostics` commands
|
|
2741
|
+
- Tool checking now integrated into `verify-setup` with `--check-tools` flag (default: enabled)
|
|
2742
|
+
- Diagnostics mode with dashboard health available via `--diagnostics` flag
|
|
2743
|
+
- Removed ASCII banner from verify-setup for cleaner output
|
|
2744
|
+
- Simplifies CLI interface - single command for all environment verification
|
|
2745
|
+
- JSON output includes tool availability when `--check-tools` is enabled
|
|
2746
|
+
|
|
2747
|
+
### Removed
|
|
2748
|
+
|
|
2749
|
+
- **`spec-kitty check` command** – Functionality moved to `verify-setup --check-tools`
|
|
2750
|
+
- Migration: Use `spec-kitty verify-setup` instead of `spec-kitty check`
|
|
2751
|
+
- Tool checking enabled by default, disable with `--check-tools=false`
|
|
2752
|
+
- **`spec-kitty diagnostics` command** – Functionality moved to `verify-setup --diagnostics`
|
|
2753
|
+
- Migration: Use `spec-kitty verify-setup --diagnostics` instead of `spec-kitty diagnostics`
|
|
2754
|
+
- Shows Rich panel-based output with dashboard health, observations, and issues
|
|
2755
|
+
|
|
2756
|
+
## [0.5.2] - 2025-11-14
|
|
2757
|
+
|
|
2758
|
+
### Fixed
|
|
2759
|
+
|
|
2760
|
+
- **Dashboard Startup Race Condition** – Fixed root cause of dashboard health check timing out prematurely:
|
|
2761
|
+
- Increased health check timeout from 10 to 20 seconds with exponential backoff
|
|
2762
|
+
- Retry pattern: 10×100ms, 40×250ms, 20×500ms for adaptive performance
|
|
2763
|
+
- Removed workaround fallback check that was masking the real issue
|
|
2764
|
+
- Eliminated false "Unable to start dashboard" errors on slower systems
|
|
2765
|
+
|
|
2766
|
+
### Changed
|
|
2767
|
+
|
|
2768
|
+
- **Dashboard Health Check Strategy** – Improved reliability with exponential backoff:
|
|
2769
|
+
- Quick initial checks (100ms) for fast systems
|
|
2770
|
+
- Gradual slowdown (250ms then 500ms) for slower systems
|
|
2771
|
+
- Total timeout increased to ~20 seconds for adequate startup time
|
|
2772
|
+
- Cleaner error handling without port-scanning fallback
|
|
2773
|
+
|
|
2774
|
+
### Added
|
|
2775
|
+
|
|
2776
|
+
- **Symlinked kitty-specs Test Coverage** – New test validates dashboard works with worktree structure:
|
|
2777
|
+
- Tests scenario from bug report (symlinked `kitty-specs/` to `.worktrees/`)
|
|
2778
|
+
- Ensures dashboard starts correctly with symlinked directories
|
|
2779
|
+
- Prevents regression of false error reporting
|
|
2780
|
+
|
|
2781
|
+
## [0.5.1] - 2025-11-14
|
|
2782
|
+
|
|
2783
|
+
### Added
|
|
2784
|
+
|
|
2785
|
+
- **Task Metadata Validation Guardrail** – Prevents workflow failures when file locations don't match frontmatter:
|
|
2786
|
+
- Auto-detects lane mismatches (file in `for_review/` but `lane: "planned"`)
|
|
2787
|
+
- CLI command: `spec-kitty validate-tasks --fix`
|
|
2788
|
+
- Integrated into `/spec-kitty.review` workflow (auto-runs before review)
|
|
2789
|
+
- Adds activity log entries documenting all repairs
|
|
2790
|
+
- Validates required fields (work_package_id, lane) and formats
|
|
2791
|
+
- **Task Metadata Validation Module** (`src/specify_cli/task_metadata_validation.py`) – Core validation:
|
|
2792
|
+
- `detect_lane_mismatch()` - Finds directory/frontmatter inconsistencies
|
|
2793
|
+
- `repair_lane_mismatch()` - Auto-fixes with audit trail
|
|
2794
|
+
- `validate_task_metadata()` - Comprehensive field validation
|
|
2795
|
+
- `scan_all_tasks_for_mismatches()` - Feature-wide scanning
|
|
2796
|
+
|
|
2797
|
+
### Changed
|
|
2798
|
+
|
|
2799
|
+
- **Version Reading** – Now reads dynamically from package metadata instead of hardcoded value:
|
|
2800
|
+
- Uses `importlib.metadata.version()` to get actual installed version
|
|
2801
|
+
- `spec-kitty --version` always shows correct version
|
|
2802
|
+
- No manual updates needed in `__init__.py`
|
|
2803
|
+
- **Review Workflow** – Added automatic task metadata validation before review:
|
|
2804
|
+
- Runs `spec-kitty validate-tasks --fix` automatically
|
|
2805
|
+
- Prevents agents getting stuck on lane mismatches
|
|
2806
|
+
- Documented in `.claude/commands/spec-kitty.review.md`
|
|
2807
|
+
|
|
2808
|
+
### Fixed
|
|
2809
|
+
|
|
2810
|
+
- **Dashboard CLI False Error** – CLI no longer reports "Unable to start dashboard" when dashboard actually started successfully. Added fallback verification to check if dashboard is accessible before reporting failure. Handles race condition where health check times out but server is functional.
|
|
2811
|
+
- **Review Workflow Blocking** – Review command no longer fails when file locations don't match frontmatter metadata. Auto-validation repairs inconsistencies before review.
|
|
2812
|
+
- **Hardcoded Version** – `spec-kitty --version` now reads from package metadata, always shows correct installed version.
|
|
2813
|
+
|
|
2814
|
+
### Documentation
|
|
2815
|
+
|
|
2816
|
+
- **task-metadata-validation.md** (350 lines) – Auto-repair workflow:
|
|
2817
|
+
- Lane mismatch detection and repair
|
|
2818
|
+
- CLI usage examples
|
|
2819
|
+
- Python API reference
|
|
2820
|
+
- Integration with review workflow
|
|
2821
|
+
|
|
2822
|
+
### Testing
|
|
2823
|
+
|
|
2824
|
+
- Added version detection tests to prevent future hardcoded version bugs
|
|
2825
|
+
- Task metadata validation tested with real frontmatter/directory mismatches
|
|
2826
|
+
- All tests passing (13/13)
|
|
2827
|
+
|
|
2828
|
+
## [0.5.0] - 2025-11-13
|
|
2829
|
+
|
|
2830
|
+
### Added
|
|
2831
|
+
|
|
2832
|
+
- **Encoding Validation Guardrail** – Comprehensive 5-layer defense system to prevent Windows-1252 characters from crashing the dashboard:
|
|
2833
|
+
- **Layer 1**: Dashboard auto-fixes encoding errors on read (server-side resilience)
|
|
2834
|
+
- **Layer 2**: Character sanitization module with 15+ problematic character mappings
|
|
2835
|
+
- **Layer 3**: CLI command `spec-kitty validate-encoding` with `--fix` flag
|
|
2836
|
+
- **Layer 4**: Pre-commit hook that blocks commits with encoding errors
|
|
2837
|
+
- **Layer 5**: Enhanced AGENTS.md with real crash examples and character blacklist
|
|
2838
|
+
- **Plan Validation Guardrail** – Prevents agents from skipping the planning phase:
|
|
2839
|
+
- Detects 11 template markers in plan.md (threshold: 5+ markers = unfilled)
|
|
2840
|
+
- Blocks `/spec-kitty.research` command when plan is unfilled
|
|
2841
|
+
- Blocks `/spec-kitty.tasks` via check-prerequisites.sh
|
|
2842
|
+
- Clear error messages with remediation steps
|
|
2843
|
+
- **Character Sanitization Module** (`src/specify_cli/text_sanitization.py`) – Core module for encoding fixes:
|
|
2844
|
+
- Maps smart quotes (`' ' " "`) → ASCII (`' "`)
|
|
2845
|
+
- Maps plus-minus (`±`) → `+/-`, multiplication (`×`) → `x`, degree (`°`) → `degrees`
|
|
2846
|
+
- Supports dry-run mode and automatic backup creation
|
|
2847
|
+
- Directory-wide sanitization with glob patterns
|
|
2848
|
+
- **Plan Validation Module** (`src/specify_cli/plan_validation.py`) – Template detection:
|
|
2849
|
+
- Configurable threshold (default: 5 markers)
|
|
2850
|
+
- Line-precise error reporting
|
|
2851
|
+
- Strict and lenient validation modes
|
|
2852
|
+
|
|
2853
|
+
### Changed
|
|
2854
|
+
|
|
2855
|
+
- **Version Reading** – Now reads dynamically from package metadata instead of hardcoded value:
|
|
2856
|
+
- Uses `importlib.metadata.version()` to get actual installed version
|
|
2857
|
+
- `spec-kitty --version` always shows correct version
|
|
2858
|
+
- No manual updates needed in `__init__.py`
|
|
2859
|
+
- **Review Workflow** – Added automatic task metadata validation before review:
|
|
2860
|
+
- Runs `spec-kitty validate-tasks --fix` automatically
|
|
2861
|
+
- Prevents agents getting stuck on lane mismatches
|
|
2862
|
+
- Documented in `.claude/commands/spec-kitty.review.md`
|
|
2863
|
+
- **Dashboard Scanner** – Now resilient to encoding errors:
|
|
2864
|
+
- Auto-fixes files on read with backup creation
|
|
2865
|
+
- Creates error cards instead of crashing on bad files
|
|
2866
|
+
- Logs encoding issues with clear error messages
|
|
2867
|
+
- **Research Command** – Added plan validation gate before allowing research artifact creation
|
|
2868
|
+
- **Prerequisites Check Script** – Added bash-based plan validation (35 lines)
|
|
2869
|
+
- **AGENTS.md Template** – Enhanced with encoding warnings:
|
|
2870
|
+
- Real crash examples from production
|
|
2871
|
+
- Explicit character blacklist with Unicode codepoints
|
|
2872
|
+
- Auto-fix workflow documentation
|
|
2873
|
+
|
|
2874
|
+
### Fixed
|
|
2875
|
+
|
|
2876
|
+
- **Dashboard Blank Page Issue** – Dashboard no longer crashes when markdown files contain Windows-1252 smart quotes, ±, ×, ° symbols. Auto-fix sanitizes files on first read.
|
|
2877
|
+
- **Agents Skipping Planning** – Research and tasks commands now blocked until plan.md is properly filled out (not just template).
|
|
2878
|
+
- **Review Workflow Blocking** – Review command no longer fails when file locations don't match frontmatter metadata. Auto-validation repairs inconsistencies before review.
|
|
2879
|
+
- **Hardcoded Version** – `spec-kitty --version` now reads from package metadata, always shows correct installed version.
|
|
2880
|
+
|
|
2881
|
+
### Documentation
|
|
2882
|
+
|
|
2883
|
+
- **encoding-validation.md** (554 lines) – Complete guide covering:
|
|
2884
|
+
- Problem description with real examples
|
|
2885
|
+
- 5-layer architecture explanation
|
|
2886
|
+
- Testing procedures and troubleshooting
|
|
2887
|
+
- Migration guide for existing projects
|
|
2888
|
+
- API reference and performance considerations
|
|
2889
|
+
- **plan-validation-guardrail.md** (202 lines) – Implementation details:
|
|
2890
|
+
- Problem and solution overview
|
|
2891
|
+
- Configuration instructions
|
|
2892
|
+
- Testing procedures
|
|
2893
|
+
- Benefits and future enhancements
|
|
2894
|
+
- **task-metadata-validation.md** (350 lines) – Auto-repair workflow:
|
|
2895
|
+
- Lane mismatch detection and repair
|
|
2896
|
+
- CLI usage examples
|
|
2897
|
+
- Python API reference
|
|
2898
|
+
- Integration with review workflow
|
|
2899
|
+
- **TESTING_REQUIREMENTS_ENCODING_AND_PLAN_VALIDATION.md** (1056 lines) – Functional test specifications:
|
|
2900
|
+
- 35+ test cases across 6 test suites
|
|
2901
|
+
- Coverage targets (85-95%)
|
|
2902
|
+
- Performance requirements
|
|
2903
|
+
- Edge case testing requirements
|
|
2904
|
+
|
|
2905
|
+
### Testing
|
|
2906
|
+
|
|
2907
|
+
- Added 7 unit tests for plan validation (all passing)
|
|
2908
|
+
- Verified on real project (battleship): fixed 9 files with encoding issues
|
|
2909
|
+
- Dashboard now loads successfully after encoding fixes
|
|
2910
|
+
- Character mapping tests: smart quotes, ±, ×, ° all converted correctly
|
|
2911
|
+
|
|
2912
|
+
## [0.4.13] - 2025-11-13
|
|
2913
|
+
|
|
2914
|
+
### Fixed
|
|
2915
|
+
|
|
2916
|
+
- **CRITICAL: verify-setup ImportError (Issue #28)** – Fixed ImportError in `verify-setup` command caused by incorrect import statement in `verify_enhanced.py`. Changed `from . import detect_feature_slug, AcceptanceError` to `from .acceptance import detect_feature_slug, AcceptanceError`. This was a blocking bug that prevented users from running the diagnostic command.
|
|
2917
|
+
|
|
2918
|
+
## [0.4.12] - 2025-11-13
|
|
2919
|
+
|
|
2920
|
+
### Added
|
|
2921
|
+
|
|
2922
|
+
- **Version Flag** – Added `--version` and `-v` flags to display installed spec-kitty-cli version.
|
|
2923
|
+
- **Dashboard Health Diagnostics** – Enhanced `spec-kitty diagnostics` to detect dashboard startup failures, test if dashboard can start, and report specific errors. Now catches issues like corrupted files, health check timeouts, and background process failures.
|
|
2924
|
+
|
|
2925
|
+
### Changed
|
|
2926
|
+
|
|
2927
|
+
- **Diagnostics Output** – Added Dashboard Health panel showing startup test results, PID tracking status, and specific failure reasons.
|
|
2928
|
+
|
|
2929
|
+
## [0.4.11] - 2025-11-13
|
|
2930
|
+
|
|
2931
|
+
### Fixed
|
|
2932
|
+
|
|
2933
|
+
- **PowerShell Python Quoting Bug (Issue #26)** – Fixed SyntaxError in PowerShell scripts caused by double-quote conflicts in embedded Python code. Changed all Python strings in `common.ps1` to use single quotes to avoid PowerShell string parsing conflicts.
|
|
2934
|
+
|
|
2935
|
+
### Added
|
|
2936
|
+
|
|
2937
|
+
- **PowerShell Syntax Guide** – Created comprehensive `templates/POWERSHELL_SYNTAX.md` with bash vs PowerShell syntax comparison table, common mistakes, and debugging tips for AI agents.
|
|
2938
|
+
- **Conditional PowerShell Reference** – Enhanced `agent-file-template.md` to conditionally include PowerShell syntax reminders only for PowerShell projects, keeping bash contexts clean.
|
|
2939
|
+
|
|
2940
|
+
### Changed
|
|
2941
|
+
|
|
2942
|
+
- **AI Agent Context** – PowerShell-specific guidance now provided via separate reference document instead of cluttering bash-focused templates.
|
|
2943
|
+
|
|
2944
|
+
Fixes #26
|
|
2945
|
+
Addresses #27
|
|
2946
|
+
|
|
2947
|
+
## [0.4.10] - 2025-11-13
|
|
2948
|
+
|
|
2949
|
+
### Fixed
|
|
2950
|
+
|
|
2951
|
+
- **CRITICAL: Missing missions directory in PyPI package** – Added `.kittify/missions/` to `pyproject.toml` force-include list. Previous release (0.4.9) was missing this directory, causing "Active mission directory not found" errors for all fresh installations.
|
|
2952
|
+
|
|
2953
|
+
## [0.4.9] - 2025-11-13
|
|
2954
|
+
|
|
2955
|
+
### Added
|
|
2956
|
+
|
|
2957
|
+
- **Diagnostics CLI Command** – New `spec-kitty diagnostics` command with human-readable and JSON output for comprehensive project health checks.
|
|
2958
|
+
- **Dashboard Process Tracking** – Dashboard now stores process PID in `.dashboard` metadata file for reliable cleanup and monitoring.
|
|
2959
|
+
- **Feature Collision Detection** – Added explicit warnings when creating features with duplicate names that would overwrite existing work.
|
|
2960
|
+
- **LLM Context Documentation** – Enhanced all 13 command templates with location pre-flight checks, file discovery sections, and workflow context to prevent agents from getting lost.
|
|
2961
|
+
|
|
2962
|
+
### Changed
|
|
2963
|
+
|
|
2964
|
+
- **Dashboard Lifecycle** – Enhanced `ensure_dashboard_running()` to automatically clean up orphaned dashboard processes on initialization, preventing port exhaustion.
|
|
2965
|
+
- **Feature Creation Warnings** – `create-new-feature.sh` now warns when git is disabled or features already exist, with clear JSON indicators for LLM agents.
|
|
2966
|
+
- **Import Safety** – Fixed `detect_feature_slug` import path in diagnostics module to use correct module location.
|
|
2967
|
+
- **Worktree Documentation** – Updated WORKTREE_MODEL.md to accurately describe `.kittify/` as a complete copy (not symlink) with disk space implications documented.
|
|
2968
|
+
|
|
2969
|
+
### Fixed
|
|
2970
|
+
|
|
2971
|
+
- **CRITICAL: Dashboard Process Orphan Leak** – Fixed critical bug where background dashboard processes were orphaned and accumulated until all ports were exhausted. Complete fix includes:
|
|
2972
|
+
- PIDs are captured and stored in `.dashboard` file (commit b8c7394)
|
|
2973
|
+
- Orphaned processes with .dashboard files are automatically cleaned up on next init
|
|
2974
|
+
- HTTP shutdown failures fall back to SIGTERM/SIGKILL with PID tracking
|
|
2975
|
+
- Port range cleanup scans for orphaned dashboards without .dashboard files (commit 11340a4)
|
|
2976
|
+
- Safe fingerprinting via health check API prevents killing unrelated services
|
|
2977
|
+
- Automatic retry with cleanup when port exhaustion detected
|
|
2978
|
+
- Failed startup processes are cleaned up (no orphans from Ctrl+C during health check)
|
|
2979
|
+
- Multi-project scenarios remain fully isolated (per-project PIDs, safe port sweeps)
|
|
2980
|
+
- Handles all orphan types: with metadata, without metadata, deleted temp projects
|
|
2981
|
+
- Prevents "Could not find free port" errors after repeated uses
|
|
2982
|
+
|
|
2983
|
+
- **Import Path Bug** – Fixed `detect_feature_slug` import in `src/specify_cli/dashboard/diagnostics.py` to import from `specify_cli.acceptance` instead of package root.
|
|
2984
|
+
|
|
2985
|
+
- **Worktree Documentation Accuracy** – Corrected WORKTREE_MODEL.md which incorrectly stated `.kittify/` was symlinked; it's actually a complete copy due to git worktree behavior.
|
|
2986
|
+
|
|
2987
|
+
### LLM Context Improvements
|
|
2988
|
+
|
|
2989
|
+
All command templates enhanced with consistent context patterns:
|
|
2990
|
+
- **Location Pre-flight Checks**: pwd/git branch verification with expected outputs and correction steps
|
|
2991
|
+
- **File Discovery**: Lists what files {SCRIPT} provides, output locations, and available context
|
|
2992
|
+
- **Workflow Context**: Documents before/after commands and feature lifecycle integration
|
|
2993
|
+
|
|
2994
|
+
Templates updated:
|
|
2995
|
+
- merge.md: CRITICAL safety check preventing merges from wrong location
|
|
2996
|
+
- clarify.md, research.md, analyze.md: HIGH priority core workflow commands
|
|
2997
|
+
- specify.md, checklist.md: Entry point and utility commands
|
|
2998
|
+
- constitution.md, dashboard.md: Project-level and monitoring commands
|
|
2999
|
+
|
|
3000
|
+
### Testing
|
|
3001
|
+
|
|
3002
|
+
- ✅ Dashboard comprehensive test suite (34 tests, 100% coverage)
|
|
3003
|
+
- ✅ All CLI commands validated
|
|
3004
|
+
- ✅ Import paths verified
|
|
3005
|
+
- ✅ Worktree behavior confirmed across test scenarios
|
|
3006
|
+
- ✅ LLM context patterns applied consistently
|
|
3007
|
+
|
|
3008
|
+
### Security
|
|
3009
|
+
|
|
3010
|
+
- Dashboard process cleanup prevents resource exhaustion attacks
|
|
3011
|
+
- Explicit warnings when creating duplicate features prevent silent data overwrite
|
|
3012
|
+
- Git disabled warnings ensure users know when version control is unavailable
|
|
3013
|
+
|
|
3014
|
+
### Backward Compatibility
|
|
3015
|
+
|
|
3016
|
+
All changes are fully backward compatible:
|
|
3017
|
+
- PID storage is optional (old `.dashboard` files still work)
|
|
3018
|
+
- Feature collision detection is advisory (doesn't block creation)
|
|
3019
|
+
- LLM context additions don't change command behavior
|
|
3020
|
+
- Dashboard cleanup is automatic (users don't need to do anything)
|
|
3021
|
+
|
|
3022
|
+
## [0.4.12] - 2025-11-11
|
|
3023
|
+
|
|
3024
|
+
### Added
|
|
3025
|
+
|
|
3026
|
+
- **Core Service Modules** – Introduced `specify_cli.core.git_ops`, `project_resolver`, and `tool_checker` packages to host git utilities, project discovery, and tool validation logic with clean public APIs.
|
|
3027
|
+
- **Test Coverage** – Added dedicated suites (`tests/specify_cli/test_core/test_git_ops.py`, `test_project_resolver.py`, `test_tool_checker.py`) covering subprocess helpers, path resolution, and tool validation flows.
|
|
3028
|
+
|
|
3029
|
+
### Changed
|
|
3030
|
+
|
|
3031
|
+
- **CLI Import Surface** – `src/specify_cli/__init__.py` now imports git, resolver, and tool helpers from the new core modules, slimming the monolith and sharing the implementations across commands.
|
|
3032
|
+
- **Versioning Compliance** – `pyproject.toml` bumped to v0.4.12 to capture the core-service extraction and accompanying behavior changes.
|
|
3033
|
+
|
|
3034
|
+
## [0.4.11] - 2025-11-11
|
|
3035
|
+
|
|
3036
|
+
### Added
|
|
3037
|
+
|
|
3038
|
+
- **Template Test Suite** – New `tests/test_template/` coverage exercises template manager, renderer, and agent asset generator flows to guard the init experience.
|
|
3039
|
+
|
|
3040
|
+
### Changed
|
|
3041
|
+
|
|
3042
|
+
- **Template System Extraction** – Moved template discovery, rendering, and asset generation logic out of `src/specify_cli/__init__.py` into dedicated `specify_cli.template` modules with shared frontmatter parsing.
|
|
3043
|
+
- **Dashboard Reuse** – Updated the dashboard scanner to consume the shared frontmatter parser so Kanban metadata stays in sync with CLI-generated commands.
|
|
3044
|
+
|
|
3045
|
+
## [0.4.10] - 2025-11-11
|
|
3046
|
+
|
|
3047
|
+
### Added
|
|
3048
|
+
|
|
3049
|
+
- **Core Modules** – Introduced `specify_cli.core.config` and `specify_cli.core.utils` to centralize constants, shared helpers, and exports for downstream packages.
|
|
3050
|
+
- **CLI UI Package** – Moved `StepTracker`, arrow-key selection, and related utilities into `specify_cli.cli.ui`, enabling reuse across commands.
|
|
3051
|
+
- **Test Coverage** – Added dedicated unit suites for the new core modules and CLI UI interactions (12 new tests).
|
|
3052
|
+
|
|
3053
|
+
### Changed
|
|
3054
|
+
|
|
3055
|
+
- **Package Structure** – Created foundational package directories for `core/`, `cli/`, `template/`, and `dashboard/`, including structured `__init__.py` exports.
|
|
3056
|
+
- **Init Command Dependencies** – Updated `src/specify_cli/__init__.py` to consume the extracted modules, reducing monolith size and improving readability.
|
|
3057
|
+
- **File Utilities** – Replaced ad-hoc directory creation/removal with safe helper functions to prevent duplication across commands.
|
|
3058
|
+
|
|
3059
|
+
## [0.4.8] - 2025-11-10
|
|
3060
|
+
|
|
3061
|
+
### Added
|
|
3062
|
+
|
|
3063
|
+
- **GitignoreManager Module** – New centralized system for managing .gitignore entries for AI agent directories, replacing fragmented approach.
|
|
3064
|
+
- **Comprehensive Agent Protection** – Auto-protect ALL 12 AI agent directories (.claude/, .codex/, .opencode/, etc.) in .gitignore during init, not just selected ones.
|
|
3065
|
+
- **Duplicate Detection** – Smart duplicate detection prevents .gitignore pollution when running init multiple times.
|
|
3066
|
+
- **Cross-Platform Support** – Line ending preservation ensures .gitignore works correctly on Windows, macOS, and Linux.
|
|
3067
|
+
|
|
3068
|
+
### Changed
|
|
3069
|
+
|
|
3070
|
+
- **init Command Behavior** – Now automatically protects all AI agent directories instead of just selected ones, ensuring no sensitive data is accidentally committed.
|
|
3071
|
+
- **Error Messages** – Improved error messages for permission issues with clear remediation steps (e.g., "Run: chmod u+w .gitignore").
|
|
3072
|
+
|
|
3073
|
+
### Fixed
|
|
3074
|
+
|
|
3075
|
+
- **Dashboard Markdown Rendering** – Fixed issue where .md files in Research and Contracts tabs were not rendered, now properly displays formatted markdown content.
|
|
3076
|
+
- **Dashboard CSV Display** – Fixed CSV files not rendering in dashboard, now displays as formatted tables with proper styling and hover effects.
|
|
3077
|
+
|
|
3078
|
+
### Security
|
|
3079
|
+
|
|
3080
|
+
- **Agent Directory Protection** – All 12 known AI agent directories are now automatically added to .gitignore during init, preventing accidental commit of API keys, auth tokens, and other sensitive data.
|
|
3081
|
+
- **Special .github/ Handling** – Added warning for .github/ directory which is used both by GitHub Copilot and GitHub Actions, reminding users to review before committing.
|
|
3082
|
+
|
|
3083
|
+
### Removed
|
|
3084
|
+
|
|
3085
|
+
- **Legacy Functions** – Removed `handle_codex_security()` and `ensure_gitignore_entries()` functions, replaced by comprehensive GitignoreManager class.
|
|
3086
|
+
|
|
3087
|
+
## [0.4.7] - 2025-11-07
|
|
3088
|
+
|
|
3089
|
+
### Added
|
|
3090
|
+
|
|
3091
|
+
- **Dashboard Diagnostics Page** – New diagnostics page showing real-time environment analysis, artifact location mismatches, and actionable recommendations.
|
|
3092
|
+
- **CLI verify-setup Command** – New `spec-kitty verify-setup` command for comprehensive environment diagnostics in the terminal.
|
|
3093
|
+
- **Worktree-Aware Resolution** – Added `resolve_worktree_aware_feature_dir()` function that intelligently detects and prefers worktree locations.
|
|
3094
|
+
- **Agent Location Checks** – Standardized "CRITICAL: Location Requirement" sections in command templates with bash verification scripts.
|
|
3095
|
+
- **Test Coverage** – Added comprehensive test suite for gitignore management and Codex security features with 9 test cases covering all edge cases.
|
|
3096
|
+
|
|
3097
|
+
### Changed
|
|
3098
|
+
|
|
3099
|
+
- **Command Templates** – Enhanced plan.md and tasks.md with explicit worktree location requirements and verification scripts.
|
|
3100
|
+
- **Error Messages** – Improved bash script errors with visual indicators (❌ ERROR, 🔧 TO FIX, 💡 TIP) and exact fix commands.
|
|
3101
|
+
- **Research Command** – Updated to use worktree-aware feature directory resolution.
|
|
3102
|
+
- **Refactored Codex Security** – Extracted Codex credential protection logic into a dedicated `handle_codex_security()` function for better maintainability and testability.
|
|
3103
|
+
|
|
3104
|
+
### Fixed
|
|
3105
|
+
|
|
3106
|
+
- **Artifact Location Mismatch** – Fixed issue where agents create artifacts in wrong location, preventing them from appearing in dashboard.
|
|
3107
|
+
|
|
3108
|
+
## [0.4.5] - 2025-11-06
|
|
3109
|
+
|
|
3110
|
+
### Added
|
|
3111
|
+
|
|
3112
|
+
- **Agent Guidance** – Bundled a shared `AGENTS.md` ruleset that is copied into `.kittify/` so every generated command has a canonical place to point agents for path/encoding/git expectations.
|
|
3113
|
+
- **Encoding Toolkit** – Introduced `scripts/validate_encoding.py` and new documentation to scan/fix Windows-1252 artifacts, plus a non-interactive init guide in `docs/non-interactive-init.md`.
|
|
3114
|
+
- **Dashboard Assets** – Split the inline dashboard UI into static CSS/JS files and committed them with the release.
|
|
3115
|
+
|
|
3116
|
+
### Changed
|
|
3117
|
+
|
|
3118
|
+
- **CLI Help & Docs** – Expanded `spec-kitty init`, `research`, `check`, `accept`, and `merge` help text and refreshed README/index links to render correctly on PyPI.
|
|
3119
|
+
- **Dashboard Runtime** – Hardened the dashboard server/CLI handshake with health checks, token-gated shutdown, and more resilient worktree detection.
|
|
3120
|
+
- **Mission Handling** – Improved mission activation to fall back gracefully when symlinks are unavailable (e.g., Windows w/out dev mode) and aligned shell helpers with the new logic.
|
|
3121
|
+
|
|
3122
|
+
### Security
|
|
3123
|
+
|
|
3124
|
+
- **Codex Guardrails** – Automatically append `.codex/` to `.gitignore`, warn if `auth.json` is tracked, and reiterate the `CODEX_HOME` workflow to keep API credentials out of source control.
|
|
3125
|
+
|
|
3126
|
+
## [0.4.6] - 2025-11-06
|
|
3127
|
+
|
|
3128
|
+
### Fixed
|
|
3129
|
+
|
|
3130
|
+
- **PyYAML Dependency** – Added `pyyaml` to the core dependency list so mission loading works in clean environments (CI no longer fails installing the package).
|
|
3131
|
+
- **PyPI README Links** – Restored absolute documentation links to keep images and references working on PyPI.
|
|
3132
|
+
|
|
3133
|
+
## [0.4.4] - 2025-11-06
|
|
3134
|
+
|
|
3135
|
+
### Security
|
|
3136
|
+
|
|
3137
|
+
- **Credential Cleanup** – Removed the committed `.codex` directory (OpenAI credentials) from the entire Git history and regenerated sanitized release assets.
|
|
3138
|
+
- **Token Rotation** – Documented that all compromised keys were revoked and environments refreshed before reissuing packages.
|
|
3139
|
+
|
|
3140
|
+
### Changed
|
|
3141
|
+
|
|
3142
|
+
- **Release Artifacts** – Rebuilt GitHub release bundles and PyPI distributions from the cleaned history to ensure no secrets are present in published archives.
|
|
3143
|
+
|
|
3144
|
+
## [0.3.2] - 2025-11-03
|
|
3145
|
+
|
|
3146
|
+
### Added
|
|
3147
|
+
|
|
3148
|
+
- **Automated PyPI Release Pipeline** – Tag-triggered GitHub Actions workflow automatically builds, validates, and publishes releases to PyPI using `PYPI_API_TOKEN` secret, eliminating manual publish steps.
|
|
3149
|
+
- **Release Validation Tooling** – `scripts/release/validate_release.py` CLI enforces semantic version progression, changelog completeness, and version/tag alignment in both branch and tag modes with actionable error messages.
|
|
3150
|
+
- **Release Readiness Guardrails** – Pull request workflow validates version bumps, changelog entries, and test passage before merge; nightly scheduled checks monitor drift.
|
|
3151
|
+
- **Comprehensive Release Documentation** – Complete maintainer guides covering secret management, branch protection, troubleshooting, and step-by-step release workflows.
|
|
3152
|
+
- **Changelog Extraction** – `scripts/release/extract_changelog.py` automatically extracts version-specific release notes for GitHub Releases.
|
|
3153
|
+
- **Release Test Suite** – 4 pytest tests validate branch mode, tag mode, changelog parsing, and version regression detection.
|
|
3154
|
+
|
|
3155
|
+
### Changed
|
|
3156
|
+
|
|
3157
|
+
- **GitHub Actions Workflows** – Updated `release.yml` with pinned dependency versions, proper workflow ordering (PyPI publish before GitHub Release), and checksums stored in `dist/SHA256SUMS.txt`.
|
|
3158
|
+
- **Workflow Reliability** – Fixed heredoc syntax error in `protect-main.yml` that was causing exit code 127 failures.
|
|
3159
|
+
|
|
3160
|
+
### Security
|
|
3161
|
+
|
|
3162
|
+
- **Secret Hygiene** – PyPI credentials exclusively stored in GitHub Actions secrets with rotation guidance; no tokens in repository or logs; workflows sanitize outputs.
|
|
3163
|
+
- **Workflow Permissions** – Explicit least-privilege permissions in all workflows (contents:write, id-token:write for releases; contents:read for guards).
|
|
3164
|
+
|
|
3165
|
+
## [0.3.1] - 2025-11-03
|
|
3166
|
+
|
|
3167
|
+
### Changed
|
|
3168
|
+
|
|
3169
|
+
- **Worktree-Aware Merge Flow** – `/spec-kitty merge` now detects when it is invoked from a Git worktree, runs the actual merge steps from the primary repository checkout, and surfaces clearer guidance when the target checkout is dirty.
|
|
3170
|
+
|
|
3171
|
+
### Documentation
|
|
3172
|
+
|
|
3173
|
+
- **Merge Workflow Guidance** – Updated templates and Claude workflow docs to describe the primary-repo hand-off during merges and reinforce the feature-worktree best practice.
|
|
3174
|
+
|
|
3175
|
+
## [0.3.0] - 2025-11-02
|
|
3176
|
+
|
|
3177
|
+
### Added
|
|
3178
|
+
|
|
3179
|
+
- **pip Installation Instructions** – All documentation now includes pip installation commands alongside uv, making Spec Kitty accessible to users who prefer traditional Python package management.
|
|
3180
|
+
- **Multiple Installation Methods** – Documented three installation paths: PyPI (stable), GitHub (development), and one-time usage (pipx/uvx).
|
|
3181
|
+
|
|
3182
|
+
### Changed
|
|
3183
|
+
|
|
3184
|
+
- **Documentation Consistency** – Updated README.md, docs/index.md, docs/installation.md, and docs/quickstart.md to provide both pip and uv commands throughout.
|
|
3185
|
+
- **Installation Recommendations** – PyPI installation now marked as recommended for stable releases, with GitHub source for development versions.
|
|
3186
|
+
|
|
3187
|
+
### Fixed
|
|
3188
|
+
|
|
3189
|
+
- **Packaging Issues** – Removed duplicate `.kittify` force-include that caused "Duplicate filename in local headers" errors on PyPI.
|
|
3190
|
+
- **Test Dependencies** – Added `pip install -e .[test]` to workflows to ensure all project dependencies available for tests.
|
|
3191
|
+
|
|
3192
|
+
## [0.2.20] - 2025-11-02
|
|
3193
|
+
|
|
3194
|
+
### Added
|
|
3195
|
+
|
|
3196
|
+
- **Automated PyPI Release Pipeline** – Tag-triggered GitHub Actions workflow automatically builds, validates, and publishes releases to PyPI using `PYPI_API_TOKEN` secret, eliminating manual publish steps.
|
|
3197
|
+
- **Release Validation Tooling** – `scripts/release/validate_release.py` CLI enforces semantic version progression, changelog completeness, and version/tag alignment in both branch and tag modes with actionable error messages.
|
|
3198
|
+
- **Release Readiness Guardrails** – Pull request workflow validates version bumps, changelog entries, and test passage before merge; protect-main workflow blocks direct pushes to main branch.
|
|
3199
|
+
- **Comprehensive Release Documentation** – Complete maintainer guides covering secret management, branch protection, troubleshooting, and step-by-step release workflows in README, docs, and inline help.
|
|
3200
|
+
- **Enhanced PyPI Metadata** – Added project URLs (repository, issues, docs, changelog), keywords, classifiers, and license information to improve PyPI discoverability and presentation.
|
|
3201
|
+
- **Changelog Extraction** – `scripts/release/extract_changelog.py` automatically extracts version-specific release notes for GitHub Releases.
|
|
3202
|
+
- **Release Test Suite** – 4 pytest tests validate branch mode, tag mode, changelog parsing, and version regression detection.
|
|
3203
|
+
|
|
3204
|
+
### Changed
|
|
3205
|
+
|
|
3206
|
+
- **GitHub Actions Workflows** – Replaced legacy release workflow with modern PyPI automation supporting validation, building, checksums, GitHub Releases, and secure publishing.
|
|
3207
|
+
- **Documentation Structure** – Added dedicated releases section to docs with readiness checklist, workflow references, and troubleshooting guides; updated table of contents.
|
|
3208
|
+
|
|
3209
|
+
### Security
|
|
3210
|
+
|
|
3211
|
+
- **Secret Hygiene** – PyPI credentials exclusively stored in GitHub Actions secrets with rotation guidance; no tokens in repository or logs; workflows sanitize outputs.
|
|
3212
|
+
- **Workflow Permissions** – Explicit least-privilege permissions in all workflows (contents:write, id-token:write for releases; contents:read for guards).
|
|
3213
|
+
|
|
3214
|
+
## [0.2.3] - 2025-10-29
|
|
3215
|
+
|
|
3216
|
+
### Added
|
|
3217
|
+
|
|
3218
|
+
- **Mission system assets** – Bundled Software Dev Kitty and Deep Research Kitty mission definitions (commands, templates, constitutions) directly in the CLI package so `spec-kitty init` can hydrate missions without a network call.
|
|
3219
|
+
|
|
3220
|
+
### Changed
|
|
3221
|
+
|
|
3222
|
+
- Synced mission templates between the repository and packaged wheel to keep `/spec-kitty.*` commands consistent across `--ai` choices.
|
|
3223
|
+
|
|
3224
|
+
## [0.2.2] - 2025-10-29
|
|
3225
|
+
|
|
3226
|
+
### Added
|
|
3227
|
+
|
|
3228
|
+
- **Phase 0 Research command** – `spec-kitty research` (and `/spec-kitty.research`) scaffolds `research.md`, `data-model.md`, and CSV evidence logs using mission-aware templates so Deep Research Kitty teams can execute discovery workflows without leaving the guided process.
|
|
3229
|
+
- **Mission templates for research** – Deep Research Kitty now ships reusable templates for research decisions, data models, and evidence capture packaged inside the Python wheel.
|
|
3230
|
+
|
|
3231
|
+
### Changed
|
|
3232
|
+
|
|
3233
|
+
- Updated `spec-kitty init` guidance, plan command instructions, and README workflow to include the new research phase between planning and task generation.
|
|
3234
|
+
|
|
3235
|
+
## [0.2.1] - 2025-10-29
|
|
3236
|
+
|
|
3237
|
+
### Added
|
|
3238
|
+
|
|
3239
|
+
- **Mission picker in init** - `spec-kitty init` now prompts for a mission (or accepts `--mission`) so projects start with Software Dev Kitty, Deep Research Kitty, or another bundled mission and record the choice in `.kittify/active-mission`.
|
|
3240
|
+
|
|
3241
|
+
### Changed
|
|
3242
|
+
|
|
3243
|
+
- Highlight the active mission in the post-init guidance while keeping the Codex export step as the final instruction.
|
|
3244
|
+
|
|
3245
|
+
## [0.2.0] - 2025-10-28
|
|
3246
|
+
|
|
3247
|
+
### Added
|
|
3248
|
+
|
|
3249
|
+
- **New `/spec-kitty.merge` command** - Completes the workflow by merging features into main branch and cleaning up worktrees automatically. Supports multiple merge strategies (merge, squash, rebase), optional push to origin, and configurable cleanup of worktrees and branches.
|
|
3250
|
+
- **Worktree Strategy documentation** - Added comprehensive guide to the opinionated worktree approach for parallel feature development.
|
|
3251
|
+
- **Dashboard screenshots** - Added dashboard-kanban.png and dashboard-overview.png showcasing the real-time kanban board.
|
|
3252
|
+
- **Real-Time Dashboard section** - Added prominent dashboard documentation "above the fold" in README with screenshots and feature highlights.
|
|
3253
|
+
- **Mission management CLI** - `spec-kitty mission list|current|switch|info` for inspecting and activating domain-specific missions inside a project.
|
|
3254
|
+
- **Deep Research Kitty mission** - Research-focused templates (spec, plan, tasks, findings, prompts) and command guardrails for evidence-driven work.
|
|
3255
|
+
- **Mission packaging** - Missions are now bundled in release archives and Python wheels so project initialization copies `.kittify/missions` automatically.
|
|
3256
|
+
|
|
3257
|
+
### Changed
|
|
3258
|
+
|
|
3259
|
+
- Updated command list in init output to show workflow order and include merge command.
|
|
3260
|
+
- Updated `/spec-kitty.accept` description to clarify it verifies (not merges) features.
|
|
3261
|
+
- Reordered slash commands documentation to reflect actual execution workflow.
|
|
3262
|
+
- Updated maintainers to reflect fork ownership.
|
|
3263
|
+
- Updated all repository references from `spec-kitty/spec-kitty` to `Priivacy-ai/spec-kitty`.
|
|
3264
|
+
- Updated installation instructions to use GitHub repository URL instead of local directory.
|
|
3265
|
+
|
|
3266
|
+
### Fixed
|
|
3267
|
+
|
|
3268
|
+
- Removed invalid `multiple=True` parameter from `typer.Option()` in accept command that caused TypeError on CLI startup.
|
|
3269
|
+
- Fixed "nine articles" claim in spec-driven.md to "core articles" (only 6 are documented).
|
|
3270
|
+
|
|
3271
|
+
### Removed
|
|
3272
|
+
|
|
3273
|
+
- Removed SECURITY.md (GitHub-specific security policies).
|
|
3274
|
+
- Removed CODE_OF_CONDUCT.md (GitHub-specific contact information).
|
|
3275
|
+
- Removed video overview section from README (outdated content).
|
|
3276
|
+
- Removed plant emoji (🌱) branding from all documentation and code.
|
|
3277
|
+
- Replaced logo_small.webp and logo_large.webp with actual spec-kitty cat logo.
|
|
3278
|
+
|
|
3279
|
+
## [0.1.3] - 2025-10-28
|
|
3280
|
+
|
|
3281
|
+
### Fixed
|
|
3282
|
+
|
|
3283
|
+
- Removed invalid `multiple=True` parameter from `typer.Option()` in accept command that caused TypeError on CLI startup.
|
|
3284
|
+
|
|
3285
|
+
## [0.1.2] - 2025-10-28
|
|
3286
|
+
|
|
3287
|
+
### Changed
|
|
3288
|
+
|
|
3289
|
+
- Rebranded the CLI command prefix from `speckitty` to `spec-kitty`, including package metadata and documentation references.
|
|
3290
|
+
- Migrated template directories from `.specify` to `.kittify` and feature storage from `/specs` to `/kitty-specs` to avoid namespace conflicts with Spec Kit.
|
|
3291
|
+
- Updated environment variables, helper scripts, and dashboards to align with the new `.kittify` and `kitty-specs` conventions.
|
|
3292
|
+
|
|
3293
|
+
## [0.1.1] - 2025-10-07
|
|
3294
|
+
|
|
3295
|
+
### Added
|
|
3296
|
+
|
|
3297
|
+
- New `/spec-kitty.accept` command (and `spec-kitty accept`) for feature-level acceptance: validates kanban state, frontmatter metadata, and artifacts; records acceptance metadata in `meta.json`; prints merge/cleanup instructions; and supports PR or local workflows across every agent.
|
|
3298
|
+
- Acceptance helper scripts (`accept-feature.sh` / `.ps1`) and expanded `tasks_cli` utilities (`status`, `verify`, `accept`) for automation and integration with AI agents.
|
|
3299
|
+
- Worktree-aware bootstrap workflow now defaults to creating per-feature worktrees, enabling parallel feature development with isolated sandboxes.
|
|
3300
|
+
- Implementation prompts now require operating inside the feature’s worktree and rely on the lane helper scripts for moves/metadata, eliminating `git mv` conflicts; the dashboard also surfaces active/expected worktree paths.
|
|
3301
|
+
|
|
3302
|
+
### Changed
|
|
3303
|
+
|
|
3304
|
+
- `/spec-kitty.specify`, `/spec-kitty.plan`, and `/spec-kitty.clarify` now run fully conversational interviews—asking one question at a time, tracking internal coverage without rendering markdown tables, and only proceeding once summaries are confirmed—while continuing to resolve helper scripts via the `.kittify/scripts/...` paths.
|
|
3305
|
+
- Added proportionality guidance so discovery, planning, and clarification depth scales with feature complexity (e.g., lightweight tic-tac-toe flows vs. an operating system build).
|
|
3306
|
+
- `/spec-kitty.tasks` now produces both `tasks.md` and the kanban prompt files in one pass; the separate `/spec-kitty.task-prompts` command has been removed.
|
|
3307
|
+
- Tasks are grouped into at most ten work packages with bundled prompts, reducing file churn and making prompt generation LLM-friendly.
|
|
3308
|
+
- Both shell and PowerShell feature bootstrap scripts now stop with guidance to return `WAITING_FOR_DISCOVERY_INPUT` when invoked without a confirmed feature description, aligning with the new discovery workflow.
|
|
3309
|
+
|
|
3310
|
+
## [0.1.0] - 2025-10-07
|
|
3311
|
+
|
|
3312
|
+
### Changed
|
|
3313
|
+
|
|
3314
|
+
- `/spec-kitty.specify` and `/spec-kitty.plan` now enforce mandatory discovery interviews, pausing until you answer their question sets before any files are written.
|
|
3315
|
+
- `/spec-kitty.implement` now enforces the kanban workflow (planned → doing → for_review) with blocking validation, new helper scripts, and a task workflow quick reference.
|
|
3316
|
+
- Removed the legacy `specify` entrypoint; the CLI is now invoked exclusively via `spec-kitty`.
|
|
3317
|
+
- Updated installation instructions and scripts to use the new `spec-kitty-cli` package name and command.
|
|
3318
|
+
- Simplified local template overrides to use the `SPEC_KITTY_TEMPLATE_ROOT` environment variable only.
|
|
3319
|
+
|
|
3320
|
+
## [0.0.20] - 2025-10-07
|
|
3321
|
+
|
|
3322
|
+
### Changed
|
|
3323
|
+
|
|
3324
|
+
- Renamed the primary CLI entrypoint to `spec-kitty` and temporarily exposed a legacy `specify` alias for backwards compatibility.
|
|
3325
|
+
- Refreshed documentation, scripts, and examples to use the `spec-kitty` command by default.
|
|
3326
|
+
|
|
3327
|
+
## [0.0.19] - 2025-10-07
|
|
3328
|
+
|
|
3329
|
+
### Changed
|
|
3330
|
+
|
|
3331
|
+
- Rebranded the project as Spec Kitty, updating CLI defaults, docs, and scripts while acknowledging the original GitHub Spec Kit lineage.
|
|
3332
|
+
- Renamed all slash-command prefixes and generated artifact names from `/speckit.*` to `/spec-kitty.*` to match the new branding.
|
|
3333
|
+
|
|
3334
|
+
### Added
|
|
3335
|
+
|
|
3336
|
+
- Refreshed CLI banner text and tagline to reflect spec-kitty branding.
|
|
3337
|
+
|
|
3338
|
+
## [0.0.18] - 2025-10-06
|
|
3339
|
+
|
|
3340
|
+
### Added
|
|
3341
|
+
|
|
3342
|
+
- Support for using `.` as a shorthand for current directory in `spec-kitty init .` command, equivalent to `--here` flag but more intuitive for users.
|
|
3343
|
+
- Use the `/spec-kitty.` command prefix to easily discover Spec Kitty-related commands.
|
|
3344
|
+
- Refactor the prompts and templates to simplify their capabilities and how they are tracked. No more polluting things with tests when they are not needed.
|
|
3345
|
+
- Ensure that tasks are created per user story (simplifies testing and validation).
|
|
3346
|
+
- Add support for Visual Studio Code prompt shortcuts and automatic script execution.
|
|
3347
|
+
- Allow `spec-kitty init` to bootstrap multiple AI assistants in one run (interactive multi-select or comma-separated `--ai` value).
|
|
3348
|
+
- When running from a local checkout, `spec-kitty init` now copies templates directly instead of downloading release archives, so new commands are immediately available.
|
|
3349
|
+
|
|
3350
|
+
### Changed
|
|
3351
|
+
|
|
3352
|
+
- All command files now prefixed with `spec-kitty.` (e.g., `spec-kitty.specify.md`, `spec-kitty.plan.md`) for better discoverability and differentiation in IDE/CLI command palettes and file explorers
|