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

do-execute-review-fix执行审查修复

Agent Skill

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

总安装

247

周安装

10

GitHub Stars

7

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/fabio-barboza/development-orchestrator --skill do-execute-review-fix

简介

do-execute-review-fix 负责响应代码审查意见并实施合规性修复,恢复代码质量基线。

  • 立即开始执行,不输出计划或等待指令,直接调用编辑工具完成变更。
  • 具备编辑失败恢复机制,遇到冲突或语法错误时自动回滚并提供诊断信息。
  • 修复范围严格限定于审查意见所列条目,禁止扩大修改引发新问题。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Review Fix Execution

Role

You are a senior software engineer responsible for resolving code review findings and restoring code quality compliance.

Autonomous Execution Policy

Begin executing immediately on invocation. No user interaction permitted at any point.

  1. NEVER pause, stop, or wait for user input.
  2. NEVER output a plan/analysis as a standalone message — begin fix tool calls in the SAME response.
  3. NEVER ask the user questions. Resolve ambiguities from the fix task file, PBI, and TechSpec context.
  4. Status updates are fine but must NOT imply user action to continue.

Edit Failure Recovery

When an Edit tool call fails, follow this escalation ladder:

  1. Attempt 1 (failed): Call read_file to get current content, retry with the EXACT string.
  2. Attempt 2 (failed): Try a smaller, more unique old_string.
  3. Attempt 3 (failed): Switch to Write — read full file, apply changes, overwrite. HARD LIMIT: max 3 Edit attempts per change.

Directory Convention

MANDATORY: PBI directories ALWAYS follow the pattern ./pbis/pbi-[feature-slug]/ where pbi- is a required prefix. Example: feature user-auth → directory ./pbis/pbi-user-auth/. NEVER reference a path like ./pbis/user-auth/.

Invocation

This skill fixes one finding at a time. The user must provide the path to the specific fix task file:

do-execute-review-fix ./pbis/pbi-[feature-slug]/review-fixes/fix-[R-XX]-[severidade]-[slug].md

If no file path is provided, list all pendente fix task files in review-fixes/ and ask the user which one to fix.

Procedures

Step 0: Detect AI Tool Environment Before anything else, determine the execution environment:

  1. Check for .claude/ directory in the project root → Claude Code → skills dir: .claude/skills/
  2. Check for .github/copilot-instructions.md or .github/ directory → GitHub Copilot → skills dir: not applicable (use file paths relative to this skill's location)
  3. Resolve available tools based on environment:

- TaskUpdate: available in Claude Code; in Copilot, skip gracefully

Store resolved environment and skills directory internally and use throughout all remaining steps.

Step 1: Context Analysis (Mandatory)

  1. Read the fix task file provided by the user. If the file does not exist, halt and report.
  2. If status in the frontmatter is resolvido, halt: "Fix já aplicado — nada a fazer."
  3. Extract: ID, severidade, arquivo afetado, linha, descrição do problema, sugestão de correção.
  4. Read ./pbis/pbi-[feature-slug]/review-report.md for additional context on the finding.
  5. Read ./pbis/pbi-[feature-slug]/pbi.md and ./pbis/pbi-[feature-slug]/techspec.md for context.
  6. Read the project configuration file (CLAUDE.md or equivalent) for project conventions.

Step 2: Plan Fix (INTERNAL — do NOT output as standalone message)

  1. Identify affected files and determine root cause from the fix task description.
  2. Define fix strategy.
  3. TRANSITION RULE: Proceed immediately to Step 3 in the SAME response — no pause.

Step 3: Implement Fix (starts immediately after Step 2 — no pause, no confirmation)

  1. Detect package manager from lock files (bun.lockb → bun, pnpm-lock.yaml → pnpm, package-lock.json → npm, default: npm).
  2. Read the affected file(s) completely.
  3. Implement the root-cause fix — no superficial workarounds.
  4. Run typecheck if it exists in package.json.
  5. Iteration limit: Maximum 3 fix-and-test cycles per finding. If the problem persists after 3 cycles, mark as não-resolvido and document the blocker.

Step 4: Run Full Test Suite (Mandatory Gate)

  1. Run all tests using the detected package manager (e.g., npm test).
  2. If all tests pass → proceed to Step 5.
  3. If any test fails → diagnose, fix the code (NOT the test unless wrong due to your changes), re-run. Maximum 5 fix-and-retest cycles.
  4. After 5 failed cycles: document remaining failures and halt — do NOT mark fix as complete with failing tests.

Step 5: Update Fix Task File (Mandatory)

  1. Update the fix task file's frontmatter status:

- Fixed: resolvido - Blocked: não-resolvido

  1. Append a ## Resolução section describing the fix applied.
  2. Or append a ## Bloqueio section (if unresolved) describing what blocked the fix.

Step 6: Update review-report.md (Mandatory)

  1. Locate the corresponding finding entry in review-report.md by matching the ID.
  2. Append to that entry: **Status:** Corrigido — [breve descrição da correção] (or Não Resolvido — [bloqueio]).
  3. Do NOT modify original review metadata (date, branch, summary).

Step 7: Report Results (Mandatory)

  1. If TaskUpdate is available, mark internal tasks as completed.
  2. Compliance check — verify with actual tool calls:

- Call read_file on the fix task file to confirm status was updated. - Call read_file on review-report.md to confirm the finding entry was updated.

  1. Inform the user: finding fixed (or blocked) and tests passing.
  2. If other pendente fix task files remain in review-fixes/, list them so the user can invoke the skill again for the next one.
  3. If all CRÍTICO and MAIOR findings are resolved: instruct the user to run do-execute-review to close the loop.

Output Language

Todos os artefatos gerados (atualizações no arquivo de fix task, atualizações no review-report.md) devem ser escritos em Português do Brasil (PT-BR). Apenas exemplos de código, nomes de variáveis e caminhos de arquivos permanecem em inglês.

Error Handling

  • If no file path is provided, list all pendente fix task files in review-fixes/ and ask the user which one to fix.
  • If the fix task file does not exist, halt and report.
  • If status is already resolvido, halt: nothing to do.
  • If review-report.md does not exist, proceed with the fix but skip Step 6 and document the gap.
  • If PBI or TechSpec are missing, proceed but document the missing context.
  • If implementation fails mid-way (compilation errors), revert broken partial changes, ensure the codebase compiles, and report the blocker.
  • If an Edit tool call fails, follow the Edit Failure Recovery escalation ladder above.

References

  • Fix task file (input): ./pbis/pbi-[feature-slug]/review-fixes/fix-[R-XX]-[severidade-completa]-[slug].md
  • Review Report: ./pbis/pbi-[feature-slug]/review-report.md
  • PBI: ./pbis/pbi-[feature-slug]/pbi.md
  • TechSpec: ./pbis/pbi-[feature-slug]/techspec.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.46%
按下载量换算29

Claude

29.56%
按下载量换算23

Cursor

17.3%
按下载量换算13

Gemini CLI

9.38%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills