@r4-sdk/skill 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -36,5 +36,5 @@ pnpm run test:pack
36
36
  pnpm run clean
37
37
  ```
38
38
 
39
- This package is released in lockstep with `@r4-sdk/sdk`,
39
+ This package is released in lockstep with `@r4-sdk/node`,
40
40
  `@r4-sdk/mcp`, and `@r4-sdk/cli` through `pnpm release:sdk`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@r4-sdk/skill",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Official R4 OpenClaw skill — teaches agents how to use R4 vault, project, and domain flows",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -8,12 +8,6 @@
8
8
  "files": [
9
9
  "lib"
10
10
  ],
11
- "scripts": {
12
- "build": "tsc && cp src/SKILL.md lib/SKILL.md",
13
- "clean": "rm -rf lib",
14
- "test": "tsx --test test/**/*.test.ts",
15
- "test:pack": "tsx --test test/package.smoke.ts"
16
- },
17
11
  "keywords": [
18
12
  "r4",
19
13
  "openclaw",
@@ -30,7 +24,7 @@
30
24
  "node": ">=18.0.0"
31
25
  },
32
26
  "peerDependencies": {
33
- "@r4-sdk/cli": ">=1.0.0"
27
+ "@r4-sdk/cli": ">=1.0.1"
34
28
  },
35
29
  "peerDependenciesMeta": {
36
30
  "@r4-sdk/cli": {
@@ -56,5 +50,11 @@
56
50
  "@types/node": "^20.11.24",
57
51
  "tsx": "^4.20.6",
58
52
  "typescript": "5.5.3"
53
+ },
54
+ "scripts": {
55
+ "build": "tsc && cp src/SKILL.md lib/SKILL.md",
56
+ "clean": "rm -rf lib",
57
+ "test": "tsx --test test/**/*.test.ts",
58
+ "test:pack": "tsx --test test/package.smoke.ts"
59
59
  }
60
- }
60
+ }