Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/community/extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ The following community-contributed extensions are available in [`catalog.commun
| 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) |
| 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) |
| 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) |
| GitHub Issue Triage | Fetch open GitHub issues, classify each as bug or feature, route bugs to the bug workflow and features to speckit.specify, and label each issue with the correct triage labels | `integration` | Read+Write | [speckit-extensions](https://github.com/arrrrny/speckit-extensions) |
| GitHub Issues Integration 1 | 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) |
| GitHub Issues Integration 2 | Creates and syncs local specs from an existing GitHub issue | `integration` | Read+Write | [spec-kit-issue](https://github.com/aaronrsun/spec-kit-issue) |
| Golden Demo | Deterministic behavioral drift oracle. Extracts acceptance criteria, generates fuzz test vectors (seed=42), compares golden Python implementations against real code in any language. CI/CD gatekeeper with warn/strict modes. | `docs` | Read+Write | [spec-kit-golden-demo](https://github.com/jasstt/spec-kit-golden-demo) |
Expand Down
40 changes: 39 additions & 1 deletion extensions/catalog.community.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"schema_version": "1.0",
"updated_at": "2026-08-25T15:08:04Z",
"updated_at": "2026-08-26T00:00:00Z",
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json",
"extensions": {
"adrkit": {
Expand Down Expand Up @@ -2018,6 +2018,44 @@
"created_at": "2026-07-09T00:00:00Z",
"updated_at": "2026-07-27T00:00:00Z"
},
"gh-triage": {
"name": "GitHub Issue Triage",
"id": "gh-triage",
"description": "Fetch open GitHub issues, classify each as bug or feature, route bugs to the bug workflow (assess/fix/pr) and features to speckit.specify, and label each issue with the correct triage labels (on by default, read from config)",
"author": "arrrrny",
"version": "1.0.0",
"download_url": "https://github.com/arrrrny/speckit-extensions/releases/download/gh-triage-v1.0.0/gh-triage.zip",
"repository": "https://github.com/arrrrny/speckit-extensions",
"homepage": "https://github.com/arrrrny/speckit-extensions",
"documentation": "https://github.com/arrrrny/speckit-extensions/blob/main/gh-triage/README.md",
"changelog": "https://github.com/arrrrny/speckit-extensions/blob/main/gh-triage/CHANGELOG.md",
"license": "MIT",
"category": "integration",
"effect": "read-write",
"requires": {
"speckit_version": ">=0.9.0",
"tools": [
{ "name": "gh", "required": true }
]
},
"provides": {
"commands": 1,
"hooks": 0
},
"tags": [
"triage",
"github",
"workflow",
"automation",
"bug",
"feature"
],
"verified": false,
"downloads": 0,
"stars": 0,
"created_at": "2026-08-26T00:00:00Z",
"updated_at": "2026-08-26T00:00:00Z"
},
"github-issues": {
"name": "GitHub Issues Integration 1",
"id": "github-issues",
Expand Down