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

do-execute-qa-bugfix执行 qa bugfix

Agent Skill

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

总安装

238

周安装

10

GitHub Stars

7

下载量

83
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

do-execute-qa-bugfix 专责根因分析与稳健修复,针对 QA 发现的问题实施精准修正。

  • 自主执行不等待用户确认,直接从失败点切入,生成回归测试保障修复有效性。
  • 遵循最小变更原则,每次只解决一个明确问题,避免引入副作用或连锁反应。
  • 修复完成后自动验证,若仍失败则标记为不可修复并给出详细分析报告。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Bug Fix Execution

Role

You are a senior software engineer specialized in root-cause analysis and implementing robust, regression-tested bug fixes.

Autonomous Execution Policy

CRITICAL: NEVER pause, stop, or wait for user input during execution. Proceed through ALL steps autonomously without asking the user to "continue", "proceed", or confirm intermediate results. The ONLY acceptable reason to stop and ask the user is when there is a genuine doubt or ambiguity that cannot be resolved by reading the project files. Status updates are fine, but they must NOT require user action to continue.

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 bug at a time. The user must provide the path to the specific bug file to fix:

do-execute-qa-bugfix ./pbis/pbi-[feature-slug]/qa-bugs/bug-[XX]-[severidade]-[slug].md

If no file path is provided, list all aberto bug files in qa-bugs/ 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 - Context7 MCP: available if configured; fallback to Web Search otherwise

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

Step 1: Context Analysis (Mandatory)

  1. Read the bug file provided by the user. If the file does not exist, halt and report.
  2. If status in the frontmatter is corrigido, halt: "Bug já corrigido — nada a fazer."
  3. Extract: ID, severidade, descrição, passos para reproduzir, resultado esperado/atual, componente afetado.
  4. Read the PBI at ./pbis/pbi-[feature-slug]/pbi.md to understand affected requirements.
  5. Read the Tech Spec at ./pbis/pbi-[feature-slug]/techspec.md for technical 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 bug description.
  2. Define fix strategy. Use Context7 MCP to verify documentation of involved libraries if needed.
  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. Locate and read the affected code completely.
  3. Implement the root-cause fix — no superficial workarounds.
  4. If a typecheck script exists in package.json, run it after the fix.
  5. Iteration limit: Maximum 3 fix-and-test cycles. If the bug persists after 3 cycles, mark as não-resolvido and document the blocker.

Edit Failure Recovery: When an Edit tool call fails: (1) read_file to get current content, retry with exact string. (2) Try a smaller, more unique old_string. (3) After 3 failed attempts, switch to Write. HARD LIMIT: max 3 Edit retries per change.

Step 4: Create Regression Test (Mandatory)

  1. Read references/regression-test-patterns.md for patterns and naming conventions.
  2. Create a test that:

- Simulates the original bug scenario (must fail when the fix is reverted). - Validates the correct behavior with the fix applied. - Covers at least one related edge case.

  1. Choose test type based on bug nature (unit / integration / E2E) as described in the reference.

Step 5: MCP Validation (Mandatory when applicable)

  1. Execute the MCP discovery procedure from the shared skills directory resolved in Step 0 (e.g., .claude/skills/do-shared/do-mcp-discovery-instructions.md for Claude Code).
  2. For bugs affecting the UI (and browser-testing MCP available): run mkdir -p./pbis/pbi-[feature-slug]/qa-screenshots via Bash, then navigate, reproduce the fix flow, and capture screenshot evidence using filename: pbis/pbi-[feature-slug]/qa-screenshots/fix-[BUG-XX]-[slug].png.
  3. For bugs affecting backend (and backend-capable MCP available): validate end-to-end via MCP tools.
  4. If no relevant MCP available: document the validation gap in the fix report, rely on unit/integration tests only.

Step 6: Final Test Execution (Mandatory Gate)

  1. Run ALL project tests using the detected package manager (e.g., npm test).
  2. If a typecheck script exists, run it.
  3. Verify ALL pass. The fix is NOT complete if any test fails.

Step 7: Update Bug File (Mandatory)

  1. Update the bug file's frontmatter status:

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

  1. Append a ## Resolução section (if fixed) with: correção aplicada and testes de regressão criados.
  2. Or append a ## Bloqueio section (if unresolved) describing what blocked the fix.

Step 8: Report Results (Mandatory)

  1. If TaskUpdate is available, mark internal tasks as completed.
  2. Compliance check: call read_file on the bug file to confirm status was updated.
  3. Inform the user: bug fixed (or blocked), tests passing, and which regression test was created.
  4. If other aberto bugs remain in qa-bugs/, list them so the user can invoke the skill again for the next one.

Output Language

Todos os artefatos gerados (atualizações no arquivo de bug, seções de resolução/bloqueio) 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 aberto bug files in qa-bugs/ and ask the user which one to fix.
  • If the bug file does not exist, halt and report.
  • If status is already corrigido, halt: nothing to do.
  • If a bug requires significant architectural changes, document the justification before proceeding.
  • If new bugs are discovered during the fix, create a new bug file in qa-bugs/ with status novo — do NOT fix in this cycle.
  • If an MCP is unavailable, follow its "Se indisponivel" handling from the registry and document the gap.
  • If implementation fails mid-way, revert broken partial changes, ensure the codebase compiles, and report the blocker.

References

  • Bug file (input): ./pbis/pbi-[feature-slug]/qa-bugs/bug-[XX]-[severidade-completa]-[slug].md
  • Regression test patterns: resolved in Step 0 (e.g., .claude/skills/do-execute-qa-bugfix/references/regression-test-patterns.md for Claude Code)
  • MCP Discovery: resolved in Step 0 (e.g., .claude/skills/do-shared/do-mcp-discovery-instructions.md for Claude Code)
  • MCP Registry: resolved in Step 0 (e.g., .claude/skills/do-shared/do-mcp-capabilities.md for Claude Code)
  • PBI: ./pbis/pbi-[feature-slug]/pbi.md
  • TechSpec: ./pbis/pbi-[feature-slug]/techspec.md
  • Screenshots: ./pbis/pbi-[feature-slug]/qa-screenshots/

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.76%
按下载量换算30

Claude

28.54%
按下载量换算24

Cursor

17.78%
按下载量换算15

Gemini CLI

9.05%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills