openclaw-overlay-plugin 0.8.24 → 0.8.26
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/index.js +162 -127
- package/dist/index.js.map +3 -3
- package/openclaw.plugin.json +6 -1
- package/package.json +3 -5
package/openclaw.plugin.json
CHANGED
|
@@ -2,10 +2,15 @@
|
|
|
2
2
|
"id": "openclaw-overlay-plugin",
|
|
3
3
|
"name": "BSV Overlay Network",
|
|
4
4
|
"description": "OpenClaw Overlay — decentralized agent marketplace with BSV micropayments",
|
|
5
|
-
"version": "0.8.
|
|
5
|
+
"version": "0.8.26",
|
|
6
6
|
"skills": [
|
|
7
7
|
"./SKILL.md"
|
|
8
8
|
],
|
|
9
|
+
"credentials": {
|
|
10
|
+
"hooksToken": {
|
|
11
|
+
"preferredEnvVar": "OPENCLAW_HOOKS_TOKEN"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
9
14
|
"providerAuthEnvVars": {
|
|
10
15
|
"OVERLAY_URL": "Overlay server URL (defaults to https://clawoverlay.com)",
|
|
11
16
|
"BSV_NETWORK": "BSV network to use (mainnet/testnet/local)",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-overlay-plugin",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.26",
|
|
4
4
|
"description": "Openclaw BSV Overlay — agent discovery, service marketplace, and micropayments on the BSV blockchain",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -8,11 +8,8 @@
|
|
|
8
8
|
"type": "module",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"files": [
|
|
11
|
+
"dist/",
|
|
11
12
|
"openclaw.plugin.json",
|
|
12
|
-
"dist/index.js",
|
|
13
|
-
"dist/index.js.map",
|
|
14
|
-
"dist/src/cli.js",
|
|
15
|
-
"dist/src/cli.js.map",
|
|
16
13
|
"SKILL.md",
|
|
17
14
|
"README.md"
|
|
18
15
|
],
|
|
@@ -24,6 +21,7 @@
|
|
|
24
21
|
"prepublishOnly": "npm run build && npm test",
|
|
25
22
|
"cli": "node dist/src/cli.js",
|
|
26
23
|
"test": "npx tsx src/test/cli.test.ts && npx tsx src/test/taskflow.test.ts && npx tsx src/test/key-derivation.test.ts",
|
|
24
|
+
"sync": "node ../../sync.js overlay",
|
|
27
25
|
"postversion": "node ../../sync_versions.js",
|
|
28
26
|
"lint": "eslint src/**/*.ts",
|
|
29
27
|
"postinstall": "node -e \"try{require('better-sqlite3')}catch{console.log('Note: better-sqlite3 requires build tools if prebuilt binaries are unavailable.')}\""
|