Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

code-reviewer代码审查员

Agent Skill

用于辅助 Java 项目开发、面向对象设计、Spring 生态、Maven 或 Gradle 依赖和后端工程实践。它适合让 Agent 分析类结构、设计接口、整理服务分层、生成测试或检查常见代码坏味道。使用时需要结合项目已有架构、包结构和依赖版本,不应只按通用教程改代码;涉及数据库、事务、并发或框架配置时,应先确认运行环境和回归测试范围。

总安装

832

周安装

34

GitHub Stars

31

下载量

269
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/a-pavithraa/springboot-skills-marketplace --skill code-reviewer

简介

用于 Java 25 和 Spring Boot 4 代码的结构化审查。

  • 聚焦类结构、接口设计、服务分层和测试生成,识别常见代码坏味道。
  • 必须基于实际代码上下文分析,引用具体文件和行号,不依赖通用教程修改。
  • 需结合项目架构、包结构和依赖版本,数据库与事务改动前应确认回归范围。
  • 安装前请核实仓库权限,避免误改未覆盖的模块或配置。

SKILL.md

Java 25 and Spring Boot 4 Reviewer

Purpose

Use this skill to run a structured review of Java 25 and Spring Boot 4 code. Keep findings grounded in the actual codebase and use the reference files only for the focus areas that apply.

Critical rules

  • Never review without code context. Ask for files, diffs, or the relevant module if none is provided.
  • Always cite file paths and line numbers for findings.
  • Treat Java 25 and Spring Boot 4 as the target baseline unless the build files show otherwise.
  • Analyze workload before recommending virtual threads, reactive rewrites, or architecture changes.
  • Use JSpecify as the preferred null-safety baseline for new Boot 4 code, but confirm whether the codebase is still in transition before flagging every legacy annotation.
  • Prefer official Spring and Java guidance when a claim depends on framework behavior.

Workflow

Step 1: Confirm scope

Collect the minimum context required to review accurately:

  1. Scope: single file, module, PR, or full codebase.
  2. Target versions: confirm Java and Spring Boot versions from the build files when relevant.
  3. Focus areas: migration, architecture, data access, security, performance, null-safety, or all.
  4. Testing context: whether the user expects review findings only or also fix suggestions and test impact.

Step 2: Load only the references that match the review

Load references just in time:

FocusRead
Spring Boot 4 migration patterns and framework deltasreferences/spring-boot-4-patterns.md
Java 25 language and concurrency adoptionreferences/java-25-features.md
Security reviewreferences/security-checklist.md
Performance reviewreferences/performance-patterns.md
Architecture boundaries and packagingreferences/architecture-patterns.md
Domain model shapereferences/domain-modeling.md
Value-object-heavy designsreferences/value-objects-patterns.md
Null-safety checksreferences/jspecify-null-safety.md

Escalate to another skill when needed:

  • Use spring-data-jpa for deep repository, query, and relationship work.
  • Use springboot-migration for phased upgrade planning or upgrade execution.

Step 3: Run the review passes

Run only the passes that match the request. For a full review, use this order.

Pass A: Build and configuration

  • Verify Java and Spring Boot versions in pom.xml or build.gradle.
  • Check starter names and migration leftovers.
  • Scan for Jackson 3 migration issues, outdated test annotations, and version drift.

Pass B: API correctness

  • Check controller and service boundaries.
  • Check validation and error handling.
  • Check nullability in public APIs and method overrides.

Pass C: Architecture and packaging

  • Identify the architecture style in use.
  • Verify package structure is consistent with that style.
  • Flag boundary leaks such as controller-to-repository shortcuts or infrastructure types in domain code.

Pass D: Data access

  • Check repository placement and aggregate boundaries.
  • Check for N+1 queries, missing pagination, projection mismatches, and transaction misuse.

Pass E: Security

  • Check authentication and authorization.
  • Check input validation and unsafe query patterns.
  • Check secrets handling and sensitive logging.

Pass F: Performance and resilience

  • Check caching strategy, unbounded reads, async usage, and remote call behavior.
  • Evaluate virtual-thread usage only when the code and workload justify it.
  • Check timeouts, retries, and connection-pool assumptions.

Quick triggers for findings

Use these as review prompts, not as a substitute for code evidence.

Spring Boot 4 and migration

  • old starter names
  • old Mockito test annotations
  • Jackson 2 assumptions in a Boot 4 codebase
  • TestRestTemplate usage instead of RestTestClient
  • manual HttpServiceProxyFactory boilerplate instead of @ImportHttpServices
  • custom API versioning instead of native spring.mvc.apiversion.*
  • @ConcurrencyLimit or native @Retryable without @EnableResilientMethods

Null-safety

  • missing package-info.java where the project uses JSpecify
  • lingering org.springframework.lang annotations in code that has already moved to JSpecify
  • missing copied nullability annotations on overrides

Architecture

  • controllers calling repositories directly
  • JPA entities exposed in APIs
  • modulith boundary leaks
  • business logic concentrated in controllers

Performance

  • entity traversal in loops
  • missing pagination
  • projection opportunities ignored on read-heavy paths
  • virtual-thread recommendations with no workload evidence

Security

  • missing authorization on privileged actions
  • SQL or NoSQL injection risk
  • secrets in source or logs
  • unsafe error exposure

Report format

Order findings by severity and use this template:

## Critical
- **[Category]**: Issue summary
  - **File**: `path/to/File.java:123`
  - **Impact**: What can fail, leak, or regress
  - **Fix**: Specific change to make

## High
- ...

## Medium
- ...

## Low
- ...

If there are no findings, say so explicitly and call out any remaining blind spots such as unreviewed modules, missing tests, or unavailable runtime context.

Common review modes

Quick PR review

  1. Read the changed files.
  2. Load references/spring-boot-4-patterns.md and references/java-25-features.md.
  3. Add references/security-checklist.md or references/performance-patterns.md if the diff touches those areas.
  4. Report only concrete findings with file and line references.

Security review

  1. Read references/security-checklist.md.
  2. Focus on controllers, service entry points, security configuration, and persistence boundaries.
  3. Report exploitability and affected entry points, not just the violated rule.

Architecture review

  1. Read references/architecture-patterns.md.
  2. Add references/domain-modeling.md or references/value-objects-patterns.md if the code suggests a rich-domain approach.
  3. Report boundary mismatches and coupling problems tied to the current architecture style.

Migration review

  1. Read references/spring-boot-4-patterns.md and references/java-25-features.md.
  2. Focus on migration leftovers, outdated APIs, and partial adoption problems.
  3. Use springboot-migration if the user wants a phased upgrade plan rather than a review.

When not to use this skill

  • Kotlin-first codebases
  • Non-Spring Java frameworks such as Micronaut or Quarkus
  • Generic review coaching without code context
  • Frontend-only changes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.49%
按下载量换算101

Claude

30.52%
按下载量换算82

Cursor

18.67%
按下载量换算50

Gemini CLI

9.19%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills