1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! mesh
//!
//! Module layout:
//! - `cli`, `command_spec` — clap command tree and generated route metadata
//! - `error`, `consts` — shared error type and configuration constants
//! - `output`, `payload` — output formats and CLI/JSON payload coercion
//! - `http`, `config`, `auth`, `runtime` — transport, credentials, the runtime
//! - `fetch`, `routes` — shared live-read primitives and route diagnostics
//! - `contacts`, `groups`, `moments`, `snapshot`, `plan_audit` — workflows
//! - `dispatch` — maps a parsed subcommand to its workflow
async