agent-file-tools 0.33.0

Agent File Tools — tree-sitter powered code analysis for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod cache;
pub(crate) mod diagnostics_category;
pub mod dispatch;
mod entry_points;
pub mod freshness;
pub mod job;
mod manager;
pub mod scanners;

pub use cache::{ContributionRecord, InspectCache, InspectCacheError};
pub use dispatch::{DispatchHandles, InspectWorker};
pub use freshness::{contribution_is_fresh, verify_contribution_file, ContributionFreshness};
pub use job::{
    CallgraphExport, CallgraphOutboundCall, CallgraphSnapshot, FileContribution, InspectCategory,
    InspectJob, InspectResult, InspectScanSuccess, InspectSnapshot, InspectTier, JobKey,
    JobOutcome, JobScope, JobStatus, WorkerCtx,
};
pub use manager::InspectManager;