ag-agent 0.12.4

Agentty is an ADE (Agentic Development Environment) for structured, controllable AI-assisted software development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Provider-specific app-server clients hidden under the agent module.
//!
//! This router keeps concrete app-server runtime integrations grouped with
//! their matching backend implementations instead of exposing them as
//! top-level `infra/` modules.

mod client;
mod codex;
mod command;
mod gemini;
mod stdio_transport;

pub(crate) use codex::RealCodexAppServerClient;
pub(crate) use command::{build_codex_app_server_command, build_gemini_acp_command};
pub(crate) use gemini::RealGeminiAcpClient;