Skip to main content

agentty/
infra.rs

1//! Infrastructure adapters for database, git, and agent backends.
2
3pub mod agent;
4/// Shared app-server types and runtime trait boundaries.
5pub mod app_server;
6/// Provider router for app-server clients.
7pub mod app_server_router;
8/// Shared stdio JSON-RPC transport for app-server protocols.
9pub mod app_server_transport;
10/// Provider-agnostic agent channel abstraction for session turn execution.
11pub mod channel;
12pub mod db;
13/// Gitignore-aware file indexing and fuzzy path filtering.
14pub mod file_index;
15/// Filesystem trait boundary used by app orchestration.
16pub mod fs;
17pub mod git;
18/// Process-management utilities for agent subprocess lifecycle.
19pub(crate) mod process;
20mod project_repository;
21mod setting_repository;
22/// Tmux process boundary used by app orchestration.
23pub mod tmux;
24pub mod version;