contractspec 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 -- `contractspec`
|
|
2
|
+
|
|
3
|
+
Scope: `packages/apps-registry/contractspec/*`
|
|
4
|
+
|
|
5
|
+
npm-published CLI entry point for ContractSpec. Thin wrapper that delegates to `@contractspec/app.cli-contractspec` via `bin/contractspec.mjs`.
|
|
6
|
+
|
|
7
|
+
## Quick Context
|
|
8
|
+
|
|
9
|
+
- **Layer**: apps-registry
|
|
10
|
+
- **Consumers**: end-users installing `npx contractspec` or `bun x contractspec`
|
|
11
|
+
|
|
12
|
+
## Public Exports
|
|
13
|
+
|
|
14
|
+
| Subpath | Purpose |
|
|
15
|
+
| --- | --- |
|
|
16
|
+
| `bin/contractspec.mjs` | CLI binary entry point |
|
|
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
|
# contractspec
|
|
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,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contractspec",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "CLI tool for creating, building, and validating contract specifications",
|
|
5
5
|
"bin": {
|
|
6
6
|
"contractspec": "./bin/contractspec.mjs"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@contractspec/app.cli-contractspec": "
|
|
9
|
+
"@contractspec/app.cli-contractspec": "3.1.1"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|