contractspec 3.7.7 → 3.7.12
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 +37 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# contractspec
|
|
2
2
|
|
|
3
|
+
## 3.7.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [81256ea]
|
|
8
|
+
- Updated dependencies [85ddd6a]
|
|
9
|
+
- Updated dependencies [9cb304e]
|
|
10
|
+
- @contractspec/app.cli-contractspec@4.2.0
|
|
11
|
+
|
|
12
|
+
## 3.7.11
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- fix: release
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @contractspec/app.cli-contractspec@4.1.3
|
|
19
|
+
|
|
20
|
+
## 3.7.10
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 1a44cb6: feat: improve examples to increase coverage of Contracts type
|
|
25
|
+
- Updated dependencies [1a44cb6]
|
|
26
|
+
- @contractspec/app.cli-contractspec@4.1.2
|
|
27
|
+
|
|
28
|
+
## 3.7.9
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- fix: release
|
|
33
|
+
- Updated dependencies
|
|
34
|
+
- @contractspec/app.cli-contractspec@4.1.1
|
|
35
|
+
|
|
3
36
|
## 3.7.6
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
|
@@ -258,6 +291,7 @@
|
|
|
258
291
|
- a968f66: Strengthen the canonical agentpacks with Cursor-first lifecycle workflows.
|
|
259
292
|
|
|
260
293
|
This adds marketplace-readiness guidance, new analysis commands (`/analyze-codebase`, `/impact`), model-profile routing, and updated generated assistant artifacts while keeping canonical packs clearly separated from imported reference packs.
|
|
294
|
+
|
|
261
295
|
- @contractspec/app.cli-contractspec@2.6.1
|
|
262
296
|
|
|
263
297
|
## 2.6.0
|
|
@@ -651,14 +685,17 @@
|
|
|
651
685
|
feat: Contract layers support (features, examples, app-configs)
|
|
652
686
|
|
|
653
687
|
### New CLI Commands
|
|
688
|
+
|
|
654
689
|
- `contractspec list layers` - List all contract layers with filtering
|
|
655
690
|
|
|
656
691
|
### Enhanced Commands
|
|
692
|
+
|
|
657
693
|
- `contractspec ci` - New `layers` check category validates features/examples/config
|
|
658
694
|
- `contractspec doctor` - New `layers` health checks
|
|
659
695
|
- `contractspec integrity` - Now shows layer statistics
|
|
660
696
|
|
|
661
697
|
### New APIs
|
|
698
|
+
|
|
662
699
|
- `discoverLayers()` - Scan workspace for all layer files
|
|
663
700
|
- `scanExampleSource()` - Parse ExampleSpec from source code
|
|
664
701
|
- `isExampleFile()` - Check if file is an example spec
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contractspec",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.12",
|
|
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": "4.
|
|
9
|
+
"@contractspec/app.cli-contractspec": "4.2.0"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|