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 CHANGED
@@ -47,19 +47,19 @@ openclaw gateway restart
47
47
 
48
48
  ### 4) Use slash commands in OpenClaw chat
49
49
 
50
- - `/mnemospark_wallet` → wallet status/export/help
51
- - `/mnemospark_cloud help` → storage command guide
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 `/mnemospark_cloud ...` in OpenClaw chat.
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
- /mnemospark_cloud price-storage --wallet-address <addr> --object-id <id> --object-id-hash <sha256> --gb <gb> --provider aws --region us-east-1
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
- /mnemospark_cloud upload --quote-id <quote-id> --wallet-address <addr> --object-id <id> --object-id-hash <sha256>
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
- /mnemospark_cloud ls --wallet-address <addr> --object-key <object-key>
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
- /mnemospark_cloud download --wallet-address <addr> --object-key <object-key>
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
- /mnemospark_cloud delete --wallet-address <addr> --object-key <object-key>
88
+ /mnemospark cloud delete --wallet-address <addr> --object-key <object-key>
89
89
  ```
90
90
 
91
91
  ---