cc-audit — Summary
cc-audit is a single-file Python script (~240 lines, no dependencies) that lints CLAUDE.md or AGENTS.md files against a 12-rule baseline for AI coding agents, detecting missing rules, leaked secrets, and files past the 200-line compliance cliff.
Problem it solves: Most agent configuration files miss critical baseline rules — a scan of 492 public CLAUDE.md files found median compliance of 3/12 rules, with 98% missing "don't edit out of scope." cc-audit provides a fast, zero-install check that can run in CI via a GitHub Action.
Distinctive trait: Minimal design philosophy — one Python file, no dependencies, ~240 lines. Pairs with the claude-code-pro-pack methodology (sisyphusse1-ops/claude-code-pro-pack) as a CI gate for CLAUDE.md quality. The 12 rules are explicitly borrowed from the pro-pack's methodology.
Target audience: Developers and teams who want a lightweight CI gate to prevent CLAUDE.md regressions (leaked secrets, missing baseline rules) on every pull request.
Production-readiness: Minimal/experimental (0 stars, MIT, Python). Last commit May 2026. The value is in the GitHub Action integration and the empirical data (492 public file scan published on dev.to).
Differs from seeds: cc-audit is the smallest framework in the corpus — a single Python checker closer to a linting utility than a framework. It is most similar to AgentLint (harness quality checking) but far simpler: 12 keyword-signal rules vs AgentLint's 58 evidence-backed checks, no CLI flags beyond --json, no interactive mode, no hook validation. The 12 rules are a subset of what AgentLint checks but framed around a specific companion methodology (claude-code-pro-pack).