Skip to main content

systemprompt_sync/local/
mod.rs

1//! Disk ↔ database sync drivers per content kind.
2//!
3//! Each submodule (agents, skills, content) owns one direction-agnostic
4//! orchestrator that reuses the diff calculators from [`crate::diff`].
5
6mod agents_sync;
7mod content_sync;
8mod skills_sync;
9
10pub use agents_sync::AgentsLocalSync;
11pub use content_sync::{ContentDiffEntry, ContentLocalSync};
12pub use skills_sync::SkillsLocalSync;