From 26d7428ae0dfd6f65254d05727e63a09cd87c4f5 Mon Sep 17 00:00:00 2001 From: Dyan Galih Date: Fri, 1 May 2026 15:11:38 +0000 Subject: [PATCH] feat: add Architecture Guard and Laravel adapter to community catalog --- README.md | 2 + extensions/catalog.community.json | 74 ++++++++++++++++++++++++++++++- 2 files changed, 75 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 102c55ecb0..48b478e19b 100644 --- a/README.md +++ b/README.md @@ -198,6 +198,8 @@ 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. | `docs` | Read+Write | [spec-kit-architecture-guard](https://github.com/DyanGalih/spec-kit-architecture-guard) | +| Architecture Guard Laravel | Laravel-specific adapter for Architecture Guard. Maps generic architecture rules to Laravel conventions like FormRequests, API Resources, and Eloquent boundaries. | `docs` | Read+Write | [architecture-guard-laravel](https://github.com/DyanGalih/architecture-guard-laravel) | | 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 a952e8b9cc..1dacbeb2a9 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "updated_at": "2026-05-01T15:01:47Z", + "updated_at": "2026-05-01T15:10:01Z", "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json", "extensions": { "aide": { @@ -100,6 +100,78 @@ "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.1.6", + "download_url": "https://github.com/DyanGalih/spec-kit-architecture-guard/archive/refs/tags/v1.1.6.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" + }, + "architecture-guard-laravel": { + "name": "Architecture Guard Laravel", + "id": "architecture-guard-laravel", + "description": "Laravel-specific adapter for Architecture Guard. Maps generic architecture rules to Laravel conventions like FormRequests, API Resources, and Eloquent boundaries.", + "author": "DyanGalih", + "version": "1.1.6", + "download_url": "https://github.com/DyanGalih/architecture-guard-laravel/archive/refs/tags/v1.1.6.zip", + "repository": "https://github.com/DyanGalih/architecture-guard-laravel", + "homepage": "https://github.com/DyanGalih/architecture-guard-laravel", + "documentation": "https://github.com/DyanGalih/architecture-guard-laravel/blob/main/README.md", + "changelog": "https://github.com/DyanGalih/architecture-guard-laravel/releases", + "license": "MIT", + "requires": { + "speckit_version": ">=0.1.0", + "extensions": [ + { + "id": "architecture-guard", + "version": ">=1.1.6", + "required": true + } + ] + }, + "provides": { + "commands": 1, + "hooks": 0 + }, + "tags": [ + "laravel", + "architecture", + "governance", + "php", + "adapter" + ], + "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",