gate4agent 0.2.16

Universal transport library for CLI AI agents (Claude Code, Codex, Gemini, OpenCode, Cursor). Pipe, PTY, RPC, ACP (Agent Client Protocol), and Daemon transports.
Documentation
1
2
3
4
5
6
7
//! Core shared types and errors for gate4agent.

pub mod types;
pub mod error;

pub use types::{AgentEvent, CliTool, RateLimitInfo, RateLimitType, SessionConfig};
pub use error::AgentError;