@moltbankhq/openclaw 0.1.0

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,29 @@
1
+ {
2
+ "id": "moltbank",
3
+ "name": "MoltBank",
4
+ "description": "MoltBank banking skill for OpenClaw — installs mcporter, npm dependencies, sandbox setup, and the MoltBank skill",
5
+ "configSchema": {
6
+ "type": "object",
7
+ "additionalProperties": false,
8
+ "properties": {
9
+ "appBaseUrl": {
10
+ "type": "string",
11
+ "description": "MoltBank deployment URL"
12
+ },
13
+ "skillName": {
14
+ "type": "string",
15
+ "description": "Override skill folder name (default: MoltBank)"
16
+ }
17
+ }
18
+ },
19
+ "uiHints": {
20
+ "appBaseUrl": {
21
+ "label": "App Base URL",
22
+ "placeholder": "https://app.moltbank.bot"
23
+ },
24
+ "skillName": {
25
+ "label": "Skill Name",
26
+ "placeholder": "MoltBank"
27
+ }
28
+ }
29
+ }
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@moltbankhq/openclaw",
3
+ "version": "0.1.0",
4
+ "description": "MoltBank OpenClaw plugin",
5
+ "main": "index.ts",
6
+ "openclaw": {
7
+ "extensions": [
8
+ "./index.ts"
9
+ ]
10
+ },
11
+ "keywords": [],
12
+ "author": "",
13
+ "license": "ISC",
14
+ "type": "module",
15
+ "devDependencies": {
16
+ "@types/node": "^25.5.0"
17
+ }
18
+ }