A collection of 22 focused code-review and security-audit skills, built to the Agent Skills open standard and packaged as a Claude Code plugin.
Each skill is a deliberate, single-purpose audit you run on demand. These are granular
where the bundled /code-review and /security-review are broad. They do deep dive reviews of your code, when you want it to. They started life as the prompts in
Claude-Code-Reviewing-Prompts.
- Spec-compliant skills. Every skill is a folder with a
SKILL.md(name+descriptionrequired, both within the spec's limits). They work in any tool that implements the Agent Skills standard, not just Claude Code. - Claude Code extras, layered on top.
disable-model-invocation(so these fire only when you ask),allowed-tools, andargument-hintare added as frontmatter. Tools that don't understand those keys simply ignore them — the skill still works. - Two ways to install (below): as a Claude Code plugin, or by copying individual skill folders into any agent.
/plugin marketplace add JeremyMorgan/code-review-skills
/plugin install code-audit@code-audit
Skills then appear under the plugin's namespace, e.g. /code-audit:solid-principles.
Pass a path to scope the review:
/code-audit:secrets-management-audit src/auth
With no argument, each skill reviews the whole codebase. Findings are written to
an audits/ folder.
Copy any skill folder into your skills directory. No plugin required:
cp -r skills/solid-principles ~/.claude/skills/Each folder is self-contained, so this works in any agent that follows the Agent Skills spec.
code-duplication-detection— duplicated and near duplicate codecode-quality-metrics-standards— complexity and standards compliancedesign-pattern-implementation— pattern usage and fiterror-handling-resilience— error-handling coverage and recoveryexception-flow-analysis— exception propagation on critical pathsinitial-software-design-analysis— first-pass architecture reviewreadability-and-naming— readability and naming conventionsresilience-fault-tolerance— failure modes, retries, degradationsolid-principles— SOLID adherence with concrete fixestesting-implementation— test quality and coverage gaps
api-and-infrastructure— API and infra hardeningauthentication-flow-review— login, sessions, tokens, credentialsauthorization-implementation— access control and privilege flawsbusiness-logic-vulnerabilities— workflow bypasses, race conditionscomprehensive-security-report— consolidated report from the audits abovedatabase-security— injection, access, encryption, data exposurefile-handling-business-logic— upload/handling and traversal risksinitial-security-analysis— first pass attack surface mapinput-validation— validation and sanitization of untrusted inputlogging-monitoring— security logging and leakagesecrets-management-audit— hardcoded secrets, rotation, key managementsession-cookie-security— session and cookie configuration
code-review-skills/
├── .claude-plugin/
│ ├── plugin.json # Claude Code plugin manifest
│ └── marketplace.json # single-plugin marketplace (one-command install)
├── skills/
│ └── <skill-name>/SKILL.md
├── LICENSE
└── README.md
CC0-1.0. See LICENSE.
