nika 0.35.4

Semantic YAML workflow engine for AI tasks - DAG execution, MCP integration, multi-provider LLM support
Documentation
//! CLI subcommand handlers
//!
//! Each module handles one `nika <subcommand>` group.

pub mod trace;

#[cfg(feature = "tui")]
pub mod provider;

pub mod init;
pub mod mcp;
pub mod pkg;

#[cfg(feature = "native-inference")]
pub mod model;

pub mod config;
pub mod doctor;
pub mod media;
pub mod schema;
pub mod workflow;

pub mod new_cmd;