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

fix-review-issues修复审核问题

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

272

周安装

11

GitHub Stars

2

下载量

85
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/doodledood/codex-workflow --skill fix-review-issues

简介

fix-review-issues 用于围绕 GitHub 仓库、Issue、Pull Request 等协作信息提供辅助能力。

  • 适合查询项目状态、整理变更或辅助创建协作事项,并将信息转为可执行步骤。
  • 使用时需区分只读查询与写入操作,涉及 PR 或 Issue 修改时需确认 token 权限。
  • 访问私有仓库或推送分支前,应确认用户授权和操作边界。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

User request: $ARGUMENTS

Systematically address issues found from $review runs. Orchestrates: discover issues → confirm scope → plan → execute → verify.

Flags: --autonomous → skip Phase 2 scope confirmation and Phase 5 next-steps prompt (requires scope args)

Workflow

Phase 0: Parse Arguments

Parse $ARGUMENTS to determine scope:

ArgumentEffect
(none)Fix ALL issues from review
--severity <level>Filter by severity (critical, high, medium, low)
--category <type>Filter by category (use categories found in review output)
File pathsFocus on specific files only

Multiple filters combine: --severity critical,high --category <cat1>,<cat2>

Phase 1: Discover Review Results

Step 1: Check if review results exist in the current conversation context.

Step 2: If NO review results found, ask the user:

No Review Results Found

I couldn't find recent $review output in this conversation. What would you like to do?
Options:
  - Run $review now - perform a fresh review first
  - Paste review output - I'll provide the review results
  - Cancel - I'll run $review myself first
  • If "Run $review now": Inform user to run $review first, then return to $fix-review-issues
  • If "Paste review output": Wait for user to provide the review results
  • If "Cancel": End the workflow

Step 3: If review results ARE found, extract and categorize all issues:

  1. Parse each issue for: severity, category, file path, line number, description, suggested fix
  2. Group issues by category
  3. Count totals by severity

Phase 1.5: Validate Findings Against Higher-Priority Sources

Before confirming scope, filter findings that conflict with higher-priority sources (AGENTS.md, Plan, Spec).

Step 1: Check for AGENTS.md Adherence Conflicts

Review all findings from non-adherence reviewers (simplicity, maintainability, type-safety, docs, coverage) against AGENTS.md adherence findings:

  1. For each AGENTS.md adherence finding, identify what rule/guideline it enforces
  2. Check if other reviewers suggest changes that would violate that rule:

- Simplicity suggests inlining code → but AGENTS.md requires helper functions for that pattern → REMOVE simplicity finding - Maintainability suggests consolidating files → but AGENTS.md specifies file structure → REMOVE maintainability finding - Type-safety suggests stricter types → but AGENTS.md allows flexibility for that case → REMOVE type-safety finding

  1. Report filtered findings: ## Findings Filtered (Conflict with AGENTS.md Rules) The following issues were removed because they conflict with AGENTS.md project rules: - [Simplicity issue]: Filtered—AGENTS.md rule X specifies this pattern - [Maintainability issue]: Filtered—AGENTS.md requires this structure

Why this matters: AGENTS.md contains user-defined rules specific to this project. Generic reviewer suggestions that contradict explicit user rules should be discarded—the user's decisions take precedence.

Step 2: Check for Plan/Spec Conflicts

Search for plan and spec files:

# Look for plan files
ls /tmp/plan-*.md 2>/dev/null | head -5
find . -name "plan-*.md" -o -name "PLAN.md" 2>/dev/null | head -5

# Look for spec files
ls /tmp/spec-*.md 2>/dev/null | head -5
find . -name "spec-*.md" -o -name "SPEC.md" -o -name "requirements*.md" 2>/dev/null | head -5

If plan/spec files exist:

  1. Read the plan/spec files
  2. For each review finding, check if it contradicts planned/specified behavior:

- Simplicity issues: If the plan explicitly requires the pattern (e.g., "use factory pattern for extensibility"), REMOVE the finding - Maintainability issues: If the plan specifies the structure (e.g., "separate concerns into X files"), REMOVE findings that critique this - Type safety issues: If the spec requires the flexibility (e.g., "must accept arbitrary JSON"), REMOVE strict typing findings

  1. Report filtered findings with explanation: ## Findings Filtered (Justified by Plan/Spec) The following issues were removed because they're justified by the implementation plan or spec: - [Issue]: Filtered because plan specifies "..." - [Issue]: Filtered because spec requires "..."

Why this matters: Review agents run without plan context. A "premature abstraction" finding may actually be an intentional pattern the plan required for future extensibility. Blindly fixing such issues would undo deliberate architectural decisions.

Phase 2: Confirm Scope with User

If --autonomous OR scope arguments provided → skip Phase 2, proceed to Phase 3

If NO arguments (fix all):

Review Issues Summary

Found {N} total issues from the review. What would you like to fix?

[Display: Issue breakdown by category and severity]

Options:
  - Fix all issues (Recommended)
  - Only critical and high severity
  - Only specific categories - let me choose
  - Only specific files - let me specify

If "Only specific categories":

Present multi-select with categories found in the review output (dynamically generated from Phase 1 parsing).

If "Only specific files":

Specify Files

Which files or directories should I focus on?
(e.g., src/auth/ or src/utils.ts, src/helpers.ts)

Phase 3: Create Fix Plan

Order issues by priority before creating the plan (see Issue Priority Order section):

  1. Bugs first
  2. AGENTS.md Adherence issues
  3. Type Safety
  4. Coverage
  5. Maintainability
  6. Simplicity
  7. Docs

Invoke the plan skill to create the implementation plan: $plan Fix these review issues in priority order (bugs → AGENTS.md adherence → type safety → coverage → maintainability → simplicity → docs): [summary of issues within confirmed scope, grouped by priority]

Once the plan is approved, note the plan file path (typically /tmp/plan-*.md) and proceed to execution.

Phase 4: Execute Fixes

Invoke the implement skill to execute the plan: $implement <plan-file-path>

The $implement skill handles dependency-ordered execution, progress tracking, and auto-fixing gate failures.

Phase 5: Next Steps

If --autonomous: Skip prompt, end after implementation completes. Caller handles verification.

Otherwise, ask the user:

Fixes Complete

Implementation finished. What would you like to do next?
Options:
  - Run $review again - verify fixes are complete (Recommended)
  - Show diff - see all changes made
  - Done - I'll verify manually

Issue Priority Order

When fixing issues, follow this priority hierarchy:

PriorityCategoryRationale
1BugsCorrectness issues that cause incorrect behavior—always fix first
2AGENTS.md AdherenceUser-defined project rules take precedence over generic best practices
3Type SafetyPrevents runtime errors and improves reliability
4CoverageTests protect against regressions
5MaintainabilityLong-term code health
6SimplicityNice-to-have improvements
7DocsLowest priority unless blocking other work

Why AGENTS.md adherence is high priority: The AGENTS.md file contains user-defined rules specific to this project. When other reviewers (simplicity, maintainability, etc.) suggest changes that conflict with AGENTS.md guidelines, the user's explicit rules win. Fixing AGENTS.md adherence issues early prevents wasted effort fixing issues that would later be undone.

Conflict Resolution

When reviewer findings conflict with each other:

  1. AGENTS.md vs other reviewers: AGENTS.md adherence wins. If simplicity reviewer says "inline this helper" but AGENTS.md specifies "use helper functions for X pattern"—keep the helper.
  2. Plan/Spec vs reviewers: Plan/Spec wins (handled in Phase 1.5). Intentional architectural decisions aren't mistakes.
  3. Between equal-priority reviewers: Defer to the verification agent's reconciliation from $review.

Key Principles

  • Respect User Rules: AGENTS.md adherence issues take precedence—these are explicit user decisions that override generic reviewer suggestions
  • Respect the Plan: Filter out findings that contradict the implementation plan or spec—these are intentional decisions, not mistakes
  • User Control: Confirm scope before making changes
  • Reduce Cognitive Load: Offer clear options with recommended option first
  • High Confidence Only: Only fix issues that are clearly unintentional problems, not design decisions

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.72%
按下载量换算24

OpenCode

21.61%
按下载量换算18

Antigravity

17.21%
按下载量换算15

Gemini CLI

10.73%
按下载量换算9

windsurf

7.51%
按下载量换算6

Codex

3.53%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills