agent_doc/lib.rs
1//! agent-doc library — shared components for CLI, FFI, and editor plugins.
2//!
3//! Re-exports the core document manipulation modules that are shared between
4//! the CLI binary and native plugin bindings (JNI, napi-rs).
5
6pub mod component;
7pub mod crdt;
8pub mod ffi;
9pub mod frontmatter;
10pub mod merge;
11pub mod template;