Backend Code Review
Review backend changes for correctness, data integrity, error handling, and API contracts before merge.
Before & after
Same prompt, same agent — the only difference is the skill.
Backend code review is important for reliability and maintainability. You'd want to look at things like error handling, logging, and how the API endpoints are structured. Security is important too—authentication, authorization, input validation. Performance can matter depending on the scale. Documentation and comments help other developers understand the code. Testing coverage is good to check. There are a lot of things to consider when reviewing backend code, and having a structured approach helps you not miss anything important.
I'll perform a structured backend review using a repeatable workflow to assess API reliability, security, and supportability. REVIEW CATEGORIES ERROR HANDLING: Do all endpoints catch exceptions? Do errors return meaningful status codes and messages that support can relay to customers? Are connection timeouts and retry logic present? LOGGING & OBSERVABILITY: Does every endpoint log request/response? Are errors logged with context (user ID, request ID, params)? Can support trace a customer issue backward through logs? API CONTRACTS: Are request/response schemas documented? Do endpoints validate input (type, length, required fields)? Does API versioning exist? SECURITY AUDIT: Authentication on every protected route? Rate limiting on public endpoints? SQL injection risk in queries? Credential management (no hardcoded secrets)? DATA LAYER: N+1 query problems? Inefficient queries? Are there database indexes on frequently-queried fields? CODE STRUCTURE: Repeated logic that should be extracted? Single responsibility principle followed? Dependency injection or tightly coupled? TESTING: Unit test coverage for critical paths? Integration tests for API flows? Do tests cover happy path and error cases? DELIVERABLE A structured report with: findings grouped by severity (Critical/Major/Minor/Nit), specific code locations cited, actionable fixes, and a score (e.g. "78/100, support-ready after addressing 3 major items").
About this skill
name: cs-backend-review description: Use when Structured Claude skill that gives Claude a repeatable workflow for cs backend review.
Cs Backend Review
One of 337+ skills in the original author's multi-agent claude-skills mega-collection (~19k GitHub stars). Packages the Cs Backend Review workflow with its own instructions and validation so outputs stay consistent.
What you get
- Public GitHub repo (alirezarezvani/claude-skills)
- the cs-backend-review skill folder with SKILL.md. Part of a 337-skill / 30-agent / 70-command install.
Customize your output
- Fork the repo and adapt the skill's instructions and references to your workflow.
Example output
Activates automatically when your request matches Cs Backend Review; chains with the other skills, agents, and commands in the collection.
Best for
Creators, builders, and teams using Claude Code.
SKILL.md preview
---
name: cs-backend-review
description: Use when a backend codebase or service needs a repeatable, structured review workflow covering correctness, data integrity, and API contract health.
version: 1.0.0
category: AI Agents / Development
author: AgentVolt
license: proprietary
tags:
- ai-agents
- development
---
# Cs Backend Review
Runs a repeatable backend code review workflow that checks correctness, data integrity, error handling, and API contracts before merge.
## When to use
… (sign up to view the full skill)More ai & agents skills
View all AI & Agents skills →Skill Status Report
Scan every skill in a project and report which pass validation, which are stale, and which lack required metadata.
Skills Scaffolder
Scaffold a new skills directory — folder structure, metadata, a baseline validation pass — with the right conventions from day one.
Research Bundle
Run a multi-step research task as one pipeline: gather sources, extract findings, validate consistency, emit one structured bundle.
Workspace Admin
Administer a Cowork or Claude workspace — settings, access, configuration — with every change scoped and verified.