unfault 1.0.5

Unfault — a cognitive context engine for thoughtful engineers
Documentation
//! # CLI Command Implementations
//!
//! This module contains the implementation of all CLI commands.
//! Each submodule represents a top-level command or command group.
//!
//! ## Available Commands
//!
//! - [`agent_skills`] - Generate SKILL.md files for Claude Code or OpenCode
//! - [`config`] - Manage CLI configuration (LLM settings, etc.)
//! - [`fault`] - Generate fault injection scenario commands (fault-project.com)
//! - [`graph`] - Query the code graph for impact analysis, dependencies, and critical files
//! - [`lsp`] - Language Server Protocol server for IDE integration
//! - [`review`] - Analyze code for fault-tolerance issues

pub mod agent_skills;
pub mod config;
pub mod fault;
pub mod graph;
pub mod info;
pub mod integrations;
pub mod lint;
pub mod lsp;
pub mod review;