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
//! DAG lineage graph modules.

/// Graphviz DOT exporters.
pub mod dot;
/// Graph storage and mutation operations.
pub mod graph;
/// Persistence helpers for DAG reconstruction.
pub mod serializer;
/// Traversal and merge-base helpers.
pub mod traversal;

pub use graph::{DagGraph, EdgeMeta};
pub use serializer::DagSerializer;
pub use traversal::DagTraversal;