Skip to content
Merged
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 docs/community/extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ The following community-contributed extensions are available in [`catalog.commun
| Superpowers Bridge | Bridges selected Superpowers disciplines into Spec Kit as evidence-first trust gates for agent workflows. | `process` | Read+Write | [superpowers-bridge](https://github.com/RbBtSn0w/spec-kit-extensions/tree/main/superpowers-bridge) |
| Superpowers Implementation Bridge | Thin orchestrator between Spec Kit (design) and Superpowers (implementation). Cross-agent. | `process` | Read+Write | [speckit-superpowers-bridge](https://github.com/lihan3238/speckit-superpowers-bridge) |
| Superspec | Bridges spec-kit with obra/superpowers (brainstorming, TDD, subagent, code-review) into a unified, resumable workflow with graceful degradation and session progress tracking | `process` | Read+Write | [superspec](https://github.com/WangX0111/superspec) |
| Taco Review | Packages Spec Kit features for human review and syncs edits and comments back. | `integration` | Read+Write | [taco](https://github.com/Arcadia822/taco) |
| Tasks to GitHub Project | Publish and synchronize Spec Kit tasks as cards on a GitHub Project (v2) kanban board, with priority and status sync between spec.md/tasks.md and the board. | `integration` | Read+Write | [spec-kit-tasks-to-project](https://github.com/mancioshell/spec-kit-tasks-to-project) |
| TDD Extension | Drives spec-kit implementation with tests: a language-agnostic red-green-refactor loop with a per-feature test list, recorded red and green evidence, and mutation-checked test strength. | `process` | Read+Write | [spec-kit-tdd](https://github.com/d0whc3r/spec-kit-tdd) |
| Team Assign | Assign tasks.md items to human engineers, split into subtasks, and generate a per-engineer workboard | `process` | Read+Write | [spec-kit-team-assign](https://github.com/tarunkumarbhati/spec-kit-team-assign) |
Expand Down
42 changes: 41 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-08-25T00:00:00Z",
"updated_at": "2026-08-25T15:08:04Z",
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json",
"extensions": {
"adrkit": {
Expand Down Expand Up @@ -4995,6 +4995,46 @@
"created_at": "2026-03-02T00:00:00Z",
"updated_at": "2026-03-02T00:00:00Z"
},
"taco": {
"name": "Taco Review",
"id": "taco",
"description": "Packages Spec Kit features for human review and syncs edits and comments back.",
"author": "Arcadia822",
"version": "0.3.1",
"download_url": "https://github.com/Arcadia822/taco/archive/refs/tags/v0.3.1.zip",
"repository": "https://github.com/Arcadia822/taco",
"homepage": "https://github.com/Arcadia822/taco",
"documentation": "https://github.com/Arcadia822/taco/blob/main/extensions/taco/README.md",
"changelog": "https://github.com/Arcadia822/taco/blob/v0.3.1/CHANGELOG.md",
"license": "MIT",
"category": "integration",
"effect": "read-write",
"requires": {
"speckit_version": ">=0.16.0,<2.0.0",
"tools": [
{
"name": "node",
"version": ">=22",
"required": true
}
]
},
"provides": {
"commands": 2,
"hooks": 8
},
"tags": [
"documentation",
"review",
"spec-kit",
"human-in-the-loop"
],
"verified": false,
"downloads": 0,
"stars": 0,
"created_at": "2026-08-25T00:00:00Z",
"updated_at": "2026-08-25T00:00:00Z"
},
"tasks-to-project": {
"name": "Tasks to GitHub Project",
"id": "tasks-to-project",
Expand Down