aether-wisp 0.7.0

A terminal UI for AI coding agents via the Agent Client Protocol (ACP)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod agent;
mod dispatcher;
mod files;
mod git;
mod runner;
mod tasks;

pub use git::resolve_workspace_status;

#[cfg(feature = "testing")]
pub use dispatcher::CommandDispatcher;
#[cfg(not(feature = "testing"))]
pub(crate) use dispatcher::CommandDispatcher;
pub(crate) use runner::run;