ag-agent 0.12.2

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
//! Codex app-server module router.
//!
//! This parent module keeps the public export surface small while concrete
//! Codex runtime orchestration lives under `infra/agent/app_server/codex/`.

mod client;
mod lifecycle;
mod policy;
mod stream_parser;
mod usage;

pub(crate) use client::RealCodexAppServerClient;

#[cfg(test)]
pub(crate) use super::stdio_transport::MockAppServerRuntimeTransport as MockCodexRuntimeTransport;