Add PR Bridge extension to community catalog#2148
Add PR Bridge extension to community catalog#2148Quratulain-bilal wants to merge 2 commits intogithub:mainfrom
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.
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-