mirror of
https://github.com/github/spec-kit.git
synced 2026-04-01 10:13:08 +00:00
feat: add superpowers bridge extension to community catalog (#2023)
* docs: correct specify extension add syntax to require extension name The specify extension add command requires the extension name as a positional argument. Many documentation files incorrectly demonstrated using the --from flag without specifying the extension name first. * feat: add superb extension to community catalog Orchestrates obra/superpowers skills within the spec-kit SDD workflow. * fix: link superb extension docs
This commit is contained in:
@@ -12,7 +12,7 @@ body:
|
|||||||
- Review the [Extension Publishing Guide](https://github.com/github/spec-kit/blob/main/extensions/EXTENSION-PUBLISHING-GUIDE.md)
|
- Review the [Extension Publishing Guide](https://github.com/github/spec-kit/blob/main/extensions/EXTENSION-PUBLISHING-GUIDE.md)
|
||||||
- Ensure your extension has a valid `extension.yml` manifest
|
- Ensure your extension has a valid `extension.yml` manifest
|
||||||
- Create a GitHub release with a version tag (e.g., v1.0.0)
|
- Create a GitHub release with a version tag (e.g., v1.0.0)
|
||||||
- Test installation: `specify extension add --from <your-release-url>`
|
- Test installation: `specify extension add <extension-name> --from <your-release-url>`
|
||||||
|
|
||||||
- type: input
|
- type: input
|
||||||
id: extension-id
|
id: extension-id
|
||||||
@@ -229,7 +229,7 @@ body:
|
|||||||
placeholder: |
|
placeholder: |
|
||||||
```bash
|
```bash
|
||||||
# Install extension
|
# Install extension
|
||||||
specify extension add --from https://github.com/your-org/spec-kit-your-extension/archive/refs/tags/v1.0.0.zip
|
specify extension add <extension-name> --from https://github.com/your-org/spec-kit-your-extension/archive/refs/tags/v1.0.0.zip
|
||||||
|
|
||||||
# Use a command
|
# Use a command
|
||||||
/speckit.your-extension.command-name arg1 arg2
|
/speckit.your-extension.command-name arg1 arg2
|
||||||
|
|||||||
@@ -208,6 +208,7 @@ The following community-contributed extensions are available in [`catalog.commun
|
|||||||
| Retrospective Extension | Post-implementation retrospective with spec adherence scoring, drift analysis, and human-gated spec updates | `docs` | Read+Write | [spec-kit-retrospective](https://github.com/emi-dm/spec-kit-retrospective) |
|
| Retrospective Extension | Post-implementation retrospective with spec adherence scoring, drift analysis, and human-gated spec updates | `docs` | Read+Write | [spec-kit-retrospective](https://github.com/emi-dm/spec-kit-retrospective) |
|
||||||
| Review Extension | Post-implementation comprehensive code review with specialized agents for code quality, comments, tests, error handling, type design, and simplification | `code` | Read-only | [spec-kit-review](https://github.com/ismaelJimenez/spec-kit-review) |
|
| Review Extension | Post-implementation comprehensive code review with specialized agents for code quality, comments, tests, error handling, type design, and simplification | `code` | Read-only | [spec-kit-review](https://github.com/ismaelJimenez/spec-kit-review) |
|
||||||
| SDD Utilities | Resume interrupted workflows, validate project health, and verify spec-to-task traceability | `process` | Read+Write | [speckit-utils](https://github.com/mvanhorn/speckit-utils) |
|
| SDD Utilities | Resume interrupted workflows, validate project health, and verify spec-to-task traceability | `process` | Read+Write | [speckit-utils](https://github.com/mvanhorn/speckit-utils) |
|
||||||
|
| 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) |
|
||||||
| 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 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) |
|
||||||
| Understanding | Automated requirements quality analysis — 31 deterministic metrics against IEEE/ISO standards with experimental energy-based ambiguity detection | `docs` | Read-only | [understanding](https://github.com/Testimonial/understanding) |
|
| Understanding | Automated requirements quality analysis — 31 deterministic metrics against IEEE/ISO standards with experimental energy-based ambiguity detection | `docs` | Read-only | [understanding](https://github.com/Testimonial/understanding) |
|
||||||
| V-Model Extension Pack | Enforces V-Model paired generation of development specs and test specs with full traceability | `docs` | Read+Write | [spec-kit-v-model](https://github.com/leocamello/spec-kit-v-model) |
|
| V-Model Extension Pack | Enforces V-Model paired generation of development specs and test specs with full traceability | `docs` | Read+Write | [spec-kit-v-model](https://github.com/leocamello/spec-kit-v-model) |
|
||||||
|
|||||||
@@ -514,7 +514,7 @@ zip -r spec-kit-my-ext-1.0.0.zip extension.yml commands/ scripts/ docs/
|
|||||||
Users install with:
|
Users install with:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
specify extension add --from https://github.com/.../spec-kit-my-ext-1.0.0.zip
|
specify extension add <extension-name> --from https://github.com/.../spec-kit-my-ext-1.0.0.zip
|
||||||
```
|
```
|
||||||
|
|
||||||
### Option 3: Community Reference Catalog
|
### Option 3: Community Reference Catalog
|
||||||
|
|||||||
@@ -122,7 +122,7 @@ Test that users can install from your release:
|
|||||||
specify extension add --dev /path/to/your-extension
|
specify extension add --dev /path/to/your-extension
|
||||||
|
|
||||||
# Test from GitHub archive
|
# Test from GitHub archive
|
||||||
specify extension add --from https://github.com/your-org/spec-kit-your-extension/archive/refs/tags/v1.0.0.zip
|
specify extension add <extension-name> --from https://github.com/your-org/spec-kit-your-extension/archive/refs/tags/v1.0.0.zip
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -160,7 +160,7 @@ This will:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# From GitHub release
|
# From GitHub release
|
||||||
specify extension add --from https://github.com/org/spec-kit-ext/archive/refs/tags/v1.0.0.zip
|
specify extension add <extension-name> --from https://github.com/org/spec-kit-ext/archive/refs/tags/v1.0.0.zip
|
||||||
```
|
```
|
||||||
|
|
||||||
### Install from Local Directory (Development)
|
### Install from Local Directory (Development)
|
||||||
@@ -737,7 +737,7 @@ You can still install extensions not in your catalog using `--from`:
|
|||||||
specify extension add jira
|
specify extension add jira
|
||||||
|
|
||||||
# Direct URL (bypasses catalog)
|
# Direct URL (bypasses catalog)
|
||||||
specify extension add --from https://github.com/someone/spec-kit-ext/archive/v1.0.0.zip
|
specify extension add <extension-name> --from https://github.com/someone/spec-kit-ext/archive/v1.0.0.zip
|
||||||
|
|
||||||
# Local development
|
# Local development
|
||||||
specify extension add --dev /path/to/extension
|
specify extension add --dev /path/to/extension
|
||||||
@@ -807,7 +807,7 @@ specify extension add --dev /path/to/extension
|
|||||||
2. Install older version of extension:
|
2. Install older version of extension:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
specify extension add --from https://github.com/org/ext/archive/v1.0.0.zip
|
specify extension add <extension-name> --from https://github.com/org/ext/archive/v1.0.0.zip
|
||||||
```
|
```
|
||||||
|
|
||||||
### MCP Tool Not Available
|
### MCP Tool Not Available
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ Populate your `catalog.json` with approved extensions:
|
|||||||
Skip catalog curation - team members install directly using URLs:
|
Skip catalog curation - team members install directly using URLs:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
specify extension add --from https://github.com/org/spec-kit-ext/archive/refs/tags/v1.0.0.zip
|
specify extension add <extension-name> --from https://github.com/org/spec-kit-ext/archive/refs/tags/v1.0.0.zip
|
||||||
```
|
```
|
||||||
|
|
||||||
**Benefits**: Quick for one-off testing or private extensions
|
**Benefits**: Quick for one-off testing or private extensions
|
||||||
@@ -108,7 +108,7 @@ specify extension search # See what's in your catalog
|
|||||||
specify extension add <extension-name> # Install by name
|
specify extension add <extension-name> # Install by name
|
||||||
|
|
||||||
# Direct from URL (bypasses catalog)
|
# Direct from URL (bypasses catalog)
|
||||||
specify extension add --from https://github.com/<org>/<repo>/archive/refs/tags/<version>.zip
|
specify extension add <extension-name> --from https://github.com/<org>/<repo>/archive/refs/tags/<version>.zip
|
||||||
|
|
||||||
# List installed extensions
|
# List installed extensions
|
||||||
specify extension list
|
specify extension list
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"schema_version": "1.0",
|
"schema_version": "1.0",
|
||||||
"updated_at": "2026-03-28T00:00:00Z",
|
"updated_at": "2026-03-30T00:00:00Z",
|
||||||
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json",
|
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json",
|
||||||
"extensions": {
|
"extensions": {
|
||||||
"aide": {
|
"aide": {
|
||||||
"name": "AI-Driven Engineering (AIDE)",
|
"name": "AI-Driven Engineering (AIDE)",
|
||||||
"id": "aide",
|
"id": "aide",
|
||||||
"description": "A structured 7-step workflow for building new projects from scratch with AI assistants \u2014 from vision through implementation.",
|
"description": "A structured 7-step workflow for building new projects from scratch with AI assistants — from vision through implementation.",
|
||||||
"author": "mnriem",
|
"author": "mnriem",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"download_url": "https://github.com/mnriem/spec-kit-extensions/releases/download/aide-v1.0.0/aide.zip",
|
"download_url": "https://github.com/mnriem/spec-kit-extensions/releases/download/aide-v1.0.0/aide.zip",
|
||||||
@@ -170,7 +170,7 @@
|
|||||||
"cognitive-squad": {
|
"cognitive-squad": {
|
||||||
"name": "Cognitive Squad",
|
"name": "Cognitive Squad",
|
||||||
"id": "cognitive-squad",
|
"id": "cognitive-squad",
|
||||||
"description": "Multi-agent cognitive system with Triadic Model: understanding, internalization, application \u2014 with quality gates, backpropagation verification, and self-healing",
|
"description": "Multi-agent cognitive system with Triadic Model: understanding, internalization, application — with quality gates, backpropagation verification, and self-healing",
|
||||||
"author": "Testimonial",
|
"author": "Testimonial",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"download_url": "https://github.com/Testimonial/cognitive-squad/archive/refs/tags/v0.1.0.zip",
|
"download_url": "https://github.com/Testimonial/cognitive-squad/archive/refs/tags/v0.1.0.zip",
|
||||||
@@ -242,7 +242,7 @@
|
|||||||
"updated_at": "2026-03-19T12:08:20Z"
|
"updated_at": "2026-03-19T12:08:20Z"
|
||||||
},
|
},
|
||||||
"docguard": {
|
"docguard": {
|
||||||
"name": "DocGuard \u2014 CDD Enforcement",
|
"name": "DocGuard — CDD Enforcement",
|
||||||
"id": "docguard",
|
"id": "docguard",
|
||||||
"description": "Canonical-Driven Development enforcement. Validates, scores, and traces project documentation with automated checks, AI-driven workflows, and spec-kit hooks. Zero NPM runtime dependencies.",
|
"description": "Canonical-Driven Development enforcement. Validates, scores, and traces project documentation with automated checks, AI-driven workflows, and spec-kit hooks. Zero NPM runtime dependencies.",
|
||||||
"author": "raccioly",
|
"author": "raccioly",
|
||||||
@@ -379,7 +379,7 @@
|
|||||||
"iterate": {
|
"iterate": {
|
||||||
"name": "Iterate",
|
"name": "Iterate",
|
||||||
"id": "iterate",
|
"id": "iterate",
|
||||||
"description": "Iterate on spec documents with a two-phase define-and-apply workflow \u2014 refine specs mid-implementation and go straight back to building",
|
"description": "Iterate on spec documents with a two-phase define-and-apply workflow — refine specs mid-implementation and go straight back to building",
|
||||||
"author": "Vianca Martinez",
|
"author": "Vianca Martinez",
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"download_url": "https://github.com/imviancagrace/spec-kit-iterate/archive/refs/tags/v2.0.0.zip",
|
"download_url": "https://github.com/imviancagrace/spec-kit-iterate/archive/refs/tags/v2.0.0.zip",
|
||||||
@@ -469,9 +469,9 @@
|
|||||||
"updated_at": "2026-03-17T00:00:00Z"
|
"updated_at": "2026-03-17T00:00:00Z"
|
||||||
},
|
},
|
||||||
"maqa": {
|
"maqa": {
|
||||||
"name": "MAQA \u2014 Multi-Agent & Quality Assurance",
|
"name": "MAQA — Multi-Agent & Quality Assurance",
|
||||||
"id": "maqa",
|
"id": "maqa",
|
||||||
"description": "Coordinator \u2192 feature \u2192 QA agent workflow with parallel worktree-based implementation. Language-agnostic. Auto-detects installed board plugins (Trello, Linear, GitHub Projects, Jira, Azure DevOps). Optional CI gate.",
|
"description": "Coordinator → feature → QA agent workflow with parallel worktree-based implementation. Language-agnostic. Auto-detects installed board plugins (Trello, Linear, GitHub Projects, Jira, Azure DevOps). Optional CI gate.",
|
||||||
"author": "GenieRobot",
|
"author": "GenieRobot",
|
||||||
"version": "0.1.3",
|
"version": "0.1.3",
|
||||||
"download_url": "https://github.com/GenieRobot/spec-kit-maqa-ext/releases/download/maqa-v0.1.3/maqa.zip",
|
"download_url": "https://github.com/GenieRobot/spec-kit-maqa-ext/releases/download/maqa-v0.1.3/maqa.zip",
|
||||||
@@ -994,7 +994,7 @@
|
|||||||
"status": {
|
"status": {
|
||||||
"name": "Project Status",
|
"name": "Project Status",
|
||||||
"id": "status",
|
"id": "status",
|
||||||
"description": "Show current SDD workflow progress \u2014 active feature, artifact status, task completion, workflow phase, and extensions summary.",
|
"description": "Show current SDD workflow progress — active feature, artifact status, task completion, workflow phase, and extensions summary.",
|
||||||
"author": "KhawarHabibKhan",
|
"author": "KhawarHabibKhan",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"download_url": "https://github.com/KhawarHabibKhan/spec-kit-status/archive/refs/tags/v1.0.0.zip",
|
"download_url": "https://github.com/KhawarHabibKhan/spec-kit-status/archive/refs/tags/v1.0.0.zip",
|
||||||
@@ -1023,6 +1023,49 @@
|
|||||||
"created_at": "2026-03-16T00:00:00Z",
|
"created_at": "2026-03-16T00:00:00Z",
|
||||||
"updated_at": "2026-03-16T00:00:00Z"
|
"updated_at": "2026-03-16T00:00:00Z"
|
||||||
},
|
},
|
||||||
|
"superb": {
|
||||||
|
"name": "Superpowers Bridge",
|
||||||
|
"id": "superb",
|
||||||
|
"description": "Orchestrates obra/superpowers skills within the spec-kit SDD workflow. Thin bridge commands delegate to superpowers' authoritative SKILL.md files at runtime (with graceful fallback), while bridge-original commands provide spec-kit-native value. Eight commands cover the full lifecycle: intent clarification, TDD enforcement, task review, verification, critique, systematic debugging, branch completion, and review response. Hook-bound commands fire automatically; standalone commands are invoked when needed.",
|
||||||
|
"author": "rbbtsn0w",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"download_url": "https://github.com/RbBtSn0w/spec-kit-extensions/releases/download/superpowers-bridge-v1.0.0/superpowers-bridge.zip",
|
||||||
|
"repository": "https://github.com/RbBtSn0w/spec-kit-extensions",
|
||||||
|
"homepage": "https://github.com/RbBtSn0w/spec-kit-extensions",
|
||||||
|
"documentation": "https://github.com/RbBtSn0w/spec-kit-extensions/blob/main/superpowers-bridge/README.md",
|
||||||
|
"changelog": "https://github.com/RbBtSn0w/spec-kit-extensions/blob/main/superpowers-bridge/CHANGELOG.md",
|
||||||
|
"license": "MIT",
|
||||||
|
"requires": {
|
||||||
|
"speckit_version": ">=0.4.3",
|
||||||
|
"tools": [
|
||||||
|
{
|
||||||
|
"name": "superpowers",
|
||||||
|
"version": ">=5.0.0",
|
||||||
|
"required": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"provides": {
|
||||||
|
"commands": 8,
|
||||||
|
"hooks": 4
|
||||||
|
},
|
||||||
|
"tags": [
|
||||||
|
"methodology",
|
||||||
|
"tdd",
|
||||||
|
"code-review",
|
||||||
|
"workflow",
|
||||||
|
"superpowers",
|
||||||
|
"brainstorming",
|
||||||
|
"verification",
|
||||||
|
"debugging",
|
||||||
|
"branch-management"
|
||||||
|
],
|
||||||
|
"verified": false,
|
||||||
|
"downloads": 0,
|
||||||
|
"stars": 0,
|
||||||
|
"created_at": "2026-03-30T00:00:00Z",
|
||||||
|
"updated_at": "2026-03-30T00:00:00Z"
|
||||||
|
},
|
||||||
"sync": {
|
"sync": {
|
||||||
"name": "Spec Sync",
|
"name": "Spec Sync",
|
||||||
"id": "sync",
|
"id": "sync",
|
||||||
@@ -1058,7 +1101,7 @@
|
|||||||
"understanding": {
|
"understanding": {
|
||||||
"name": "Understanding",
|
"name": "Understanding",
|
||||||
"id": "understanding",
|
"id": "understanding",
|
||||||
"description": "Automated requirements quality analysis \u2014 validates specs against IEEE/ISO standards using 31 deterministic metrics. Catches ambiguity, missing testability, and structural issues before they reach implementation. Includes experimental energy-based ambiguity detection using local LM token perplexity.",
|
"description": "Automated requirements quality analysis — validates specs against IEEE/ISO standards using 31 deterministic metrics. Catches ambiguity, missing testability, and structural issues before they reach implementation. Includes experimental energy-based ambiguity detection using local LM token perplexity.",
|
||||||
"author": "Ladislav Bihari",
|
"author": "Ladislav Bihari",
|
||||||
"version": "3.4.0",
|
"version": "3.4.0",
|
||||||
"download_url": "https://github.com/Testimonial/understanding/archive/refs/tags/v3.4.0.zip",
|
"download_url": "https://github.com/Testimonial/understanding/archive/refs/tags/v3.4.0.zip",
|
||||||
|
|||||||
Reference in New Issue
Block a user