obsidian-cli-inspector 0.2.2

Local-first CLI/TUI for indexing and querying Obsidian vaults
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod index;
pub mod init;
pub mod other;
pub mod search;
pub mod stats;

pub use index::index_vault;
pub use init::initialize_database;
pub use other::{
    diagnose_broken_links_cmd, diagnose_orphans, get_backlinks, get_forward_links,
    get_note_describe, list_notes_by_tag, list_unresolved_links, search_vault, show_bloat,
    show_graph, show_suggest, show_tui, show_unimplemented,
};
pub use stats::show_stats;