saferskills 0.2.0

Every AI capability, independently scanned — install Skills & MCP servers with a verified SaferSkills trust score.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Interactive terminal UI for the `search` command (the only TUI surface).
//!
//! The TUI draws to **stderr** (the TTY) so stdout stays machine-clean, runs in
//! the raw-mode alternate screen behind a RAII [`terminal::TerminalGuard`], and
//! is a thin render layer over a pure state core ([`search::state`]). All the
//! ranking / facet / staleness logic is pure + unit-tested; the ratatui draw +
//! event loop stay minimal.

pub mod search;
pub mod terminal;