Skip to main content

oalacea_argus/
lib.rs

1pub mod cli;
2pub mod core;
3pub mod storage;
4pub mod common;
5
6// Agent and hooks modules (feature-gated)
7#[cfg(feature = "agent")]
8pub mod agent;
9pub mod hooks;
10
11// Re-export common utilities
12pub use common::{
13    VERSION, ARGUS_DIR, DB_FILENAME, INDEX_DIR,
14    data_dir, db_path, index_dir,
15    find_git_repo, get_project_id,
16};
17
18// Re-export storage types for convenience
19pub use storage::{Context, Transaction, PromptType};