claw-branch 0.1.2

Fork, simulate, and merge engine for ClawDB agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Branch registry, lifecycle management, and naming helpers.

/// Branch lifecycle operations.
pub mod lifecycle;
/// Branch model aliases and metadata helpers.
pub mod model;
/// Branch name validation and slug generation.
pub mod naming;
/// SQLite-backed branch registry storage.
pub mod store;

pub use lifecycle::BranchLifecycle;
pub use model::BranchMetadata;
pub use naming::NamingValidator;
pub use store::BranchStore;