From c272651acddcaeb28261856d6ed032cb8f32e3b1 Mon Sep 17 00:00:00 2001 From: pli Date: Sun, 19 Apr 2026 23:07:09 +0900 Subject: [PATCH 1/4] feat: add Ripple extension to community catalog - Extension ID: ripple - Version: 1.0.0 - Author: chordpli - 3 commands (scan, resolve, check), 1 hook (after_implement) - Delta-anchored side effect detection across 9 domain-agnostic categories --- README.md | 1 + extensions/catalog.community.json | 32 +++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/README.md b/README.md index 77c209b3b0..b02e6b6a57 100644 --- a/README.md +++ b/README.md @@ -239,6 +239,7 @@ The following community-contributed extensions are available in [`catalog.commun | Repository Index | Generate index for existing repo for overview, architecture and module level. | `docs` | Read-only | [spec-kit-repoindex](https://github.com/liuyiyu/spec-kit-repoindex) | | Retro Extension | Sprint retrospective analysis with metrics, spec accuracy assessment, and improvement suggestions | `process` | Read+Write | [spec-kit-retro](https://github.com/arunt14/spec-kit-retro) | | Retrospective Extension | Post-implementation retrospective with spec adherence scoring, drift analysis, and human-gated spec updates | `docs` | Read+Write | [spec-kit-retrospective](https://github.com/emi-dm/spec-kit-retrospective) | +| Ripple | Detect side effects that tests can't catch after implementation — delta-anchored analysis across 9 domain-agnostic categories | `code` | Read+Write | [spec-kit-ripple](https://github.com/chordpli/spec-kit-ripple) | | Review Extension | Post-implementation comprehensive code review with specialized agents for code quality, comments, tests, error handling, type design, and simplification | `code` | Read-only | [spec-kit-review](https://github.com/ismaelJimenez/spec-kit-review) | | SDD Utilities | Resume interrupted workflows, validate project health, and verify spec-to-task traceability | `process` | Read+Write | [speckit-utils](https://github.com/mvanhorn/speckit-utils) | | Security Review | Comprehensive security audit of codebases using AI-powered DevSecOps analysis | `code` | Read-only | [spec-kit-security-review](https://github.com/DyanGalih/spec-kit-security-review) | diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index b0fe0dc545..eeb9be357b 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1523,6 +1523,38 @@ "created_at": "2026-03-14T00:00:00Z", "updated_at": "2026-03-14T00:00:00Z" }, + "ripple": { + "name": "Ripple", + "id": "ripple", + "description": "Detect side effects that tests can't catch after implementation — delta-anchored analysis across 9 domain-agnostic categories with fix-induced side effect detection", + "author": "chordpli", + "version": "1.0.0", + "download_url": "https://github.com/chordpli/spec-kit-ripple/archive/refs/tags/v1.0.0.zip", + "repository": "https://github.com/chordpli/spec-kit-ripple", + "homepage": "https://github.com/chordpli/spec-kit-ripple", + "documentation": "https://github.com/chordpli/spec-kit-ripple/blob/main/README.md", + "changelog": "https://github.com/chordpli/spec-kit-ripple/blob/main/CHANGELOG.md", + "license": "MIT", + "requires": { + "speckit_version": ">=0.2.0" + }, + "provides": { + "commands": 3, + "hooks": 1 + }, + "tags": [ + "side-effects", + "post-implementation", + "analysis", + "quality", + "risk-detection" + ], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-04-19T00:00:00Z", + "updated_at": "2026-04-19T00:00:00Z" + }, "refine": { "name": "Spec Refine", "id": "refine", From 7eefec66272900fa71d4f0135e1df23b226bd765 Mon Sep 17 00:00:00 2001 From: pli Date: Sun, 19 Apr 2026 23:22:46 +0900 Subject: [PATCH 2/4] fix: move ripple entry to correct alphabetical position Moved ripple catalog entry from between reconcile/refine to between review/security-review. Updated README table order to match. --- README.md | 2 +- extensions/catalog.community.json | 64 +++++++++++++++---------------- 2 files changed, 33 insertions(+), 33 deletions(-) diff --git a/README.md b/README.md index b02e6b6a57..6f0baf5673 100644 --- a/README.md +++ b/README.md @@ -239,8 +239,8 @@ The following community-contributed extensions are available in [`catalog.commun | Repository Index | Generate index for existing repo for overview, architecture and module level. | `docs` | Read-only | [spec-kit-repoindex](https://github.com/liuyiyu/spec-kit-repoindex) | | Retro Extension | Sprint retrospective analysis with metrics, spec accuracy assessment, and improvement suggestions | `process` | Read+Write | [spec-kit-retro](https://github.com/arunt14/spec-kit-retro) | | Retrospective Extension | Post-implementation retrospective with spec adherence scoring, drift analysis, and human-gated spec updates | `docs` | Read+Write | [spec-kit-retrospective](https://github.com/emi-dm/spec-kit-retrospective) | -| Ripple | Detect side effects that tests can't catch after implementation — delta-anchored analysis across 9 domain-agnostic categories | `code` | Read+Write | [spec-kit-ripple](https://github.com/chordpli/spec-kit-ripple) | | Review Extension | Post-implementation comprehensive code review with specialized agents for code quality, comments, tests, error handling, type design, and simplification | `code` | Read-only | [spec-kit-review](https://github.com/ismaelJimenez/spec-kit-review) | +| Ripple | Detect side effects that tests can't catch after implementation — delta-anchored analysis across 9 domain-agnostic categories | `code` | Read+Write | [spec-kit-ripple](https://github.com/chordpli/spec-kit-ripple) | | SDD Utilities | Resume interrupted workflows, validate project health, and verify spec-to-task traceability | `process` | Read+Write | [speckit-utils](https://github.com/mvanhorn/speckit-utils) | | Security Review | Comprehensive security audit of codebases using AI-powered DevSecOps analysis | `code` | Read-only | [spec-kit-security-review](https://github.com/DyanGalih/spec-kit-security-review) | | SFSpeckit | Enterprise Salesforce SDLC with 18 commands for the full SDD lifecycle. | `process` | Read+Write | [spec-kit-sf](https://github.com/ysumanth06/spec-kit-sf) | diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index eeb9be357b..a5814eb3d4 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1523,38 +1523,6 @@ "created_at": "2026-03-14T00:00:00Z", "updated_at": "2026-03-14T00:00:00Z" }, - "ripple": { - "name": "Ripple", - "id": "ripple", - "description": "Detect side effects that tests can't catch after implementation — delta-anchored analysis across 9 domain-agnostic categories with fix-induced side effect detection", - "author": "chordpli", - "version": "1.0.0", - "download_url": "https://github.com/chordpli/spec-kit-ripple/archive/refs/tags/v1.0.0.zip", - "repository": "https://github.com/chordpli/spec-kit-ripple", - "homepage": "https://github.com/chordpli/spec-kit-ripple", - "documentation": "https://github.com/chordpli/spec-kit-ripple/blob/main/README.md", - "changelog": "https://github.com/chordpli/spec-kit-ripple/blob/main/CHANGELOG.md", - "license": "MIT", - "requires": { - "speckit_version": ">=0.2.0" - }, - "provides": { - "commands": 3, - "hooks": 1 - }, - "tags": [ - "side-effects", - "post-implementation", - "analysis", - "quality", - "risk-detection" - ], - "verified": false, - "downloads": 0, - "stars": 0, - "created_at": "2026-04-19T00:00:00Z", - "updated_at": "2026-04-19T00:00:00Z" - }, "refine": { "name": "Spec Refine", "id": "refine", @@ -1753,6 +1721,38 @@ "created_at": "2026-04-17T02:00:00Z", "updated_at": "2026-04-17T02:00:00Z" }, + "ripple": { + "name": "Ripple", + "id": "ripple", + "description": "Detect side effects that tests can't catch after implementation — delta-anchored analysis across 9 domain-agnostic categories with fix-induced side effect detection", + "author": "chordpli", + "version": "1.0.0", + "download_url": "https://github.com/chordpli/spec-kit-ripple/archive/refs/tags/v1.0.0.zip", + "repository": "https://github.com/chordpli/spec-kit-ripple", + "homepage": "https://github.com/chordpli/spec-kit-ripple", + "documentation": "https://github.com/chordpli/spec-kit-ripple/blob/main/README.md", + "changelog": "https://github.com/chordpli/spec-kit-ripple/blob/main/CHANGELOG.md", + "license": "MIT", + "requires": { + "speckit_version": ">=0.2.0" + }, + "provides": { + "commands": 3, + "hooks": 1 + }, + "tags": [ + "side-effects", + "post-implementation", + "analysis", + "quality", + "risk-detection" + ], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-04-19T00:00:00Z", + "updated_at": "2026-04-19T00:00:00Z" + }, "security-review": { "name": "Security Review", "id": "security-review", From 66921b5293794fd46fa052b2608941e6b9b826e1 Mon Sep 17 00:00:00 2001 From: pli Date: Sun, 19 Apr 2026 23:29:32 +0900 Subject: [PATCH 3/4] =?UTF-8?q?fix:=20correct=20ripple=20alphabetical=20po?= =?UTF-8?q?sition=20(review=20=E2=86=92=20ripple=20=E2=86=92=20scope)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- extensions/catalog.community.json | 64 +++++++++++++++---------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index a5814eb3d4..e11951ff38 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1688,6 +1688,38 @@ "created_at": "2026-03-06T00:00:00Z", "updated_at": "2026-04-09T00:00:00Z" }, + "ripple": { + "name": "Ripple", + "id": "ripple", + "description": "Detect side effects that tests can't catch after implementation — delta-anchored analysis across 9 domain-agnostic categories with fix-induced side effect detection", + "author": "chordpli", + "version": "1.0.0", + "download_url": "https://github.com/chordpli/spec-kit-ripple/archive/refs/tags/v1.0.0.zip", + "repository": "https://github.com/chordpli/spec-kit-ripple", + "homepage": "https://github.com/chordpli/spec-kit-ripple", + "documentation": "https://github.com/chordpli/spec-kit-ripple/blob/main/README.md", + "changelog": "https://github.com/chordpli/spec-kit-ripple/blob/main/CHANGELOG.md", + "license": "MIT", + "requires": { + "speckit_version": ">=0.2.0" + }, + "provides": { + "commands": 3, + "hooks": 1 + }, + "tags": [ + "side-effects", + "post-implementation", + "analysis", + "quality", + "risk-detection" + ], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-04-19T00:00:00Z", + "updated_at": "2026-04-19T00:00:00Z" + }, "scope": { "name": "Spec Scope", "id": "scope", @@ -1721,38 +1753,6 @@ "created_at": "2026-04-17T02:00:00Z", "updated_at": "2026-04-17T02:00:00Z" }, - "ripple": { - "name": "Ripple", - "id": "ripple", - "description": "Detect side effects that tests can't catch after implementation — delta-anchored analysis across 9 domain-agnostic categories with fix-induced side effect detection", - "author": "chordpli", - "version": "1.0.0", - "download_url": "https://github.com/chordpli/spec-kit-ripple/archive/refs/tags/v1.0.0.zip", - "repository": "https://github.com/chordpli/spec-kit-ripple", - "homepage": "https://github.com/chordpli/spec-kit-ripple", - "documentation": "https://github.com/chordpli/spec-kit-ripple/blob/main/README.md", - "changelog": "https://github.com/chordpli/spec-kit-ripple/blob/main/CHANGELOG.md", - "license": "MIT", - "requires": { - "speckit_version": ">=0.2.0" - }, - "provides": { - "commands": 3, - "hooks": 1 - }, - "tags": [ - "side-effects", - "post-implementation", - "analysis", - "quality", - "risk-detection" - ], - "verified": false, - "downloads": 0, - "stars": 0, - "created_at": "2026-04-19T00:00:00Z", - "updated_at": "2026-04-19T00:00:00Z" - }, "security-review": { "name": "Security Review", "id": "security-review", From 295391b950e4144a26e80de8f38e00a677df80c0 Mon Sep 17 00:00:00 2001 From: pli Date: Tue, 21 Apr 2026 07:45:49 +0900 Subject: [PATCH 4/4] fix: align ripple entry timestamps with catalog top-level updated_at --- 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 e11951ff38..991949f1ad 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1717,8 +1717,8 @@ "verified": false, "downloads": 0, "stars": 0, - "created_at": "2026-04-19T00:00:00Z", - "updated_at": "2026-04-19T00:00:00Z" + "created_at": "2026-04-20T00:00:00Z", + "updated_at": "2026-04-20T00:00:00Z" }, "scope": { "name": "Spec Scope",