indelible-mcp 5.6.0 → 5.7.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/CLI_HANDBOOK.md CHANGED
@@ -214,6 +214,13 @@ hook post-compact Auto-restore after compaction (called by hook)
214
214
 
215
215
  The CLI and MCP server are the **same codebase**. They import the same tool functions (`saveSession`, `loadContext`, `saveFile`, `diaryChat`, etc.) and use the same wallet at `~/.indelible/config.json`.
216
216
 
217
+ > ⚠️ **The same wallet on two machines: read from both, write from one.** The coin-reservation that
218
+ > stops two saves colliding is kept **on the machine it runs on** — it cannot see a sibling box. So
219
+ > two machines sharing a wallet can pick the same coin, both broadcast, and Bitcoin keeps one; each
220
+ > box sees only its own attempt, so both can report success while one save is lost. Recall, verify
221
+ > and read freely from anywhere. Do your **saving from one machine at a time**, and treat a save that
222
+ > times out or says *pending* as not yet durable until it confirms.
223
+
217
224
  | | CLI | MCP Server |
218
225
  |---|---|---|
219
226
  | **Location** | `C:/Indelible-main/indelible-cli/src/` | `C:/bsv-claude-wrapper/mcp-server/` |
@@ -263,6 +263,16 @@ They are not assigned to you. Nothing is issued. Each one is computed from your
263
263
 
264
264
  **Check it yourself.** Press "Verify crew" and the browser re-derives all sixteen from your wallet and compares them to what is stored. Close the browser, open it on another machine, unlock, and you get the same sixteen addresses. Nothing is fetched from us to make that happen.
265
265
 
266
+ > ⚠️ **One machine writing at a time.** Deriving your crew on a second machine is safe — that is a
267
+ > read, and it is the paragraph above. **Saving to the chain from two machines on the same wallet at
268
+ > the same time is not.** Both boxes can pick the same coin, both broadcast, and Bitcoin keeps one of
269
+ > them. Each box only sees its own attempt, so both can report success while one save is lost.
270
+ >
271
+ > Until coordinated writing ships, keep **one active writer**: use the second machine to read, verify
272
+ > and recall, and do your saving from one. And treat a save that times out or reports *pending* as
273
+ > **not yet saved** — it may still land, but until it is confirmed it is not durable, and the honest
274
+ > move is to check `indelible-mcp status` rather than assume.
275
+
266
276
  Your crew is also **signed by your wallet**, and the signature is public. Anyone can fetch `/api/sanctuary/crew/<your-address>` with no account and check it offline: every agent is signed, and a separate crew signature commits to the exact set, so nobody can quietly serve someone a shortened version.
267
277
 
268
278
  **What that does and does not prove.** It proves we did not invent your crew and cannot alter it. It does not prove the agents were derived from your wallet, and nothing ever can: derivation runs on a shared secret, so only someone holding the private key can reproduce it. That is a recovery property, not a proof to strangers. It also does not stop us withholding the record entirely, which is what the on-chain anchor in section 8 is for. Until that lands the app marks every agent unattested, and means it.
package/LICENSE CHANGED
@@ -11,7 +11,7 @@ Additional Use Grant: You may make use of the Licensed Work for personal,
11
11
  commercial blockchain storage, session saving, or
12
12
  encrypted vault service without written permission
13
13
  from the Licensor.
14
- Change Date: August 8, 2030
14
+ Change Date: August 13, 2030
15
15
  Change License: MIT License
16
16
 
17
17
  Terms
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indelible-mcp",
3
- "version": "5.6.0",
3
+ "version": "5.7.0",
4
4
  "description": "Blockchain-backed memory and code storage for Claude Code. Save AI conversations and source code permanently on BSV.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",