@memfork/cli 0.1.55 → 0.1.57
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/dist/commands/install.js
CHANGED
|
@@ -201,7 +201,7 @@ network_access = true
|
|
|
201
201
|
console.log("");
|
|
202
202
|
console.log(tip("The agent now has:"));
|
|
203
203
|
console.log(dim(" memwal_recall — semantic memory recall via MemWal MCP"));
|
|
204
|
-
console.log(dim(" memfork commit / merge — the only write path:
|
|
204
|
+
console.log(dim(" memfork commit / merge — the only write path: Walrus blob + branch tracking"));
|
|
205
205
|
console.log("");
|
|
206
206
|
console.log(dim(" Raw MemWal writes (remember / remember_bulk / analyze) are disabled"));
|
|
207
207
|
console.log(dim(" so every saved memory is anchored on Sui. Want raw, unanchored notes?"));
|
|
@@ -221,7 +221,9 @@ function upsertCodexMcp(tomlPath, creds) {
|
|
|
221
221
|
}
|
|
222
222
|
// `disabled_tools` denies the raw MemWal write tools so the agent cannot
|
|
223
223
|
// bypass the on-chain DAG. All persistence is forced through `memfork commit`
|
|
224
|
-
// (which writes MemWal
|
|
224
|
+
// (which writes to Walrus via MemWal — no Sui tx per commit; on-chain events
|
|
225
|
+
// only happen on branch creation and merge settlement). Recall + health +
|
|
226
|
+
// restore stay
|
|
225
227
|
// enabled and are auto-approved (read-only / diagnostic — no approval needed).
|
|
226
228
|
// Users who want raw, unanchored memory can install the standalone MemWal
|
|
227
229
|
// plugin instead.
|
package/package.json
CHANGED
|
@@ -53,6 +53,12 @@ memfork commit \
|
|
|
53
53
|
The CLI auto-detects the current Git branch — do **not** pass `--branch`
|
|
54
54
|
unless explicitly targeting a different branch.
|
|
55
55
|
|
|
56
|
+
**This command writes to Walrus via the MemWal relayer. It takes 20–60 seconds
|
|
57
|
+
to complete — this is normal network latency, not a hang.** Run it in the
|
|
58
|
+
foreground and wait for the `✓ Committed to <branch>` line before concluding
|
|
59
|
+
it succeeded or failed. Do not retry if output is slow; only retry if the
|
|
60
|
+
process exits with a non-zero code or prints an error.
|
|
61
|
+
|
|
56
62
|
### 3. Confirm to the user
|
|
57
63
|
|
|
58
64
|
After the commit succeeds, print a confirmation in this form:
|