tsift_agent_doc/lib.rs
1pub mod graph_evidence;
2pub mod prompt_cache_history;
3pub mod session_cost;
4pub mod session_digest;
5pub mod session_markdown;
6pub mod session_review;
7
8// Local KG Model Contract (#kgadactivate, replacing the dropped #kgaduse
9// re-export): agent-doc may READ `.tsift/graph.db` evidence via the
10// tsift-sqlite/tsift-core GraphStore layer but must not own the tsift-kg
11// extraction pipeline. `graph_evidence` is that read seam. Deeper wiring
12// into session_digest/planning call sites is a separate design pass.
13//
14// See specs/local-kg-model.md lines 29-30 and the README's Local KG Model
15// Contract section for the contract this module realizes.