contractspec 3.7.7 → 3.7.10
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 +20 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# contractspec
|
|
2
2
|
|
|
3
|
+
## 3.7.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1a44cb6: feat: improve examples to increase coverage of Contracts type
|
|
8
|
+
- Updated dependencies [1a44cb6]
|
|
9
|
+
- @contractspec/app.cli-contractspec@4.1.2
|
|
10
|
+
|
|
11
|
+
## 3.7.9
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- fix: release
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @contractspec/app.cli-contractspec@4.1.1
|
|
18
|
+
|
|
3
19
|
## 3.7.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -258,6 +274,7 @@
|
|
|
258
274
|
- a968f66: Strengthen the canonical agentpacks with Cursor-first lifecycle workflows.
|
|
259
275
|
|
|
260
276
|
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.
|
|
277
|
+
|
|
261
278
|
- @contractspec/app.cli-contractspec@2.6.1
|
|
262
279
|
|
|
263
280
|
## 2.6.0
|
|
@@ -651,14 +668,17 @@
|
|
|
651
668
|
feat: Contract layers support (features, examples, app-configs)
|
|
652
669
|
|
|
653
670
|
### New CLI Commands
|
|
671
|
+
|
|
654
672
|
- `contractspec list layers` - List all contract layers with filtering
|
|
655
673
|
|
|
656
674
|
### Enhanced Commands
|
|
675
|
+
|
|
657
676
|
- `contractspec ci` - New `layers` check category validates features/examples/config
|
|
658
677
|
- `contractspec doctor` - New `layers` health checks
|
|
659
678
|
- `contractspec integrity` - Now shows layer statistics
|
|
660
679
|
|
|
661
680
|
### New APIs
|
|
681
|
+
|
|
662
682
|
- `discoverLayers()` - Scan workspace for all layer files
|
|
663
683
|
- `scanExampleSource()` - Parse ExampleSpec from source code
|
|
664
684
|
- `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.10",
|
|
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.1.2"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|