From 716e808e15996e5e069e173a43c9f68b35573d4c Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Wed, 29 Apr 2026 15:53:48 -0400 Subject: [PATCH 1/3] feat: add squad bridge extension to community catalog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds spec-kit-squad by jwill824 — a Spec Kit extension that bootstraps and synchronizes a Squad agent team from your Speckit spec and tasks. - 4 commands: init, generate, route, status - 2 hooks: after_specify (generate), after_tasks (route) - v1.0.0 release Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- README.md | 1 + extensions/catalog.community.json | 32 +++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/README.md b/README.md index 6450e35601..8fd267cbf6 100644 --- a/README.md +++ b/README.md @@ -264,6 +264,7 @@ The following community-contributed extensions are available in [`catalog.commun | Spec Sync | Detect and resolve drift between specs and implementation. AI-assisted resolution with human approval | `docs` | Read+Write | [spec-kit-sync](https://github.com/bgervin/spec-kit-sync) | | Spec Validate | Comprehension validation, review gating, and approval state for spec-kit artifacts — staged quizzes, peer review SLA, and a hard gate before /speckit.implement | `process` | Read+Write | [spec-kit-spec-validate](https://github.com/aeltayeb/spec-kit-spec-validate) | | SpecTest | Auto-generate test scaffolds from spec criteria, map coverage, and find untested requirements | `code` | Read+Write | [spec-kit-spectest](https://github.com/Quratulain-bilal/spec-kit-spectest) | +| Squad Bridge | Bootstrap and synchronize a Squad agent team from your Speckit spec and tasks | `process` | Read+Write | [spec-kit-squad](https://github.com/jwill824/spec-kit-squad) | | Staff Review Extension | Staff-engineer-level code review that validates implementation against spec, checks security, performance, and test coverage | `code` | Read-only | [spec-kit-staff-review](https://github.com/arunt14/spec-kit-staff-review) | | Status Report | Project status, feature progress, and next-action recommendations for spec-driven workflows | `visibility` | Read-only | [Open-Agent-Tools/spec-kit-status](https://github.com/Open-Agent-Tools/spec-kit-status) | | Superpowers Bridge | Orchestrates obra/superpowers skills within the spec-kit SDD workflow across the full lifecycle (clarification, TDD, review, verification, critique, debugging, branch completion) | `process` | Read+Write | [superpowers-bridge](https://github.com/RbBtSn0w/spec-kit-extensions/tree/main/superpowers-bridge) | diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 6d0537a0c0..44c3184ae2 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -2160,6 +2160,38 @@ "created_at": "2026-04-10T16:00:00Z", "updated_at": "2026-04-10T16:00:00Z" }, + "squad": { + "name": "Squad Bridge", + "id": "squad", + "description": "Bootstrap and synchronize a Squad agent team from your Speckit spec and tasks.", + "author": "jwill824", + "version": "1.1.0", + "download_url": "https://github.com/jwill824/spec-kit-squad/archive/refs/tags/v1.1.0.zip", + "repository": "https://github.com/jwill824/spec-kit-squad", + "homepage": "https://github.com/jwill824/spec-kit-squad", + "documentation": "https://github.com/jwill824/spec-kit-squad/blob/main/README.md", + "changelog": "https://github.com/jwill824/spec-kit-squad/blob/main/docs/CHANGELOG.md", + "license": "MIT", + "requires": { + "speckit_version": ">=0.1.0" + }, + "provides": { + "commands": 4, + "hooks": 2 + }, + "tags": [ + "multi-agent", + "agents", + "orchestration", + "process", + "integration" + ], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-04-29T00:00:00Z", + "updated_at": "2026-04-29T00:00:00Z" + }, "staff-review": { "name": "Staff Review Extension", "id": "staff-review", From 4bf0de592bd53f0e260bc01113ecea62fc7ae282 Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Wed, 29 Apr 2026 16:09:12 -0400 Subject: [PATCH 2/3] chore: add requires.tools for squad-cli in catalog entry --- extensions/catalog.community.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 44c3184ae2..e1313ee4b2 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -2173,7 +2173,14 @@ "changelog": "https://github.com/jwill824/spec-kit-squad/blob/main/docs/CHANGELOG.md", "license": "MIT", "requires": { - "speckit_version": ">=0.1.0" + "speckit_version": ">=0.1.0", + "tools": [ + { + "name": "@bradygaster/squad-cli", + "version": ">=0.1.0", + "required": true + } + ] }, "provides": { "commands": 4, From c1c11118ac665c7ea26dd3afc022b7dafe1ffa93 Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Wed, 29 Apr 2026 16:12:32 -0400 Subject: [PATCH 3/3] Update extensions/catalog.community.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- 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 e1313ee4b2..173bd92828 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -2163,7 +2163,7 @@ "squad": { "name": "Squad Bridge", "id": "squad", - "description": "Bootstrap and synchronize a Squad agent team from your Speckit spec and tasks.", + "description": "Bootstrap and synchronize a Squad agent team from your Spec Kit spec and tasks.", "author": "jwill824", "version": "1.1.0", "download_url": "https://github.com/jwill824/spec-kit-squad/archive/refs/tags/v1.1.0.zip",