plugins/ruflo-rvf/README.md
RVF format for portable agent memory, session persistence, and cross-platform transfer.
/plugin marketplace add ruvnet/ruflo
/plugin install ruflo-rvf@ruflo
Sessions persisted by this plugin land at .claude-flow/sessions/*.json, which are written through fs-secure.writeFileRestricted({encrypt:true}) per ADR-096. Behavior under the gate:
CLAUDE_FLOW_ENCRYPT_AT_REST unset / falsy) — sessions are plaintext JSON at mode 0600, same as ruflo 3.6.24 and earlier.CLAUDE_FLOW_ENCRYPT_AT_REST=1 + CLAUDE_FLOW_ENCRYPTION_KEY set to 64-char hex or 44-char base64) — each session save is AES-256-GCM with RFE1 magic-byte prefix. Session restore transparently decrypts via the magic sniff; legacy plaintext sessions still load unchanged during migration.When exporting RVF files for cross-machine transfer, the encryption gate does NOT apply to the exported bytes — the encryption is at-rest on the originating host. If the RVF is itself sensitive, transport security (sealed boxes / signed blobs) is the next phase per the ADR roadmap.
Confirm the gate state with ruflo doctor -c encryption.
/rvf -- Memory stats, saved sessions, storage metricsrvf-manage -- Manage RVF files for portable memorysession-persist -- Persist and restore agent sessions@claude-flow/cli v3.6 major+minor.bash plugins/ruflo-rvf/scripts/smoke.sh is the contract.RVF (RuVector Format) cognitive containers appear in three plugins. Each owns a different slice:
| Slice | Owner | What it does |
|---|---|---|
| Portable memory + session persistence | ruflo-rvf (this plugin) | High-level skills for save/restore, cross-machine transfer |
| Browser sessions as RVF | ruflo-browser ADR-0001 | Each browser session is allocated as an RVF container at session-start (manifest, trajectory, screenshots, snapshots, cookies, findings) |
| RVF tooling (10 subcommands) | ruflo-ruvector ADR-0001 | `ruvector rvf create |
This plugin sits on top of ruvector's tooling and feeds browser's session-as-RVF model.
This plugin owns the rvf-sessions AgentDB namespace (kebab-case, follows the convention from ruflo-agentdb ADR-0001 §"Namespace convention"). Reserved namespaces (pattern, claude-memories, default) MUST NOT be shadowed.
rvf-sessions indexes saved session manifests + their RVF container paths. Accessed via memory_* (namespace-routed).
bash plugins/ruflo-rvf/scripts/smoke.sh
# Expected: "10 passed, 0 failed"
ruflo-ruvector — exposes the ruvector rvf * tooling this plugin sits on top ofruflo-browser — uses RVF containers for session-as-skill artifacts (ADR-0001 there)ruflo-agentdb — namespace convention owner