agent-code 0.8.7

An AI-powered coding agent for the terminal, written in pure Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Terminal UI layer.
//!
//! Provides the interactive REPL, markdown rendering, and streaming
//! output display. Built on crossterm and rustyline.

pub mod activity;
pub mod keybindings;
pub mod keymap;
pub mod prompt;
pub mod render;
pub mod repl;
pub mod selector;
pub mod setup;
pub mod theme;
pub mod tui;