mnemospark 0.9.2 → 1.0.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.
- package/README.md +8 -8
- package/dist/cli.js +790 -145
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +10 -2
- package/dist/index.js +787 -213
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/mnemospark/SKILL.md +14 -14
- package/skills/mnemospark/references/commands.md +7 -5
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "mnemospark",
|
|
3
3
|
"name": "mnemospark",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "1.0.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.
|
|
3
|
+
"version": "1.0.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,33 +21,33 @@ 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 `/
|
|
25
|
-
7. Use `/
|
|
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
|
+
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`.
|
|
28
28
|
10. On SQLite unavailability, report graceful fallback and continue with JSONL + legacy logs.
|
|
29
29
|
|
|
30
30
|
## Command catalog
|
|
31
31
|
|
|
32
|
-
- `/
|
|
33
|
-
- `/
|
|
34
|
-
- `/
|
|
35
|
-
- `/
|
|
36
|
-
- `/
|
|
37
|
-
- `/
|
|
38
|
-
- `/
|
|
39
|
-
- `/
|
|
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 aws --region us-east-1` (override for other regions)
|
|
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
|
+
- `/mnemospark cloud payment-settle --quote-id <quote-id> --wallet-address <addr> [--object-id <id>] [--object-key <key>] [--storage-price <n>]`
|
|
36
|
+
- `/mnemospark cloud ls --wallet-address <addr> [--object-key <object-key> | --name <friendly-name>] [--latest|--at <timestamp>]`
|
|
37
|
+
- `/mnemospark cloud download --wallet-address <addr> [--object-key <object-key> | --name <friendly-name>] [--latest|--at <timestamp>] [--async] [--orchestrator <inline|subagent>] [--timeout-seconds <n>]`
|
|
38
|
+
- `/mnemospark cloud delete --wallet-address <addr> [--object-key <object-key> | --name <friendly-name>] [--latest|--at <timestamp>]`
|
|
39
|
+
- `/mnemospark cloud op-status --operation-id <id> [--cancel]`
|
|
40
40
|
|
|
41
41
|
## Async quick examples
|
|
42
42
|
|
|
43
43
|
- Start async with subagent orchestration:
|
|
44
|
-
- `/
|
|
44
|
+
- `/mnemospark cloud upload ... --async --orchestrator subagent`
|
|
45
45
|
- Start async with timeout:
|
|
46
|
-
- `/
|
|
46
|
+
- `/mnemospark cloud download ... --async --orchestrator subagent --timeout-seconds 900`
|
|
47
47
|
- Check status:
|
|
48
|
-
- `/
|
|
48
|
+
- `/mnemospark cloud op-status --operation-id <id>`
|
|
49
49
|
- Cancel subagent operation:
|
|
50
|
-
- `/
|
|
50
|
+
- `/mnemospark cloud op-status --operation-id <id> --cancel`
|
|
51
51
|
|
|
52
52
|
## References
|
|
53
53
|
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# mnemospark Commands Reference
|
|
2
2
|
|
|
3
|
-
## `/
|
|
3
|
+
## `/mnemospark cloud …`
|
|
4
|
+
|
|
5
|
+
Slash usage: `/mnemospark cloud <subcommand> …`. CLI/agent: `node dist/cli.js cloud <subcommand> …`.
|
|
4
6
|
|
|
5
7
|
### Backup
|
|
6
8
|
|
|
@@ -72,10 +74,10 @@ Applies to `backup`, `upload`, `download`.
|
|
|
72
74
|
|
|
73
75
|
## Async examples
|
|
74
76
|
|
|
75
|
-
- `/
|
|
76
|
-
- `/
|
|
77
|
-
- `/
|
|
78
|
-
- `/
|
|
77
|
+
- `/mnemospark cloud upload ... --async --orchestrator subagent`
|
|
78
|
+
- `/mnemospark cloud download ... --async --orchestrator subagent --timeout-seconds 900`
|
|
79
|
+
- `/mnemospark cloud op-status --operation-id <id>`
|
|
80
|
+
- `/mnemospark cloud op-status --operation-id <id> --cancel`
|
|
79
81
|
|
|
80
82
|
## Name selector rules
|
|
81
83
|
|