agentis-ctx 0.3.3

Fast CLI tool that generates AI-ready context from your codebase, with built-in code intelligence
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Database module for code intelligence storage.
//!
//! This module provides SQLite-based storage for:
//! - File tracking with content hashes
//! - Symbol information (functions, structs, enums, etc.)
//! - Relationships between symbols (calls, imports, types)
//! - Module-level information

pub mod models;
pub mod schema;

pub use models::*;
pub use schema::{
    CrossFileEdge, Database, EdgeSymbol, FileComplexity, MapSymbolRow, SymbolMetrics,
    SCHEMA_VERSION,
};