agentsight_analysis/lib.rs
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2026 eunomia-bpf org.
3
4//! AgentSight post-capture extension set.
5//!
6//! Existing analysis, materialization, storage, and agent/session projection
7//! live here. The native capture crate stays the stable platform boundary.
8
9#![allow(clippy::too_many_arguments)]
10
11pub use agentsight_capture_core::{binary_extractor, binary_resolver, event, time};
12pub use agentsight_capture_core::{BinaryExtractor, Event, EventStream, Runner, RunnerError};
13
14mod json;
15pub mod analyzers;
16pub mod model;
17pub mod runners;
18pub mod sinks;
19pub mod sources;
20pub mod text;
21pub mod view;
22
23pub use view::{MaterializedView, SharedMaterializedView};