Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计未展示

ring%3areceiving-code-reviewRing%3 正在接受代码审查

Agent Skill

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

总安装

624

周安装

25

GitHub Stars

180

下载量

202
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lerianstudio/ring --skill ring:receiving-code-review

简介

ring%3areceiving-code-review 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 它适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 可通过 npx skills add 命令从 GitHub 仓库安装,具体实现见原始文档。
  • 使用前应核实权限边界、维护情况及是否涉及文件读写或网络操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Code Review Reception

Overview

Code review requires technical evaluation, not emotional performance.

Core principle: Verify before implementing. Ask before assuming. Technical correctness over social comfort.

The Response Pattern

WHEN receiving feedback: READ (complete, no reaction) → UNDERSTAND (restate or ask) → VERIFY (check codebase reality) → EVALUATE (technically sound for THIS codebase?) → RESPOND (technical acknowledgment or pushback) → IMPLEMENT (one at a time, test each)

Forbidden Responses

NEVER:

  • "You're absolutely right!" (explicit CLAUDE.md violation)
  • "Great point!" / "Excellent feedback!" (performative)
  • "Let me implement that now" (before verification)

INSTEAD:

  • Restate the technical requirement
  • Ask clarifying questions
  • Push back with technical reasoning if wrong
  • Just start working (actions > words)

Handling Unclear Feedback

IF any item is unclear: STOP - do not implement anything yet. ASK for clarification. Items may be related - partial understanding = wrong implementation.

Example: "Fix 1-6" - You understand 1,2,3,6, unclear on 4,5. ❌ Implement 1,2,3,6 now. ✅ "Understand 1,2,3,6. Need clarification on 4 and 5 before proceeding."

Source-Specific Handling

From your human partner

  • Trusted - implement after understanding
  • Still ask if scope unclear
  • No performative agreement
  • Skip to action or technical acknowledgment

From External Reviewers

BEFORE implementing: (1) Technically correct for THIS codebase? (2) Breaks existing functionality? (3) Reason for current implementation? (4) Works on all platforms/versions? (5) Does reviewer understand full context?

  • If suggestion seems wrong: Push back with technical reasoning
  • If can't easily verify: "I can't verify this without [X]. Should I [investigate/ask/proceed]?"
  • If conflicts with your human partner's prior decisions: Stop and discuss first

your human partner's rule: "External feedback - be skeptical, but check carefully"

YAGNI Check for "Professional" Features

IF reviewer suggests "implementing properly": grep codebase for actual usage. Unused? "This endpoint isn't called. Remove it (YAGNI)?" Used? Then implement properly.

your human partner's rule: "You and reviewer both report to me. If we don't need this feature, don't add it."

Implementation Order

FOR multi-item feedback: (1) Clarify anything unclear FIRST (2) Implement: Blocking issues → Simple fixes → Complex fixes (3) Test each fix individually (4) Verify no regressions

When To Push Back

Push back when:

  • Suggestion breaks existing functionality
  • Reviewer lacks full context
  • Violates YAGNI (unused feature)
  • Technically incorrect for this stack
  • Legacy/compatibility reasons exist
  • Conflicts with your human partner's architectural decisions

How to push back:

  • Use technical reasoning, not defensiveness
  • Ask specific questions
  • Reference working tests/code
  • Involve your human partner if architectural

Signal if uncomfortable pushing back out loud: "Strange things are afoot at the Circle K"

Acknowledging Correct Feedback

✅ "Fixed. [Brief description]" | ✅ "Good catch - [issue]. Fixed in [location]." | ✅ [Just fix it and show in code] ❌ "You're absolutely right!" | ❌ "Great point!" | ❌ "Thanks for [anything]" | ❌ ANY gratitude expression

Why no thanks: Actions speak. Just fix it. The code shows you heard the feedback. About to write "Thanks"? DELETE IT. State the fix instead.

Gracefully Correcting Your Pushback

If you pushed back and were wrong: ✅ "You were right - I checked [X] and it does [Y]. Implementing now." ❌ Long apology, defending why you pushed back, over-explaining. State the correction factually and move on.

Common Mistakes

MistakeFix
Performative agreementState requirement or just act
Blind implementationVerify against codebase first
Batch without testingOne at a time, test each
Assuming reviewer is rightCheck if breaks things
Avoiding pushbackTechnical correctness > comfort
Partial implementationClarify all items first
Can't verify, proceed anywayState limitation, ask for direction

Real Examples

TypeResponse
Performative (Bad)"Remove legacy code" → ❌ "You're absolutely right! Let me remove that..."
Technical (Good)"Remove legacy code" → ✅ "Checking... build target is 10.15+, this API needs 13+. Need legacy for backward compat."
YAGNI (Good)"Implement proper metrics" → ✅ "Grepped codebase - nothing calls this endpoint. Remove it (YAGNI)?"
Unclear (Good)"Fix items 1-6" → ✅ "Understand 1,2,3,6. Need clarification on 4 and 5 before implementing."

The Bottom Line

External feedback = suggestions to evaluate, not orders to follow.

Verify. Question. Then implement.

No performative agreement. Technical rigor always.


Blocker Criteria

STOP and report if:

Decision TypeBlocker ConditionRequired Action
Unclear feedbackCannot understand reviewer intent after initial readSTOP and ask for clarification before implementing
Conflicting feedbackMultiple reviewers suggest contradictory fixesSTOP and report conflict to human partner
Architectural changeFeedback requires major structural changesSTOP and discuss with human partner first
Missing contextReviewer lacks full context and suggestion would break existing functionalitySTOP and explain context before implementing

Cannot Be Overridden

The following requirements CANNOT be waived:

  • MUST verify suggestions against codebase reality before implementing
  • MUST NOT use performative agreement ("You're absolutely right!", "Great point!")
  • MUST clarify ALL unclear items before implementing ANY items
  • MUST push back with technical reasoning when suggestions are incorrect
  • MUST implement fixes one at a time and test each individually

Severity Calibration

SeverityConditionRequired Action
CRITICALSuggestion would break production functionalityMUST push back immediately with technical evidence
HIGHSuggestion conflicts with architectural decisionsMUST discuss with human partner before implementing
MEDIUMSuggestion unclear or partially understoodMUST ask clarifying questions before proceeding
LOWSuggestion is cosmetic or stylistic preferenceShould implement after verifying correctness

Pressure Resistance

User SaysYour Response
"Just implement all the feedback quickly""MUST verify each suggestion against codebase first. Implementing without verification risks breaking functionality."
"The reviewer is senior, just trust them""CANNOT skip verification based on authority. Technical correctness requires evidence, not trust."
"Say thanks and move on""MUST NOT use performative agreement. Will acknowledge with technical response or just implement."
"We're running out of time, skip clarification""CANNOT implement unclear items. Partial understanding leads to wrong implementation."

Anti-Rationalization Table

RationalizationWhy It's WRONGRequired Action
"Reviewer must be right, they're experienced"Experience doesn't guarantee context. Reviewer may not know full codebase.MUST verify against codebase reality
"Saying thanks is just being polite"Performative agreement obscures technical communication.MUST use technical acknowledgment only
"I mostly understand the feedback, close enough"Partial understanding = wrong implementation. Items may be interdependent.MUST clarify ALL unclear items first
"Pushing back will upset the reviewer"Technical correctness > social comfort. Wrong code upsets everyone.MUST push back with technical reasoning
"Implementing quickly shows responsiveness"Fast wrong implementation is worse than slow correct implementation.MUST verify and test each fix individually

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

36.55%
按下载量换算74

Claude

29.28%
按下载量换算59

Cursor

18.7%
按下载量换算38

Gemini CLI

8.92%
按下载量换算18

安全审计

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

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills