agentty 0.14.1

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
16
17
18
//! App core module router.
//!
//! This parent module intentionally stays router-only and re-exports the
//! `App` facade plus focused child modules for state, startup, draw, and
//! reducer behavior.

mod draw;
mod events;
mod new;
mod state;

pub(crate) use events::{AppEvent, AppRuntimeEvent};
#[cfg(test)]
pub(crate) use state::AppClients;
pub(crate) use state::SyncReviewRequestTaskResult;
pub use state::{AGENTTY_WT_DIR, App, UpdateStatus};

pub use crate::infra::home::agentty_home;