{{ message }}
Add Worktree Isolation extension to community catalog#2143
Merged
mnriem merged 1 commit intogithub:mainfrom Apr 9, 2026
Merged
Add Worktree Isolation extension to community catalog#2143mnriem merged 1 commit intogithub:mainfrom
mnriem merged 1 commit intogithub:mainfrom
Conversation
- 3 commands: create, list, clean worktrees for parallel feature development - 1 hook: after_specify for auto-worktree creation - Addresses community request in issue github#61 (36+ upvotes)
Contributor
There was a problem hiding this comment.
Pull request overview
Adds the Worktree Isolation community extension to Spec Kit’s published community extension surfaces (catalog + README), making it discoverable and installable via the standard catalog mechanism.
Changes:
- Added a
worktreeentry toextensions/catalog.community.jsonwith metadata, version constraints, and provide counts. - Added a corresponding Worktree Isolation row to the Community Extensions table in
README.md.
Show a summary per file
| File | Description |
|---|---|
| README.md | Adds Worktree Isolation to the Community Extensions table for discoverability. |
| extensions/catalog.community.json | Adds the worktree extension metadata entry to the community catalog. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 0
mnriem
approved these changes
Apr 9, 2026
Collaborator
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.

Summary - Adds Worktree Isolation extension to the community catalog and README - 3 commands:
/speckit.worktree.create,/speckit.worktree.list,/speckit.worktree.clean- 1 hook:after_specify— auto-spawn worktree after new feature specification - Addresses community request in issue #61 (36+ upvotes)What it does
Spawns isolated git worktrees so developers can work on multiple features in parallel without checkout
switching. Each worktree gets its own directory in
.worktrees/sharing the same.gitrepository —no extra clones needed.
/speckit.worktree.create/speckit.worktree.list/speckit.worktree.cleanChanges
extensions/catalog.community.json— addedworktreeentry (alphabetical, afterverify-tasks)README.md— added extension row (alphabetical, after Verify Tasks Extension)Extension repo