agentty 0.11.1

Agentty is an ADE (Agentic Development Environment) for structured, controllable AI-assisted software development.
Documentation
//! Infrastructure adapters for database, git, and agent backends.

pub mod agent;
/// Shared app-server types and runtime trait boundaries.
pub mod app_server;
/// Provider router for app-server clients.
pub mod app_server_router;
/// Shared stdio JSON-RPC transport for app-server protocols.
pub mod app_server_transport;
/// Provider-agnostic agent channel abstraction for session turn execution.
pub mod channel;
/// Clipboard image capture and persistence boundary for prompt attachments.
pub(crate) mod clipboard_image;
/// Wall-clock boundary used by app, runtime, and session orchestration.
pub mod clock;
pub mod db;
/// Gitignore-aware file indexing and fuzzy path filtering.
pub mod file_index;
/// Filesystem trait boundary used by app orchestration.
pub mod fs;
pub mod git;
/// Process-management utilities for agent subprocess lifecycle.
pub(crate) mod process;
/// Startup project-discovery boundary for home-directory repository scans.
pub mod project_discovery;
/// In-memory cache for review-request inline comment threads polled by the
/// background sync task and read by the review-comments preview page.
pub mod review_comment_cache;
/// Tmux process boundary used by app orchestration.
pub mod tmux;
pub mod version;