elph 0.0.15

Minimalist AI agent companion for coding
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod agent_mode;
mod app;
mod datastore;
pub mod exit_message;
mod interrupt;
mod layout;
mod migrations;
mod paths;
mod project;
mod settings;

pub use app::{EXIT_ERROR, EXIT_INTERRUPTED, EXIT_SUCCESS, ExitCode, WAS_INTERRUPTED, run};
#[cfg(unix)]
pub use app::{SHOULD_KILL_PARENT, kill_parent};
pub use interrupt::handle_prompt_interrupt;
pub use layout::{Paths, ensure_datastore_blocking, ensure_layout_blocking};