contractspec 1.42.9 → 1.43.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 +19 -0
- package/QUICK_START.md +4 -4
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# contractspec
|
|
2
2
|
|
|
3
|
+
## 1.43.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 042d072: feat: schema declaration using json schema, including zod
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [042d072]
|
|
12
|
+
- @lssm/app.cli-contractspec@1.43.0
|
|
13
|
+
|
|
14
|
+
## 1.42.10
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 1e6a0f1: fix: mcp server
|
|
19
|
+
- Updated dependencies [1e6a0f1]
|
|
20
|
+
- @lssm/app.cli-contractspec@1.42.10
|
|
21
|
+
|
|
3
22
|
## 1.42.9
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/QUICK_START.md
CHANGED
|
@@ -6,8 +6,8 @@ Get started with contracts-cli in 5 minutes.
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
cd packages/lssm/tools/contracts-cli
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
bun install
|
|
10
|
+
bun build
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## First Spec
|
|
@@ -15,7 +15,7 @@ pnpm build
|
|
|
15
15
|
### 1. Create a spec interactively
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
|
|
18
|
+
contractspec create
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
Follow the prompts:
|
|
@@ -32,7 +32,7 @@ This creates: `src/interactions/commands/user-signup.contracts.ts`
|
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
34
|
export ANTHROPIC_API_KEY=your-key-here
|
|
35
|
-
|
|
35
|
+
bun exec contractspec create --ai
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
Describe what you want:
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contractspec",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.43.0",
|
|
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
|
-
"@lssm/app.cli-contractspec": "1.
|
|
9
|
+
"@lssm/app.cli-contractspec": "1.43.0"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"registry": "https://registry.npmjs.org/"
|
|
26
26
|
},
|
|
27
27
|
"license": "MIT",
|
|
28
|
+
"homepage": "https://contractspec.io",
|
|
28
29
|
"repository": {
|
|
29
30
|
"type": "git",
|
|
30
31
|
"url": "https://github.com/lssm-tech/contractspec.git",
|