mnemospark 0.1.6 → 0.1.7

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
@@ -2,21 +2,4 @@
2
2
 
3
3
  mnemospark is an OpenClaw plugin that provides access to hyper-scaler cloud operations and proprietary data sets. Payments via x402 USDC on Base.
4
4
 
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.
5
+ Stay tuned for a working release...
package/README.md.bak CHANGED
@@ -1,84 +1,22 @@
1
1
  # mnemospark
2
2
 
3
- mnemospark is an OpenClaw plugin for storage workflow operations with wallet-based x402 USDC payments.
4
-
5
- It focuses on:
6
-
7
- - `/mnemospark wallet` for wallet status and export
8
- - `/mnemospark cloud` for storage workflow commands (backup, price-storage, upload, ls, download, delete)
9
- - A local proxy that forwards `/mnemospark/*` storage endpoints to the mnemospark backend with wallet-proof signing
10
-
11
- ---
3
+ mnemospark is an OpenClaw plugin that provides access to hyper-scaler cloud operations and proprietary data sets. Payments via x402 USDC on Base.
12
4
 
13
5
  ## Quick start
14
6
 
15
- ```bash
16
- # Install plugin (from OpenClaw)
17
- openclaw plugins install mnemospark
18
-
19
- # (Optional) run standalone install to create or reuse a wallet
20
- npx mnemospark install --standard
21
-
22
- # (Optional) set wallet key explicitly; if omitted, mnemospark auto-generates one
23
- export MNEMOSPARK_WALLET_KEY=0x...
24
-
25
- # (Optional) point to a custom mnemospark backend API base URL
26
- export MNEMOSPARK_BACKEND_API_BASE_URL=https://your-backend.example.com
27
-
28
- # Start OpenClaw gateway (starts mnemospark proxy in gateway mode)
29
- openclaw gateway start
30
- ```
31
-
32
- In OpenClaw:
33
-
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
-
38
- ---
39
-
40
- ## Configuration
41
-
42
- - **Directory layout:**
43
- - Base directory: `~/.openclaw/mnemospark`
44
- - Logs and object log: `~/.openclaw/mnemospark/object.log`
45
- - Wallet directory: `~/.openclaw/mnemospark/wallet`
46
- - Wallet key: `~/.openclaw/mnemospark/wallet/wallet.key` (or `~/.openclaw/blockrun/wallet.key` when reusing a legacy Blockrun wallet)
47
- - Backup archives: `~/.openclaw/mnemospark/backup`
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
- - **Backend base URL:** `MNEMOSPARK_BACKEND_API_BASE_URL` (optional if default is acceptable).
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
-
52
- Install flows:
53
-
54
- - **Default install:** `npx mnemospark install --default` creates a new Base wallet for mnemospark under `~/.openclaw/mnemospark/wallet/wallet.key` (chmod 600).
55
- - **Standard install:** `npx mnemospark install --standard` checks for an existing `~/.openclaw/blockrun/wallet.key` and, if present, offers to reuse it for mnemospark; otherwise it behaves like the default install.
56
-
57
- ---
58
-
59
- ## Workflow and product references
60
-
61
- - [mnemospark full workflow](./.company/mnemospark_full_workflow.md)
62
- - [mnemospark PRD](./.company/mnemospark_PRD.md)
63
- - [mnemospark backend API spec](./.company/mnemospark_backend_api_spec.md)
64
-
65
- ---
66
-
67
- ## Python examples (uv)
7
+ 1. **Install the plugin in OpenClaw** (required):
68
8
 
69
- Python tooling and examples use [uv](https://docs.astral.sh/uv/) for dependency management. From the repo root:
9
+ ```bash
10
+ openclaw plugins install mnemospark
11
+ openclaw gateway start
12
+ ```
70
13
 
71
- ```bash
72
- # Install uv (macOS/Linux): curl -LsSf https://astral.sh/uv/install.sh | sh
73
- uv sync --extra bcm-pricing
74
- source .venv/bin/activate # or on Windows: .venv\Scripts\activate
75
- python examples/s3_storage_cost_estimate.py --gb 100
76
- python examples/data_transfer_cost_estimate.py --direction in --gb 100
77
- python examples/data_transfer_cost_estimate.py --direction out --gb 500
78
- ```
14
+ 2. **Optional — wallet setup** (creates or reuses a Base wallet; does not register the plugin):
79
15
 
80
- ---
16
+ ```bash
17
+ npx mnemospark install --standard
18
+ ```
81
19
 
82
- ## License
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/`.
83
21
 
84
- MIT
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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "mnemospark",
3
3
  "name": "mnemospark",
4
- "version": "0.1.6",
4
+ "version": "0.1.7",
5
5
  "description": "mnemospark is an OpenClaw plugin that provides access to hyper-scaler cloud operations and proprietary data sets. Payments via x402 USDC on Base.",
6
6
  "configSchema": {
7
7
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mnemospark",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "mnemospark is an OpenClaw plugin that provides access to hyper-scaler cloud operations and proprietary data sets. Payments via x402 USDC on Base.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -26,6 +26,7 @@
26
26
  ],
27
27
  "scripts": {
28
28
  "build": "tsup",
29
+ "prepublishOnly": "npm run build",
29
30
  "dev": "tsup --watch",
30
31
  "test": "vitest run",
31
32
  "test:watch": "vitest",