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
//! Process exit code constants.

/// Successful execution.
pub const SUCCESS: u8 = 0;

/// Generic runtime failure.
pub const GENERIC_ERROR: u8 = 1;

/// Invalid user input or configuration.
pub const USAGE: u8 = 2;