indelible-mcp 5.7.2 → 5.7.4
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/CLI_HANDBOOK.md +32 -0
- package/README.md +3 -0
- package/package.json +1 -1
- package/src/index.js +2180 -1478
package/CLI_HANDBOOK.md
CHANGED
|
@@ -420,3 +420,35 @@ This creates a standalone `indelible.exe` — no Node.js required on the target
|
|
|
420
420
|
- **Balance:** `indelible-mcp status`, or look your address up in the Chain Browser at indelible.one/explorer
|
|
421
421
|
- **Fund it:** Send BSV to your own address
|
|
422
422
|
- **Cost:** ~$0.21/MB at BSV=$16. Session saves are fractions of a cent.
|
|
423
|
+
|
|
424
|
+
---
|
|
425
|
+
|
|
426
|
+
## The Strongbox — your raw session files, kept
|
|
427
|
+
|
|
428
|
+
Claude Code deletes your raw session transcripts by default after about 30 days (its cleanup
|
|
429
|
+
setting). Those files are the richest record you have — every tool call, every word, verbatim —
|
|
430
|
+
richer even than your encrypted chain saves. The Strongbox keeps a verified, byte-identical copy
|
|
431
|
+
of them under your own roof: `~/.indelible/transcript-vault/` on your machine. Nothing leaves
|
|
432
|
+
your computer; nothing is redacted (it is a byte-copy in your own trust domain — your chain
|
|
433
|
+
saves redact, your local Strongbox does not, deliberately).
|
|
434
|
+
|
|
435
|
+
**You mostly never touch it.** `setup` installs two hooks so every compaction banks a copy and
|
|
436
|
+
every session end does a forced verified refresh. Every successful save also protects the file
|
|
437
|
+
it just read — including Codex sessions. If protecting ever fails, it fails silently rather
|
|
438
|
+
than break your session.
|
|
439
|
+
|
|
440
|
+
**Commands:**
|
|
441
|
+
|
|
442
|
+
indelible-mcp strongbox # look: what's protected, sizes, when
|
|
443
|
+
indelible-mcp strongbox run # protect the current project's session now
|
|
444
|
+
indelible-mcp strongbox run --session <id> # pick one when several exist (it never guesses)
|
|
445
|
+
indelible-mcp strongbox run --path <file> # protect a specific transcript file
|
|
446
|
+
|
|
447
|
+
A path outside your recognized transcript folders is refused — if you're deliberately rescuing
|
|
448
|
+
a stray transcript from a backup, add `--outside-transcript-roots` (named that loudly on
|
|
449
|
+
purpose). Symlinks are refused. The Strongbox never shrinks: a copy is only ever replaced by a
|
|
450
|
+
verified larger one, and the original source file is never written to, ever.
|
|
451
|
+
|
|
452
|
+
**Disk honesty:** copies cost disk. The Strongbox warns loudly when space runs low and never
|
|
453
|
+
deletes anything on its own. Don't cloud-sync `~/.indelible` — it holds your keys and now your
|
|
454
|
+
raw conversations.
|
package/README.md
CHANGED
|
@@ -76,6 +76,9 @@ indelible-mcp setup Generate wallet & register
|
|
|
76
76
|
indelible-mcp setup --migrate Derive API key from existing wallet
|
|
77
77
|
indelible-mcp save Save current session
|
|
78
78
|
indelible-mcp save --summary XYZ Save with custom summary
|
|
79
|
+
indelible-mcp strongbox See your protected raw transcripts (the host deletes them ~30 days by default)
|
|
80
|
+
indelible-mcp strongbox run Protect the current session's raw file now (verified local copy, never leaves your machine)
|
|
81
|
+
indelible-mcp agents --restore Rebuild your 16-agent crew on any box that holds your wallet (no keys written to disk)
|
|
79
82
|
indelible-mcp load Load context from blockchain
|
|
80
83
|
indelible-mcp load --sessions=5 Load N sessions
|
|
81
84
|
indelible-mcp status Show account status
|
package/package.json
CHANGED