Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,28 @@ When working on spec-kit:
3. Test script functionality in the `scripts/` directory
4. Ensure memory files (`memory/constitution.md`) are updated if major process changes are made

### Testing template and command changes locally

Running `uv run specify init` pulls released packages, which won’t include your local changes.
To test your templates, commands, and other changes locally, follow these steps:

1. **Create release packages**

Run the following command to generate the local packages:
```
./.github/workflows/scripts/create-release-packages.sh v1.0.0
```

2. **Copy the relevant package to your test project**

```
cp -r .genreleases/sdd-copilot-package-sh/. <path-to-test-project>/
Copy link

Copilot AI Oct 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Corrected spelling of 'genreleases' to '.gen-releases'.

Suggested change
cp -r .genreleases/sdd-copilot-package-sh/. <path-to-test-project>/
cp -r .gen-releases/sdd-copilot-package-sh/. <path-to-test-project>/

Copilot uses AI. Check for mistakes.
```

3. **Open and test the agent**

Navigate to your test project folder and open the agent to verify your implementation.

## AI contributions in Spec Kit

> [!IMPORTANT]
Expand Down