@karmaniverous/jeeves-meta-openclaw 0.12.2 → 0.12.3
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/dist/rollup.config.d.ts +11 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
- /package/dist/{cli.d.ts → src/cli.d.ts} +0 -0
- /package/dist/{cli.test.d.ts → src/cli.test.d.ts} +0 -0
- /package/dist/{constants.d.ts → src/constants.d.ts} +0 -0
- /package/dist/{customTools.d.ts → src/customTools.d.ts} +0 -0
- /package/dist/{helpers.d.ts → src/helpers.d.ts} +0 -0
- /package/dist/{helpers.test.d.ts → src/helpers.test.d.ts} +0 -0
- /package/dist/{index.d.ts → src/index.d.ts} +0 -0
- /package/dist/{promptInjection.d.ts → src/promptInjection.d.ts} +0 -0
- /package/dist/{promptInjection.test.d.ts → src/promptInjection.test.d.ts} +0 -0
- /package/dist/{serviceClient.d.ts → src/serviceClient.d.ts} +0 -0
- /package/dist/{tools.d.ts → src/tools.d.ts} +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Rollup configuration for the OpenClaw plugin package.
|
|
3
|
+
* Two entry points: plugin (ESM + declarations) and CLI (ESM executable).
|
|
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
|
+
*/
|
|
9
|
+
import type { RollupOptions } from 'rollup';
|
|
10
|
+
declare const _default: RollupOptions[];
|
|
11
|
+
export default _default;
|
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.12.
|
|
3
|
+
"version": "0.12.3",
|
|
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",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"test": "vitest run",
|
|
82
82
|
"typecheck": "tsc",
|
|
83
83
|
"diagrams": "cd diagrams && plantuml -tpng -o ../assets -r .",
|
|
84
|
-
"build:plugin": "rimraf dist && cross-env NO_COLOR=1 rollup --config rollup.config.
|
|
84
|
+
"build:plugin": "rimraf dist && cross-env NO_COLOR=1 rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
85
85
|
"build:skills": "node scripts/build-skills.mjs",
|
|
86
86
|
"build:content": "node scripts/copy-content.mjs"
|
|
87
87
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|