Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计提醒

learn-from-code-review从代码审查中学习

Agent Skill

learn-from-code-review 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

250

周安装

10

GitHub Stars

93

下载量

81
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/openhands/skills --skill learn-from-code-review

简介

learn-from-code-review 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态进行整理时使用。

  • 适用于开发类任务,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从 GitHub 安装,需确认权限范围和维护状态。
  • 使用前建议检查是否会触发联网、命令执行或文件读写操作。
  • 当前维护状态和稳定性需结合仓库活跃度进一步确认。

SKILL.md

Learn from Code Review

Analyze code review comments from GitHub pull requests and distill them into reusable skills or repository guidelines that improve future code quality.

Overview

Code review feedback contains valuable institutional knowledge that often gets buried across hundreds of PRs. This skill extracts meaningful patterns from review comments and transforms them into:

  1. Repository-specific skills - Placed in .openhands/skills/ for domain-specific patterns
  2. AGENTS.md guidelines - Overall repository conventions and best practices

Prerequisites

  • GITHUB_TOKEN environment variable must be set
  • GitHub CLI (gh) should be available

Workflow

Step 1: Identify Target Repository

Determine the repository to analyze:

# Get current repo info
gh repo view --json nameWithOwner -q '.nameWithOwner'

If not in a repository, ask the user which repository to analyze.

Step 2: Fetch Review Comments

Retrieve PR review comments from the repository:

# Fetch merged PRs from the last 30 days (adjustable)
gh pr list --repo {owner}/{repo} \
  --state merged \
  --limit 50 \
  --json number,title,mergedAt

# For each PR, fetch review comments
gh api repos/{owner}/{repo}/pulls/{pr_number}/comments \
  --jq '.[] | {body: .body, path: .path, user: .user.login, created_at: .created_at}'

# Also fetch review-level comments (not tied to specific lines)
gh api repos/{owner}/{repo}/pulls/{pr_number}/reviews \
  --jq '.[] | select(.body != "") | {body: .body, user: .user.login, state: .state}'

Step 3: Filter and Categorize Comments

Apply noise filtering to keep only meaningful feedback:

Exclude:

  • Bot comments (dependabot, copilot, github-actions, etc.)
  • Low-signal responses ("LGTM", "+1", "looks good", "thanks", "nice")
  • Comments shorter than 30 characters
  • Auto-generated comments (CI status, coverage reports)

Categorize remaining comments by:

  • Security concerns
  • Performance patterns
  • Code style/conventions
  • Architecture/design patterns
  • Error handling
  • Testing requirements
  • Documentation standards

Step 4: Distill Patterns

For each category with sufficient examples (3+ similar comments), identify:

  1. The recurring issue - What mistake or oversight keeps appearing
  2. The desired pattern - What reviewers consistently ask for
  3. Example context - Concrete before/after code snippets when available

Step 5: Generate Output

If clear, actionable patterns emerge, generate focused skill files. If no clear patterns emerge, report this to the user—it's fine to produce no output when the codebase already has strong conventions or when review comments don't cluster into recurring themes.

When creating skills, place them in .openhands/skills/{domain-name}/SKILL.md:

---
name: database-queries
description: Database query patterns and best practices for this repository.
---

# Database Query Guidelines

### Always Use Parameterized Queries
[Pattern description with examples]

### Connection Pool Management
[Pattern description with examples]

Prefer skills over AGENTS.md updates, since AGENTS.md typically already contains general coding guidelines.

Step 6: Create Draft PR (if applicable)

Use the create_pr tool to open a draft PR with the proposed changes. The PR description should include:

  • Number of PRs analyzed
  • Number of comments processed
  • Categories of patterns found
  • List of proposed changes (new skills and/or AGENTS.md updates)

Example Output

Sample Skill: API Error Handling

---
name: api-error-handling
description: API error handling patterns for this repository.
---

# API Error Handling

## Always Return Structured Errors

❌ Avoid:

return {"error": str(e)}


✅ Prefer:

return { "error": { "code": "VALIDATION_ERROR", "message": "Invalid input", "details": {"field": "email", "reason": "Invalid format"} } }


## Log Before Returning Errors

logger.error(f"API error in {endpoint}: {e}", exc_info=True) return error_response(e)

Defaults

This workflow analyzes PRs from the past 30 days by default.

Best Practices

  1. Run periodically - Schedule monthly or quarterly to capture evolving patterns
  2. Review before merging - Generated content is a draft; human review is essential
  3. Iterate - Refine patterns based on team feedback
  4. Avoid duplication - Check existing AGENTS.md and skills before adding
  5. Cite sources - Reference PR numbers when documenting patterns

Error Handling

Handle these common edge cases gracefully:

  • Repository has few PRs: If fewer than 10 merged PRs exist in the timeframe, inform the user that there may not be enough data to identify patterns. Proceed with analysis but note the limited sample size.
  • No patterns emerge: When comments don't cluster into recurring themes (common for well-established codebases), report this to the user and suggest either expanding the time range or that the codebase may already have strong conventions.
  • Token lacks repository access: If the GitHub API returns 403/404, explain that the token may not have access to the repository and suggest checking token permissions.
  • gh CLI unavailable: Fall back to direct GitHub API calls using curl with $GITHUB_TOKEN, or inform the user that gh needs to be installed.

Limitations

  • Only analyzes accessible repositories (requires appropriate permissions)
  • Cannot capture verbal feedback from pair programming or meetings
  • Patterns may reflect individual reviewer preferences vs. team consensus
  • Historical comments may reference outdated code patterns

Additional Resources

For posting structured code reviews, see the github-pr-review skill. For creating new skills, see the skill-creator skill.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.59%
按下载量换算32

Claude

28.95%
按下载量换算23

Cursor

18.35%
按下载量换算15

Gemini CLI

9.32%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills