Locus turns the Strand + Lens stack into something that looks like a filesystem: files, directories, mounts, watchers, journal-backed governance, and permission modes. The same model powers personal drives, shared workspaces, and sync targets.
use locus::{Locus, MountConfig};
let drive = Locus::mount("team/notes", MountConfig::default()).await?;
drive.write("readme.md", b"# Off-chain").await?;
let mut watch = drive.watch("/").await?;
while let Some(evt) = watch.next().await {
println!("changed: {:?}", evt.path);
}Start with the SDK or load the agent context. Every library is independently documented and versioned.