backend-code-review — agentic-ai backend-code-review, official, agentic-ai, ide skills, agentic-framework, agentic-workflow, gemini, low-code, nextjs, no-code, Claude Code

Verified
v1.0.0
GitHub

About this Skill

Perfect for Code Review Agents needing advanced backend code analysis capabilities for Python files under the api/ directory. Review backend code for quality, security, maintainability, and best practices based on established checklist rules. Use when the user requests a review, analysis, or improvement of backend files (e.g., `.py`) under the `api/` directory. Do NOT use for frontend files (e.g., `.tsx`, `.ts`, `.js`). Supports pending-change review, code snippets review, and file-focused review.

# Core Topics

langgenius langgenius
[131.2k]
[20437]
Updated: 3/5/2026

Agent Capability Analysis

The backend-code-review skill by langgenius is an open-source official AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for agentic-ai, agentic-framework, agentic-workflow.

Ideal Agent Persona

Perfect for Code Review Agents needing advanced backend code analysis capabilities for Python files under the api/ directory.

Core Value

Empowers agents to review backend code for quality, security, maintainability, and best practices, supporting pending-change review, code snippets review, and file-focused review for .py files.

Capabilities Granted for backend-code-review

Reviewing pending changes in Python backend code
Analyzing code snippets for security vulnerabilities and best practices
Improving maintainability of backend files under the api/ directory

! Prerequisites & Limits

  • Limited to backend files (e.g., .py) under the api/ directory
  • Does not support frontend files (e.g., .tsx, .ts, .js)
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

backend-code-review

Install backend-code-review, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Backend Code Review

When to use this skill

Use this skill whenever the user asks to review, analyze, or improve backend code (e.g., .py) under the api/ directory. Supports the following review modes:

  • Pending-change review: when the user asks to review current changes (inspect staged/working-tree files slated for commit to get the changes).
  • Code snippets review: when the user pastes code snippets (e.g., a function/class/module excerpt) into the chat and asks for a review.
  • File-focused review: when the user points to specific files and asks for a review of those files (one file or a small, explicit set of files, e.g., api/..., api/app.py).

Do NOT use this skill when:

  • The request is about frontend code or UI (e.g., .tsx, .ts, .js, web/).
  • The user is not asking for a review/analysis/improvement of backend code.
  • The scope is not under api/ (unless the user explicitly asks to review backend-related changes outside api/).

How to use this skill

Follow these steps when using this skill:

  1. Identify the review mode (pending-change vs snippet vs file-focused) based on the user’s input. Keep the scope tight: review only what the user provided or explicitly referenced.
  2. Follow the rules defined in Checklist to perform the review. If no Checklist rule matches, apply General Review Rules as a fallback to perform the best-effort review.
  3. Compose the final output strictly follow the Required Output Format.

Notes when using this skill:

  • Always include actionable fixes or suggestions (including possible code snippets).
  • Use best-effort File:Line references when a file path and line numbers are available; otherwise, use the most specific identifier you can.

Checklist

  • db schema design: if the review scope includes code/files under api/models/ or api/migrations/, follow references/db-schema-rule.md to perform the review
  • architecture: if the review scope involves controller/service/core-domain/libs/model layering, dependency direction, or moving responsibilities across modules, follow references/architecture-rule.md to perform the review
  • repositories abstraction: if the review scope contains table/model operations (e.g., select(...), session.execute(...), joins, CRUD) and is not under api/repositories, api/core/repositories, or api/extensions/*/repositories/, follow references/repositories-rule.md to perform the review
  • sqlalchemy patterns: if the review scope involves SQLAlchemy session/query usage, db transaction/crud usage, or raw SQL usage, follow references/sqlalchemy-rule.md to perform the review

General Review Rules

1. Security Review

Check for:

  • SQL injection vulnerabilities
  • Server-Side Request Forgery (SSRF)
  • Command injection
  • Insecure deserialization
  • Hardcoded secrets/credentials
  • Improper authentication/authorization
  • Insecure direct object references

2. Performance Review

Check for:

  • N+1 queries
  • Missing database indexes
  • Memory leaks
  • Blocking operations in async code
  • Missing caching opportunities

3. Code Quality Review

Check for:

  • Code forward compatibility
  • Code duplication (DRY violations)
  • Functions doing too much (SRP violations)
  • Deep nesting / complex conditionals
  • Magic numbers/strings
  • Poor naming
  • Missing error handling
  • Incomplete type coverage

4. Testing Review

Check for:

  • Missing test coverage for new code
  • Tests that don't test behavior
  • Flaky test patterns
  • Missing edge cases

Required Output Format

When this skill invoked, the response must exactly follow one of the two templates:

Template A (any findings)

markdown
1# Code Review Summary 2 3Found <X> critical issues need to be fixed: 4 5## 🔴 Critical (Must Fix) 6 7### 1. <brief description of the issue> 8 9FilePath: <path> line <line> 10<relevant code snippet or pointer> 11 12#### Explanation 13 14<detailed explanation and references of the issue> 15 16#### Suggested Fix 17 181. <brief description of suggested fix> 192. <code example> (optional, omit if not applicable) 20 21--- 22... (repeat for each critical issue) ... 23 24Found <Y> suggestions for improvement: 25 26## 🟡 Suggestions (Should Consider) 27 28### 1. <brief description of the suggestion> 29 30FilePath: <path> line <line> 31<relevant code snippet or pointer> 32 33#### Explanation 34 35<detailed explanation and references of the suggestion> 36 37#### Suggested Fix 38 391. <brief description of suggested fix> 402. <code example> (optional, omit if not applicable) 41 42--- 43... (repeat for each suggestion) ... 44 45Found <Z> optional nits: 46 47## 🟢 Nits (Optional) 48### 1. <brief description of the nit> 49 50FilePath: <path> line <line> 51<relevant code snippet or pointer> 52 53#### Explanation 54 55<explanation and references of the optional nit> 56 57#### Suggested Fix 58 59- <minor suggestions> 60 61--- 62... (repeat for each nits) ... 63 64## ✅ What's Good 65 66- <Positive feedback on good patterns>
  • If there are no critical issues or suggestions or option nits or good points, just omit that section.
  • If the issue number is more than 10, summarize as "Found 10+ critical issues/suggestions/optional nits" and only output the first 10 items.
  • Don't compress the blank lines between sections; keep them as-is for readability.
  • If there is any issue requires code changes, append a brief follow-up question to ask whether the user wants to apply the fix(es) after the structured output. For example: "Would you like me to use the Suggested fix(es) to address these issues?"

Template B (no issues)

markdown
1## Code Review Summary 2✅ No issues found.

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is backend-code-review?

Perfect for Code Review Agents needing advanced backend code analysis capabilities for Python files under the api/ directory. Review backend code for quality, security, maintainability, and best practices based on established checklist rules. Use when the user requests a review, analysis, or improvement of backend files (e.g., `.py`) under the `api/` directory. Do NOT use for frontend files (e.g., `.tsx`, `.ts`, `.js`). Supports pending-change review, code snippets review, and file-focused review.

How do I install backend-code-review?

Run the command: npx killer-skills add langgenius/dify/backend-code-review. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for backend-code-review?

Key use cases include: Reviewing pending changes in Python backend code, Analyzing code snippets for security vulnerabilities and best practices, Improving maintainability of backend files under the api/ directory.

Which IDEs are compatible with backend-code-review?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for backend-code-review?

Limited to backend files (e.g., .py) under the api/ directory. Does not support frontend files (e.g., .tsx, .ts, .js).

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add langgenius/dify/backend-code-review. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use backend-code-review immediately in the current project.

Related Skills

Looking for an alternative to backend-code-review or another official skill for your workflow? Explore these related open-source skills.

View All

flags

Logo of facebook
facebook

Use when you need to check feature flag states, compare channels, or debug why a feature behaves differently across release channels.

243.6k
0
Developer

extract-errors

Logo of facebook
facebook

Use when adding new error messages to React, or seeing unknown error code warnings.

243.6k
0
Developer

fix

Logo of facebook
facebook

Use when you have lint errors, formatting issues, or before committing code to ensure it passes CI.

243.6k
0
Developer

flow

Logo of facebook
facebook

Use when you need to run Flow type checking, or when seeing Flow type errors in React code.

243.6k
0
Developer