Skip to main content

agentsight_capture_core/
lib.rs

1// SPDX-License-Identifier: MIT
2// Copyright (c) 2026 eunomia-bpf org.
3
4//! Native, cross-platform capture substrate for AgentSight.
5//!
6//! Product analysis, materialization, storage, and presentation live under
7//! `ext/`; this crate keeps the existing Event/Runner/Analyzer boundary and
8//! platform collectors.
9
10#![allow(clippy::too_many_arguments)]
11
12pub mod analyzers;
13pub mod binary_extractor;
14pub mod binary_resolver;
15pub mod event;
16pub mod runners;
17pub mod sources;
18pub mod time;
19
20pub use binary_extractor::BinaryExtractor;
21pub use event::Event;
22pub use runners::{AgentRunner, EventStream, Runner, RunnerError};