ANW-27 CLI: anwesen merge -- one-shot local markdown-merge to stdout

Thin local front-end over ANW-26's merge engine (query::execute_merge):
walk the vault once (vault::scan, same as doctor), evaluate the --query
string, assemble the merged document, write it to stdout. No HTTP, no
watcher, no index. Byte-identical to the HTTP merge mode for the same
vault and query.
This commit is contained in:
Andreas Brenner 2026-06-14 21:18:06 +03:00
parent 03cc12e640
commit ed1759da59
4 changed files with 293 additions and 5 deletions

View file

@ -10,6 +10,7 @@ pub mod app;
pub mod doctor;
pub mod health;
pub mod http;
pub mod merge;
pub mod query;
pub mod store;
pub mod vault;