mnemospark 0.8.2 → 0.9.0

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "mnemospark",
3
3
  "name": "mnemospark",
4
- "version": "0.8.2",
4
+ "version": "0.9.0",
5
5
  "description": "mnemospark is an OpenClaw plugin that gives agentic systems instant, secure access to cloud storage, compute, and proprietary datasets paid via x402 with USDC on Base. Wallet and go.",
6
6
  "configSchema": {
7
7
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mnemospark",
3
- "version": "0.8.2",
3
+ "version": "0.9.0",
4
4
  "description": "mnemospark is an OpenClaw plugin that gives agentic systems instant, secure access to cloud storage, compute, and proprietary datasets paid via x402 with USDC on Base. Wallet and go.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -21,7 +21,7 @@ Use this skill for mnemospark cloud backup/storage workflows, async operation tr
21
21
  3. Use `--orchestrator subagent` when explicit subagent session tracking/cancel support is required.
22
22
  4. If timeout control is needed, require `--timeout-seconds <n>` with `--orchestrator subagent`.
23
23
  5. Return `operation-id` immediately for async commands.
24
- 6. Poll with `/mnemospark_cloud op-status --operation-id <id>` until terminal status.
24
+ 6. Poll with `/mnemospark_cloud op-status --operation-id <id>` until terminal status; on **succeeded**, the status message includes the same full user-visible output as a synchronous run (e.g. backup `price-storage` line, upload confirmation, download path).
25
25
  7. Use `/mnemospark_cloud op-status --operation-id <id> --cancel` for subagent cancellation.
26
26
  8. Use SQLite (`state.db`) as source of truth; use JSONL streams for correlation and audit context.
27
27
  9. On ambiguity with `--name`, require `--latest` or `--at`.
@@ -30,7 +30,7 @@ Use this skill for mnemospark cloud backup/storage workflows, async operation tr
30
30
  ## Command catalog
31
31
 
32
32
  - `/mnemospark_cloud backup <file|directory> [--name <friendly-name>] [--async] [--orchestrator <inline|subagent>] [--timeout-seconds <n>]`
33
- - `/mnemospark_cloud price-storage --wallet-address <addr> --object-id <id> --object-id-hash <hash> --gb <gb> --provider <provider> --region <region>`
33
+ - `/mnemospark_cloud price-storage --wallet-address <addr> --object-id <id> --object-id-hash <hash> --gb <gb> --provider aws --region us-east-1` (override for other regions)
34
34
  - `/mnemospark_cloud upload --quote-id <quote-id> --wallet-address <addr> --object-id <id> --object-id-hash <hash> [--name <friendly-name>] [--async] [--orchestrator <inline|subagent>] [--timeout-seconds <n>]`
35
35
  - `/mnemospark_cloud payment-settle --quote-id <quote-id> --wallet-address <addr> [--object-id <id>] [--object-key <key>] [--storage-price <n>]`
36
36
  - `/mnemospark_cloud ls --wallet-address <addr> [--object-key <object-key> | --name <friendly-name>] [--latest|--at <timestamp>]`
@@ -13,7 +13,7 @@
13
13
 
14
14
  ### Price storage quote
15
15
 
16
- `price-storage --wallet-address <addr> --object-id <id> --object-id-hash <hash> --gb <gb> --provider <provider> --region <region>`
16
+ `price-storage --wallet-address <addr> --object-id <id> --object-id-hash <hash> --gb <gb> --provider aws --region us-east-1` (defaults; override `--provider` / `--region` for other regions)
17
17
 
18
18
  ### Upload
19
19