agentty 0.8.11

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
//! Provider-specific app-server clients hidden under the agent module.
//!
//! This router keeps concrete Codex and Gemini runtime integrations grouped
//! with their matching backend implementations instead of exposing them as
//! top-level `infra/` modules.

mod codex;
mod gemini;

pub(crate) use codex::{RealCodexAppServerClient, load_codex_account_usage};
pub(crate) use gemini::RealGeminiAcpClient;