From 52d7aaa3a596ea6d5b83e1d8ba28e2804ee7bc76 Mon Sep 17 00:00:00 2001 From: TortoiseWolfe Date: Fri, 17 Apr 2026 14:28:01 -0400 Subject: [PATCH 1/3] catalog: add wireframe extension MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds https://github.com/TortoiseWolfe/spec-kit-extension-wireframe (v0.1.0) to the community catalog. Provides a visual feedback loop for spec-driven development: SVG wireframe generation, review, and sign-off. Approved wireframes become spec constraints honored by /plan, /tasks, and /implement. Supersedes #1410 — the old PR predated the extension system introduced in #2130 and proposed commands in templates/commands/, which is no longer the right home for third-party commands. --- extensions/catalog.community.json | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 8761682c1..4412eeaca 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -2246,6 +2246,41 @@ "stars": 0, "created_at": "2026-04-13T00:00:00Z", "updated_at": "2026-04-13T00:00:00Z" + }, + "wireframe": { + "name": "Wireframe Visual Feedback Loop", + "id": "wireframe", + "description": "SVG wireframe generation, review, and sign-off for spec-driven development. Approved wireframes become spec constraints honored by /plan, /tasks, and /implement.", + "author": "TortoiseWolfe (turtlewolfe.com)", + "version": "0.1.0", + "download_url": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/archive/refs/tags/v0.1.0.zip", + "repository": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe", + "homepage": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe", + "documentation": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/blob/main/README.md", + "changelog": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/blob/main/CHANGELOG.md", + "license": "MIT", + "requires": { + "speckit_version": ">=0.6.0" + }, + "provides": { + "commands": 6, + "hooks": 3 + }, + "tags": [ + "wireframe", + "visual", + "design", + "ui", + "mockup", + "svg", + "feedback-loop", + "sign-off" + ], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-04-17T00:00:00Z", + "updated_at": "2026-04-17T00:00:00Z" } } } From a098932f3d7f3eddb6caf6cdc50985a9ba718de0 Mon Sep 17 00:00:00 2001 From: TortoiseWolfe Date: Fri, 17 Apr 2026 15:00:43 -0400 Subject: [PATCH 2/3] catalog: address review feedback (position + author) Two changes per Copilot review: - Move `wireframe` entry alphabetically between `whatif` and `worktree` (was appended after `worktrees`). - Simplify `author` from "TortoiseWolfe (turtlewolfe.com)" to just "TortoiseWolfe" so the exact-match author filter in `ExtensionCatalog.search` finds the entry. Portfolio URL remains accessible via `homepage`/`repository`. Thanks @Copilot, @mnriem for the review. --- extensions/catalog.community.json | 70 +++++++++++++++---------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 4412eeaca..6d549ae17 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -2183,6 +2183,41 @@ "created_at": "2026-04-13T00:00:00Z", "updated_at": "2026-04-13T00:00:00Z" }, + "wireframe": { + "name": "Wireframe Visual Feedback Loop", + "id": "wireframe", + "description": "SVG wireframe generation, review, and sign-off for spec-driven development. Approved wireframes become spec constraints honored by /plan, /tasks, and /implement.", + "author": "TortoiseWolfe", + "version": "0.1.0", + "download_url": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/archive/refs/tags/v0.1.0.zip", + "repository": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe", + "homepage": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe", + "documentation": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/blob/main/README.md", + "changelog": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/blob/main/CHANGELOG.md", + "license": "MIT", + "requires": { + "speckit_version": ">=0.6.0" + }, + "provides": { + "commands": 6, + "hooks": 3 + }, + "tags": [ + "wireframe", + "visual", + "design", + "ui", + "mockup", + "svg", + "feedback-loop", + "sign-off" + ], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-04-17T00:00:00Z", + "updated_at": "2026-04-17T00:00:00Z" + }, "worktree": { "name": "Worktree Isolation", "id": "worktree", @@ -2246,41 +2281,6 @@ "stars": 0, "created_at": "2026-04-13T00:00:00Z", "updated_at": "2026-04-13T00:00:00Z" - }, - "wireframe": { - "name": "Wireframe Visual Feedback Loop", - "id": "wireframe", - "description": "SVG wireframe generation, review, and sign-off for spec-driven development. Approved wireframes become spec constraints honored by /plan, /tasks, and /implement.", - "author": "TortoiseWolfe (turtlewolfe.com)", - "version": "0.1.0", - "download_url": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/archive/refs/tags/v0.1.0.zip", - "repository": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe", - "homepage": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe", - "documentation": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/blob/main/README.md", - "changelog": "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/blob/main/CHANGELOG.md", - "license": "MIT", - "requires": { - "speckit_version": ">=0.6.0" - }, - "provides": { - "commands": 6, - "hooks": 3 - }, - "tags": [ - "wireframe", - "visual", - "design", - "ui", - "mockup", - "svg", - "feedback-loop", - "sign-off" - ], - "verified": false, - "downloads": 0, - "stars": 0, - "created_at": "2026-04-17T00:00:00Z", - "updated_at": "2026-04-17T00:00:00Z" } } } From 27b6b020eb510defd57651542cdfbd6eccb815d6 Mon Sep 17 00:00:00 2001 From: TortoiseWolfe Date: Sat, 18 Apr 2026 11:24:02 -0400 Subject: [PATCH 3/3] docs(readme): add Wireframe Visual Feedback Loop row Addresses @mnriem's follow-up: the README extension table also needs an entry, not just the catalog JSON. Slots in alphabetically between "What-if Analysis" and "Worktree Isolation" with category `visibility` and Read+Write effect (since sign-off writes the approved wireframe paths into spec.md). --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f196bc12..f34bfa0f1 100644 --- a/README.md +++ b/README.md @@ -257,6 +257,7 @@ The following community-contributed extensions are available in [`catalog.commun | Verify Extension | Post-implementation quality gate that validates implemented code against specification artifacts | `code` | Read-only | [spec-kit-verify](https://github.com/ismaelJimenez/spec-kit-verify) | | Verify Tasks Extension | Detect phantom completions: tasks marked [X] in tasks.md with no real implementation | `code` | Read-only | [spec-kit-verify-tasks](https://github.com/datastone-inc/spec-kit-verify-tasks) | | What-if Analysis | Preview the downstream impact (complexity, effort, tasks, risks) of requirement changes before committing to them | `visibility` | Read-only | [spec-kit-whatif](https://github.com/DevAbdullah90/spec-kit-whatif) | +| Wireframe Visual Feedback Loop | SVG wireframe generation, review, and sign-off for spec-driven development. Approved wireframes become spec constraints honored by /plan, /tasks, and /implement | `visibility` | Read+Write | [spec-kit-extension-wireframe](https://github.com/TortoiseWolfe/spec-kit-extension-wireframe) | | Worktree Isolation | Spawn isolated git worktrees for parallel feature development without checkout switching | `process` | Read+Write | [spec-kit-worktree](https://github.com/Quratulain-bilal/spec-kit-worktree) | | Worktrees | Default-on worktree isolation for parallel agents — sibling or nested layout | `process` | Read+Write | [spec-kit-worktree-parallel](https://github.com/dango85/spec-kit-worktree-parallel) |