agentvfs 0.1.6

Virtual filesystem CLI backed by embedded databases for AI agents
Documentation
1
2
3
4
5
6
7
8
9
//! Interactive shell module for vfs.
//!
//! Provides a REPL (Read-Eval-Print-Loop) experience with tab completion
//! and command history.

mod completion;
mod repl;

pub use repl::Shell;