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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ The following community-contributed extensions are available in [`catalog.commun
| Cleanup Extension | Post-implementation quality gate that reviews changes, fixes small issues (scout rule), creates tasks for medium issues, and generates analysis for large issues | `code` | Read+Write | [spec-kit-cleanup](https://github.com/dsrednicki/spec-kit-cleanup) |
| Cognitive Squad | Multi-agent cognitive system with Triadic Model: understanding, internalization, application — with quality gates, backpropagation verification, and self-healing | `docs` | Read+Write | [cognitive-squad](https://github.com/Testimonial/cognitive-squad) |
| Conduct Extension | Orchestrates spec-kit phases via sub-agent delegation to reduce context pollution. | `process` | Read+Write | [spec-kit-conduct-ext](https://github.com/twbrandon7/spec-kit-conduct-ext) |
| Dev Workflow | Specify, plan, review, implement, verify — full TDD pipeline with isolated reviewer agents that eliminate author-evaluator bias | `process` | Read+Write | [ai-agent-dev-workflow](https://github.com/openkash/ai-agent-dev-workflow) |
| DocGuard — CDD Enforcement | Canonical-Driven Development enforcement. Validates, scores, and traces project documentation with automated checks, AI-driven workflows, and spec-kit hooks. Zero NPM runtime dependencies. | `docs` | Read+Write | [spec-kit-docguard](https://github.com/raccioly/docguard) |
| Extensify | Create and validate extensions and extension catalogs | `process` | Read+Write | [extensify](https://github.com/mnriem/spec-kit-extensions/tree/main/extensify) |
| Fleet Orchestrator | Orchestrate a full feature lifecycle with human-in-the-loop gates across all SpecKit phases | `process` | Read+Write | [spec-kit-fleet](https://github.com/sharathsatish/spec-kit-fleet) |
Expand Down
40 changes: 39 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-03-19T12:08:20Z",
"updated_at": "2026-03-28T00:00:00Z",
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json",
"extensions": {
"aide": {
Expand Down Expand Up @@ -241,6 +241,44 @@
"created_at": "2026-03-19T12:08:20Z",
"updated_at": "2026-03-19T12:08:20Z"
},
"dev-workflow": {
"name": "Dev Workflow — Spec, TDD & Independent Review Agents",
"id": "dev-workflow",
"description": "Specify, plan, review, implement, verify — full TDD pipeline with isolated reviewer agents.",
"author": "openkash",
"version": "1.0.0",
"download_url": "https://github.com/openkash/ai-agent-dev-workflow/archive/refs/tags/v1.0.0.zip",
"repository": "https://github.com/openkash/ai-agent-dev-workflow",
"homepage": "https://github.com/openkash/ai-agent-dev-workflow",
"documentation": "https://github.com/openkash/ai-agent-dev-workflow/blob/main/README.md",
"changelog": "https://github.com/openkash/ai-agent-dev-workflow/blob/main/CHANGELOG.md",
"license": "Apache-2.0",
"requires": {
"speckit_version": ">=0.1.0",
"tools": [
{
"name": "claude-code",
"required": true
}
]
},
"provides": {
"commands": 4,
"hooks": 2
},
"tags": [
"tdd",
"specification",
"review",
"claude-code",
"workflow"
],
"verified": false,
"downloads": 0,
"stars": 0,
"created_at": "2026-03-28T00:00:00Z",
"updated_at": "2026-03-28T00:00:00Z"
},
"docguard": {
"name": "DocGuard \u2014 CDD Enforcement",
"id": "docguard",
Expand Down