feat: add --quick flag to onboard for non-interactive setup

- zeroclaw onboard --quick: generates config with sensible defaults, zero prompts
- zeroclaw onboard --quick --api-key sk-... --provider anthropic: one-liner setup
- Fixes wizard hanging in non-TTY / IDE terminals
- Scaffolds workspace files, prints summary, shows next steps
- 1,017 tests, 0 clippy warnings
This commit is contained in:
argenis de la rosa 2026-02-14 03:19:00 -05:00
parent 59bab7c554
commit 589921bbf8
3 changed files with 159 additions and 6 deletions

View file

@ -1,3 +1,3 @@
pub mod wizard;
pub use wizard::run_wizard;
pub use wizard::{run_quick_setup, run_wizard};