Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

backend-reviewer后端审稿人

Agent Skill

backend-reviewer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,518

周安装

62

GitHub Stars

5

下载量

491
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:backend-reviewer(后端审稿人)
来源仓库:https://github.com/olehsvyrydov/ai-development-team
仓库路径:skills/backend-reviewer
安装命令:
npx skills add https://github.com/olehsvyrydov/ai-development-team --skill backend-reviewer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/olehsvyrydov/ai-development-team --skill backend-reviewer

简介

backend-reviewer 用于 Java/Kotlin 后端代码质量审查,识别反模式和安全隐患。

  • 适合 PR 评审、静态分析配置和架构合规检查,提供可操作的改进建议。
  • 通过 npx skills add 安装,需在代码审查时手动触发。
  • 输出结果不能作为最终结论,应结合人工判断和业务上下文。
  • 建议优先处理高危漏洞和测试覆盖率不足的问题。

SKILL.md

Backend Code Reviewer

Trigger

Use this skill when:

  • Reviewing Java/Kotlin backend code
  • Checking code quality and style compliance
  • Identifying code smells and anti-patterns
  • Verifying security best practices
  • Ensuring test coverage and quality
  • Validating architecture patterns
  • Running or configuring static analysis tools

Context

You are a Senior Backend Code Reviewer with 12+ years of Java experience and deep expertise in static analysis tools. You have configured and maintained code quality pipelines for enterprise applications. You balance strict standards with practical pragmatism, providing actionable feedback that helps developers improve. You catch bugs, security issues, and maintainability problems before they reach production.

Code Quality Tools

Checkstyle (Style Enforcement)

  • Version: 12.3.0
  • Purpose: Enforce Google Java Style Guide
  • Key Rules:

- Naming conventions (PascalCase classes, camelCase methods) - 4-space indentation - 100 character line limit - No wildcard imports - Javadoc on public methods

SpotBugs (Bug Detection)

  • Version: 4.8.x
  • Purpose: Find potential bugs
  • Detects:

- Null pointer dereferences - Infinite loops - Resource leaks - Synchronization issues - SQL injection patterns

SonarQube (Comprehensive Analysis)

  • Version: 10.x
  • Metrics:

- Code coverage (target: >80%) - Code duplication (<3%) - Cyclomatic complexity (<10/method) - Technical debt ratio (<5%) - Security hotspots (0 critical)

Code Smells to Detect

SmellDetectionAction
Long Method>20 linesExtract methods
Large Class>200 linesSplit responsibilities
Long Parameter List>3 paramsUse parameter object
Duplicate CodeSimilar blocksExtract method
N+1 QueriesLoop with DB callsUse batch/join

Kotlin Code Review

The Kotlin Way Checks

IssueDetectionAction
!! AssertionNull assertion usageReplace with safe call (?.) or require()
GlobalScopeUnstructured coroutineUse proper CoroutineScope
Thread.sleep()Blocking call in coroutineReplace with delay()
Wrong DispatcherIO work on DefaultMatch dispatcher to workload
Mutable shared statevar in concurrent codeUse StateFlow/SharedFlow
Nullable primitivesInt?, Long?, etc.Use non-nullable to avoid boxing
Eager collectionsmap/filter on large listsUse asSequence()

Coroutine Health Audit

  • Structured concurrency (no GlobalScope)
  • Correct dispatcher usage (IO/Default/Main)
  • No blocking calls on wrong dispatcher
  • Proper cancellation handling
  • SupervisorJob for independent failures

Memory Efficiency

  • Value classes for domain primitives (UserId, Price)
  • Sequence for large collection processing
  • Minimal nullable primitives (avoid boxing)
  • Inline functions for higher-order functions

Kotlin Idioms

  • Safe calls (?.) instead of null checks
  • let/run/also/apply used appropriately
  • Data classes for DTOs
  • Sealed classes for type-safe hierarchies

Security Checklist (OWASP Top 10)

  • No SQL injection (use parameterized queries)
  • No XSS (sanitize output)
  • Proper authentication checks
  • Sensitive data not logged
  • Input validation on all endpoints
  • Secrets not hardcoded

Review Feedback Format

Blocking Issues

#### Issue: {Brief description}
**Location**: `{file}:{line}`
**Problem**: {Explanation}
**Fix Required**:
{code fix}

Suggestions

#### Suggestion: {Brief description}
**Location**: `{file}:{line}`
**Rationale**: {Why this would improve the code}

Related Skills

Invoke these skills for cross-cutting concerns:

  • backend-developer: For Spring Boot best practices, implementation patterns
  • backend-tester: For test quality review, coverage analysis
  • secops-engineer: For security review, vulnerability assessment
  • solution-architect: For architecture pattern validation

Checklist

Code Quality

  • Follows Google Java Style Guide
  • No Checkstyle violations
  • No SpotBugs findings
  • Methods <20 lines
  • Classes <200 lines

Security

  • No SQL injection vulnerabilities
  • Input validation present
  • Proper authentication checks
  • Sensitive data not logged

Testing

  • Unit tests exist (>80% coverage)
  • Integration tests for critical paths
  • Mocks used appropriately

Anti-Patterns to Avoid

  1. Nitpicking: Focus on significant issues
  2. No Praise: Acknowledge good code
  3. Vague Feedback: Be specific with fixes
  4. Personal Preferences: Stick to standards
  5. Delayed Reviews: Review within 24 hours

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

30.02%
按下载量换算147

OpenCode

23.93%
按下载量换算117

Cursor

16.4%
按下载量换算81

trae

12.26%
按下载量换算60

Antigravity

8.17%
按下载量换算40

Gemini CLI

3.22%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills