cc-audit 3.2.14

Security auditor for Claude Code skills, hooks, and MCP servers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Input layer (L1) for input source abstraction.
//!
//! This module handles:
//! - CLI argument parsing
//! - Input source resolution (local paths, remote URLs, clients)
//! - Client detection

pub mod source;

// Re-export from existing modules (will be moved here in Phase 10)
pub use crate::cli::{BadgeFormat, Cli, OutputFormat, ScanType};
pub use crate::client::{
    ClientType, DetectedClient, detect_client, detect_installed_clients, list_installed_clients,
};
pub use source::{InputSource, SourceResolver};