Skip to content

Commit e27896e

Browse files
authored
feat: add GitHub Issues Integration to community catalog (#2188)
* feat: add GitHub Issues Integration to community catalog 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 #2175 * Modify created_at and updated_at timestamps Updated timestamps for created_at and updated_at fields. * Update updated_at date in catalog.community.json
1 parent b67b285 commit e27896e

File tree

2 files changed

+43
-2
lines changed

2 files changed

+43
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ The following community-contributed extensions are available in [`catalog.commun
199199
| Fix Findings | Automated analyze-fix-reanalyze loop that resolves spec findings until clean | `code` | Read+Write | [spec-kit-fix-findings](https://github.com/Quratulain-bilal/spec-kit-fix-findings) |
200200
| FixIt Extension | Spec-aware bug fixing — maps bugs to spec artifacts, proposes a plan, applies minimal changes | `code` | Read+Write | [spec-kit-fixit](https://github.com/speckit-community/spec-kit-fixit) |
201201
| Fleet Orchestrator | Orchestrate a full feature lifecycle with human-in-the-loop gates across all SpecKit phases | `process` | Read+Write | [spec-kit-fleet](https://github.com/sharathsatish/spec-kit-fleet) |
202+
| GitHub Issues Integration | Generate spec artifacts from GitHub Issues - import issues, sync updates, and maintain bidirectional traceability | `integration` | Read+Write | [spec-kit-github-issues](https://github.com/Fatima367/spec-kit-github-issues) |
202203
| Iterate | Iterate on spec documents with a two-phase define-and-apply workflow — refine specs mid-implementation and go straight back to building | `docs` | Read+Write | [spec-kit-iterate](https://github.com/imviancagrace/spec-kit-iterate) |
203204
| Jira Integration | Create Jira Epics, Stories, and Issues from spec-kit specifications and task breakdowns with configurable hierarchy and custom field support | `integration` | Read+Write | [spec-kit-jira](https://github.com/mbachorik/spec-kit-jira) |
204205
| Learning Extension | Generate educational guides from implementations and enhance clarifications with mentoring context | `docs` | Read+Write | [spec-kit-learn](https://github.com/imviancagrace/spec-kit-learn) |

extensions/catalog.community.json

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"schema_version": "1.0",
3-
"updated_at": "2026-04-12T19:00:00Z",
3+
"updated_at": "2026-04-13T14:39:00Z",
44
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json",
55
"extensions": {
66
"aide": {
@@ -649,6 +649,46 @@
649649
"created_at": "2026-03-06T00:00:00Z",
650650
"updated_at": "2026-03-31T00:00:00Z"
651651
},
652+
"github-issues": {
653+
"name": "GitHub Issues Integration",
654+
"id": "github-issues",
655+
"description": "Generate spec artifacts from GitHub Issues - import issues, sync updates, and maintain bidirectional traceability",
656+
"author": "Fatima367",
657+
"version": "1.0.0",
658+
"download_url": "https://github.com/Fatima367/spec-kit-github-issues/archive/refs/tags/v1.0.0.zip",
659+
"repository": "https://github.com/Fatima367/spec-kit-github-issues",
660+
"homepage": "https://github.com/Fatima367/spec-kit-github-issues",
661+
"documentation": "https://github.com/Fatima367/spec-kit-github-issues/blob/main/README.md",
662+
"changelog": "https://github.com/Fatima367/spec-kit-github-issues/blob/main/CHANGELOG.md",
663+
"license": "MIT",
664+
"requires": {
665+
"speckit_version": ">=0.1.0",
666+
"tools": [
667+
{
668+
"name": "gh",
669+
"version": ">=2.0.0",
670+
"required": true
671+
}
672+
]
673+
},
674+
"provides": {
675+
"commands": 3,
676+
"hooks": 0
677+
},
678+
"tags": [
679+
"integration",
680+
"github",
681+
"issues",
682+
"import",
683+
"sync",
684+
"traceability"
685+
],
686+
"verified": false,
687+
"downloads": 0,
688+
"stars": 0,
689+
"created_at": "2026-04-12T15:30:00Z",
690+
"updated_at": "2026-04-13T14:39:00Z"
691+
},
652692
"iterate": {
653693
"name": "Iterate",
654694
"id": "iterate",
@@ -1911,4 +1951,4 @@
19111951
"updated_at": "2026-04-09T00:00:00Z"
19121952
}
19131953
}
1914-
}
1954+
}

0 commit comments

Comments
 (0)