1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! AGIT: AI-Native Git Wrapper
//!
//! AGIT captures the "Context" (Why/How) alongside the "Code" (What).
//! It maintains a "Neural Graph" parallel to Git's commit graph.
//!
//! # Philosophy
//!
//! "Code is the Artifact. Context is the Source."
//!
//! # Architecture
//!
//! AGIT uses the "Seamless Echo Strategy" where AI editors (Cursor, Claude, etc.)
//! push context to AGIT via MCP, eliminating the need for LLM API keys in the CLI.
//!
//! # Example
//!
//! ```bash
//! # Initialize AGIT in a git repository
//! agit init
//!
//! # Record a thought manually
//! agit record "Planning to refactor the auth module"
//!
//! # Commit with context
//! agit commit -m "Refactor auth module"
//!
//! # View history with context
//! agit log
//! ```
// Re-export commonly used types
pub use ;
pub use ;