doit-toolkit-cli 0.1.11__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.
- doit_toolkit_cli-0.1.11/.claude/commands/doit.checkin.md +363 -0
- doit_toolkit_cli-0.1.11/.claude/commands/doit.constitution.md +187 -0
- doit_toolkit_cli-0.1.11/.claude/commands/doit.documentit.md +485 -0
- doit_toolkit_cli-0.1.11/.claude/commands/doit.fixit.md +181 -0
- doit_toolkit_cli-0.1.11/.claude/commands/doit.implementit.md +265 -0
- doit_toolkit_cli-0.1.11/.claude/commands/doit.planit.md +262 -0
- doit_toolkit_cli-0.1.11/.claude/commands/doit.reviewit.md +355 -0
- doit_toolkit_cli-0.1.11/.claude/commands/doit.roadmapit.md +368 -0
- doit_toolkit_cli-0.1.11/.claude/commands/doit.scaffoldit.md +458 -0
- doit_toolkit_cli-0.1.11/.claude/commands/doit.specit.md +755 -0
- doit_toolkit_cli-0.1.11/.claude/commands/doit.taskit.md +304 -0
- doit_toolkit_cli-0.1.11/.claude/commands/doit.testit.md +277 -0
- doit_toolkit_cli-0.1.11/.doit/config/context.yaml +178 -0
- doit_toolkit_cli-0.1.11/.doit/docs/diagram-patterns.md +179 -0
- doit_toolkit_cli-0.1.11/.doit/memory/completed_roadmap.md +71 -0
- doit_toolkit_cli-0.1.11/.doit/memory/constitution.md +113 -0
- doit_toolkit_cli-0.1.11/.doit/memory/roadmap.md +111 -0
- doit_toolkit_cli-0.1.11/.doit/scripts/bash/check-prerequisites.sh +166 -0
- doit_toolkit_cli-0.1.11/.doit/scripts/bash/common.sh +156 -0
- doit_toolkit_cli-0.1.11/.doit/scripts/bash/create-new-feature.sh +297 -0
- doit_toolkit_cli-0.1.11/.doit/scripts/bash/setup-plan.sh +61 -0
- doit_toolkit_cli-0.1.11/.doit/scripts/bash/update-agent-context.sh +675 -0
- doit_toolkit_cli-0.1.11/.doit/state/fixit-542.json +120 -0
- doit_toolkit_cli-0.1.11/.doit/state/fixit-544.json +149 -0
- doit_toolkit_cli-0.1.11/.doit/state/fixit-545.json +124 -0
- doit_toolkit_cli-0.1.11/.doit/state/fixit-595.json +91 -0
- doit_toolkit_cli-0.1.11/.doit/templates/checklist-template.md +39 -0
- doit_toolkit_cli-0.1.11/.doit/templates/completed-roadmap-template.md +50 -0
- doit_toolkit_cli-0.1.11/.doit/templates/docs-index-template.md +46 -0
- doit_toolkit_cli-0.1.11/.doit/templates/plan-template.md +146 -0
- doit_toolkit_cli-0.1.11/.doit/templates/roadmap-template.md +61 -0
- doit_toolkit_cli-0.1.11/.doit/templates/spec-template.md +159 -0
- doit_toolkit_cli-0.1.11/.doit/templates/tasks-template.md +313 -0
- doit_toolkit_cli-0.1.11/.doit/templates/tech-stack-template.md +46 -0
- doit_toolkit_cli-0.1.11/.github/ISSUE_TEMPLATE/bug_report.yml +51 -0
- doit_toolkit_cli-0.1.11/.github/ISSUE_TEMPLATE/epic.yml +78 -0
- doit_toolkit_cli-0.1.11/.github/ISSUE_TEMPLATE/feature.yml +116 -0
- doit_toolkit_cli-0.1.11/.github/ISSUE_TEMPLATE/feature_request.yml +34 -0
- doit_toolkit_cli-0.1.11/.github/ISSUE_TEMPLATE/task.yml +129 -0
- doit_toolkit_cli-0.1.11/.github/PULL_REQUEST_TEMPLATE.md +28 -0
- doit_toolkit_cli-0.1.11/.github/dependabot.yml +19 -0
- doit_toolkit_cli-0.1.11/.github/prompts/.gitkeep +0 -0
- doit_toolkit_cli-0.1.11/.github/prompts/doit.checkin.prompt.md +361 -0
- doit_toolkit_cli-0.1.11/.github/prompts/doit.constitution.prompt.md +181 -0
- doit_toolkit_cli-0.1.11/.github/prompts/doit.documentit.prompt.md +476 -0
- doit_toolkit_cli-0.1.11/.github/prompts/doit.fixit.prompt.md +166 -0
- doit_toolkit_cli-0.1.11/.github/prompts/doit.implementit.prompt.md +254 -0
- doit_toolkit_cli-0.1.11/.github/prompts/doit.planit.prompt.md +252 -0
- doit_toolkit_cli-0.1.11/.github/prompts/doit.reviewit.prompt.md +344 -0
- doit_toolkit_cli-0.1.11/.github/prompts/doit.roadmapit.prompt.md +359 -0
- doit_toolkit_cli-0.1.11/.github/prompts/doit.scaffoldit.prompt.md +446 -0
- doit_toolkit_cli-0.1.11/.github/prompts/doit.specit.prompt.md +512 -0
- doit_toolkit_cli-0.1.11/.github/prompts/doit.taskit.prompt.md +293 -0
- doit_toolkit_cli-0.1.11/.github/prompts/doit.testit.prompt.md +266 -0
- doit_toolkit_cli-0.1.11/.github/workflows/publish.yml +47 -0
- doit_toolkit_cli-0.1.11/.gitignore +58 -0
- doit_toolkit_cli-0.1.11/CHANGELOG.md +203 -0
- doit_toolkit_cli-0.1.11/CLAUDE.md +83 -0
- doit_toolkit_cli-0.1.11/CONTRIBUTING.md +379 -0
- doit_toolkit_cli-0.1.11/LICENSE +21 -0
- doit_toolkit_cli-0.1.11/PKG-INFO +324 -0
- doit_toolkit_cli-0.1.11/README.md +286 -0
- doit_toolkit_cli-0.1.11/SECURITY.md +118 -0
- doit_toolkit_cli-0.1.11/SUPPORT.md +127 -0
- doit_toolkit_cli-0.1.11/docs/.gitignore +9 -0
- doit_toolkit_cli-0.1.11/docs/README.md +35 -0
- doit_toolkit_cli-0.1.11/docs/docfx.json +71 -0
- doit_toolkit_cli-0.1.11/docs/features/003-scaffold-doit-commands.md +90 -0
- doit_toolkit_cli-0.1.11/docs/features/004-review-template-commands.md +89 -0
- doit_toolkit_cli-0.1.11/docs/features/005-mermaid-visualization.md +103 -0
- doit_toolkit_cli-0.1.11/docs/features/006-docs-doit-migration.md +90 -0
- doit_toolkit_cli-0.1.11/docs/features/008-doit-roadmapit-command.md +116 -0
- doit_toolkit_cli-0.1.11/docs/features/009-doit-documentit-command.md +104 -0
- doit_toolkit_cli-0.1.11/docs/features/012-command-recommendations.md +76 -0
- doit_toolkit_cli-0.1.11/docs/features/015-docs-branding-cleanup.md +99 -0
- doit_toolkit_cli-0.1.11/docs/features/016-scripts-cleanup.md +129 -0
- doit_toolkit_cli-0.1.11/docs/features/017-roadmap-template-cleanup.md +57 -0
- doit_toolkit_cli-0.1.11/docs/features/018-develop-branch-setup.md +82 -0
- doit_toolkit_cli-0.1.11/docs/features/020-constitution-improvements.md +83 -0
- doit_toolkit_cli-0.1.11/docs/features/021-copilot-agent-fix.md +64 -0
- doit_toolkit_cli-0.1.11/docs/features/022-docs-logo-integration.md +89 -0
- doit_toolkit_cli-0.1.11/docs/features/024-unified-templates.md +88 -0
- doit_toolkit_cli-0.1.11/docs/features/025-git-hooks-workflow.md +95 -0
- doit_toolkit_cli-0.1.11/docs/features/026-ai-context-injection.md +99 -0
- doit_toolkit_cli-0.1.11/docs/features/027-template-context-injection.md +102 -0
- doit_toolkit_cli-0.1.11/docs/features/028-docs-tutorial-refresh.md +56 -0
- doit_toolkit_cli-0.1.11/docs/features/029-spec-validation-linting.md +117 -0
- doit_toolkit_cli-0.1.11/docs/features/030-guided-workflows.md +140 -0
- doit_toolkit_cli-0.1.11/docs/features/031-init-workflow-integration.md +167 -0
- doit_toolkit_cli-0.1.11/docs/features/032-status-dashboard.md +115 -0
- doit_toolkit_cli-0.1.11/docs/features/033-spec-task-crossrefs.md +110 -0
- doit_toolkit_cli-0.1.11/docs/features/034-fixit-workflow.md +98 -0
- doit_toolkit_cli-0.1.11/docs/features/035-auto-mermaid-diagrams.md +163 -0
- doit_toolkit_cli-0.1.11/docs/features/036-spec-analytics-dashboard.md +101 -0
- doit_toolkit_cli-0.1.11/docs/features/037-memory-search-query.md +103 -0
- doit_toolkit_cli-0.1.11/docs/features/038-context-roadmap-summary.md +131 -0
- doit_toolkit_cli-0.1.11/docs/features/041-milestone-generation.md +222 -0
- doit_toolkit_cli-0.1.11/docs/features/github-roadmap-sync.md +204 -0
- doit_toolkit_cli-0.1.11/docs/features/update-doit-templates.md +55 -0
- doit_toolkit_cli-0.1.11/docs/guides/diagram-patterns.md +179 -0
- doit_toolkit_cli-0.1.11/docs/guides/workflow-system-guide.md +322 -0
- doit_toolkit_cli-0.1.11/docs/index.md +132 -0
- doit_toolkit_cli-0.1.11/docs/installation.md +113 -0
- doit_toolkit_cli-0.1.11/docs/local-development.md +175 -0
- doit_toolkit_cli-0.1.11/docs/quickstart.md +328 -0
- doit_toolkit_cli-0.1.11/docs/templates/commands.md +710 -0
- doit_toolkit_cli-0.1.11/docs/templates/enhancements.md +551 -0
- doit_toolkit_cli-0.1.11/docs/templates/index.md +199 -0
- doit_toolkit_cli-0.1.11/docs/templates/root-templates.md +414 -0
- doit_toolkit_cli-0.1.11/docs/toc.yml +29 -0
- doit_toolkit_cli-0.1.11/docs/tutorials/01-greenfield-tutorial.md +1246 -0
- doit_toolkit_cli-0.1.11/docs/tutorials/02-existing-project-tutorial.md +822 -0
- doit_toolkit_cli-0.1.11/docs/tutorials/creating-workflows.md +288 -0
- doit_toolkit_cli-0.1.11/docs/tutorials/index.md +110 -0
- doit_toolkit_cli-0.1.11/docs/tutorials/toc.yml +6 -0
- doit_toolkit_cli-0.1.11/docs/upgrade.md +443 -0
- doit_toolkit_cli-0.1.11/media/README.md +56 -0
- doit_toolkit_cli-0.1.11/media/doit-logo-full-color.svg +28 -0
- doit_toolkit_cli-0.1.11/media/doit-logo-master.svg +32 -0
- doit_toolkit_cli-0.1.11/media/doit-logo-outlined.svg +26 -0
- doit_toolkit_cli-0.1.11/media/doit-logo-white.svg +28 -0
- doit_toolkit_cli-0.1.11/media/doit-logo.svg +28 -0
- doit_toolkit_cli-0.1.11/pyproject.toml +65 -0
- doit_toolkit_cli-0.1.11/scripts/bash/check-prerequisites.sh +166 -0
- doit_toolkit_cli-0.1.11/scripts/bash/common.sh +156 -0
- doit_toolkit_cli-0.1.11/scripts/bash/create-new-feature.sh +297 -0
- doit_toolkit_cli-0.1.11/scripts/bash/setup-plan.sh +61 -0
- doit_toolkit_cli-0.1.11/scripts/bash/update-agent-context.sh +747 -0
- doit_toolkit_cli-0.1.11/scripts/powershell/check-prerequisites.ps1 +148 -0
- doit_toolkit_cli-0.1.11/scripts/powershell/common.ps1 +137 -0
- doit_toolkit_cli-0.1.11/scripts/powershell/create-new-feature.ps1 +283 -0
- doit_toolkit_cli-0.1.11/scripts/powershell/setup-plan.ps1 +61 -0
- doit_toolkit_cli-0.1.11/scripts/powershell/update-agent-context.ps1 +406 -0
- doit_toolkit_cli-0.1.11/specs/015-docs-branding-cleanup/checklists/requirements.md +36 -0
- doit_toolkit_cli-0.1.11/specs/015-docs-branding-cleanup/plan.md +172 -0
- doit_toolkit_cli-0.1.11/specs/015-docs-branding-cleanup/quickstart.md +167 -0
- doit_toolkit_cli-0.1.11/specs/015-docs-branding-cleanup/research.md +106 -0
- doit_toolkit_cli-0.1.11/specs/015-docs-branding-cleanup/review-report.md +92 -0
- doit_toolkit_cli-0.1.11/specs/015-docs-branding-cleanup/spec.md +144 -0
- doit_toolkit_cli-0.1.11/specs/015-docs-branding-cleanup/tasks.md +193 -0
- doit_toolkit_cli-0.1.11/specs/016-scripts-cleanup/checklists/requirements.md +38 -0
- doit_toolkit_cli-0.1.11/specs/016-scripts-cleanup/plan.md +162 -0
- doit_toolkit_cli-0.1.11/specs/016-scripts-cleanup/quickstart.md +113 -0
- doit_toolkit_cli-0.1.11/specs/016-scripts-cleanup/research.md +218 -0
- doit_toolkit_cli-0.1.11/specs/016-scripts-cleanup/review-report.md +186 -0
- doit_toolkit_cli-0.1.11/specs/016-scripts-cleanup/spec.md +185 -0
- doit_toolkit_cli-0.1.11/specs/016-scripts-cleanup/tasks.md +255 -0
- doit_toolkit_cli-0.1.11/specs/017-roadmap-template-cleanup/checklists/requirements.md +37 -0
- doit_toolkit_cli-0.1.11/specs/017-roadmap-template-cleanup/plan.md +110 -0
- doit_toolkit_cli-0.1.11/specs/017-roadmap-template-cleanup/quickstart.md +74 -0
- doit_toolkit_cli-0.1.11/specs/017-roadmap-template-cleanup/research.md +53 -0
- doit_toolkit_cli-0.1.11/specs/017-roadmap-template-cleanup/review-report.md +84 -0
- doit_toolkit_cli-0.1.11/specs/017-roadmap-template-cleanup/spec.md +93 -0
- doit_toolkit_cli-0.1.11/specs/017-roadmap-template-cleanup/tasks.md +185 -0
- doit_toolkit_cli-0.1.11/specs/018-develop-branch-setup/checklists/requirements.md +37 -0
- doit_toolkit_cli-0.1.11/specs/018-develop-branch-setup/plan.md +184 -0
- doit_toolkit_cli-0.1.11/specs/018-develop-branch-setup/quickstart.md +110 -0
- doit_toolkit_cli-0.1.11/specs/018-develop-branch-setup/research.md +146 -0
- doit_toolkit_cli-0.1.11/specs/018-develop-branch-setup/spec.md +115 -0
- doit_toolkit_cli-0.1.11/specs/018-develop-branch-setup/tasks.md +251 -0
- doit_toolkit_cli-0.1.11/specs/019-doit-tutorials/checklists/requirements.md +37 -0
- doit_toolkit_cli-0.1.11/specs/019-doit-tutorials/plan.md +140 -0
- doit_toolkit_cli-0.1.11/specs/019-doit-tutorials/quickstart.md +115 -0
- doit_toolkit_cli-0.1.11/specs/019-doit-tutorials/research.md +196 -0
- doit_toolkit_cli-0.1.11/specs/019-doit-tutorials/review-report.md +153 -0
- doit_toolkit_cli-0.1.11/specs/019-doit-tutorials/spec.md +185 -0
- doit_toolkit_cli-0.1.11/specs/019-doit-tutorials/tasks.md +277 -0
- doit_toolkit_cli-0.1.11/specs/020-constitution-improvements/checklists/requirements.md +35 -0
- doit_toolkit_cli-0.1.11/specs/020-constitution-improvements/plan.md +167 -0
- doit_toolkit_cli-0.1.11/specs/020-constitution-improvements/quickstart.md +99 -0
- doit_toolkit_cli-0.1.11/specs/020-constitution-improvements/research.md +143 -0
- doit_toolkit_cli-0.1.11/specs/020-constitution-improvements/review-report.md +145 -0
- doit_toolkit_cli-0.1.11/specs/020-constitution-improvements/spec.md +146 -0
- doit_toolkit_cli-0.1.11/specs/020-constitution-improvements/tasks.md +236 -0
- doit_toolkit_cli-0.1.11/specs/021-copilot-agent-fix/checklists/requirements.md +37 -0
- doit_toolkit_cli-0.1.11/specs/021-copilot-agent-fix/plan.md +150 -0
- doit_toolkit_cli-0.1.11/specs/021-copilot-agent-fix/quickstart.md +127 -0
- doit_toolkit_cli-0.1.11/specs/021-copilot-agent-fix/research.md +100 -0
- doit_toolkit_cli-0.1.11/specs/021-copilot-agent-fix/review-report.md +118 -0
- doit_toolkit_cli-0.1.11/specs/021-copilot-agent-fix/spec.md +124 -0
- doit_toolkit_cli-0.1.11/specs/021-copilot-agent-fix/tasks.md +403 -0
- doit_toolkit_cli-0.1.11/specs/022-docs-logo-integration/checklists/requirements.md +36 -0
- doit_toolkit_cli-0.1.11/specs/022-docs-logo-integration/plan.md +169 -0
- doit_toolkit_cli-0.1.11/specs/022-docs-logo-integration/quickstart.md +101 -0
- doit_toolkit_cli-0.1.11/specs/022-docs-logo-integration/research.md +129 -0
- doit_toolkit_cli-0.1.11/specs/022-docs-logo-integration/review-report.md +132 -0
- doit_toolkit_cli-0.1.11/specs/022-docs-logo-integration/spec.md +125 -0
- doit_toolkit_cli-0.1.11/specs/022-docs-logo-integration/tasks.md +338 -0
- doit_toolkit_cli-0.1.11/specs/023-copilot-prompts-sync/checklists/requirements.md +56 -0
- doit_toolkit_cli-0.1.11/specs/023-copilot-prompts-sync/data-model.md +186 -0
- doit_toolkit_cli-0.1.11/specs/023-copilot-prompts-sync/plan.md +137 -0
- doit_toolkit_cli-0.1.11/specs/023-copilot-prompts-sync/quickstart.md +129 -0
- doit_toolkit_cli-0.1.11/specs/023-copilot-prompts-sync/research.md +318 -0
- doit_toolkit_cli-0.1.11/specs/023-copilot-prompts-sync/spec.md +187 -0
- doit_toolkit_cli-0.1.11/specs/023-copilot-prompts-sync/tasks.md +274 -0
- doit_toolkit_cli-0.1.11/specs/024-unified-templates/checklists/requirements.md +36 -0
- doit_toolkit_cli-0.1.11/specs/024-unified-templates/data-model.md +160 -0
- doit_toolkit_cli-0.1.11/specs/024-unified-templates/implementation-report.md +136 -0
- doit_toolkit_cli-0.1.11/specs/024-unified-templates/plan.md +167 -0
- doit_toolkit_cli-0.1.11/specs/024-unified-templates/quickstart.md +146 -0
- doit_toolkit_cli-0.1.11/specs/024-unified-templates/research.md +137 -0
- doit_toolkit_cli-0.1.11/specs/024-unified-templates/spec.md +154 -0
- doit_toolkit_cli-0.1.11/specs/024-unified-templates/tasks.md +241 -0
- doit_toolkit_cli-0.1.11/specs/025-git-hooks-workflow/checklists/requirements.md +60 -0
- doit_toolkit_cli-0.1.11/specs/025-git-hooks-workflow/data-model.md +229 -0
- doit_toolkit_cli-0.1.11/specs/025-git-hooks-workflow/plan.md +116 -0
- doit_toolkit_cli-0.1.11/specs/025-git-hooks-workflow/quickstart.md +253 -0
- doit_toolkit_cli-0.1.11/specs/025-git-hooks-workflow/research.md +232 -0
- doit_toolkit_cli-0.1.11/specs/025-git-hooks-workflow/spec.md +184 -0
- doit_toolkit_cli-0.1.11/specs/025-git-hooks-workflow/tasks.md +317 -0
- doit_toolkit_cli-0.1.11/specs/026-ai-context-injection/checklists/requirements.md +48 -0
- doit_toolkit_cli-0.1.11/specs/026-ai-context-injection/contracts/context_loader.md +219 -0
- doit_toolkit_cli-0.1.11/specs/026-ai-context-injection/data-model.md +219 -0
- doit_toolkit_cli-0.1.11/specs/026-ai-context-injection/plan.md +134 -0
- doit_toolkit_cli-0.1.11/specs/026-ai-context-injection/quickstart.md +195 -0
- doit_toolkit_cli-0.1.11/specs/026-ai-context-injection/research.md +238 -0
- doit_toolkit_cli-0.1.11/specs/026-ai-context-injection/spec.md +180 -0
- doit_toolkit_cli-0.1.11/specs/026-ai-context-injection/tasks.md +878 -0
- doit_toolkit_cli-0.1.11/specs/027-template-context-injection/checklists/requirements.md +37 -0
- doit_toolkit_cli-0.1.11/specs/027-template-context-injection/plan.md +157 -0
- doit_toolkit_cli-0.1.11/specs/027-template-context-injection/quickstart.md +160 -0
- doit_toolkit_cli-0.1.11/specs/027-template-context-injection/research.md +123 -0
- doit_toolkit_cli-0.1.11/specs/027-template-context-injection/review-report.md +121 -0
- doit_toolkit_cli-0.1.11/specs/027-template-context-injection/spec.md +143 -0
- doit_toolkit_cli-0.1.11/specs/027-template-context-injection/tasks.md +287 -0
- doit_toolkit_cli-0.1.11/specs/028-docs-tutorial-refresh/checklist.md +78 -0
- doit_toolkit_cli-0.1.11/specs/028-docs-tutorial-refresh/plan.md +201 -0
- doit_toolkit_cli-0.1.11/specs/028-docs-tutorial-refresh/quickstart.md +121 -0
- doit_toolkit_cli-0.1.11/specs/028-docs-tutorial-refresh/research.md +142 -0
- doit_toolkit_cli-0.1.11/specs/028-docs-tutorial-refresh/spec.md +210 -0
- doit_toolkit_cli-0.1.11/specs/028-docs-tutorial-refresh/tasks.md +330 -0
- doit_toolkit_cli-0.1.11/specs/029-spec-validation-linting/contracts/rule-engine.md +108 -0
- doit_toolkit_cli-0.1.11/specs/029-spec-validation-linting/contracts/score-calculator.md +101 -0
- doit_toolkit_cli-0.1.11/specs/029-spec-validation-linting/contracts/validate-command.md +136 -0
- doit_toolkit_cli-0.1.11/specs/029-spec-validation-linting/contracts/validation-service.md +90 -0
- doit_toolkit_cli-0.1.11/specs/029-spec-validation-linting/data-model.md +189 -0
- doit_toolkit_cli-0.1.11/specs/029-spec-validation-linting/plan.md +110 -0
- doit_toolkit_cli-0.1.11/specs/029-spec-validation-linting/quickstart.md +177 -0
- doit_toolkit_cli-0.1.11/specs/029-spec-validation-linting/research.md +181 -0
- doit_toolkit_cli-0.1.11/specs/029-spec-validation-linting/spec.md +202 -0
- doit_toolkit_cli-0.1.11/specs/029-spec-validation-linting/tasks.md +330 -0
- doit_toolkit_cli-0.1.11/specs/030-guided-workflows/checklists/requirements.md +39 -0
- doit_toolkit_cli-0.1.11/specs/030-guided-workflows/contracts/workflow-api.md +383 -0
- doit_toolkit_cli-0.1.11/specs/030-guided-workflows/data-model.md +161 -0
- doit_toolkit_cli-0.1.11/specs/030-guided-workflows/plan.md +120 -0
- doit_toolkit_cli-0.1.11/specs/030-guided-workflows/quickstart.md +236 -0
- doit_toolkit_cli-0.1.11/specs/030-guided-workflows/research.md +258 -0
- doit_toolkit_cli-0.1.11/specs/030-guided-workflows/spec.md +206 -0
- doit_toolkit_cli-0.1.11/specs/030-guided-workflows/tasks.md +328 -0
- doit_toolkit_cli-0.1.11/specs/031-init-workflow-integration/contracts/init-workflow.md +199 -0
- doit_toolkit_cli-0.1.11/specs/031-init-workflow-integration/data-model.md +199 -0
- doit_toolkit_cli-0.1.11/specs/031-init-workflow-integration/plan.md +137 -0
- doit_toolkit_cli-0.1.11/specs/031-init-workflow-integration/quickstart.md +230 -0
- doit_toolkit_cli-0.1.11/specs/031-init-workflow-integration/research.md +181 -0
- doit_toolkit_cli-0.1.11/specs/031-init-workflow-integration/review-report.md +227 -0
- doit_toolkit_cli-0.1.11/specs/031-init-workflow-integration/spec.md +213 -0
- doit_toolkit_cli-0.1.11/specs/031-init-workflow-integration/tasks.md +802 -0
- doit_toolkit_cli-0.1.11/specs/032-status-dashboard/checklists/requirements.md +36 -0
- doit_toolkit_cli-0.1.11/specs/032-status-dashboard/contracts/status-api.md +276 -0
- doit_toolkit_cli-0.1.11/specs/032-status-dashboard/data-model.md +152 -0
- doit_toolkit_cli-0.1.11/specs/032-status-dashboard/plan.md +156 -0
- doit_toolkit_cli-0.1.11/specs/032-status-dashboard/quickstart.md +197 -0
- doit_toolkit_cli-0.1.11/specs/032-status-dashboard/research.md +110 -0
- doit_toolkit_cli-0.1.11/specs/032-status-dashboard/spec.md +209 -0
- doit_toolkit_cli-0.1.11/specs/032-status-dashboard/tasks.md +322 -0
- doit_toolkit_cli-0.1.11/specs/033-spec-task-crossrefs/checklists/requirements.md +45 -0
- doit_toolkit_cli-0.1.11/specs/033-spec-task-crossrefs/contracts/cli-interface.md +214 -0
- doit_toolkit_cli-0.1.11/specs/033-spec-task-crossrefs/data-model.md +198 -0
- doit_toolkit_cli-0.1.11/specs/033-spec-task-crossrefs/plan.md +208 -0
- doit_toolkit_cli-0.1.11/specs/033-spec-task-crossrefs/quickstart.md +122 -0
- doit_toolkit_cli-0.1.11/specs/033-spec-task-crossrefs/research.md +177 -0
- doit_toolkit_cli-0.1.11/specs/033-spec-task-crossrefs/review-report.md +119 -0
- doit_toolkit_cli-0.1.11/specs/033-spec-task-crossrefs/spec.md +198 -0
- doit_toolkit_cli-0.1.11/specs/033-spec-task-crossrefs/tasks.md +289 -0
- doit_toolkit_cli-0.1.11/specs/033-spec-task-crossrefs/test-report.md +120 -0
- doit_toolkit_cli-0.1.11/specs/034-fixit-workflow/checklists/requirements.md +36 -0
- doit_toolkit_cli-0.1.11/specs/034-fixit-workflow/contracts/cli-interface.md +337 -0
- doit_toolkit_cli-0.1.11/specs/034-fixit-workflow/data-model.md +298 -0
- doit_toolkit_cli-0.1.11/specs/034-fixit-workflow/plan.md +128 -0
- doit_toolkit_cli-0.1.11/specs/034-fixit-workflow/quickstart.md +311 -0
- doit_toolkit_cli-0.1.11/specs/034-fixit-workflow/research.md +277 -0
- doit_toolkit_cli-0.1.11/specs/034-fixit-workflow/review-report.md +236 -0
- doit_toolkit_cli-0.1.11/specs/034-fixit-workflow/spec.md +225 -0
- doit_toolkit_cli-0.1.11/specs/034-fixit-workflow/tasks.md +388 -0
- doit_toolkit_cli-0.1.11/specs/035-auto-mermaid-diagrams/contracts/cli-interface.md +240 -0
- doit_toolkit_cli-0.1.11/specs/035-auto-mermaid-diagrams/data-model.md +276 -0
- doit_toolkit_cli-0.1.11/specs/035-auto-mermaid-diagrams/plan.md +242 -0
- doit_toolkit_cli-0.1.11/specs/035-auto-mermaid-diagrams/quickstart.md +156 -0
- doit_toolkit_cli-0.1.11/specs/035-auto-mermaid-diagrams/research.md +151 -0
- doit_toolkit_cli-0.1.11/specs/035-auto-mermaid-diagrams/review-report.md +170 -0
- doit_toolkit_cli-0.1.11/specs/035-auto-mermaid-diagrams/spec.md +311 -0
- doit_toolkit_cli-0.1.11/specs/035-auto-mermaid-diagrams/tasks.md +351 -0
- doit_toolkit_cli-0.1.11/specs/036-spec-analytics-dashboard/checklists/requirements.md +48 -0
- doit_toolkit_cli-0.1.11/specs/036-spec-analytics-dashboard/contracts/analytics-cli.md +305 -0
- doit_toolkit_cli-0.1.11/specs/036-spec-analytics-dashboard/data-model.md +391 -0
- doit_toolkit_cli-0.1.11/specs/036-spec-analytics-dashboard/plan.md +186 -0
- doit_toolkit_cli-0.1.11/specs/036-spec-analytics-dashboard/quickstart.md +175 -0
- doit_toolkit_cli-0.1.11/specs/036-spec-analytics-dashboard/research.md +224 -0
- doit_toolkit_cli-0.1.11/specs/036-spec-analytics-dashboard/review-report.md +149 -0
- doit_toolkit_cli-0.1.11/specs/036-spec-analytics-dashboard/spec.md +222 -0
- doit_toolkit_cli-0.1.11/specs/036-spec-analytics-dashboard/tasks.md +318 -0
- doit_toolkit_cli-0.1.11/specs/037-memory-search-query/checklists/requirements.md +39 -0
- doit_toolkit_cli-0.1.11/specs/037-memory-search-query/contracts/memory-cli.md +324 -0
- doit_toolkit_cli-0.1.11/specs/037-memory-search-query/data-model.md +190 -0
- doit_toolkit_cli-0.1.11/specs/037-memory-search-query/plan.md +108 -0
- doit_toolkit_cli-0.1.11/specs/037-memory-search-query/quickstart.md +169 -0
- doit_toolkit_cli-0.1.11/specs/037-memory-search-query/research.md +157 -0
- doit_toolkit_cli-0.1.11/specs/037-memory-search-query/spec.md +209 -0
- doit_toolkit_cli-0.1.11/specs/037-memory-search-query/tasks.md +323 -0
- doit_toolkit_cli-0.1.11/specs/038-context-roadmap-summary/checklists/requirements.md +38 -0
- doit_toolkit_cli-0.1.11/specs/038-context-roadmap-summary/contracts/interfaces.md +217 -0
- doit_toolkit_cli-0.1.11/specs/038-context-roadmap-summary/data-model.md +220 -0
- doit_toolkit_cli-0.1.11/specs/038-context-roadmap-summary/plan.md +205 -0
- doit_toolkit_cli-0.1.11/specs/038-context-roadmap-summary/quickstart.md +158 -0
- doit_toolkit_cli-0.1.11/specs/038-context-roadmap-summary/research.md +155 -0
- doit_toolkit_cli-0.1.11/specs/038-context-roadmap-summary/review-report.md +177 -0
- doit_toolkit_cli-0.1.11/specs/038-context-roadmap-summary/spec.md +207 -0
- doit_toolkit_cli-0.1.11/specs/038-context-roadmap-summary/tasks.md +283 -0
- doit_toolkit_cli-0.1.11/specs/038-context-roadmap-summary/test-report.md +158 -0
- doit_toolkit_cli-0.1.11/specs/039-github-roadmap-sync/checklists/requirements.md +55 -0
- doit_toolkit_cli-0.1.11/specs/039-github-roadmap-sync/contracts/github_api.yaml +272 -0
- doit_toolkit_cli-0.1.11/specs/039-github-roadmap-sync/data-model.md +397 -0
- doit_toolkit_cli-0.1.11/specs/039-github-roadmap-sync/plan.md +353 -0
- doit_toolkit_cli-0.1.11/specs/039-github-roadmap-sync/quickstart.md +508 -0
- doit_toolkit_cli-0.1.11/specs/039-github-roadmap-sync/research.md +341 -0
- doit_toolkit_cli-0.1.11/specs/039-github-roadmap-sync/spec.md +192 -0
- doit_toolkit_cli-0.1.11/specs/039-github-roadmap-sync/tasks.md +352 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/checklists/requirements.md +44 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/contracts/github_linker_service.py +235 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/contracts/roadmap_matcher_service.py +137 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/contracts/spec_parser_service.py +226 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/data-model.md +343 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/p3-implementation-summary.md +203 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/plan.md +244 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/quickstart.md +398 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/research.md +283 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/spec.md +235 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/tasks.md +368 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/test-report-testit.md +379 -0
- doit_toolkit_cli-0.1.11/specs/040-spec-github-linking/test-report.md +381 -0
- doit_toolkit_cli-0.1.11/specs/041-milestone-generation/contracts/github-api.md +542 -0
- doit_toolkit_cli-0.1.11/specs/041-milestone-generation/data-model.md +410 -0
- doit_toolkit_cli-0.1.11/specs/041-milestone-generation/plan.md +196 -0
- doit_toolkit_cli-0.1.11/specs/041-milestone-generation/quickstart.md +400 -0
- doit_toolkit_cli-0.1.11/specs/041-milestone-generation/research.md +356 -0
- doit_toolkit_cli-0.1.11/specs/041-milestone-generation/spec.md +176 -0
- doit_toolkit_cli-0.1.11/specs/041-milestone-generation/tasks.md +336 -0
- doit_toolkit_cli-0.1.11/specs/041-milestone-generation/test-report.md +375 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/__init__.py +1356 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/__init__.py +26 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/analytics_command.py +616 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/context_command.py +213 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/diagram_command.py +304 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/fixit_command.py +641 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/hooks_command.py +211 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/init_command.py +613 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/memory_command.py +293 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/roadmapit_command.py +10 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/status_command.py +117 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/sync_prompts_command.py +248 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/validate_command.py +196 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/verify_command.py +204 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/workflow_mixin.py +224 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/cli/xref_command.py +555 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/formatters/__init__.py +8 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/formatters/base.py +38 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/formatters/json_formatter.py +126 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/formatters/markdown_formatter.py +97 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/formatters/rich_formatter.py +257 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/main.py +51 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/__init__.py +139 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/agent.py +74 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/analytics_models.py +384 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/context_config.py +464 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/crossref_models.py +182 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/diagram_models.py +363 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/fixit_models.py +355 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/hook_config.py +125 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/project.py +91 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/results.py +121 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/search_models.py +228 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/status_models.py +195 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/sync_models.py +146 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/template.py +77 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/validation_models.py +175 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/models/workflow_models.py +319 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/prompts/__init__.py +5 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/prompts/fixit_prompts.py +344 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/prompts/interactive.py +390 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/rules/__init__.py +5 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/rules/builtin_rules.py +160 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/__init__.py +79 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/agent_detector.py +168 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/analytics_service.py +218 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/architecture_generator.py +290 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/backup_service.py +204 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/config_loader.py +113 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/context_loader.py +1123 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/coverage_calculator.py +142 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/crossref_service.py +237 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/cycle_time_calculator.py +134 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/date_inferrer.py +349 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/diagram_service.py +337 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/drift_detector.py +109 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/entity_parser.py +301 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/er_diagram_generator.py +197 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/fixit_service.py +699 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/github_service.py +192 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/hook_manager.py +258 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/hook_validator.py +528 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/input_validator.py +322 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/memory_search.py +527 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/mermaid_validator.py +334 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/prompt_transformer.py +91 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/prompt_writer.py +133 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/query_interpreter.py +428 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/report_exporter.py +219 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/report_generator.py +256 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/requirement_parser.py +112 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/roadmap_summarizer.py +209 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/rule_engine.py +443 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/scaffolder.py +215 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/score_calculator.py +172 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/section_parser.py +204 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/spec_scanner.py +327 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/state_manager.py +355 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/status_reporter.py +143 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/task_parser.py +347 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/template_manager.py +710 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/template_reader.py +158 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/user_journey_generator.py +214 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/user_story_parser.py +232 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/validation_service.py +188 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/validator.py +232 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/velocity_tracker.py +173 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/services/workflow_engine.py +405 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/agent-file-template.md +28 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/checklist-template.md +39 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/commands/doit.checkin.md +363 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/commands/doit.constitution.md +187 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/commands/doit.documentit.md +485 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/commands/doit.fixit.md +181 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/commands/doit.implementit.md +265 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/commands/doit.planit.md +262 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/commands/doit.reviewit.md +355 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/commands/doit.roadmapit.md +389 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/commands/doit.scaffoldit.md +458 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/commands/doit.specit.md +521 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/commands/doit.taskit.md +304 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/commands/doit.testit.md +277 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/config/context.yaml +134 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/config/hooks.yaml +93 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/config/validation-rules.yaml +64 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/github-issue-templates/epic.yml +78 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/github-issue-templates/feature.yml +116 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/github-issue-templates/task.yml +129 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/hooks/.gitkeep +0 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/hooks/post-commit.sh +25 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/hooks/post-merge.sh +75 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/hooks/pre-commit.sh +17 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/hooks/pre-push.sh +18 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/memory/completed_roadmap.md +50 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/memory/constitution.md +125 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/memory/roadmap.md +61 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/plan-template.md +146 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/scripts/bash/check-prerequisites.sh +166 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/scripts/bash/common.sh +156 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/scripts/bash/create-new-feature.sh +297 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/scripts/bash/setup-plan.sh +61 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/scripts/bash/update-agent-context.sh +675 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/scripts/powershell/check-prerequisites.ps1 +148 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/scripts/powershell/common.ps1 +137 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/scripts/powershell/create-new-feature.ps1 +283 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/scripts/powershell/setup-plan.ps1 +61 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/scripts/powershell/update-agent-context.ps1 +406 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/spec-template.md +159 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/tasks-template.md +313 -0
- doit_toolkit_cli-0.1.11/src/doit_cli/templates/vscode-settings.json +14 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/commands/roadmapit.py +494 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/models/github_epic.py +154 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/models/github_feature.py +115 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/models/milestone.py +42 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/models/priority.py +104 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/models/roadmap.py +158 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/models/sync_metadata.py +144 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/models/sync_operation.py +137 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/services/github_cache_service.py +215 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/services/github_linker.py +514 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/services/github_service.py +558 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/services/milestone_service.py +419 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/services/roadmap_matcher.py +230 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/services/roadmap_merge_service.py +191 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/utils/fuzzy_match.py +125 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/utils/github_auth.py +144 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/utils/priority_mapper.py +101 -0
- doit_toolkit_cli-0.1.11/src/doit_toolkit_cli/utils/spec_parser.py +305 -0
- doit_toolkit_cli-0.1.11/tests/__init__.py +1 -0
- doit_toolkit_cli-0.1.11/tests/conftest.py +82 -0
- doit_toolkit_cli-0.1.11/tests/contract/__init__.py +1 -0
- doit_toolkit_cli-0.1.11/tests/contract/test_workflow_contracts.py +423 -0
- doit_toolkit_cli-0.1.11/tests/fixtures/github_responses.json +102 -0
- doit_toolkit_cli-0.1.11/tests/fixtures/sample_roadmap.md +17 -0
- doit_toolkit_cli-0.1.11/tests/fixtures/sample_spec.md +35 -0
- doit_toolkit_cli-0.1.11/tests/fixtures/sample_specs/invalid/spec.md +16 -0
- doit_toolkit_cli-0.1.11/tests/fixtures/sample_specs/valid/spec.md +34 -0
- doit_toolkit_cli-0.1.11/tests/integration/__init__.py +1 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_analytics_command.py +318 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_context_injection.py +625 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_diagram_command.py +358 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_diagram_workflow.py +433 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_fixit_workflow.py +620 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_guided_workflows.py +339 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_hooks_command.py +258 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_init_command.py +361 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_init_workflow_integration.py +187 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_memory_command.py +300 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_roadmapit_github.py +890 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_spec_validation_hook.py +262 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_specit_github.py +740 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_status_command.py +207 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_sync_prompts_command.py +185 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_validate_command.py +215 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_verify_command.py +199 -0
- doit_toolkit_cli-0.1.11/tests/integration/test_xref_integration.py +392 -0
- doit_toolkit_cli-0.1.11/tests/unit/__init__.py +1 -0
- doit_toolkit_cli-0.1.11/tests/unit/services/__init__.py +0 -0
- doit_toolkit_cli-0.1.11/tests/unit/services/test_coverage_calculator.py +208 -0
- doit_toolkit_cli-0.1.11/tests/unit/services/test_crossref_service.py +156 -0
- doit_toolkit_cli-0.1.11/tests/unit/services/test_requirement_parser.py +204 -0
- doit_toolkit_cli-0.1.11/tests/unit/services/test_task_parser.py +499 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_agent.py +111 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_agent_detector.py +99 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_architecture_generator.py +253 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_context_config.py +369 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_context_loader.py +486 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_custom_rules.py +333 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_diagram_service.py +340 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_entity_parser.py +112 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_er_diagram_generator.py +179 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_fixit_service.py +1212 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_formatters.py +290 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_fuzzy_match.py +225 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_github_cache_service.py +516 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_github_linker.py +478 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_github_roadmap_service.py +624 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_github_service.py +336 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_hook_config.py +222 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_hook_manager.py +233 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_hook_validator.py +379 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_init_workflow.py +168 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_input_validator.py +351 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_interactive_prompt.py +249 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_memory_search.py +254 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_mermaid_validator.py +154 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_non_interactive.py +354 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_priority_mapper.py +318 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_progress_display.py +322 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_query_interpreter.py +285 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_roadmap_matcher.py +361 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_roadmap_merge_service.py +497 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_roadmap_summarizer.py +340 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_rule_engine.py +221 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_scaffolder.py +105 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_score_calculator.py +231 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_spec_parser.py +380 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_spec_scanner.py +626 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_state_manager.py +421 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_status_reporter.py +265 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_sync_services.py +314 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_template_manager.py +457 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_user_journey_generator.py +171 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_user_story_parser.py +129 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_validation_models.py +234 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_validator.py +201 -0
- doit_toolkit_cli-0.1.11/tests/unit/test_workflow_engine.py +491 -0
|
@@ -0,0 +1,363 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Finalize feature implementation, close issues, update roadmaps, and create pull request
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
## User Input
|
|
6
|
+
|
|
7
|
+
```text
|
|
8
|
+
$ARGUMENTS
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
You **MUST** consider the user input before proceeding (if not empty).
|
|
12
|
+
|
|
13
|
+
## Load Project Context
|
|
14
|
+
|
|
15
|
+
Before proceeding, load the project context to inform your responses:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
doit context show
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
**If the command fails or doit is not installed**: Continue without context, but note that alignment with project principles cannot be verified.
|
|
22
|
+
|
|
23
|
+
**Use loaded context to**:
|
|
24
|
+
|
|
25
|
+
- Reference constitution principles when making decisions
|
|
26
|
+
- Consider roadmap priorities
|
|
27
|
+
- Identify connections to related specifications
|
|
28
|
+
|
|
29
|
+
## Outline
|
|
30
|
+
|
|
31
|
+
1. **Setup**: Run `.doit/scripts/bash/check-prerequisites.sh --json` from repo root and parse FEATURE_DIR and AVAILABLE_DOCS list. All paths must be absolute.
|
|
32
|
+
|
|
33
|
+
2. **Load checkin context**:
|
|
34
|
+
- **REQUIRED**: Read spec.md for feature name and requirements
|
|
35
|
+
- **REQUIRED**: Read tasks.md for completion status
|
|
36
|
+
- **IF EXISTS**: Read review-report.md for code review status
|
|
37
|
+
- **IF EXISTS**: Read test-report.md for test status
|
|
38
|
+
|
|
39
|
+
3. **Retrieve GitHub issues for feature**:
|
|
40
|
+
- Detect GitHub remote: `git remote get-url origin`
|
|
41
|
+
- If GitHub remote found:
|
|
42
|
+
- Search for Epic issue matching feature branch name
|
|
43
|
+
- Search for Feature issues linked to the Epic
|
|
44
|
+
- Search for Task issues linked to Features
|
|
45
|
+
- Build issue hierarchy tree
|
|
46
|
+
- If no GitHub remote: Skip issue management, proceed to step 6
|
|
47
|
+
|
|
48
|
+
4. **Review issue completion status**:
|
|
49
|
+
- For each issue in hierarchy:
|
|
50
|
+
- Check if issue is open or closed
|
|
51
|
+
- Compare against tasks.md completion
|
|
52
|
+
- Generate status summary:
|
|
53
|
+
|
|
54
|
+
```text
|
|
55
|
+
## Issue Status
|
|
56
|
+
|
|
57
|
+
### Epic: #XXX - [Epic Name]
|
|
58
|
+
Status: OPEN
|
|
59
|
+
|
|
60
|
+
### Features
|
|
61
|
+
| Issue | Title | Status | Tasks Done |
|
|
62
|
+
|-------|-------|--------|------------|
|
|
63
|
+
| #YYY | Feature A | OPEN | 5/5 |
|
|
64
|
+
| #ZZZ | Feature B | OPEN | 3/4 |
|
|
65
|
+
|
|
66
|
+
### Tasks
|
|
67
|
+
| Issue | Title | Status |
|
|
68
|
+
|-------|-------|--------|
|
|
69
|
+
| #AAA | Task 1 | CLOSED |
|
|
70
|
+
| #BBB | Task 2 | OPEN |
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
5. **Handle incomplete issues**:
|
|
74
|
+
- If any issues are still open but tasks show complete:
|
|
75
|
+
- List the incomplete issues
|
|
76
|
+
- Ask: "The following issues are still open. Do you want to close them? (yes/no/select)"
|
|
77
|
+
- If "select": Present each issue for individual decision
|
|
78
|
+
- If tasks show incomplete work:
|
|
79
|
+
- Warn: "Some tasks are not marked complete in tasks.md"
|
|
80
|
+
- Ask: "Do you want to proceed anyway? (yes/no)"
|
|
81
|
+
- Close approved issues via GitHub API
|
|
82
|
+
|
|
83
|
+
6. **Update roadmap files** (FR-039, FR-040):
|
|
84
|
+
|
|
85
|
+
#### 6.1 Get Current Feature Branch
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
git branch --show-current
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
Extract the feature pattern (e.g., `008-doit-roadmapit-command` from branch name).
|
|
92
|
+
|
|
93
|
+
#### 6.2 Check and Update roadmap.md
|
|
94
|
+
|
|
95
|
+
- Check if `.doit/memory/roadmap.md` exists:
|
|
96
|
+
- If NOT exists: Log "No roadmap.md found, skipping roadmap archive"
|
|
97
|
+
- If exists:
|
|
98
|
+
1. Read the roadmap file
|
|
99
|
+
2. Search for items with matching feature branch reference `[###-feature-name]`
|
|
100
|
+
- Pattern: Items containing backtick references like `` `008-feature-name` `` or `[008-feature-name]`
|
|
101
|
+
3. For each matching item found:
|
|
102
|
+
- Extract: item text, priority (P1-P4), rationale
|
|
103
|
+
- Remove the item from its current priority section
|
|
104
|
+
- Mark as completed with `[x]` if using checkbox format
|
|
105
|
+
|
|
106
|
+
#### 6.3 Archive to completed_roadmap.md
|
|
107
|
+
|
|
108
|
+
- Check if `.doit/memory/completed_roadmap.md` exists:
|
|
109
|
+
- If NOT exists:
|
|
110
|
+
1. Copy template from `.doit/templates/completed-roadmap-template.md`
|
|
111
|
+
2. Replace `[PROJECT_NAME]` with project name
|
|
112
|
+
3. Replace `[DATE]` with current date
|
|
113
|
+
4. If template not found, create with basic structure:
|
|
114
|
+
```markdown
|
|
115
|
+
# Completed Roadmap Items
|
|
116
|
+
|
|
117
|
+
**Project**: [Project Name]
|
|
118
|
+
**Created**: [Date]
|
|
119
|
+
|
|
120
|
+
## Recently Completed
|
|
121
|
+
|
|
122
|
+
| Item | Original Priority | Completed Date | Feature Branch | Notes |
|
|
123
|
+
|------|-------------------|----------------|----------------|-------|
|
|
124
|
+
```
|
|
125
|
+
- If exists: Load existing file
|
|
126
|
+
|
|
127
|
+
- For each matched roadmap item:
|
|
128
|
+
1. Add to "Recently Completed" table with:
|
|
129
|
+
- Item text (without the branch reference)
|
|
130
|
+
- Original priority (P1-P4)
|
|
131
|
+
- Completion date (today's date)
|
|
132
|
+
- Feature branch reference (`` `###-feature-name` ``)
|
|
133
|
+
- Notes (from spec.md summary if available)
|
|
134
|
+
|
|
135
|
+
- **Maintain 20-item limit** in Recently Completed:
|
|
136
|
+
1. Count items in "Recently Completed" section
|
|
137
|
+
2. If count > 20:
|
|
138
|
+
- Move oldest items (beyond 20) to Archive section
|
|
139
|
+
- Update Statistics section with new counts (P1, P2, P3, P4 totals)
|
|
140
|
+
|
|
141
|
+
#### 6.4 Write Updated Files
|
|
142
|
+
|
|
143
|
+
- Write updated roadmap.md (with completed items removed)
|
|
144
|
+
- Write updated completed_roadmap.md (with new completed items)
|
|
145
|
+
|
|
146
|
+
#### 6.5 Report Roadmap Changes
|
|
147
|
+
|
|
148
|
+
```markdown
|
|
149
|
+
## Roadmap Archive Summary
|
|
150
|
+
|
|
151
|
+
**Items Archived**: [N]
|
|
152
|
+
| Item | Original Priority |
|
|
153
|
+
|------|-------------------|
|
|
154
|
+
| [item text] | P[N] |
|
|
155
|
+
|
|
156
|
+
**Files Updated**:
|
|
157
|
+
- `.doit/memory/roadmap.md` - Removed [N] completed items
|
|
158
|
+
- `.doit/memory/completed_roadmap.md` - Added [N] items to archive
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
If no matching items found: Log "No matching roadmap items found for branch [branch-name]"
|
|
162
|
+
|
|
163
|
+
7. **Generate feature documentation** in docs/:
|
|
164
|
+
- Create `docs/features/[feature-name].md`:
|
|
165
|
+
|
|
166
|
+
```markdown
|
|
167
|
+
# [Feature Name]
|
|
168
|
+
|
|
169
|
+
**Completed**: [date]
|
|
170
|
+
**Branch**: [branch name]
|
|
171
|
+
**PR**: #XXX
|
|
172
|
+
|
|
173
|
+
## Overview
|
|
174
|
+
[Summary from spec.md]
|
|
175
|
+
|
|
176
|
+
## Requirements Implemented
|
|
177
|
+
| ID | Description | Status |
|
|
178
|
+
|----|-------------|--------|
|
|
179
|
+
| FR-001 | ... | Done |
|
|
180
|
+
|
|
181
|
+
## Technical Details
|
|
182
|
+
[Key decisions from plan.md]
|
|
183
|
+
|
|
184
|
+
## Files Changed
|
|
185
|
+
[List from tasks.md]
|
|
186
|
+
|
|
187
|
+
## Testing
|
|
188
|
+
- Automated tests: [summary from test-report.md]
|
|
189
|
+
- Manual tests: [summary from review-report.md]
|
|
190
|
+
|
|
191
|
+
## Related Issues
|
|
192
|
+
- Epic: #XXX
|
|
193
|
+
- Features: #YYY, #ZZZ
|
|
194
|
+
- Tasks: #AAA, #BBB, ...
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
8. **Prepare git commit**:
|
|
198
|
+
- Stage all changes: `git add -A`
|
|
199
|
+
- Generate commit message from feature context:
|
|
200
|
+
|
|
201
|
+
```text
|
|
202
|
+
feat([feature-name]): [brief description]
|
|
203
|
+
|
|
204
|
+
Implements [Epic/Feature name] with the following:
|
|
205
|
+
- [Key change 1]
|
|
206
|
+
- [Key change 2]
|
|
207
|
+
- [Key change 3]
|
|
208
|
+
|
|
209
|
+
Closes #XXX, #YYY, #ZZZ
|
|
210
|
+
|
|
211
|
+
Requirements: FR-001, FR-002, ...
|
|
212
|
+
Tests: X passed, Y manual verified
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
- Execute commit: `git commit -m "[message]"`
|
|
216
|
+
|
|
217
|
+
9. **Create pull request**:
|
|
218
|
+
- Determine target branch:
|
|
219
|
+
- Check $ARGUMENTS for `--target [branch]` flag
|
|
220
|
+
- If not specified, check for `develop` branch
|
|
221
|
+
- If no `develop`, use `main` or `master`
|
|
222
|
+
- Check for gh CLI:
|
|
223
|
+
- Run `which gh` to verify installation
|
|
224
|
+
- If not found: Output manual PR instructions and skip (FR-044 fallback)
|
|
225
|
+
- If gh CLI available:
|
|
226
|
+
- Push branch: `git push -u origin [branch]`
|
|
227
|
+
- Create PR:
|
|
228
|
+
|
|
229
|
+
```bash
|
|
230
|
+
gh pr create \
|
|
231
|
+
--title "feat([feature]): [description]" \
|
|
232
|
+
--body "[PR body from template]" \
|
|
233
|
+
--base [target-branch]
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
- PR body template:
|
|
237
|
+
|
|
238
|
+
```markdown
|
|
239
|
+
## Summary
|
|
240
|
+
[Brief description from spec.md]
|
|
241
|
+
|
|
242
|
+
## Changes
|
|
243
|
+
- [List of key changes]
|
|
244
|
+
|
|
245
|
+
## Testing
|
|
246
|
+
- [ ] Automated tests pass
|
|
247
|
+
- [ ] Manual testing complete
|
|
248
|
+
- [ ] Code review approved
|
|
249
|
+
|
|
250
|
+
## Requirements
|
|
251
|
+
| ID | Description | Status |
|
|
252
|
+
|----|-------------|--------|
|
|
253
|
+
| FR-XXX | ... | Done |
|
|
254
|
+
|
|
255
|
+
## Related Issues
|
|
256
|
+
Closes #XXX, #YYY, #ZZZ
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
Generated by `/doit.checkin`
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
10. **Handle missing gh CLI** (FR-044 fallback):
|
|
263
|
+
- If gh CLI not installed:
|
|
264
|
+
|
|
265
|
+
```text
|
|
266
|
+
## Manual PR Creation Required
|
|
267
|
+
|
|
268
|
+
The gh CLI is not installed. Please create a PR manually:
|
|
269
|
+
|
|
270
|
+
1. Push your branch:
|
|
271
|
+
git push -u origin [branch-name]
|
|
272
|
+
|
|
273
|
+
2. Create PR at:
|
|
274
|
+
https://github.com/[owner]/[repo]/compare/[target]...[branch]
|
|
275
|
+
|
|
276
|
+
3. Use this PR template:
|
|
277
|
+
[output template content]
|
|
278
|
+
|
|
279
|
+
4. Link these issues:
|
|
280
|
+
- Closes #XXX, #YYY, #ZZZ
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
11. **Handle missing develop branch** (fallback):
|
|
284
|
+
- If target branch doesn't exist:
|
|
285
|
+
- Check for `main`, then `master`
|
|
286
|
+
- If none found, ask user for target branch name
|
|
287
|
+
|
|
288
|
+
12. **Report**: Output summary:
|
|
289
|
+
- Issues closed (count)
|
|
290
|
+
- Roadmap updated (yes/no)
|
|
291
|
+
- Documentation generated (path)
|
|
292
|
+
- Commit created (hash)
|
|
293
|
+
- PR created (URL) or manual instructions
|
|
294
|
+
- Next steps (merge PR, delete branch after merge)
|
|
295
|
+
|
|
296
|
+
## Key Rules
|
|
297
|
+
|
|
298
|
+
- Use absolute paths for all file operations
|
|
299
|
+
- Never force-push or modify git history
|
|
300
|
+
- Always confirm before closing issues
|
|
301
|
+
- Generate documentation even if GitHub unavailable
|
|
302
|
+
- Provide manual fallbacks for all GitHub operations
|
|
303
|
+
- Include issue references in commit message for auto-linking
|
|
304
|
+
|
|
305
|
+
---
|
|
306
|
+
|
|
307
|
+
## Next Steps
|
|
308
|
+
|
|
309
|
+
After completing this command, display a recommendation section based on the outcome:
|
|
310
|
+
|
|
311
|
+
### On Success (PR merged or ready to merge)
|
|
312
|
+
|
|
313
|
+
Display the following at the end of your output:
|
|
314
|
+
|
|
315
|
+
```markdown
|
|
316
|
+
---
|
|
317
|
+
|
|
318
|
+
## Next Steps
|
|
319
|
+
|
|
320
|
+
┌───────────────────────────────────────────────────────────────────────────────────────┐
|
|
321
|
+
│ Workflow Progress │
|
|
322
|
+
│ ● specit → ● planit → ● taskit → ● implementit → ● testit → ● reviewit → ● checkin │
|
|
323
|
+
└───────────────────────────────────────────────────────────────────────────────────────┘
|
|
324
|
+
|
|
325
|
+
**Status**: Feature complete! 🎉
|
|
326
|
+
|
|
327
|
+
**Recommended**: Run `/doit.roadmapit` to update the project roadmap with this completion.
|
|
328
|
+
|
|
329
|
+
**Alternative**: Run `/doit.specit [next feature]` to start the next feature development.
|
|
330
|
+
```
|
|
331
|
+
|
|
332
|
+
### On Partial Success (PR created, pending merge)
|
|
333
|
+
|
|
334
|
+
If the PR was created but not yet merged:
|
|
335
|
+
|
|
336
|
+
```markdown
|
|
337
|
+
---
|
|
338
|
+
|
|
339
|
+
## Next Steps
|
|
340
|
+
|
|
341
|
+
┌───────────────────────────────────────────────────────────────────────────────────────┐
|
|
342
|
+
│ Workflow Progress │
|
|
343
|
+
│ ● specit → ● planit → ● taskit → ● implementit → ● testit → ● reviewit → ◐ checkin │
|
|
344
|
+
└───────────────────────────────────────────────────────────────────────────────────────┘
|
|
345
|
+
|
|
346
|
+
**Status**: PR created and awaiting merge.
|
|
347
|
+
|
|
348
|
+
**Next**: Merge the PR when ready, then run `/doit.roadmapit` to update the project roadmap.
|
|
349
|
+
```
|
|
350
|
+
|
|
351
|
+
### On Error (issues incomplete)
|
|
352
|
+
|
|
353
|
+
If some issues or tasks are still incomplete:
|
|
354
|
+
|
|
355
|
+
```markdown
|
|
356
|
+
---
|
|
357
|
+
|
|
358
|
+
## Next Steps
|
|
359
|
+
|
|
360
|
+
**Issue**: Some tasks or issues are still open.
|
|
361
|
+
|
|
362
|
+
**Recommended**: Complete the outstanding tasks with `/doit.implementit`, or use `--force` flag to proceed anyway.
|
|
363
|
+
```
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Create or update the project constitution from interactive or provided principle inputs, ensuring all dependent templates stay in sync.
|
|
3
|
+
handoffs:
|
|
4
|
+
- label: Build Specification
|
|
5
|
+
agent: doit.doit
|
|
6
|
+
prompt: Implement the feature specification based on the updated constitution. I want to build...
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## User Input
|
|
10
|
+
|
|
11
|
+
```text
|
|
12
|
+
$ARGUMENTS
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
You **MUST** consider the user input before proceeding (if not empty).
|
|
16
|
+
|
|
17
|
+
## Load Project Context
|
|
18
|
+
|
|
19
|
+
Before proceeding, load the project context to inform your responses:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
doit context show
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
**If the command fails or doit is not installed**: Continue without context, but note that alignment with project principles cannot be verified.
|
|
26
|
+
|
|
27
|
+
**Use loaded context to**:
|
|
28
|
+
|
|
29
|
+
- Reference constitution principles when making decisions
|
|
30
|
+
- Consider roadmap priorities
|
|
31
|
+
- Identify connections to related specifications
|
|
32
|
+
|
|
33
|
+
## Outline
|
|
34
|
+
|
|
35
|
+
You are updating the project constitution at `.doit/memory/constitution.md`. This file is a TEMPLATE containing placeholder tokens in square brackets (e.g. `[PROJECT_NAME]`, `[PRINCIPLE_1_NAME]`). Your job is to (a) collect/derive concrete values, (b) fill the template precisely, and (c) propagate any amendments across dependent artifacts.
|
|
36
|
+
|
|
37
|
+
Follow this execution flow:
|
|
38
|
+
|
|
39
|
+
1. Load the existing constitution template at `.doit/memory/constitution.md`.
|
|
40
|
+
- Identify every placeholder token of the form `[ALL_CAPS_IDENTIFIER]`.
|
|
41
|
+
**IMPORTANT**: The user might require less or more principles than the ones used in the template. If a number is specified, respect that - follow the general template. You will update the doc accordingly.
|
|
42
|
+
|
|
43
|
+
2. **Section-by-Section Update Mode**:
|
|
44
|
+
If user input specifies a particular section to update (e.g., "update tech stack" or "change deployment"), focus on that section only while preserving other sections. Supported section keywords:
|
|
45
|
+
- "purpose" / "goals" → Purpose & Goals section
|
|
46
|
+
- "tech" / "stack" / "language" → Tech Stack section
|
|
47
|
+
- "infrastructure" / "hosting" / "cloud" → Infrastructure section
|
|
48
|
+
- "deployment" / "ci" / "cd" → Deployment section
|
|
49
|
+
- "principles" → Core Principles section
|
|
50
|
+
- "governance" → Governance section
|
|
51
|
+
|
|
52
|
+
If no specific section mentioned, proceed with full constitution review.
|
|
53
|
+
|
|
54
|
+
3. **Guided Prompts for New Placeholders**:
|
|
55
|
+
When collecting values for the following placeholders, use these prompts if values not provided:
|
|
56
|
+
|
|
57
|
+
**Purpose & Goals:**
|
|
58
|
+
- [PROJECT_PURPOSE]: "What is the main purpose of this project? What problem does it solve?"
|
|
59
|
+
- [SUCCESS_CRITERIA]: "What are the key success metrics or criteria for this project?"
|
|
60
|
+
|
|
61
|
+
**Tech Stack (FR-005, FR-006):**
|
|
62
|
+
- [PRIMARY_LANGUAGE]: "What programming language(s) will this project use? (e.g., Python 3.11+, TypeScript)"
|
|
63
|
+
- [FRAMEWORKS]: "What frameworks will you use? (e.g., FastAPI, React, Django)"
|
|
64
|
+
- [KEY_LIBRARIES]: "What key libraries/packages are essential? (e.g., Pydantic, SQLAlchemy)"
|
|
65
|
+
|
|
66
|
+
**Infrastructure (FR-007, FR-008):**
|
|
67
|
+
- [HOSTING_PLATFORM]: "Where will this be hosted? (e.g., AWS ECS, Google Cloud Run, Vercel, self-hosted)"
|
|
68
|
+
- [CLOUD_PROVIDER]: "Which cloud provider? (AWS, GCP, Azure, multi-cloud, on-premises)"
|
|
69
|
+
- [DATABASE]: "What database(s) will you use? (e.g., PostgreSQL, MongoDB, none)"
|
|
70
|
+
|
|
71
|
+
**Deployment:**
|
|
72
|
+
- [CICD_PIPELINE]: "What CI/CD system? (e.g., GitHub Actions, GitLab CI, Jenkins)"
|
|
73
|
+
- [DEPLOYMENT_STRATEGY]: "What deployment strategy? (blue-green, rolling, canary, manual)"
|
|
74
|
+
- [ENVIRONMENTS]: "What environments? (e.g., dev, staging, production)"
|
|
75
|
+
|
|
76
|
+
4. Collect/derive values for placeholders:
|
|
77
|
+
- If user input (conversation) supplies a value, use it.
|
|
78
|
+
- Otherwise infer from existing repo context (README, docs, prior constitution versions if embedded).
|
|
79
|
+
- For governance dates: `RATIFICATION_DATE` is the original adoption date (if unknown ask or mark TODO), `LAST_AMENDED_DATE` is today if changes are made, otherwise keep previous.
|
|
80
|
+
- `CONSTITUTION_VERSION` must increment according to semantic versioning rules:
|
|
81
|
+
- MAJOR: Backward incompatible governance/principle removals or redefinitions.
|
|
82
|
+
- MINOR: New principle/section added or materially expanded guidance.
|
|
83
|
+
- PATCH: Clarifications, wording, typo fixes, non-semantic refinements.
|
|
84
|
+
- If version bump type ambiguous, propose reasoning before finalizing.
|
|
85
|
+
|
|
86
|
+
5. Draft the updated constitution content:
|
|
87
|
+
- Replace every placeholder with concrete text (no bracketed tokens left except intentionally retained template slots that the project has chosen not to define yet—explicitly justify any left).
|
|
88
|
+
- Preserve heading hierarchy and comments can be removed once replaced unless they still add clarifying guidance.
|
|
89
|
+
- Ensure each Principle section: succinct name line, paragraph (or bullet list) capturing non‑negotiable rules, explicit rationale if not obvious.
|
|
90
|
+
- Ensure Governance section lists amendment procedure, versioning policy, and compliance review expectations.
|
|
91
|
+
|
|
92
|
+
6. Consistency propagation checklist (convert prior checklist into active validations):
|
|
93
|
+
- Read `.doit/templates/plan-template.md` and ensure any "Constitution Check" or rules align with updated principles.
|
|
94
|
+
- Read `.doit/templates/spec-template.md` for scope/requirements alignment—update if constitution adds/removes mandatory sections or constraints.
|
|
95
|
+
- Read `.doit/templates/tasks-template.md` and ensure task categorization reflects new or removed principle-driven task types (e.g., observability, versioning, testing discipline).
|
|
96
|
+
- Read each command file in `.doit/templates/commands/*.md` (including this one) to verify no outdated references (agent-specific names like CLAUDE only) remain when generic guidance is required.
|
|
97
|
+
- Read any runtime guidance docs (e.g., `README.md`, `docs/quickstart.md`, or agent-specific guidance files if present). Update references to principles changed.
|
|
98
|
+
|
|
99
|
+
7. Produce a Sync Impact Report (prepend as an HTML comment at top of the constitution file after update):
|
|
100
|
+
- Version change: old → new
|
|
101
|
+
- List of modified principles (old title → new title if renamed)
|
|
102
|
+
- Added sections
|
|
103
|
+
- Removed sections
|
|
104
|
+
- Templates requiring updates (✅ updated / ⚠ pending) with file paths
|
|
105
|
+
- Follow-up TODOs if any placeholders intentionally deferred.
|
|
106
|
+
|
|
107
|
+
8. Validation before final output:
|
|
108
|
+
- No remaining unexplained bracket tokens.
|
|
109
|
+
- Version line matches report.
|
|
110
|
+
- Dates ISO format YYYY-MM-DD.
|
|
111
|
+
- Principles are declarative, testable, and free of vague language ("should" → replace with MUST/SHOULD rationale where appropriate).
|
|
112
|
+
|
|
113
|
+
9. Write the completed constitution back to `.doit/memory/constitution.md` (overwrite).
|
|
114
|
+
|
|
115
|
+
10. Output a final summary to the user with:
|
|
116
|
+
- New version and bump rationale.
|
|
117
|
+
- Any files flagged for manual follow-up.
|
|
118
|
+
- Suggested commit message (e.g., `docs: amend constitution to vX.Y.Z (principle additions + governance update)`).
|
|
119
|
+
|
|
120
|
+
Formatting & Style Requirements:
|
|
121
|
+
|
|
122
|
+
- Use Markdown headings exactly as in the template (do not demote/promote levels).
|
|
123
|
+
- Wrap long rationale lines to keep readability (<100 chars ideally) but do not hard enforce with awkward breaks.
|
|
124
|
+
- Keep a single blank line between sections.
|
|
125
|
+
- Avoid trailing whitespace.
|
|
126
|
+
|
|
127
|
+
If the user supplies partial updates (e.g., only one principle revision), still perform validation and version decision steps.
|
|
128
|
+
|
|
129
|
+
If critical info missing (e.g., ratification date truly unknown), insert `TODO(<FIELD_NAME>): explanation` and include in the Sync Impact Report under deferred items.
|
|
130
|
+
|
|
131
|
+
Do not create a new template; always operate on the existing `.doit/memory/constitution.md` file.
|
|
132
|
+
|
|
133
|
+
## Constitution Reading Utility
|
|
134
|
+
|
|
135
|
+
Other commands can read and utilize the constitution by:
|
|
136
|
+
|
|
137
|
+
1. **Loading the constitution**: Read `.doit/memory/constitution.md`
|
|
138
|
+
2. **Extracting tech stack**: Parse the Tech Stack section for language, framework, and library information
|
|
139
|
+
3. **Extracting infrastructure**: Parse the Infrastructure section for hosting and cloud provider details
|
|
140
|
+
4. **Extracting deployment**: Parse the Deployment section for CI/CD and environment configuration
|
|
141
|
+
5. **Checking principles**: Parse Core Principles for project constraints and requirements
|
|
142
|
+
|
|
143
|
+
**Usage in other commands**:
|
|
144
|
+
|
|
145
|
+
```text
|
|
146
|
+
# At the start of any command that needs project context:
|
|
147
|
+
1. Check if `.doit/memory/constitution.md` exists
|
|
148
|
+
2. If exists, read and parse relevant sections
|
|
149
|
+
3. Use extracted values to inform command behavior (e.g., scaffold uses tech stack, plan uses constraints)
|
|
150
|
+
4. If constitution is incomplete or missing, prompt user or proceed with defaults
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## Next Steps
|
|
156
|
+
|
|
157
|
+
After completing this command, display a recommendation section based on the outcome:
|
|
158
|
+
|
|
159
|
+
### On Success (constitution created or updated)
|
|
160
|
+
|
|
161
|
+
Display the following at the end of your output:
|
|
162
|
+
|
|
163
|
+
```markdown
|
|
164
|
+
---
|
|
165
|
+
|
|
166
|
+
## Next Steps
|
|
167
|
+
|
|
168
|
+
**Constitution updated successfully!**
|
|
169
|
+
|
|
170
|
+
**Recommended**: Run `/doit.scaffoldit` to generate project structure based on the tech stack in your constitution.
|
|
171
|
+
|
|
172
|
+
**Alternative**: Run `/doit.specit [feature description]` to create a feature specification for your first feature.
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
### On Error (validation failed)
|
|
176
|
+
|
|
177
|
+
If the constitution could not be validated:
|
|
178
|
+
|
|
179
|
+
```markdown
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
## Next Steps
|
|
183
|
+
|
|
184
|
+
**Issue**: Constitution validation failed.
|
|
185
|
+
|
|
186
|
+
**Recommended**: Review the errors above and correct the constitution content.
|
|
187
|
+
```
|