mnemospark 0.1.4 → 0.1.6
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 +18 -3
- package/README.md.bak +7 -7
- package/dist/cli.js +1728 -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 +3 -2
- package/package.json +2 -1
- package/scripts/README.md +8 -4
package/README.md
CHANGED
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
# mnemospark
|
|
2
2
|
|
|
3
|
-
### 🚀 Stay tuned mnemospark will be released soon!
|
|
4
|
-
|
|
5
3
|
mnemospark is an OpenClaw plugin that provides access to hyper-scaler cloud operations and proprietary data sets. Payments via x402 USDC on Base.
|
|
6
4
|
|
|
7
|
-
|
|
5
|
+
## Quick start
|
|
6
|
+
|
|
7
|
+
1. **Install the plugin in OpenClaw** (required):
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
openclaw plugins install mnemospark
|
|
11
|
+
openclaw gateway start
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
2. **Optional — wallet setup** (creates or reuses a Base wallet; does not register the plugin):
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npx mnemospark install --standard
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Plugin registration is handled only by `openclaw plugins install mnemospark`. The `npx mnemospark install` command sets up your wallet and helper scripts under `~/.openclaw/mnemospark/`; it does not write to `~/.openclaw/extensions/`.
|
|
21
|
+
|
|
22
|
+
In OpenClaw: `/mnemospark wallet`, `/mnemospark cloud help`. See the [installation guide](https://github.com/pawlsclick/mnemospark#readme) and [OpenClaw plugins docs](https://docs.openclaw.ai/tools/plugin) if the plugin is not found.
|
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
|
|