product-spec 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -0
- package/README.md +5 -0
- package/package.json +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
|
|
|
6
6
|
|
|
7
7
|
### Changed
|
|
8
8
|
|
|
9
|
+
- Prepared the `v0.3.0` release to validate a clean GitHub Actions release cycle end to end
|
|
9
10
|
- Renamed the published package, CLI, assistant command prefix, and managed manifest path to `product-spec`
|
|
10
11
|
- Updated current-facing documentation, CLI help text, and packaged assistant assets to use `product-spec`
|
|
11
12
|
- Updated current-facing repository guidance to use the `product-spec` name consistently
|
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# product-spec
|
|
2
2
|
|
|
3
|
+
[](https://github.com/ehud-am/product-spec/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/product-spec)
|
|
5
|
+
[](https://www.npmjs.com/package/product-spec)
|
|
6
|
+
[](./LICENSE)
|
|
7
|
+
|
|
3
8
|
The product management counterpart to [spec-kit](https://github.com/github/spec-kit). product-spec brings product management disciplines to spec-driven development, following Amazon's Working Backwards (PR/FAQ) methodology.
|
|
4
9
|
|
|
5
10
|
While spec-kit handles engineering specifications, product-spec handles the product narrative: the domain context, press releases, FAQs, and requirements that define what you're building and why before spec-kit defines how.
|
package/package.json
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "product-spec",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "product-spec CLI for installing product-management command assets into Claude Code and Codex projects",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/ehud-am/product-spec"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/ehud-am/product-spec#readme",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/ehud-am/product-spec/issues"
|
|
13
|
+
},
|
|
6
14
|
"type": "module",
|
|
7
15
|
"bin": {
|
|
8
16
|
"product-spec": "dist/cli/main.js"
|