From c80eeac416516d8faa42f56510bfe6876612f250 Mon Sep 17 00:00:00 2001 From: Dyan Galih Date: Tue, 5 May 2026 07:16:51 +0000 Subject: [PATCH 1/5] feat: add Architecture Guard to community catalog - Add architecture-guard v1.4.0 extension entry to catalog - Add entry to README community extensions table - Includes built-in Laravel-specific governance rules --- README.md | 1 + extensions/catalog.community.json | 33 +++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/README.md b/README.md index f730e10b88..35db054f90 100644 --- a/README.md +++ b/README.md @@ -198,6 +198,7 @@ The following community-contributed extensions are available in [`catalog.commun | Agent Assign | Assign specialized Claude Code agents to spec-kit tasks for targeted execution | `process` | Read+Write | [spec-kit-agent-assign](https://github.com/xymelon/spec-kit-agent-assign) | | AI-Driven Engineering (AIDE) | A structured 7-step workflow for building new projects from scratch with AI assistants — from vision through implementation | `process` | Read+Write | [aide](https://github.com/mnriem/spec-kit-extensions/tree/main/aide) | | Architect Impact Previewer | Predicts architectural impact, complexity, and risks of proposed changes before implementation. | `visibility` | Read-only | [spec-kit-architect-preview](https://github.com/UmmeHabiba1312/spec-kit-architect-preview) | +| Architecture Guard | Continuous architecture governance for AI-assisted development. Reviews specs, plans, and code for architecture drift, producing structured refactor tasks and evolution proposals. | `governance` | Read+Write | [spec-kit-architecture-guard](https://github.com/DyanGalih/spec-kit-architecture-guard) | | Archive Extension | Archive merged features into main project memory. | `docs` | Read+Write | [spec-kit-archive](https://github.com/stn1slv/spec-kit-archive) | | Azure DevOps Integration | Sync user stories and tasks to Azure DevOps work items using OAuth authentication | `integration` | Read+Write | [spec-kit-azure-devops](https://github.com/pragya247/spec-kit-azure-devops) | | Blueprint | Stay code-literate in AI-driven development: review a complete code blueprint for every task from spec artifacts before /speckit.implement runs | `docs` | Read+Write | [spec-kit-blueprint](https://github.com/chordpli/spec-kit-blueprint) | diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 1de30036d3..faaf894f20 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -100,6 +100,39 @@ "created_at": "2026-04-14T00:00:00Z", "updated_at": "2026-04-14T00:00:00Z" }, + "architecture-guard": { + "name": "Architecture Guard", + "id": "architecture-guard", + "description": "Continuous architecture governance for AI-assisted development. Reviews specs, plans, and code for architecture drift, producing structured refactor tasks and evolution proposals.", + "author": "DyanGalih", + "version": "1.4.0", + "download_url": "https://github.com/DyanGalih/spec-kit-architecture-guard/archive/refs/tags/v1.4.0.zip", + "repository": "https://github.com/DyanGalih/spec-kit-architecture-guard", + "homepage": "https://github.com/DyanGalih/spec-kit-architecture-guard", + "documentation": "https://github.com/DyanGalih/spec-kit-architecture-guard/blob/main/README.md", + "changelog": "https://github.com/DyanGalih/spec-kit-architecture-guard/releases", + "license": "MIT", + "requires": { + "speckit_version": ">=0.1.0" + }, + "provides": { + "commands": 6, + "hooks": 0 + }, + "tags": [ + "architecture", + "governance", + "drift-detection", + "refactor", + "monolithic", + "microservices" + ], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-05-01T15:10:01Z", + "updated_at": "2026-05-01T15:10:01Z" + }, "archive": { "name": "Archive Extension", "id": "archive", From ea9678eaf7cf9deab77e4b6137e353e5816a7696 Mon Sep 17 00:00:00 2001 From: Dyan Galih Date: Tue, 5 May 2026 07:20:00 +0000 Subject: [PATCH 2/5] chore: update catalog timestamp to 2026-05-05 --- extensions/catalog.community.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index faaf894f20..e8dc9012b5 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "updated_at": "2026-05-04T17:02:08Z", + "updated_at": "2026-05-05T00:00:00Z", "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json", "extensions": { "aide": { From d155825cd9e6743c50d09193860152f5ea68f3ff Mon Sep 17 00:00:00 2001 From: Dyan Galih Date: Tue, 5 May 2026 07:22:51 +0000 Subject: [PATCH 3/5] fix: address PR feedback - Add 'governance' category to README legend (used by Architecture Guard) - Update architecture-guard timestamps to 2026-05-05 (submission date) - Align with published extension behavior (Laravel support now built-in) --- README.md | 1 + extensions/catalog.community.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 35db054f90..3e9d0393b5 100644 --- a/README.md +++ b/README.md @@ -187,6 +187,7 @@ The following community-contributed extensions are available in [`catalog.commun - `process` — orchestrates workflow across phases - `integration` — syncs with external platforms - `visibility` — reports on project health or progress +- `governance` — enforces architectural or policy compliance **Effect:** diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index e8dc9012b5..aac1b8a907 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -130,8 +130,8 @@ "verified": false, "downloads": 0, "stars": 0, - "created_at": "2026-05-01T15:10:01Z", - "updated_at": "2026-05-01T15:10:01Z" + "created_at": "2026-05-05T00:00:00Z", + "updated_at": "2026-05-05T00:00:00Z" }, "archive": { "name": "Archive Extension", From 27d27e4c46121d0a511c294c76e69ece43770cd6 Mon Sep 17 00:00:00 2001 From: Dyan Galih Date: Tue, 5 May 2026 07:27:02 +0000 Subject: [PATCH 4/5] chore: update Architecture Guard category to process - Changed from 'governance' to 'process' (official category) - Aligns with schema in EXTENSION-PUBLISHING-GUIDE.md - Removed 'governance' from category legend (not an official category) --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e9d0393b5..c6b8945974 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,6 @@ The following community-contributed extensions are available in [`catalog.commun - `process` — orchestrates workflow across phases - `integration` — syncs with external platforms - `visibility` — reports on project health or progress -- `governance` — enforces architectural or policy compliance **Effect:** @@ -199,7 +198,7 @@ The following community-contributed extensions are available in [`catalog.commun | Agent Assign | Assign specialized Claude Code agents to spec-kit tasks for targeted execution | `process` | Read+Write | [spec-kit-agent-assign](https://github.com/xymelon/spec-kit-agent-assign) | | AI-Driven Engineering (AIDE) | A structured 7-step workflow for building new projects from scratch with AI assistants — from vision through implementation | `process` | Read+Write | [aide](https://github.com/mnriem/spec-kit-extensions/tree/main/aide) | | Architect Impact Previewer | Predicts architectural impact, complexity, and risks of proposed changes before implementation. | `visibility` | Read-only | [spec-kit-architect-preview](https://github.com/UmmeHabiba1312/spec-kit-architect-preview) | -| Architecture Guard | Continuous architecture governance for AI-assisted development. Reviews specs, plans, and code for architecture drift, producing structured refactor tasks and evolution proposals. | `governance` | Read+Write | [spec-kit-architecture-guard](https://github.com/DyanGalih/spec-kit-architecture-guard) | +| Architecture Guard | Continuous architecture governance for AI-assisted development. Reviews specs, plans, and code for architecture drift, producing structured refactor tasks and evolution proposals. | `process` | Read+Write | [spec-kit-architecture-guard](https://github.com/DyanGalih/spec-kit-architecture-guard) | | Archive Extension | Archive merged features into main project memory. | `docs` | Read+Write | [spec-kit-archive](https://github.com/stn1slv/spec-kit-archive) | | Azure DevOps Integration | Sync user stories and tasks to Azure DevOps work items using OAuth authentication | `integration` | Read+Write | [spec-kit-azure-devops](https://github.com/pragya247/spec-kit-azure-devops) | | Blueprint | Stay code-literate in AI-driven development: review a complete code blueprint for every task from spec artifacts before /speckit.implement runs | `docs` | Read+Write | [spec-kit-blueprint](https://github.com/chordpli/spec-kit-blueprint) | From 7bb11515d4a445c33406d878f80507627589b160 Mon Sep 17 00:00:00 2001 From: Dyan Galih Date: Tue, 5 May 2026 07:33:38 +0000 Subject: [PATCH 5/5] chore: update timestamps to actual UTC datetime - Top-level updated_at: 2026-05-05T07:26:00Z - Entry created_at/updated_at: 2026-05-05T07:26:00Z - Replaces placeholder 00:00:00Z with actual submission time --- extensions/catalog.community.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index aac1b8a907..e8fd66cc50 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "updated_at": "2026-05-05T00:00:00Z", + "updated_at": "2026-05-05T07:26:00Z", "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json", "extensions": { "aide": { @@ -130,8 +130,8 @@ "verified": false, "downloads": 0, "stars": 0, - "created_at": "2026-05-05T00:00:00Z", - "updated_at": "2026-05-05T00:00:00Z" + "created_at": "2026-05-05T07:26:00Z", + "updated_at": "2026-05-05T07:26:00Z" }, "archive": { "name": "Archive Extension",