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
//! Feedback module for false positive reporting.
//!
//! This module provides functionality to collect and submit false positive
//! reports to help improve detection accuracy.

pub mod report;
pub mod submitter;

pub use report::FalsePositiveReport;
pub use submitter::{ReportSubmitter, SubmitResult, SubmitTarget};