@vama/openclaw 2026.5.5
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/api-C0vtNv5b.js +12 -0
- package/dist/api.js +3 -0
- package/dist/channel-plugin-api-CcZ_y9pT.js +700 -0
- package/dist/channel-plugin-api.js +2 -0
- package/dist/client-AsD46gcK.js +367 -0
- package/dist/index.js +55 -0
- package/dist/probe-B2hFOc2Y.js +959 -0
- package/dist/runtime-api.js +2 -0
- package/dist/runtime-w-1oL50p.js +11 -0
- package/openclaw.plugin.json +9 -0
- package/package.json +58 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
//#region extensions/vama/src/runtime.ts
|
|
2
|
+
let runtime = null;
|
|
3
|
+
function setVamaRuntime(next) {
|
|
4
|
+
runtime = next;
|
|
5
|
+
}
|
|
6
|
+
function getVamaRuntime() {
|
|
7
|
+
if (!runtime) throw new Error("Vama runtime not initialized");
|
|
8
|
+
return runtime;
|
|
9
|
+
}
|
|
10
|
+
//#endregion
|
|
11
|
+
export { setVamaRuntime as n, getVamaRuntime as t };
|
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vama/openclaw",
|
|
3
|
+
"version": "2026.5.5",
|
|
4
|
+
"description": "OpenClaw Vama channel plugin via BotHub",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/VamaSingapore/openclaw"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"undici": "8.2.0"
|
|
12
|
+
},
|
|
13
|
+
"peerDependencies": {
|
|
14
|
+
"openclaw": ">=2026.5.12"
|
|
15
|
+
},
|
|
16
|
+
"peerDependenciesMeta": {
|
|
17
|
+
"openclaw": {
|
|
18
|
+
"optional": true
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"openclaw": {
|
|
22
|
+
"extensions": [
|
|
23
|
+
"./index.ts"
|
|
24
|
+
],
|
|
25
|
+
"channel": {
|
|
26
|
+
"id": "vama",
|
|
27
|
+
"label": "Vama",
|
|
28
|
+
"selectionLabel": "Vama",
|
|
29
|
+
"docsPath": "/channels/vama",
|
|
30
|
+
"blurb": "Vama chat integration via BotHub.",
|
|
31
|
+
"order": 80
|
|
32
|
+
},
|
|
33
|
+
"install": {
|
|
34
|
+
"localPath": "extensions/vama",
|
|
35
|
+
"npmSpec": "@vama/openclaw",
|
|
36
|
+
"clawhubSpec": "clawhub:@vama/openclaw",
|
|
37
|
+
"defaultChoice": "npm",
|
|
38
|
+
"minHostVersion": ">=2026.5.12"
|
|
39
|
+
},
|
|
40
|
+
"compat": {
|
|
41
|
+
"pluginApi": ">=2026.5.12"
|
|
42
|
+
},
|
|
43
|
+
"build": {
|
|
44
|
+
"openclawVersion": "2026.5.5"
|
|
45
|
+
},
|
|
46
|
+
"release": {
|
|
47
|
+
"publishToNpm": true,
|
|
48
|
+
"publishToClawHub": true
|
|
49
|
+
},
|
|
50
|
+
"runtimeExtensions": [
|
|
51
|
+
"./dist/index.js"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"files": [
|
|
55
|
+
"dist/**",
|
|
56
|
+
"openclaw.plugin.json"
|
|
57
|
+
]
|
|
58
|
+
}
|