Add specify - #21
Merged
Merged
Conversation
There was a problem hiding this comment.
🟡 Changes recommended
The claude integration manifest references .claude/skills/... files that are not present, and .gitignore now ignores .claude/, making the integration state inconsistent and likely to break tooling.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
Adds Spec Kit (“Specify”) scaffolding to the repo, including a bundled speckit workflow, templates for spec/plan/tasks/checklists/constitution, and PowerShell scripts to drive the workflow on Windows.
Changes:
- Registers the
speckit“Full SDD Cycle” workflow and provides its workflow definition. - Adds core documentation templates (spec/plan/tasks/checklist/constitution) and memory stubs.
- Adds/updates Spec Kit PowerShell utilities (feature creation, template resolution/composition, prerequisite checks) plus integration state/manifests.
File summaries
| File | Description |
|---|---|
| .specify/workflows/workflow-registry.json | Registers the bundled speckit workflow. |
| .specify/workflows/speckit/workflow.yml | Defines the end-to-end workflow steps and gates. |
| .specify/templates/tasks-template.md | Adds the tasks.md generation template. |
| .specify/templates/spec-template.md | Adds the spec.md template. |
| .specify/templates/plan-template.md | Adds the plan.md template. |
| .specify/templates/constitution-template.md | Adds a constitution template. |
| .specify/templates/checklist-template.md | Adds a reviewer checklist template. |
| .specify/scripts/powershell/setup-tasks.ps1 | Adds PowerShell support for tasks prerequisites/template resolution. |
| .specify/scripts/powershell/setup-plan.ps1 | Adds PowerShell support for plan.md setup. |
| .specify/scripts/powershell/resolve-template.ps1 | Adds PowerShell template content resolver CLI. |
| .specify/scripts/powershell/create-new-feature.ps1 | Adds PowerShell feature directory/branch naming generator. |
| .specify/scripts/powershell/common.ps1 | Adds shared PowerShell functions (paths, templates, composition). |
| .specify/scripts/powershell/check-prerequisites.ps1 | Adds consolidated prerequisite checking for the workflow. |
| .specify/memory/constitution.md | Adds initial constitution memory content. |
| .specify/memory/.constitution-template.json | Records constitution template provenance/hash. |
| .specify/integrations/speckit.manifest.json | Adds speckit integration manifest and file hashes. |
| .specify/integrations/claude.manifest.json | Adds claude integration manifest and expected files list. |
| .specify/integration.json | Adds integration state (default integration + settings). |
| .specify/init-options.json | Captures initialization options for Spec Kit. |
| .specify/.gitignore | Adds Spec Kit local-state ignore rules. |
| .gitignore | Updates repo-level ignore rules (including .claude/). |
Review details
- Files reviewed: 20/21 changed files
- Comments generated: 3
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+6
to
+10
| ".claude/skills/speckit-analyze/SKILL.md": "5d0565394ce8a573476718e546df3561357fd89061e9608c26fe97176e3660f4", | ||
| ".claude/skills/speckit-clarify/SKILL.md": "122da9a8c710df930fbe8219c3feb33ffd610f9659b83574e1dffb98bf5e1bd4", | ||
| ".claude/skills/speckit-constitution/SKILL.md": "78ed5639ada6bafffba4d7def4e3fbf36eb4412edb5fe45664fcea52726eb37a", | ||
| ".claude/skills/speckit-implement/SKILL.md": "00a8aeb8aa4038ad7ccdee7b21e15dd473f1aa100d022ae1d04f0939c643bc96", | ||
| ".claude/skills/speckit-converge/SKILL.md": "ca224eb399ff835884787dc87aaf862930f54bc44f8b1ad9dcc9eb67962a9e1d", |
| [PSCustomObject]$result | ConvertTo-Json -Compress | ||
| } else { | ||
| # Text output | ||
| Write-Output "FEATURE_DIR:$($paths.FEATURE_DIR)" |
Comment on lines
+38
to
+41
| scope: | ||
| type: string | ||
| default: "full" | ||
| enum: ["full", "backend-only", "frontend-only"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.