spec-driven-development 2.9.1 → 3.1.1
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/AGENTS.md +26 -0
- package/CHANGELOG.md +30 -0
- package/package.json +2 -2
package/AGENTS.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# AI Agent Guide -- `spec-driven-development`
|
|
2
|
+
|
|
3
|
+
Scope: `packages/apps-registry/spec-driven-development/*`
|
|
4
|
+
|
|
5
|
+
npm-published CLI alias for ContractSpec under the `sdd` / `spec-driven-development` binary names. Thin wrapper that delegates to `@contractspec/app.cli-contractspec`.
|
|
6
|
+
|
|
7
|
+
## Quick Context
|
|
8
|
+
|
|
9
|
+
- **Layer**: apps-registry
|
|
10
|
+
- **Consumers**: end-users installing `npx sdd` or `npx spec-driven-development`
|
|
11
|
+
|
|
12
|
+
## Public Exports
|
|
13
|
+
|
|
14
|
+
| Subpath | Purpose |
|
|
15
|
+
| --- | --- |
|
|
16
|
+
| `bin/contractspec.mjs` | CLI binary entry point (aliased as `sdd` and `spec-driven-development`) |
|
|
17
|
+
|
|
18
|
+
## Guardrails
|
|
19
|
+
|
|
20
|
+
- This package is a shim; all logic lives in `@contractspec/app.cli-contractspec`
|
|
21
|
+
- Do not add dependencies beyond the CLI app workspace reference
|
|
22
|
+
- Changes to `bin/contractspec.mjs` affect every user -- test locally before publishing
|
|
23
|
+
|
|
24
|
+
## Local Commands
|
|
25
|
+
|
|
26
|
+
- Publish: `bun run publish:pkg`
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# spec-driven-development
|
|
2
2
|
|
|
3
|
+
## 3.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @contractspec/app.cli-contractspec@3.1.1
|
|
8
|
+
|
|
9
|
+
## 3.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 28987eb: chore: upgrade dependencies
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [28987eb]
|
|
18
|
+
- @contractspec/app.cli-contractspec@3.1.0
|
|
19
|
+
|
|
20
|
+
## 3.0.0
|
|
21
|
+
|
|
22
|
+
### Major Changes
|
|
23
|
+
|
|
24
|
+
- b781ce6: feat: improve ai readiness
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [7cbdb7f]
|
|
29
|
+
- Updated dependencies [c608804]
|
|
30
|
+
- Updated dependencies [b781ce6]
|
|
31
|
+
- @contractspec/app.cli-contractspec@3.0.0
|
|
32
|
+
|
|
3
33
|
## 2.9.1
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spec-driven-development",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "CLI tool for creating, building, and validating contract specifications",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sdd": "./bin/contractspec.mjs",
|
|
7
7
|
"spec-driven-development": "./bin/contractspec.mjs"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@contractspec/app.cli-contractspec": "
|
|
10
|
+
"@contractspec/app.cli-contractspec": "3.1.1"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
13
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|