mnemospark 0.9.2 → 1.0.1
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/dist/cli.js +814 -169
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +10 -2
- package/dist/index.js +811 -237
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/mnemospark/SKILL.md +14 -14
- package/skills/mnemospark/references/commands.md +7 -5
package/README.md
CHANGED
|
@@ -47,19 +47,19 @@ openclaw gateway restart
|
|
|
47
47
|
|
|
48
48
|
### 4) Use slash commands in OpenClaw chat
|
|
49
49
|
|
|
50
|
-
- `/
|
|
51
|
-
- `/
|
|
50
|
+
- `/mnemospark wallet` → wallet status; `/mnemospark wallet help` → commands
|
|
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 …` (or `/mnemospark wallet …`) 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 aws --region us-east-1
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
Use other regions by changing `--provider` and `--region` (defaults: `aws` / `us-east-1`).
|
|
@@ -67,25 +67,25 @@ Use other regions by changing `--provider` and `--region` (defaults: `aws` / `us
|
|
|
67
67
|
### Upload using quote
|
|
68
68
|
|
|
69
69
|
```text
|
|
70
|
-
/
|
|
70
|
+
/mnemospark cloud upload --quote-id <quote-id> --wallet-address <addr> --object-id <id> --object-id-hash <sha256>
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
### List objects
|
|
74
74
|
|
|
75
75
|
```text
|
|
76
|
-
/
|
|
76
|
+
/mnemospark cloud ls --wallet-address <addr> --object-key <object-key>
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
### Download object
|
|
80
80
|
|
|
81
81
|
```text
|
|
82
|
-
/
|
|
82
|
+
/mnemospark cloud download --wallet-address <addr> --object-key <object-key>
|
|
83
83
|
```
|
|
84
84
|
|
|
85
85
|
### Delete object
|
|
86
86
|
|
|
87
87
|
```text
|
|
88
|
-
/
|
|
88
|
+
/mnemospark cloud delete --wallet-address <addr> --object-key <object-key>
|
|
89
89
|
```
|
|
90
90
|
|
|
91
91
|
---
|