@stamn/stamn-plugin 0.1.0-alpha.33 → 0.1.0-alpha.34
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 +264 -7
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +17 -0
- package/package.json +3 -3
package/openclaw.plugin.json
CHANGED
|
@@ -42,6 +42,23 @@
|
|
|
42
42
|
},
|
|
43
43
|
"required": ["tag", "description", "priceCents"]
|
|
44
44
|
}
|
|
45
|
+
},
|
|
46
|
+
"maxSpendCentsPerCall": {
|
|
47
|
+
"type": "number",
|
|
48
|
+
"description": "Maximum spend per tool call in cents USDC"
|
|
49
|
+
},
|
|
50
|
+
"agents": {
|
|
51
|
+
"type": "object",
|
|
52
|
+
"description": "Per-agent bindings for multi-agent setups",
|
|
53
|
+
"additionalProperties": {
|
|
54
|
+
"type": "object",
|
|
55
|
+
"properties": {
|
|
56
|
+
"agentId": { "type": "string" },
|
|
57
|
+
"apiKey": { "type": "string" },
|
|
58
|
+
"agentName": { "type": "string" }
|
|
59
|
+
},
|
|
60
|
+
"required": ["agentId", "apiKey"]
|
|
61
|
+
}
|
|
45
62
|
}
|
|
46
63
|
},
|
|
47
64
|
"required": []
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stamn/stamn-plugin",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.34",
|
|
4
4
|
"description": "Stamn plugin for OpenClaw",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"openclaw": {
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"license": "MIT",
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@clack/prompts": "^1.0.1",
|
|
55
|
-
"@stamn/cli": "0.1.0-alpha.
|
|
56
|
-
"@stamn/sdk": "0.1.0-alpha.
|
|
55
|
+
"@stamn/cli": "0.1.0-alpha.10",
|
|
56
|
+
"@stamn/sdk": "0.1.0-alpha.3",
|
|
57
57
|
"@types/node": "^22.0.0",
|
|
58
58
|
"@types/ws": "^8.18.0",
|
|
59
59
|
"tsup": "^8.5.1",
|