Add PR Bridge extension to community catalog#2148
Conversation
- 3 commands: generate PR descriptions, reviewer checklists, and change summaries - 1 hook: after_implement for auto-generating PR description - Closes the SDD workflow loop: specify → plan → tasks → implement → PR
|
This is an original contribution — not from an issue request, but from a gap I noticed in the SDD Spec Kit covers specify → plan → tasks → implement beautifully. But then the developer has to manually PR Bridge closes that loop. It reads spec.md, plan.md, tasks.md, and git diff to auto-generate:
Every section traces back to a spec artifact. Requirements without matching code get flagged with This makes the SDD workflow end-to-end: from specification all the way to pull request. |
There was a problem hiding this comment.
Pull request overview
Adds the new PR Bridge community extension to Spec Kit’s community catalog and documentation so users can discover and install it as part of the SDD workflow.
Changes:
- Added a new
pr-bridgeentry to the community extension catalog (with metadata, URLs, version, and requirements). - Added PR Bridge to the community extensions table in
README.md. - Updated the community catalog
updated_attimestamp.
Show a summary per file
| File | Description |
|---|---|
README.md |
Adds PR Bridge to the community extensions listing for discoverability. |
extensions/catalog.community.json |
Registers the pr-bridge extension metadata in the community catalog and updates updated_at. |
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
Keep 2026-04-10 date since pr-bridge extension entry is dated 2026-04-10.
There was a problem hiding this comment.
Pull request overview
Adds the new PR Bridge community extension to Spec Kit’s public-facing community listings, making it discoverable via both the community catalog JSON and the main README table.
Changes:
- Added a
pr-bridgeentry toextensions/catalog.community.json(including metadata, URLs, tags, and version requirements). - Added a corresponding “PR Bridge” row to the community extensions table in
README.md. - Updated the community catalog’s top-level
updated_attimestamp to2026-04-10.
Show a summary per file
| File | Description |
|---|---|
| README.md | Adds PR Bridge to the community extensions table with name, purpose, category/effect, and repo URL. |
| extensions/catalog.community.json | Registers PR Bridge in the community extension catalog and bumps the catalog updated_at. |
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 new
Keep main's newer timestamp 2026-04-10T12:34:56Z.
There was a problem hiding this comment.
Pull request overview
Adds the new PR Bridge community extension entry to Spec Kit’s extension discovery surfaces (the community catalog JSON and the README table), making it available for users to find and install as part of the overall SDD workflow.
Changes:
- Added a
pr-bridgeentry toextensions/catalog.community.jsonwith metadata (version, URLs, tags, requires/provides). - Added a corresponding “PR Bridge” row to the community extensions table in
README.md.
Show a summary per file
| File | Description |
|---|---|
| README.md | Adds PR Bridge to the community extensions listing so it’s discoverable from the main project documentation. |
| extensions/catalog.community.json | Registers PR Bridge in the community extension catalog with download/repo/docs/changelog metadata and capabilities. |
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 new
|
Thank you! |
Summary - Adds PR Bridge extension to the community catalog and README - 3 commands:
/speckit.pr.generate,/speckit.pr.checklist,/speckit.pr.summary- 1 hook:after_implement— auto-generate PR description after implementation - Original contribution — closes the missing final step in the SDD workflow ## The Problem Spec Kit's workflow ends at/speckit.implement. After building a feature, developers manually writePR descriptions from scratch — even though all the information already exists in spec.md, plan.md, and
tasks.md. This extension bridges that gap.
The SDD Loop (Now Complete)
/speckit.specify → spec.md What to build
/speckit.plan → plan.md How to build it
/speckit.tasks → tasks.md Step-by-step tasks
/speckit.implement → code Build it
/speckit.pr.generate → PR description ← NEW: Tell reviewers what you built
Commands
/speckit.pr.generate/speckit.pr.checklist/speckit.pr.summaryAll commands are read-only — they generate text, never create or push PRs directly.
Key Features
.github/PULL_REQUEST_TEMPLATE.mdif one existsfeat:,fix:,refactor:)Changes
extensions/catalog.community.json— addedpr-bridgeentry (alphabetical, betweenplan-review-gateandpresetify)README.md— added extension row (alphabetical, between Plan Review Gate and Presetify)updated_atto2026-04-10Extension repo
https://github.com/Quratulain-bilal/spec-kit-pr-bridge-