hyper_agent_ai/lib.rs
1// Re-export pure domain types from hyper-agent-core for convenience.
2pub use hyper_agent_core::adjuster_guardrails;
3pub use hyper_agent_core::agent_adjuster;
4pub use hyper_agent_core::agent_config;
5
6// AI-specific modules that live in this crate.
7pub mod adjuster_prompt;
8pub mod adjustment_history;
9pub mod agent_history;
10pub mod agent_loop;
11pub mod bootstrap;
12pub mod claude;
13pub mod prompt_builder;
14pub mod tool_registry;
15pub mod tools;