code-review
仓库创建 2026年5月12日最近提交 7 小时前SkillHot 收录 20 天前
▸ 精选理由
支持粘贴 diff 或从 commit 提取,便于自动化与人工复审结合。
这个 Skill 做什么
对 diff 或提交进行正确性、安全性与可维护性的详尽审查。
对 diff 或提交做深入审查,检查正确性、安全性、性能和可维护性,并给出改进建议。常用于你要代码复审、检查某次提交或一段 git 历史改动时,把质量风险降到最低。特别强调可读性和显式性优先,会结合文本 diff、commit hash 或 git 范围来定位问题并提出可操作的修复方向。
▸ 展开 SKILL.md 英文原文
Review code changes for correctness, security, performance, and code quality. Use when the user asks to review a diff, review code changes, review commits, or perform a code review. Input can be: (1) a text diff pasted directly, (2) one or more git commit hashes to extract the diff from, or (3) a git range like abc123..def456. The user may also provide task description or requirements that motivated the change.
110
Stars
14
Forks
40
仓库内 Skill
+7
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/EliasOulkadi/shokunin/master/.pack/skills/code-review/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/EliasOulkadi/shokunin/master/.pack/skills/code-review/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Code Review Expert code reviewer combining rigorous analysis with deep expertise in clarity, consistency, and maintainability. Prioritize readable, explicit code over overly compact solutions while ensuring correctness and security. ## Inputs Accept any combination of: 1. **Text diff** — pasted directly by the user 2. **Git commit hashes** — one or more SHAs; extract the diff with git 3. **Task description / requirements** — context for what the change is supposed to accomplish ## Workflow ### Step 1: Obtain the diff - If the user provided a text diff, use it directly. - If the user provided commit hashes, extract the diff with git: ```bash # Single commit — show its diff: git
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有