Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
majiayu000 avatar

Codebase Audit

  • 53 installs
  • 253 repo stars
  • Updated August 4, 2026
  • majiayu000/claude-arsenal

Helps with ai & agent building tasks during AI-assisted development.

About

codebase-audit is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • codebase-audit
  • AI & Agent Building
  • AI-coding skill

Codebase Audit by the numbers

  • 53 all-time installs (skills.sh)
  • Ranked #6,979 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/majiayu000/claude-arsenal --skill codebase-audit

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs53
repo stars253
Last updatedAugust 4, 2026
Repositorymajiayu000/claude-arsenal

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

Codebase Audit — Adaptive Deep Analysis

A comprehensive codebase audit that adapts its agent configuration to the project's tech stack. Each agent uses opus for maximum thoroughness. Results are compiled into a unified report sorted by severity with a phased repair roadmap.

Core Principles

1. Opus only — All audit agents MUST use model="opus". This is non-negotiable. Smaller models miss subtle cross-file issues. 2. Depth over breadth — Fewer agents with broader scope and deeper analysis beats many shallow agents. Each agent should trace issues across file boundaries. 3. Adaptive — Agent count and focus areas vary by project type. Don't waste an agent on "frontend rendering" for a backend-only project.

When to Use

  • User asks to audit/review/analyze an entire codebase
  • User wants to find hidden bugs, silent degradation, or design inconsistencies
  • User asks about technical debt, architecture health, or "what's broken"
  • Before a major refactor or after inheriting an unfamiliar codebase
  • Periodic health check (monthly/quarterly)

Workflow

Phase 0: Tech Stack Detection

Detect the project's tech stack to determine the agent configuration:

Detection checklist:
- package.json / tsconfig.json → TypeScript/JavaScript (React, Next.js, Vue, etc.)
- pyproject.toml / requirements.txt / setup.py → Python (FastAPI, Django, Pydantic, etc.)
- Cargo.toml → Rust (serde, axum, actix, etc.)
- go.mod → Go (gin, echo, gorm, etc.)
- Multiple stacks → Full-stack project (frontend + backend)

Phase 1: Launch Agents (Adaptive)

Based on the detected stack, choose the appropriate agent configuration below. Launch ALL agents in a SINGLE message with model="opus" for every agent.

Read references/agent-prompts.md for complete prompt templates.

---

Full-Stack Projects (5 agents)

When both frontend and backend exist (e.g., React + FastAPI, Next.js + Go).

#AgentTypeScope (merged dimensions)
1Frontend-Backend ContractreviewerType consistency (field names, types, missing fields) + Rendering pipeline (layout/block/card routing completeness, dead slots, unrendered fields) + Serialization boundaries (models that silently drop fields). This agent reads BOTH sides and traces data across the API boundary.
2Data Integrity & Flowcode-reviewerData pipeline end-to-end: from input through every transformation layer to output. Covers: field resolver filters, serialization/deserialization, model_validate/model_dump, cache read/write symmetry. Finds where fields get silently dropped. Also covers: declaration-execution gaps (registered but unwired handlers, enum without config).
3Error Handling & Securitysecurity-reviewerException patterns (bare except, debug-level errors, warning+fallback), security (hardcoded secrets, injection, unsafe deserialization), silent degradation (error paths that produce user-visible wrong output instead of failing).
4Architecture & Code QualityarchitectLayer violations, circular dependencies, god objects (files >800 lines), code duplication (parallel systems, scattered mapping tables), extension cost analysis (how many files to add a new type), DI pattern consistency.
5Config & Persistencedatabase-reviewerConfig completeness (template/schema vs code expectations, conflicting defaults), cache key completeness (missing code version dimension), DB schema consistency, temp file cleanup, state persistence across restarts.

---

Backend-Only Projects (4 agents)

When only backend exists (Python API, Rust service, Go microservice, etc.)

#AgentTypeScope
1API Contract & Data Integritycode-reviewerAPI schema vs internal models, serialization boundaries, data pipeline tracing, field dropping, declaration-execution gaps.
2Error Handling & Securitysecurity-reviewerSame as full-stack Agent 3.
3Architecture & Code QualityarchitectSame as full-stack Agent 4.
4Config & Persistencedatabase-reviewerSame as full-stack Agent 5.

---

Frontend-Only Projects (3 agents)

When only frontend exists (React SPA, Vue app, etc.)

#AgentTypeScope
1Component Architecture & RenderingreviewerType routing completeness, component registration gaps, dead props/slots, state management consistency, API consumption patterns.
2Error Handling & Code Qualitycode-reviewerUnhandled promise rejections, error boundaries, catch-and-ignore patterns, god components, code duplication.
3Config & BuildreviewerBuild config consistency, env variable management, bundle analysis, dead dependencies.

---

Phase 2: Compile Unified Report

After ALL agents complete, compile findings into a single report:

# [Project Name] Codebase Audit Report

> Audit date: YYYY-MM-DD
> Target: path
> Tech stack: detected stack
> Agents: N (list agent names)

## Summary
| Level | Count | Key Areas |
|-------|-------|-----------|
| Critical | N | ... |
| High/P1 | N | ... |
| Medium/P2 | N | ... |

## Critical (Fix Immediately)
| # | Problem | Agent | Impact |
|---|---------|-------|--------|
For each: file:line, code snippet, risk description, fix suggestion.

## High / P1 (Fix This Week)
### [Category]
| # | Problem | File(s) |
|---|---------|---------|
Details for each.

## Medium / P2 (Plan to Fix)
[Same structure]

## Repair Roadmap
| Phase | Scope | Est. Files |
|-------|-------|------------|
| Phase 0 (urgent) | Critical fixes | ~N files |
| Phase 1 (this week) | High priority | ~N files |
| Phase 2 (next week) | Medium priority | ~N files |
| Phase 3 (ongoing) | Architecture | ~N files |

Deduplication

Since agents have broader overlapping scopes, deduplication is simpler:

  • Same file + same line → merge
  • Same root cause found by multiple agents → keep the most detailed one, note cross-agent confirmation (this actually increases confidence)
  • Severity conflicts → use the highest

Severity Classification

LevelCriteria
CriticalData loss, rendering failure, security vulnerability, complete feature breakage affecting users NOW
High/P1Silent degradation (user sees wrong/incomplete output), type mismatches causing data truncation, missing config causing empty output, architectural violations blocking development
Medium/P2Code duplication, inconsistent patterns, suboptimal error handling, tech debt that slows development but doesn't break features

Stack-Specific Patterns

Read references/stack-patterns.md for technology-specific search patterns.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.