Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

self-review-apply自我审查申请

Agent Skill

self-review-apply 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

523

周安装

22

GitHub Stars

19

下载量

183
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/e0ipso/self-review --skill self-review-apply

简介

self-review-apply 用于查找、检索和筛选相关信息,支持快速定位候选结果。

  • 适用于基于关键词、任务场景或来源线索的信息筛选需求。
  • 通过 npx skills add 命令安装,建议结合原始 README 了解具体实现。
  • 安装前应确认权限范围和维护状态,避免触发不必要的网络或文件操作。
  • 涉及命令执行时需注意运行目录和数据边界。

SKILL.md

Apply Self-Review Feedback

Read structured review feedback from a self-review XML file and execute the changes.

XML Reference

Non-obvious semantics (keep in sync with assets/self-review-v1.xsd):

  • Line number pairing: A comment has exactly one pair — new-line-start/new-line-end (for added/context lines) OR old-line-start/old-line-end (for deleted lines). Never both. If neither pair is present, it's a file-level comment.
  • viewed attribute: true = reviewer looked at this file. false = reviewer did not mark it as viewed. Distinguishes "reviewed, no comments" from "not yet reviewed."
  • path on renames: For renamed files (change-type="renamed"), path is the new path.
  • change-type values: added, modified, deleted, renamed.

1. Read the Review XML

Read the XML file from $ARGUMENTS or default to ./review.xml. Stop if the file does not exist.

2. Validate the XML

Use the Bash tool to run xmllint --schema assets/self-review-v1.xsd <review-xml-path> --noout (where assets/ is relative to this skill's directory). If validation fails, stop and report the xmllint errors to the user. If xmllint is not installed, warn the user and continue without validation.

3. Load Context

Check the <review> root element attributes to determine the review mode and load context:

  • Git mode (git-diff-args and repository attributes present): Use the Bash tool to run git diff <git-diff-args> from the repository path. This gives you the same diff the reviewer saw. If the diff is too large, limit to files that have comments.
  • Directory mode (source-path attribute present): Read each file listed in the review from the source-path directory (file path attributes are relative to it). Skip deleted files. If a file is too large, read only the line ranges referenced by comments (with surrounding context).

This context is essential — without it you're working blind.

4. Execute the Feedback

Skip files with zero comments. For files with comments, create one TaskCreate task per file, then spawn subagents to work on independent files concurrently. For small reviews (3 or fewer files with comments), apply changes directly without subagents.

For each file:

  1. Load attachments for this file. For each comment with <attachment> elements, read the referenced image file using the Read tool to include it as visual context. The path attribute contains a relative path from the XML file to the image. If the image file does not exist, note this and proceed with text-based feedback only.
  2. Apply suggestions bottom-to-top. Sort suggestions by line number descending so that insertions and deletions don't invalidate line numbers of subsequent suggestions. For each <suggestion>, find original-code in the file and replace it with proposed-code. Use line numbers as hints but match on text to handle drift.
  3. Address all other comments. Read the referenced lines, understand the <body>, and implement the change. Use your judgment. Every comment category is actionable — including question, which often implies a change is needed. If a question is purely informational (no code change needed), answer it in the summary instead.
  4. Complete all changes for one file before moving to the next.

5. Summary

After all feedback has been applied, output a clearly delimited summary section.

Changes Applied

List each change that was made, grouped by logical unit of work (e.g., "refactored validation logic", "updated API error handling") rather than by file. Keep entries concise (one line per change).

Questions & Answers

For every question category comment in the review:

  • Quote the question.
  • Provide your answer.
  • State explicitly whether the question resulted in a code change (Changed or No change).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.19%
按下载量换算70

Claude

27.81%
按下载量换算51

Cursor

20.06%
按下载量换算37

Gemini CLI

9.02%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/e0ipso/self-review --skill self-review-apply 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills