saya-cli 0.4.1

Database-aware AI agent for the terminal: full-screen TUI, schema discovery, and bounded read-only SQL over PostgreSQL, MySQL, SQLite, DuckDB, and Snowflake.
//! Application state transitions: input, menus, streaming, and clipboard.

mod input_actions;
mod new_activity;
mod picker;
mod run_panel;
mod search;
mod sql_guard;
mod state;
mod streaming;
mod wide_table;

pub(crate) use sql_guard::SecondSqlDecision;

#[cfg(test)]
pub(crate) mod tests_support;

#[cfg(test)]
#[path = "state_tests.rs"]
mod tests;