java-code-review

仓库创建 2026年1月30日最近提交 5 个月前SkillHot 收录 23 天前
▸ 精选理由

覆盖 null 安全、异常与性能等常见高危点,适合合并前把关。

这个 Skill 做什么

基于系统化检查表对 Java 代码进行安全性、健壮性与性能审查并给出建议。

按检查表给 Java 代码做审查,覆盖空指针、异常处理、并发与性能等常见风险,适合在请求“review code”或合并 PR 前使用。先快速把意图看清再逐项检查,最后按严重性给出问题和可执行的改进建议。输出能直接用作评审记录或 PR 评论,方便落地修复。

▸ 展开 SKILL.md 英文原文

Systematic code review for Java with null safety, exception handling, concurrency, and performance checks. Use when user says "review code", "check this PR", "code review", or before merging changes.

开发编程代码审查异常处理性能通用
692
Stars
135
Forks
18
仓库内 Skill
+20
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/decebals/claude-code-java/main/.claude/skills/java-code-review/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/decebals/claude-code-java/main/.claude/skills/java-code-review/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Java Code Review Skill

Systematic code review checklist for Java projects.

## When to Use
- User says "review this code" / "check this PR" / "code review"
- Before merging a PR
- After implementing a feature

## Review Strategy

1. **Quick scan** - Understand intent, identify scope
2. **Checklist pass** - Go through each category below
3. **Summary** - List findings by severity (Critical → Minor)

## Output Format

```markdown
## Code Review: [file/feature name]

### Critical
- [Issue description + line reference + suggestion]

### Improvements
- [Suggestion + rationale]

### Minor/Style
- [Nitpicks, optional improvements]

### Good Practices Observed
- [Positive feedback - important for
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有