From 4e35308c400ca77401e52aca48fa97e453dafeb6 Mon Sep 17 00:00:00 2001 From: pli Date: Sun, 19 Apr 2026 23:07:09 +0900 Subject: [PATCH 1/3] 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 | 34 ++++++++++++++++++++++++++++++- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f196bc12..b0525f437 100644 --- a/README.md +++ b/README.md @@ -238,6 +238,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 8761682c1..0a0dc1b70 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "updated_at": "2026-04-17T02:00:00Z", + "updated_at": "2026-04-19T00:00:00Z", "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json", "extensions": { "aide": { @@ -1492,6 +1492,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 6ce625f4321e0244ba2e55f27e5d5fdf34d52a61 Mon Sep 17 00:00:00 2001 From: pli Date: Sun, 19 Apr 2026 23:22:46 +0900 Subject: [PATCH 2/3] 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 b0525f437..678d3f1f0 100644 --- a/README.md +++ b/README.md @@ -238,8 +238,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 0a0dc1b70..ee213b54b 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1492,38 +1492,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", @@ -1722,6 +1690,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 2ed255c8351ffaa5cfba1429d10be8782535167b Mon Sep 17 00:00:00 2001 From: pli Date: Sun, 19 Apr 2026 23:29:32 +0900 Subject: [PATCH 3/3] =?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 ee213b54b..b20f6b773 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1657,6 +1657,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", @@ -1690,38 +1722,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",