agent-file-tools 0.35.4

Agent File Tools — tree-sitter powered code analysis for AI agents
Documentation
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 mod tier2_scheduler;

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, Tier2RunSubmission, Tier2RunSubmissionError};
pub use tier2_scheduler::{Tier2RefreshScheduler, Tier2TriggerReason};