talon-cli 0.4.1

Talon CLI: hybrid retrieval over Obsidian vaults and markdown corpora, with grounded answers, MCP server, and agent-native output.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Entry point for the `talon` binary.

use std::process::ExitCode;

#[tokio::main(flavor = "multi_thread")]
async fn main() -> ExitCode {
    if let Err(error) = color_eyre::install() {
        eprintln!("failed to install color-eyre error reporting: {error}");
    }

    let code = talon_cli::run().await;
    ExitCode::from(code)
}