diff --git a/docs/community/extensions.md b/docs/community/extensions.md index 5f09149309..fdf575596d 100644 --- a/docs/community/extensions.md +++ b/docs/community/extensions.md @@ -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) | diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 2afc2592cf..999bcce11a 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -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": { @@ -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",