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

code-review代码审查

Agent Skill

用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。它适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。使用时需要保留真实业务约束,不要把示例当硬规则;涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。

总安装

218

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add kinneyyan/prompts --skill "code-review"

简介

用于辅助提示词、系统指令和工作流模板的整理与优化。

  • 帮助规范任务边界、统一输出格式并提升提示词复用性。
  • 通过 npx skills add 命令从 GitHub 安装,适用于 Codex、Claude 等宿主环境。
  • 使用时应保留真实业务约束,避免将示例当作硬性规则执行。
  • 涉及自动操作时需在提示词中明确确认步骤与权限边界。

SKILL.md

name
code-review
description
Reviews the git changes, identifies critical and high-priority issues, generates review summaries, and collects metrics data for local use. Use this when users need to code review or analyzing code changes for quality issues.

Code Review Skill

This skill provides comprehensive code review capabilities including change analysis, issue identification, and metrics collection.

File Structure

code-review/
├── SKILL.md (this file)
├── references
│   └── guidelines.md (code review guidelines)
└── scripts
    └── collect-metrics.sh (collect metrics data and save it to a temporary file)

Core Functionality

  • Git Repository Verification: Validates that the current directory is a git repository with changes
  • Code Change Analysis: Analyzes staged, unstaged, and untracked changes
  • Issue Categorization: Identifies and categorizes issues as:

- 🚨 CRITICAL (Must fix) - ⚠️ HIGH PRIORITY (Should fix) - 💡 SUGGESTIONS (Consider)

  • Metrics Collection: Gathers statistics on files changed, lines added/deleted, and issue counts

Usage Workflow

1. Pre-Review Setup

Ensure if is in a git repository directory and existing changes to review (staged, unstaged, and untracked files):

if ! git rev-parse --git-dir > /dev/null 2>&1; then
    echo "Error: Not a git repository. This command requires git version control."
    exit 1
fi
echo "Success: Git repository verified."

if [ -z "$(git status --porcelain)" ]; then
    echo "No changes detected. Working tree is clean. Exiting workflow."
    exit 0
else
    echo "Changes detected. Proceeding with review."
fi

2. Code Review Process

The skill follows this workflow and adds the following process nodes to the current Todo List if necessary:

  1. Reference Guidelines: See guidelines.md for the living checklist, treat it as the canonical set of rules to follow
  2. Analyze Changes: Examine all changes using git status && git diff
  3. Perform Code Review: Analyze code changes to identify issues and set variables: CRITICAL_ISSUES_COUNTHIGH_PRIORITY_ISSUES_COUNT
  4. Collect Metrics: Run the scripts/collect-metrics.sh script to create summaries and collect metrics:
   CHANGESET_SUMMARY="<Brief summary of changes (within 100 words)>"
   CODE_REVIEW_SUMMARY="<Detailed review summary>"
   bash <path/to/skill-folder>/scripts/collect-metrics.sh "$CHANGESET_SUMMARY" "$CODE_REVIEW_SUMMARY" "$CRITICAL_ISSUES_COUNT" "$HIGH_PRIORITY_ISSUES_COUNT"

The script: - Receive four metrics data parameters - Collect other information of the current repo - Save all metrics data to a temporary file

  1. Present Findings: Show categorized issues to the user

3. Expected Output Format

When presenting findings, exactly follow one of the two templates:

Template A (any findings)

## Code review Skill Output

### 🚨 CRITICAL (Must fix)

#### <brief description of CRITICAL issue>

- FilePath: <path> line <line>
- Suggested fix: <brief description of suggested fix>

... (repeat for each CRITICAL issue) ...

---

### ⚠️ HIGH PRIORITY (Should fix)

#### <brief description of HIGH PRIORITY issue>

- FilePath: <path> line <line>
- Suggested fix: <brief description of suggested fix>

... (repeat for each HIGH PRIORITY issue) ...

---

### 💡 SUGGESTIONS (Consider)

#### <brief description of SUGGESTIONS issue>

- FilePath: <path> line <line>
- Suggested fix: <brief description of suggested fix>

... (repeat for each SUGGESTIONS issue) ...

Template B (no issues)

## Code review Skill Output

🎉 Great! No issues found.

4. Integration Notes

  • The skill stores temporary data in /tmp/metrics_code-review_<repo-name>.sh
  • All scripts are designed to be idempotent and safe to run multiple times

5. When to Use This Skill

Use this skill when you need to:

  • Perform code reviews on git changes
  • Analyze code quality and identify issues
  • Generate code review reports with metrics
  • Automate pre-commit code quality checks

6. Important Guidelines

  • Always analyze actual code changes before categorizing issues
  • Be specific and actionable in issue descriptions
  • Follow the exact output format for consistency
  • Respect existing project conventions and patterns
  • Never modify git configuration or user credentials
  • Maintain full ownership and authenticity of reviews

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

windsurf

29.91%
按下载量换算21

OpenCode

21.55%
按下载量换算15

weavefox

19.03%
按下载量换算14

Codex

13.02%
按下载量换算9

Claude Code

8.89%
按下载量换算6

Antigravity

3.27%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills