Skip to main content

seher/
lib.rs

1pub mod claude_agent;
2pub mod claude_headless;
3pub mod claude_terminal;
4pub mod codexbar;
5pub mod sdk;
6
7/// Re-export of the [`claude-agent-sdk`] crate so downstream code can reach
8/// it through seher without listing a second dependency.
9///
10/// [`claude-agent-sdk`]: ../claude_agent_sdk/index.html
11pub use ::claude_agent_sdk;
12pub use codexbar::{
13    AgentLimit, CodexBarError, CodexBarUsage, CodexBarUsageResponse, CodexBarWindow,
14    NamedCodexBarWindow, RunCodexBarUsageOptions, check_limit, check_limit_with,
15    run_codexbar_usage,
16};