@karmaniverous/jeeves-meta-openclaw 0.4.0 → 0.4.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/content/agents-section.md +190 -0
- package/content/soul-section.md +91 -0
- package/content/templates/spec-to-code-guide.md +250 -0
- package/content/templates/spec.md +171 -0
- package/content/tools-platform.md +68 -0
- package/dist/cli.js +6 -1
- package/dist/index.js +18779 -10
- package/dist/rollup.config.d.ts +4 -0
- package/dist/src/helpers.d.ts +5 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +8 -4
package/dist/rollup.config.d.ts
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
* Rollup configuration for the OpenClaw plugin package.
|
|
3
3
|
* Two entry points: plugin (ESM + declarations) and CLI (ESM executable).
|
|
4
4
|
*
|
|
5
|
+
* `\@karmaniverous/jeeves` is BUNDLED into the plugin output — the plugin
|
|
6
|
+
* runs in OpenClaw's extensions directory where node_modules is not
|
|
7
|
+
* reliably available. All other node: builtins are externalized.
|
|
8
|
+
*
|
|
5
9
|
* @module rollup.config
|
|
6
10
|
*/
|
|
7
11
|
import type { RollupOptions } from 'rollup';
|
package/dist/src/helpers.d.ts
CHANGED
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@karmaniverous/jeeves-meta-openclaw",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"author": "Jason Williscroft",
|
|
5
5
|
"description": "OpenClaw plugin for jeeves-meta — synthesis tools and virtual rule registration",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
22
22
|
"dist",
|
|
23
|
+
"content",
|
|
23
24
|
"openclaw.plugin.json"
|
|
24
25
|
],
|
|
25
26
|
"publishConfig": {
|
|
@@ -57,6 +58,8 @@
|
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
60
|
"@dotenvx/dotenvx": "^1.55.1",
|
|
61
|
+
"@rollup/plugin-commonjs": "^29.0.2",
|
|
62
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
60
63
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
61
64
|
"auto-changelog": "^2.5.0",
|
|
62
65
|
"cross-env": "^10.1.0",
|
|
@@ -67,7 +70,7 @@
|
|
|
67
70
|
"vitest": "^4.1.0"
|
|
68
71
|
},
|
|
69
72
|
"scripts": {
|
|
70
|
-
"build": "npm run build:plugin && npm run build:skills",
|
|
73
|
+
"build": "npm run build:plugin && npm run build:skills && npm run build:content",
|
|
71
74
|
"changelog": "auto-changelog",
|
|
72
75
|
"lint": "eslint .",
|
|
73
76
|
"lint:fix": "eslint --fix .",
|
|
@@ -78,7 +81,8 @@
|
|
|
78
81
|
"typecheck": "tsc",
|
|
79
82
|
"diagrams": "cd diagrams && plantuml -tpng -o ../assets -r .",
|
|
80
83
|
"build:plugin": "rimraf dist && cross-env NO_COLOR=1 rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
81
|
-
"build:skills": "node scripts/build-skills.mjs"
|
|
84
|
+
"build:skills": "node scripts/build-skills.mjs",
|
|
85
|
+
"build:content": "node scripts/copy-content.mjs"
|
|
82
86
|
},
|
|
83
87
|
"release-it": {
|
|
84
88
|
"git": {
|
|
@@ -115,6 +119,6 @@
|
|
|
115
119
|
}
|
|
116
120
|
},
|
|
117
121
|
"dependencies": {
|
|
118
|
-
"@karmaniverous/jeeves": "^0.1.
|
|
122
|
+
"@karmaniverous/jeeves": "^0.1.6"
|
|
119
123
|
}
|
|
120
124
|
}
|