zad-cli 0.9.2

Command-line interface for zad — connects AI agents to external services (Discord, Slack, Google Calendar, Spotify, Telegram, YouTube Music, 1Password) via scoped service configurations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! zad-cli — command-line interface for the [`zad`] library.
//!
//! The binary entry point ([`main`](../zad/index.html)) parses CLI
//! arguments and dispatches into [`cli::run`], which then drives the
//! library to do the actual work. Everything here is CLI-bound:
//! clap argument structs, interactive prompts via `dialoguer`,
//! stderr/stdout formatting, and the dry-run echo machinery.
//!
//! Rust projects that want to embed zad's functionality should depend
//! on the `zad` library directly, not on this crate.

#![allow(clippy::result_large_err)]

pub mod cli;
pub mod output;