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
//! Type-safe wrapper types for improved compile-time guarantees.
//!
//! This module provides NewType pattern implementations to prevent
//! primitive type misuse and improve API clarity.

mod newtypes;
mod paths;

pub use newtypes::{AuthToken, CommandArgs, CompiledPattern, FileHash, GitRef, RuleId, ServerName};
pub use paths::{PathValidationError, ScanTarget};