mnemospark 0.1.22 → 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 +8 -8
- package/README.md.bak +1 -1
- package/dist/cli.js +925 -86
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +51 -0
- package/dist/index.js +933 -91
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/mnemospark/SKILL.md +31 -13
- package/skills/mnemospark/references/commands.md +38 -5
- package/skills/mnemospark/references/state-and-logs.md +40 -0
- package/skills/mnemospark/references/troubleshooting.md +16 -4
package/README.md
CHANGED
|
@@ -47,43 +47,43 @@ openclaw gateway restart
|
|
|
47
47
|
|
|
48
48
|
### 4) Use slash commands in OpenClaw chat
|
|
49
49
|
|
|
50
|
-
- `/
|
|
51
|
-
- `/
|
|
50
|
+
- `/mnemospark_wallet` → wallet status/export/help
|
|
51
|
+
- `/mnemospark_cloud help` → storage command guide
|
|
52
52
|
|
|
53
53
|
---
|
|
54
54
|
|
|
55
55
|
## Core Commands
|
|
56
56
|
|
|
57
|
-
Use via `/
|
|
57
|
+
Use via `/mnemospark_cloud ...` in OpenClaw chat.
|
|
58
58
|
|
|
59
59
|
### Get a storage quote
|
|
60
60
|
|
|
61
61
|
```text
|
|
62
|
-
/
|
|
62
|
+
/mnemospark_cloud price-storage --wallet-address <addr> --object-id <id> --object-id-hash <sha256> --gb <gb> --provider <provider> --region <region>
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
### Upload using quote
|
|
66
66
|
|
|
67
67
|
```text
|
|
68
|
-
/
|
|
68
|
+
/mnemospark_cloud upload --quote-id <quote-id> --wallet-address <addr> --object-id <id> --object-id-hash <sha256>
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
### List objects
|
|
72
72
|
|
|
73
73
|
```text
|
|
74
|
-
/
|
|
74
|
+
/mnemospark_cloud ls --wallet-address <addr> --object-key <object-key>
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
### Download object
|
|
78
78
|
|
|
79
79
|
```text
|
|
80
|
-
/
|
|
80
|
+
/mnemospark_cloud download --wallet-address <addr> --object-key <object-key>
|
|
81
81
|
```
|
|
82
82
|
|
|
83
83
|
### Delete object
|
|
84
84
|
|
|
85
85
|
```text
|
|
86
|
-
/
|
|
86
|
+
/mnemospark_cloud delete --wallet-address <addr> --object-key <object-key>
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
---
|
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
|
|