worktrunk 0.40.0

A CLI for Git worktree management, designed for parallel AI agent workflows
Documentation
//! Hint management commands.
//!
//! Commands for viewing and clearing shown hints.

use color_print::cformat;
use worktrunk::git::Repository;
use worktrunk::styling::{eprintln, info_message, println, success_message};

use crate::cli::SwitchFormat;

/// Handle the hints get command (list shown hints)
pub fn handle_hints_get(format: SwitchFormat) -> anyhow::Result<()> {
    let repo = Repository::current()?;
    let hints = repo.list_shown_hints();

    if format == SwitchFormat::Json {
        println!("{}", serde_json::to_string_pretty(&hints)?);
    } else if hints.is_empty() {
        eprintln!("{}", info_message("No hints have been shown"));
    } else {
        for hint in hints {
            println!("{hint}");
        }
    }

    Ok(())
}

/// Handle the hints clear command
pub fn handle_hints_clear(name: Option<String>) -> anyhow::Result<()> {
    let repo = Repository::current()?;

    match name {
        Some(hint_name) => {
            let msg = if repo.clear_hint(&hint_name)? {
                success_message(cformat!("Cleared hint <bold>{hint_name}</>"))
            } else {
                info_message(cformat!("Hint <bold>{hint_name}</> was not set"))
            };
            eprintln!("{msg}");
        }
        None => {
            let cleared = repo.clear_all_hints()?;
            let msg = if cleared == 0 {
                info_message("No hints to clear")
            } else {
                let suffix = if cleared == 1 { "" } else { "s" };
                success_message(cformat!("Cleared <bold>{cleared}</> hint{suffix}"))
            };
            eprintln!("{msg}");
        }
    }

    Ok(())
}