Skip to main content

nika_cli/machine/
mod.rs

1//! Machine-level auto-setup for Nika.
2//!
3//! Detects installed editors/AI tools and configures them automatically.
4//! Tracks setup state via `~/.nika/machine.toml` marker file.
5//! Called by `nika init` before the project wizard (Phase 1).
6
7pub mod install;
8pub mod status;
9
10pub use install::*;
11pub use status::*;