agentty 0.14.5

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
//! Runtime module router.
//!
//! This parent module intentionally exposes child modules and re-exports
//! runtime entry APIs.

mod core;
mod event;
mod key_handler;
pub mod mode;
mod presentation;
mod terminal;
mod timing;

pub(crate) use core::{EventResult, TuiTerminal, backend_err};
pub use core::{run, run_with_backend};

pub(crate) use presentation::PresentationState;
pub(crate) use timing::FRAME_INTERVAL;