Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) |
Expand Down
74 changes: 73 additions & 1 deletion extensions/catalog.community.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down Expand Up @@ -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.",
Comment on lines +103 to +106
"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
}
]
Comment on lines +149 to +156
Comment on lines +148 to +156
},
"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",
Expand Down
Loading