mnemospark 0.1.21 → 0.2.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.
- package/README.md +10 -8
- package/README.md.bak +1 -1
- package/dist/cli.js +1141 -161
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +60 -0
- package/dist/index.js +1149 -166
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -1
- package/skills/mnemospark/SKILL.md +56 -0
- package/skills/mnemospark/references/commands.md +75 -0
- package/skills/mnemospark/references/state-and-logs.md +80 -0
- package/skills/mnemospark/references/troubleshooting.md +48 -0
- package/skills/mnemospark/scripts/debug-operation.sh +184 -0
package/README.md
CHANGED
|
@@ -29,6 +29,7 @@ openclaw gateway start
|
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
> Plugin registration is done by `openclaw plugins install mnemospark`.
|
|
32
|
+
> The install also bundles the `skills/mnemospark` skill package so the main agent can delegate mnemospark workflows.
|
|
32
33
|
|
|
33
34
|
### 2) (Optional) Initialize wallet helpers
|
|
34
35
|
|
|
@@ -46,43 +47,43 @@ openclaw gateway restart
|
|
|
46
47
|
|
|
47
48
|
### 4) Use slash commands in OpenClaw chat
|
|
48
49
|
|
|
49
|
-
- `/
|
|
50
|
-
- `/
|
|
50
|
+
- `/mnemospark_wallet` → wallet status/export/help
|
|
51
|
+
- `/mnemospark_cloud help` → storage command guide
|
|
51
52
|
|
|
52
53
|
---
|
|
53
54
|
|
|
54
55
|
## Core Commands
|
|
55
56
|
|
|
56
|
-
Use via `/
|
|
57
|
+
Use via `/mnemospark_cloud ...` in OpenClaw chat.
|
|
57
58
|
|
|
58
59
|
### Get a storage quote
|
|
59
60
|
|
|
60
61
|
```text
|
|
61
|
-
/
|
|
62
|
+
/mnemospark_cloud price-storage --wallet-address <addr> --object-id <id> --object-id-hash <sha256> --gb <gb> --provider <provider> --region <region>
|
|
62
63
|
```
|
|
63
64
|
|
|
64
65
|
### Upload using quote
|
|
65
66
|
|
|
66
67
|
```text
|
|
67
|
-
/
|
|
68
|
+
/mnemospark_cloud upload --quote-id <quote-id> --wallet-address <addr> --object-id <id> --object-id-hash <sha256>
|
|
68
69
|
```
|
|
69
70
|
|
|
70
71
|
### List objects
|
|
71
72
|
|
|
72
73
|
```text
|
|
73
|
-
/
|
|
74
|
+
/mnemospark_cloud ls --wallet-address <addr> --object-key <object-key>
|
|
74
75
|
```
|
|
75
76
|
|
|
76
77
|
### Download object
|
|
77
78
|
|
|
78
79
|
```text
|
|
79
|
-
/
|
|
80
|
+
/mnemospark_cloud download --wallet-address <addr> --object-key <object-key>
|
|
80
81
|
```
|
|
81
82
|
|
|
82
83
|
### Delete object
|
|
83
84
|
|
|
84
85
|
```text
|
|
85
|
-
/
|
|
86
|
+
/mnemospark_cloud delete --wallet-address <addr> --object-key <object-key>
|
|
86
87
|
```
|
|
87
88
|
|
|
88
89
|
---
|
|
@@ -127,6 +128,7 @@ The blockchain transaction is the payment record.
|
|
|
127
128
|
- **402 payment required**: expected in challenge flow; ensure client retries with payment authorization.
|
|
128
129
|
- **Upload/storage backend errors**: verify cloud permissions (e.g., bucket access + IAM role rights).
|
|
129
130
|
- **Command not recognized**: confirm plugin installed and gateway restarted.
|
|
131
|
+
- **One-step operation correlation**: run `./skills/mnemospark/scripts/debug-operation.sh <operation-id>` (or omit ID to use latest).
|
|
130
132
|
|
|
131
133
|
---
|
|
132
134
|
|
package/README.md.bak
CHANGED
|
@@ -24,5 +24,5 @@ Plugin registration is handled only by `openclaw plugins install mnemospark`. Th
|
|
|
24
24
|
1. **Install the plugin in OpenClaw:** `openclaw plugins install mnemospark` then `openclaw gateway start`
|
|
25
25
|
2. **Optional wallet setup:** `npx mnemospark install --standard`
|
|
26
26
|
|
|
27
|
-
In OpenClaw chat, type `/` to see **
|
|
27
|
+
In OpenClaw chat, type `/` to see **mnemospark_wallet** and **mnemospark_cloud**. Use `/mnemospark_wallet` for wallet status or export, `/mnemospark_cloud help` for storage commands.
|
|
28
28
|
|