@ottocode/openclaw-setu 0.1.1 → 0.1.2
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/README.md +12 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -17,17 +17,22 @@ OpenClaw → localhost:8403 (Setu proxy) → api.setu.ottocode.io → LLM provid
|
|
|
17
17
|
|
|
18
18
|
## Quick Start
|
|
19
19
|
|
|
20
|
+
No project installation needed — this is a global tool.
|
|
21
|
+
|
|
20
22
|
```bash
|
|
21
|
-
#
|
|
22
|
-
|
|
23
|
+
# Option 1: Zero-install with bunx (recommended)
|
|
24
|
+
bunx @ottocode/openclaw-setu setup
|
|
23
25
|
|
|
24
|
-
#
|
|
25
|
-
|
|
26
|
+
# Option 2: Global install
|
|
27
|
+
bun install -g @ottocode/openclaw-setu
|
|
28
|
+
openclaw-setu setup
|
|
29
|
+
```
|
|
26
30
|
|
|
31
|
+
```bash
|
|
27
32
|
# Fund your wallet with USDC on Solana (address shown during setup)
|
|
28
33
|
|
|
29
34
|
# Start the proxy
|
|
30
|
-
bunx openclaw-setu start
|
|
35
|
+
bunx @ottocode/openclaw-setu start
|
|
31
36
|
|
|
32
37
|
# Restart OpenClaw
|
|
33
38
|
openclaw gateway restart
|
|
@@ -49,6 +54,8 @@ openclaw-setu config remove Remove Setu provider from openclaw.json
|
|
|
49
54
|
openclaw-setu config status Check if Setu is configured
|
|
50
55
|
```
|
|
51
56
|
|
|
57
|
+
All commands work with `bunx @ottocode/openclaw-setu <command>` (no install required).
|
|
58
|
+
|
|
52
59
|
## As an OpenClaw Plugin
|
|
53
60
|
|
|
54
61
|
If OpenClaw loads the plugin automatically (via `openclaw.extensions` in package.json), Setu registers:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ottocode/openclaw-setu",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Setu provider for OpenClaw — pay for AI with Solana USDC. No API keys, just a wallet.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.ts",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"directory": "packages/openclaw-setu"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@ottocode/ai-sdk": "
|
|
40
|
+
"@ottocode/ai-sdk": "^0.1.4"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"openclaw": ">=2025.1.0"
|