codebase-audit-suite
v1.0.0Read-only audits for documentation, code, tests, architecture, and persistence.
by Lev NikolaevichMIT534updated 2 days ago
Source
git clone https://github.com/levnikolaevich/claude-code-skillsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/codebase-audit-suite/ inside the repository.
Layout
├── .codex-plugin/plugin.json├── plugin.json├── skills/ln-21-documentation-auditor/SKILL.md├── skills/ln-22-codebase-auditor/SKILL.md├── skills/ln-23-test-suite-auditor/SKILL.md├── skills/ln-24-architecture-auditor/SKILL.md└── skills/ln-25-persistence-auditor/SKILL.md
Skills5
Audits documentation and code comments for structure, coverage, factual accuracy, and maintainability. Use for documentation trust reviews; not code, test, or architecture audits.
Audits cross-cutting code health across security, delivery, maintainability, dependencies, diagnosability, concurrency, and lifecycle. Use when no specialist audit is primary.
Audits whether an existing test suite proves important behavior as a sustainable portfolio. Use when test confidence or lifecycle control is uncertain; not to implement tests or review one delivery.
Audits implemented architecture fitness, boundaries, contracts, dependencies, and configuration ownership. Use for system structure; not for current-state documentation, diagrams, or plan review.
Audits queries, transactions, data-path performance, and persistence resource lifecycle. Use when data correctness or scalability is at risk; not for general performance tuning.
Manifests2
{
"name": "codebase-audit-suite",
"version": "1.0.0",
"description": "Read-only audits for documentation, code, tests, architecture, and persistence.",
"author": {
"name": "Lev Nikolaevich",
"email": "levnikolaevich.com@gmail.com",
"url": "https://github.com/levnikolaevich"
},
"homepage": "https://github.com/levnikolaevich/claude-code-skills",
"repository": "https://github.com/levnikolaevich/claude-code-skills",
"license": "MIT",
"keywords": [
"audit",
"security",
"architecture",
"testing",
"persistence"
],
"skills": "./skills/",
"interface": {
"displayName": "Codebase Audit Suite",
"shortDescription": "Run evidence-based audits",
"longDescription": "Audit documentation, code health, tests, architecture, and persistence without changing the reviewed repository.",
"developerName": "Lev Nikolaevich",
"websiteURL": "https://github.com/levnikolaevich/claude-code-skills",
"category": "Productivity",
"capabilities": [
"Interactive",
"Read"
],
"defaultPrompt": [
"Audit this codebase and report evidence-backed risks."
]
}
}{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "codebase-audit-suite"
}