diff --git a/CHANGELOG.md b/CHANGELOG.md index 697684d..6220807 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/README.md b/README.md index 55a4fc3..37bb98c 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/extension.yml b/extension.yml index c08ff1b..7b59b41 100644 --- a/extension.yml +++ b/extension.yml @@ -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"