@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.
@@ -0,0 +1,2 @@
1
+ import { n as setVamaRuntime } from "./runtime-w-1oL50p.js";
2
+ export { setVamaRuntime };
@@ -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 };
@@ -0,0 +1,9 @@
1
+ {
2
+ "id": "vama",
3
+ "channels": ["vama"],
4
+ "configSchema": {
5
+ "type": "object",
6
+ "additionalProperties": false,
7
+ "properties": {}
8
+ }
9
+ }
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
+ }