feat: add GitHub Issues Integration to community catalog#2188
feat: add GitHub Issues Integration to community catalog#2188Fatima367 wants to merge 1 commit intogithub:mainfrom
Conversation
Add GitHub Issues Integration extension to the community catalog and README. Extension provides: - /speckit.github-issues.import - Import GitHub Issue and generate spec.md - /speckit.github-issues.sync - Keep specs updated with issue changes - /speckit.github-issues.link - Add bidirectional traceability Resolves github#2175
There was a problem hiding this comment.
Pull request overview
Adds the GitHub Issues Integration community extension to Spec Kit’s community catalog so users can discover/install it, and lists it in the README community extensions table.
Changes:
- Added a new
github-issuesentry toextensions/catalog.community.json(plus a catalogupdated_atbump). - Added “GitHub Issues Integration” to the Community Extensions table in
README.md.
Show a summary per file
| File | Description |
|---|---|
| README.md | Adds the new integration to the Community Extensions list for discoverability. |
| extensions/catalog.community.json | Registers the github-issues extension in the community catalog with metadata and requirements. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comments suppressed due to low confidence (1)
extensions/catalog.community.json:690
- Per
extensions/EXTENSION-PUBLISHING-GUIDE.md, new catalog entries should use the current timestamp forcreated_atandupdated_at. This entry sets both to2026-04-12T00:00:00Z(midnight), which doesn’t match the “current timestamp” requirement; please set these to the actual time of publication/update (and keep them in sync with the catalog update).
"verified": false,
"downloads": 0,
"stars": 0,
"created_at": "2026-04-12T00:00:00Z",
"updated_at": "2026-04-12T00:00:00Z"
- Files reviewed: 2/2 changed files
- Comments generated: 1
| { | ||
| "schema_version": "1.0", | ||
| "updated_at": "2026-04-10T17:00:00Z", | ||
| "updated_at": "2026-04-12T12:06:00Z", |
There was a problem hiding this comment.
extensions/catalog.community.json timestamps should follow the Extension Publishing Guide: use the current timestamp when adding/updating entries and bump the top-level updated_at to the current time. The catalog updated_at here (2026-04-12T12:06:00Z) looks stale relative to when this PR is being merged/reviewed; please update it to the time of this change.
This issue also appears on line 686 of the same file.
| "updated_at": "2026-04-12T12:06:00Z", | |
| "updated_at": "2026-04-13T00:00:00Z", |
Summary
Adds the GitHub Issues Integration extension to the community catalog, enabling users to
generate spec artifacts directly from GitHub Issues.
Resolves #2175
Extension Details
github-issuesintegrationFeatures
/speckit.github-issues.import- Import GitHub Issue and generate structured spec.md/speckit.github-issues.sync- Keep specs updated when source issues change/speckit.github-issues.link- Add bidirectional traceability between specs and issuesProblem Solved
Developers already document requirements in GitHub Issues but then rewrite everything from
scratch in
spec.mdwhen starting SDD. This extension eliminates that duplicate work by:Installation