From 2687bd7c0b1b8a6470bbfe822b4060c5054370fd Mon Sep 17 00:00:00 2001 From: Layton Date: Fri, 3 Apr 2026 06:43:09 -0400 Subject: [PATCH] Change default output path from root to _context/ The default output for `archidoc .` now writes to `_context/ARCHITECTURE.md` (and `_context/ARCHITECTURE.ai.md`) instead of the project root. This aligns with the Claudoc convention where generated artifacts live in `_context/`. The `-o` flag still allows overriding to any path. Co-Authored-By: Claude Opus 4.6 (1M context) --- core/archidoc-cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/archidoc-cli/src/main.rs b/core/archidoc-cli/src/main.rs index b31df39..b5dae57 100644 --- a/core/archidoc-cli/src/main.rs +++ b/core/archidoc-cli/src/main.rs @@ -22,7 +22,7 @@ struct Cli { #[derive(Args)] struct GlobalOpts { /// Output path for generated ARCHITECTURE.md - #[arg(short, long, default_value = "ARCHITECTURE.md")] + #[arg(short, long, default_value = "_context/ARCHITECTURE.md")] output: PathBuf, /// Suppress informational output (only errors and requested output)