mnemospark 0.1.4 → 0.1.5
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.bak +7 -7
- package/dist/cli.js +1702 -31
- package/dist/cli.js.map +1 -1
- package/dist/index.js +47 -41
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +2 -2
- package/package.json +2 -1
- package/scripts/README.md +8 -4
package/README.md.bak
CHANGED
|
@@ -4,8 +4,8 @@ mnemospark is an OpenClaw plugin for storage workflow operations with wallet-bas
|
|
|
4
4
|
|
|
5
5
|
It focuses on:
|
|
6
6
|
|
|
7
|
-
- `/wallet` for wallet status and export
|
|
8
|
-
- `/cloud` for storage workflow commands (backup, price-storage, upload, ls, download, delete)
|
|
7
|
+
- `/mnemospark wallet` for wallet status and export
|
|
8
|
+
- `/mnemospark cloud` for storage workflow commands (backup, price-storage, upload, ls, download, delete)
|
|
9
9
|
- A local proxy that forwards `/mnemospark/*` storage endpoints to the mnemospark backend with wallet-proof signing
|
|
10
10
|
|
|
11
11
|
---
|
|
@@ -20,7 +20,7 @@ openclaw plugins install mnemospark
|
|
|
20
20
|
npx mnemospark install --standard
|
|
21
21
|
|
|
22
22
|
# (Optional) set wallet key explicitly; if omitted, mnemospark auto-generates one
|
|
23
|
-
export
|
|
23
|
+
export MNEMOSPARK_WALLET_KEY=0x...
|
|
24
24
|
|
|
25
25
|
# (Optional) point to a custom mnemospark backend API base URL
|
|
26
26
|
export MNEMOSPARK_BACKEND_API_BASE_URL=https://your-backend.example.com
|
|
@@ -31,9 +31,9 @@ openclaw gateway start
|
|
|
31
31
|
|
|
32
32
|
In OpenClaw:
|
|
33
33
|
|
|
34
|
-
- `/wallet` to view wallet address and balance
|
|
35
|
-
- `/wallet export` to back up your private key
|
|
36
|
-
- `/cloud help` to view storage workflow commands
|
|
34
|
+
- `/mnemospark wallet` to view wallet address and balance
|
|
35
|
+
- `/mnemospark wallet export` to back up your private key
|
|
36
|
+
- `/mnemospark cloud help` to view storage workflow commands
|
|
37
37
|
|
|
38
38
|
---
|
|
39
39
|
|
|
@@ -45,7 +45,7 @@ In OpenClaw:
|
|
|
45
45
|
- Wallet directory: `~/.openclaw/mnemospark/wallet`
|
|
46
46
|
- Wallet key: `~/.openclaw/mnemospark/wallet/wallet.key` (or `~/.openclaw/blockrun/wallet.key` when reusing a legacy Blockrun wallet)
|
|
47
47
|
- Backup archives: `~/.openclaw/mnemospark/backup`
|
|
48
|
-
- **Wallet key:** `
|
|
48
|
+
- **Wallet key:** `MNEMOSPARK_WALLET_KEY` (optional). If not provided, mnemospark auto-generates a wallet and stores it under `~/.openclaw/mnemospark/wallet/wallet.key`.
|
|
49
49
|
- **Backend base URL:** `MNEMOSPARK_BACKEND_API_BASE_URL` (optional if default is acceptable).
|
|
50
50
|
- **No backend API key:** do not set `MNEMOSPARK_BACKEND_API_KEY` or `x-api-key`. Backend authentication uses wallet-proof signatures generated by the proxy.
|
|
51
51
|
|