From 22033d8fdcbb5ee2c355201fdd0014f133884db6 Mon Sep 17 00:00:00 2001 From: Barry Gervin Date: Mon, 2 Mar 2026 00:42:58 -0500 Subject: [PATCH 1/3] Add sync extension to community catalog - Extension ID: sync - Version: 0.1.0 - Author: bgervin - Description: Detect and resolve drift between specs and implementation --- extensions/README.md | 2 ++ extensions/catalog.community.json | 28 +++++++++++++++++++++++++++- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/extensions/README.md b/extensions/README.md index 574144a4d1..6f8f2eea3f 100644 --- a/extensions/README.md +++ b/extensions/README.md @@ -74,6 +74,8 @@ The following community-contributed extensions are available in [`catalog.commun |-----------|---------|-----| | V-Model Extension Pack | Enforces V-Model paired generation of development specs and test specs with full traceability | [spec-kit-v-model](https://github.com/leocamello/spec-kit-v-model) | | Cleanup Extension | Post-implementation quality gate that reviews changes, fixes small issues (scout rule), creates tasks for medium issues, and generates analysis for large issues | [spec-kit-cleanup](https://github.com/dsrednicki/spec-kit-cleanup) | +| Retrospective Extension | Post-implementation retrospective with spec adherence scoring, drift analysis, and human-gated spec updates | [spec-kit-retrospective](https://github.com/emi-dm/spec-kit-retrospective) | +| Spec Sync | Detect and resolve drift between specs and implementation. AI-assisted resolution with human approval | [spec-kit-sync](https://github.com/bgervin/spec-kit-sync) | ## Adding Your Extension diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 4ab408b7c5..37ef19586b 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "updated_at": "2026-02-24T00:00:00Z", + "updated_at": "2026-03-02T05:42:00Z", "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json", "extensions": { "cleanup": { @@ -55,6 +55,32 @@ "created_at": "2026-02-24T00:00:00Z", "updated_at": "2026-02-24T00:00:00Z" }, + "sync": { + "name": "Spec Sync", + "id": "sync", + "description": "Detect and resolve drift between specs and implementation. AI-assisted resolution with human approval.", + "author": "bgervin", + "version": "0.1.0", + "download_url": "https://github.com/bgervin/spec-kit-sync/archive/refs/tags/v0.1.0.zip", + "repository": "https://github.com/bgervin/spec-kit-sync", + "homepage": "https://github.com/bgervin/spec-kit-sync", + "documentation": "https://github.com/bgervin/spec-kit-sync/blob/master/README.md", + "changelog": "https://github.com/bgervin/spec-kit-sync/blob/master/CHANGELOG.md", + "license": "MIT", + "requires": { + "speckit_version": ">=0.1.0" + }, + "provides": { + "commands": 5, + "hooks": 1 + }, + "tags": ["sync", "drift", "validation", "bidirectional", "backfill"], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-03-02T00:00:00Z", + "updated_at": "2026-03-02T00:00:00Z" + }, "v-model": { "name": "V-Model Extension Pack", "id": "v-model", From 3a65de7a1346758f388cb8639ec6a83fe3c139db Mon Sep 17 00:00:00 2001 From: Barry Gervin Date: Mon, 2 Mar 2026 00:49:26 -0500 Subject: [PATCH 2/3] fix: use main branch in URLs per Copilot review --- extensions/catalog.community.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 37ef19586b..db6bd87142 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -64,8 +64,8 @@ "download_url": "https://github.com/bgervin/spec-kit-sync/archive/refs/tags/v0.1.0.zip", "repository": "https://github.com/bgervin/spec-kit-sync", "homepage": "https://github.com/bgervin/spec-kit-sync", - "documentation": "https://github.com/bgervin/spec-kit-sync/blob/master/README.md", - "changelog": "https://github.com/bgervin/spec-kit-sync/blob/master/CHANGELOG.md", + "documentation": "https://github.com/bgervin/spec-kit-sync/blob/main/README.md", + "changelog": "https://github.com/bgervin/spec-kit-sync/blob/main/CHANGELOG.md", "license": "MIT", "requires": { "speckit_version": ">=0.1.0" From 8c3f1c7fef9d39073dc7b41506c776076fa460f0 Mon Sep 17 00:00:00 2001 From: Barry Gervin Date: Mon, 2 Mar 2026 16:09:00 -0500 Subject: [PATCH 3/3] Reorder community extensions table alphabetically Per Copilot review feedback and EXTENSION-PUBLISHING-GUIDE.md --- extensions/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/README.md b/extensions/README.md index 6f8f2eea3f..dd26f66389 100644 --- a/extensions/README.md +++ b/extensions/README.md @@ -72,10 +72,10 @@ The following community-contributed extensions are available in [`catalog.commun | Extension | Purpose | URL | |-----------|---------|-----| -| V-Model Extension Pack | Enforces V-Model paired generation of development specs and test specs with full traceability | [spec-kit-v-model](https://github.com/leocamello/spec-kit-v-model) | | Cleanup Extension | Post-implementation quality gate that reviews changes, fixes small issues (scout rule), creates tasks for medium issues, and generates analysis for large issues | [spec-kit-cleanup](https://github.com/dsrednicki/spec-kit-cleanup) | | Retrospective Extension | Post-implementation retrospective with spec adherence scoring, drift analysis, and human-gated spec updates | [spec-kit-retrospective](https://github.com/emi-dm/spec-kit-retrospective) | | Spec Sync | Detect and resolve drift between specs and implementation. AI-assisted resolution with human approval | [spec-kit-sync](https://github.com/bgervin/spec-kit-sync) | +| V-Model Extension Pack | Enforces V-Model paired generation of development specs and test specs with full traceability | [spec-kit-v-model](https://github.com/leocamello/spec-kit-v-model) | ## Adding Your Extension