kiosk-core 0.1.0

Core library for kiosk — tmux session manager with worktree support
Documentation
/// Every user interaction produces an Action. UI never directly calls git/tmux.
#[derive(Debug, Clone)]
pub enum Action {
    // Navigation
    OpenRepo,
    EnterRepo,
    OpenBranch,
    GoBack,
    Quit,

    // Search
    SearchPush(char),
    SearchPop,
    MoveSelection(i32),

    // UI
    StartNewBranchFlow,
    ShowError(String),
    ClearError,
}