indelible-mcp 5.2.0 → 5.2.1

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
@@ -1,5 +1,21 @@
1
1
  # Indelible CLI Handbook
2
2
 
3
+ ## Two Pilots (5.2.0)
4
+
5
+ Indelible works with Claude Code, with OpenAI's Codex CLI, or with both at once on the same memory.
6
+
7
+ - **Claude Code:** `claude mcp add indelible -- indelible-mcp`
8
+ - **Codex CLI:** add to `~/.codex/config.toml` and restart Codex:
9
+
10
+ ```toml
11
+ [mcp_servers.indelible]
12
+ command = "indelible-mcp"
13
+ ```
14
+
15
+ Every save is stamped with its author inside the encrypted record (`Saved by Claude` / `Saved by Codex` in the Context tab on indelible.one). Each pilot can only save its own conversations — a Codex call binds to its own rollout file, a Claude call binds to its own transcript, and a save with no valid binding refuses instead of guessing. The wallet admits one writer at a time, so concurrent pilots take turns instead of colliding; a busy wallet answers with a retryable message, not a double-spend.
16
+
17
+ > Name check: the Diary companion below is also named "Codex" by default — that is a chat companion, not the OpenAI coding agent. The author stamps only ever come from the coding hosts.
18
+
3
19
  Standalone command-line interface for Indelible blockchain memory. Same wallet, same blockchain, same functions as the MCP server — but runnable directly.
4
20
 
5
21
  ---
@@ -191,6 +191,14 @@ This fetches the pack and backfills meaning-vectors for your existing history. I
191
191
 
192
192
  **`diary_recall`** is the same power scoped to your companion's own history. `scope: "diary"` for saved diary entries, `"duo"` for live Claude-plus-companion rounds, `"all"` for both.
193
193
 
194
+ ### Two pilots on one memory (5.2.0)
195
+
196
+ Your memory is not tied to one AI. Wire OpenAI's Codex CLI to the same install (`~/.codex/config.toml` → `[mcp_servers.indelible]` `command = "indelible-mcp"`) and it reads and writes the same chain as Claude Code. Every save is stamped with its author inside the encrypted record; the Context tab on indelible.one shows `Saved by Claude` or `Saved by Codex` once your record decrypts, and if an index ever claims a different author than your decrypted record proves, the app shows you both values and trusts neither.
197
+
198
+ The pilots stay out of each other's way by construction. Each one can only save the conversation file it is actually bound to — its own transcript or its own rollout — and the wallet admits one writer at a time, so simultaneous saves take turns instead of double-spending. What one saves, the other can find: ask either pilot to `recall_context` and it reads work the other did, from its own seat, in its own time.
199
+
200
+ (The Diary companion's default name is also "Codex" — that is the chat companion in section 5b, not the OpenAI coding agent. Author stamps only ever come from the coding hosts.)
201
+
194
202
  ---
195
203
 
196
204
  ## 5. Your first adversarial habit
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: April 30, 2030
14
+ Change Date: August 7, 2030
15
15
  Change License: MIT License
16
16
 
17
17
  Terms
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Indelible MCP Server
2
2
 
3
- Blockchain-backed memory for Claude Code. Save your AI conversations permanently on BSV via a federated mesh of SPV bridges.
3
+ Blockchain-backed memory for Claude Code **and OpenAI's Codex CLI**. Save your AI conversations permanently on BSV via a federated mesh of SPV bridges.
4
+
5
+ **New in 5.2.0 — two pilots, one memory, signed work.** Run Claude, run Codex, or run both on the same on-chain memory. Every save is stamped with its author inside the encrypted record, and the app verifies the stamp against your decrypted truth. Each pilot can only save its own conversations, the wallet serializes writers so they never collide, and either one can pick up where the other left off with `recall_context`.
4
6
 
5
7
  > **New here?** Two guides ship with this package: **CUSTOMER_AGENT_HANDBOOK.md** (your agents on day one — the Witness, the Scribe, what runs for you) and **CLI_HANDBOOK.md** (every command + common errors). They are in the package install folder, or on indelible.one/docs.
6
8
 
@@ -40,6 +42,19 @@ Run `indelible-mcp --show-config` to get your config, or add this to your Claude
40
42
  }
41
43
  ```
42
44
 
45
+ ### 3b. Or wire OpenAI's Codex CLI — instead of Claude, or alongside it
46
+
47
+ Add to `~/.codex/config.toml`, then restart Codex (the CLI and the VS Code extension share this config):
48
+
49
+ ```toml
50
+ [mcp_servers.indelible]
51
+ command = "indelible-mcp"
52
+ ```
53
+
54
+ Codex's saves are stamped `Saved by Codex`; Claude's are stamped `Saved by Claude`. Both write to the same wallet and the same permanent memory — ask either one to "save this session" or "recall what we were working on."
55
+
56
+ > Name check: the free Diary companion's default name is also "Codex" — that is a chat companion inside Indelible. This section is about OpenAI's Codex coding agent. Different lanes.
57
+
43
58
  ## Usage
44
59
 
45
60
  Once configured, just talk to Claude Code naturally:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indelible-mcp",
3
- "version": "5.2.0",
3
+ "version": "5.2.1",
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",
package/src/index.js CHANGED
@@ -11299,7 +11299,7 @@ Commands:
11299
11299
  }
11300
11300
  function printHelp() {
11301
11301
  console.log(`
11302
- Indelible MCP \u2014 Blockchain memory for Claude Code (v5.2.0)
11302
+ Indelible MCP \u2014 Blockchain memory for Claude Code (v5.2.1)
11303
11303
 
11304
11304
  Setup:
11305
11305
  indelible-mcp setup --wif=KEY --pin=PIN Import and encrypt your private key
@@ -11606,7 +11606,7 @@ function readStdin() {
11606
11606
  }
11607
11607
  var SERVER_INFO = {
11608
11608
  name: "indelible",
11609
- version: "5.2.0",
11609
+ version: "5.2.1",
11610
11610
  description: "Blockchain-backed memory and code storage for Claude Code"
11611
11611
  };
11612
11612
  var TOOLS = [