pub mod agent;
#[cfg(feature = "profiling-alloc")]
pub mod alloc_layer;
pub mod channel;
pub mod config;
pub mod config_watcher;
pub mod context;
pub mod cost;
pub mod daemon;
pub mod debug_dump;
pub mod file_watcher;
pub mod instructions;
pub mod instrumented_channel;
pub mod metrics;
#[cfg(feature = "profiling")]
pub mod metrics_bridge;
pub mod pipeline;
pub mod project;
pub mod provider_factory;
pub mod redact;
#[cfg(feature = "sysinfo")]
pub mod system_metrics;
pub mod http;
pub mod lsp_hooks;
pub mod memory_tools;
pub mod overflow_tools;
pub mod runtime_context;
pub mod runtime_layer;
pub mod skill_loader;
pub mod task_supervisor;
pub use zeph_common::text;
#[cfg(test)]
pub mod testing;
pub use agent::Agent;
pub use agent::error::AgentError;
pub use agent::session_config::{AgentSessionConfig, CONTEXT_BUDGET_RESERVE_RATIO};
pub use agent::state::AdversarialPolicyInfo;
pub use agent::state::ProviderConfigSnapshot;
pub use channel::{
Attachment, AttachmentKind, Channel, ChannelError, ChannelMessage, LoopbackChannel,
LoopbackEvent, LoopbackHandle, StopHint, ToolOutputData, ToolOutputEvent, ToolStartData,
ToolStartEvent,
};
pub use config::{Config, ConfigError};
pub use runtime_context::RuntimeContext;
pub use skill_loader::SkillLoaderExecutor;
pub use task_supervisor::{
BlockingError, BlockingHandle, MAX_RESTART_DELAY, RestartPolicy, TaskDescriptor, TaskHandle,
TaskSnapshot, TaskStatus, TaskSupervisor,
};
pub use zeph_common::hash::blake3_hex as content_hash;
pub use zeph_sanitizer::exfiltration::{
ExfiltrationEvent, ExfiltrationGuard, ExfiltrationGuardConfig, extract_flagged_urls,
};
pub use zeph_sanitizer::{
ContentIsolationConfig, ContentSanitizer, ContentSource, ContentSourceKind, ContentTrustLevel,
InjectionFlag, QuarantineConfig, SanitizedContent,
};
pub use zeph_tools::executor::DiffData;
pub mod vault {
pub use zeph_vault::{
AgeVaultError, AgeVaultProvider, ArcAgeVaultProvider, EnvVaultProvider, Secret, VaultError,
VaultProvider, default_vault_dir,
};
#[cfg(any(test, feature = "mock"))]
pub use zeph_vault::MockVaultProvider;
}