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
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1] - 2026-04-21

### Fixed

- Corrected slash-command references in `extension.yml` description and `README.md` to use the `/speckit.`-prefixed names (`/speckit.plan`, `/speckit.tasks`, `/speckit.implement`) instead of the unprefixed forms. The unprefixed names never existed in published Spec Kit releases; the previous text would have misled users following the docs. Resolves #1.

## [0.1.0] - 2026-04-17

### Added
Expand Down Expand Up @@ -37,5 +43,6 @@ Supersedes [github/spec-kit#1410](https://github.com/github/spec-kit/pull/1410),

---

[Unreleased]: https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/compare/v0.1.1...HEAD
[0.1.1]: https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/TortoiseWolfe/spec-kit-extension-wireframe/releases/tag/v0.1.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@

> **Spec-Driven Development catches logic errors. It doesn't catch "this doesn't look right."**
>
> By the time you've planned, tasked, and started implementing, you're painting a picture you never approved. This extension adds the visual sign-off step SDD is missing: generate wireframes from the spec, iterate on them, sign them off β€” and then `/plan`, `/tasks`, and `/implement` automatically honor what you approved.
> By the time you've planned, tasked, and started implementing, you're painting a picture you never approved. This extension adds the visual sign-off step SDD is missing: generate wireframes from the spec, iterate on them, sign them off β€” and then `/speckit.plan`, `/speckit.tasks`, and `/speckit.implement` automatically honor what you approved.

πŸ‘‰ **See it live:** https://tortoisewolfe.github.io/spec-kit-extension-wireframe/

## How it works

Spec-Driven Development already treats `spec.md` as the source of truth β€” every downstream command (`/plan`, `/tasks`, `/implement`) reloads it as constraint context. This extension piggybacks on that: on sign-off, approved wireframe paths get written into `spec.md` under a `## UI Mockup` section. From that moment, the visual becomes part of the spec. No changes to core Spec Kit required.
Spec-Driven Development already treats `spec.md` as the source of truth β€” every downstream command (`/speckit.plan`, `/speckit.tasks`, `/speckit.implement`) reloads it as constraint context. This extension piggybacks on that: on sign-off, approved wireframe paths get written into `spec.md` under a `## UI Mockup` section. From that moment, the visual becomes part of the spec. No changes to core Spec Kit required.

```
/speckit.specify
Expand Down
4 changes: 2 additions & 2 deletions extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ schema_version: "1.0"
extension:
id: "wireframe"
name: "Wireframe Visual Feedback Loop"
version: "0.1.0"
description: "SVG wireframe generation, review, and sign-off for spec-driven development. Wireframes become spec constraints honored by /plan, /tasks, and /implement."
version: "0.1.1"
description: "SVG wireframe generation, review, and sign-off for spec-driven development. Wireframes become spec constraints honored by /speckit.plan, /speckit.tasks, and /speckit.implement."
author: "TortoiseWolfe"
repository: "https://github.com/TortoiseWolfe/spec-kit-extension-wireframe"
license: "MIT"
Expand Down