Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计异常

bugfixbugfix 搜索

Agent Skill

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

总安装

329

周安装

14

GitHub Stars

2

下载量

115
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/doodledood/codex-workflow --skill bugfix

简介

bugfix 遵循理解→假设→调查→修复→验证五步法,创建临时日志记录全过程发现。

  • 适用于需要透明化调试路径的场景,便于回溯与知识沉淀共享。
  • 每个阶段都会更新待办清单与日志文件,确保进度可视化与责任可追溯。
  • 最终输出包含具体修复命令与手动检查项,方便非自动化环境验证效果。
  • bugfix 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

User request: $ARGUMENTS

Systematic bug investigation and fix workflow. Follows: Understand → Hypothesize → Investigate → Fix → Verify.

Investigation log: /tmp/bugfix-{YYYYMMDD-HHMMSS}-{name-kebab-case}.md - external memory for findings.

Phase 1: Understand the Bug

1.1 Create Todo List

- [ ] Gather bug symptoms and context
- [ ] Form initial hypotheses
- [ ] (expand as investigation reveals new areas)
- [ ] Implement and verify fix

1.2 Create Investigation Log

Path: /tmp/bugfix-{YYYYMMDD-HHMMSS}-{name-kebab-case}.md

# Bug Investigation: {description}
Started: {timestamp}

## Symptoms
(populated below)

## Hypotheses
(populated in Phase 2)

## Investigation Log
(populated during investigation)

## Root Cause
(populated when identified)

## Fix Applied
(populated after fix)

1.3 Gather Symptoms

If $ARGUMENTS contains sufficient context (error message, steps to reproduce, expected vs actual behavior), extract and document in log.

Otherwise, ask user for missing information:

Bug Report Details Needed

To investigate effectively, please provide:

1. **What happened?** (Error message, unexpected behavior)
2. **What did you expect?** (Expected behavior)
3. **Steps to reproduce** (If known)
4. **When did it start?** (Recent change, always broken, intermittent)
5. **Environment** (Browser, OS, versions - if relevant)

Provide what you know - I can investigate the rest.

Document all symptoms in investigation log immediately.

1.4 Locate Relevant Code

Search codebase for:

  • Files mentioned in error messages
  • Functions/components referenced
  • Recent changes (if "started after X" was mentioned)
  • Related test files

Update log with located files.

Phase 2: Form Hypotheses

2.1 Generate Hypotheses

Based on symptoms and located code, form 2-4 hypotheses ranked by likelihood:

## Hypotheses

### H1: [Most likely] {Description}
- Evidence for: {what supports this}
- Evidence against: {what contradicts}
- Test: {how to verify/falsify}

### H2: {Description}
- Evidence for: {what supports}
- Evidence against: {what contradicts}
- Test: {how to verify/falsify}

### H3: [Least likely] {Description}
...

2.2 Update Todos

- [x] Gather bug symptoms and context
- [ ] Form initial hypotheses
- [ ] Investigate H1: {description}
- [ ] Investigate H2: {description}
- [ ] (expand as investigation reveals new areas)
- [ ] Implement and verify fix

Phase 3: Investigate

Investigation Loop

For each hypothesis (in likelihood order):

  1. Mark todo in_progress
  2. Read relevant code files fully
  3. Trace execution paths
  4. Look for conditions that match symptoms
  5. Write findings immediately to investigation log
  6. Update hypothesis status: CONFIRMED | REFUTED | NEEDS MORE DATA
  7. If confirmed → proceed to Phase 4
  8. If refuted → mark completed, investigate next hypothesis
  9. If all refuted → expand hypotheses based on new learnings

3.1 Investigation Techniques

Symptom TypeInvestigation Approach
Error thrownRead stack trace, trace to origin, check error handlers
Wrong outputTrace data flow, check transformations, validate inputs
PerformanceProfile execution, check loops/recursion, memory patterns
Race conditionCheck async operations, state mutations, timing
IntermittentLook for external dependencies, caching, timing

General techniques:

  • Read error messages and stack traces carefully
  • Check logs and debugging output
  • Examine data flow and state changes
  • Consider environmental factors (OS, versions, config)
  • Review recent commits for related changes (git log --oneline -20)

3.2 Log Format

After each investigation step:

### {timestamp} - Investigating H{N}
**Files examined**: {list}
**Findings**: {what discovered}
**Status**: CONFIRMED | REFUTED | NEEDS MORE DATA
**Next**: {what to check next or "proceed to fix"}

3.3 Root Cause Identified

When root cause is found:

## Root Cause

**Hypothesis confirmed**: H{N}
**Location**: {file}:{line}
**Cause**: {clear explanation}
**Evidence**: {code showing the bug}

If no hypothesis was confirmed but investigation revealed the actual cause, document the unexpected finding and proceed.

Phase 4: Test-First (When Applicable)

Before fixing, create a test that reproduces the bug when practical:

4.1 Create Reproducing Test

- Find the most appropriate existing test file for the component
- Create a minimal, focused test that reproduces the bug
- Run the test to verify it fails as expected
- If test passes, refine until it properly reproduces the issue

Why test-first?

  • Proves you understand the bug
  • Provides automatic verification when fix is applied
  • Prevents regression in the future
  • Documents the bug behavior

Skip test-first when:

  • Bug is in UI/visual layer without existing test infrastructure
  • Environment-specific issue that can't be unit tested
  • Urgent hotfix where manual verification is sufficient (note in log)

4.2 Document Test in Log

## Reproducing Test

**Test file**: {path}
**Test name**: {description}
**Status**: FAILS AS EXPECTED | SKIPPED (reason)

Phase 5: Fix

5.1 Plan the Fix

Before implementing, document:

## Planned Fix

**Approach**: {what will change}
**Files to modify**: {list}
**Risk assessment**: {potential side effects}
**Test strategy**: {how to verify}

5.2 Implement Fix

Apply the minimal fix:

  • Change only what's necessary
  • Follow existing code patterns
  • Don't refactor unrelated code
  • Add comments if the fix isn't obvious

5.3 Run Quality Gates

# TypeScript: tsc --noEmit
# Tests: npm test (or project-specific)
# Lint: npm run lint (or project-specific)

5.4 Handle Gate Failures

If gates fail after fix:

  1. Analyze if failure is related to fix or pre-existing
  2. If related: adjust fix, re-run gates (max 5 attempts)
  3. If pre-existing: note in log, continue
  4. If stuck after 5 attempts: escalate with findings

Phase 6: Verify

6.1 Run Reproducing Test

If test was created in Phase 4:

  • Run the test that previously failed
  • If it passes → fix is verified
  • If it still fails → return to Phase 5 to adjust fix

Attempt to reproduce the original bug:

  • If bug no longer reproduces → fix likely successful
  • If bug still reproduces → fix incomplete, return to Phase 3

6.2 Manual Verification

If no reproducing test exists:

  • Attempt to reproduce the original bug
  • If bug no longer reproduces → fix likely successful
  • If bug still reproduces → fix incomplete, return to Phase 3

6.3 Check for Regression

Verify the fix didn't break related functionality:

  • Run related tests
  • Check adjacent code paths
  • Consider edge cases

6.4 Document Fix

Update investigation log:

## Fix Applied

**Files modified**: {list with changes}
**Verification**: {how verified}
**Gates**: PASS | FAIL (reason)

## Summary

**Bug**: {description}
**Root cause**: {explanation}
**Fix**: {what was changed}
**Status**: FIXED | PARTIALLY FIXED | ESCALATED

6.5 Report to User

## Bug Fix Complete

**Bug**: {description}
**Root cause**: {one sentence}
**Fix**: {what was changed}
**Files modified**: {list}
**Verification**: All gates pass, bug no longer reproduces

**Investigation log**: /tmp/bugfix-{...}.md

Edge Cases

CaseAction
Cannot reproduce bugAsk user for more details, check environment differences
All hypotheses refutedForm new hypotheses based on learnings, expand investigation
Fix would require major refactorDocument scope, escalate to user for decision
Multiple bugs discoveredFocus on reported bug, note others in log for later
Bug is in third-party codeDocument workaround options, escalate
Intermittent bugAdd logging/instrumentation to gather more data

Principles

  • Write findings immediately — investigation log is external memory
  • Test-first when possible — a reproducing test proves understanding
  • One bug at a time — don't fix unrelated issues
  • Minimal fix — change only what's necessary
  • Verify thoroughly — ensure fix works and doesn't regress
  • Escalate when stuck — don't spin indefinitely

Quality Standards

  • Tests must be deterministic and reliable
  • Fixes should be clean and maintainable
  • No introduction of new bugs or regressions
  • Clear comments explaining non-obvious fixes
  • Follow project coding standards and patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.09%
按下载量换算32

OpenCode

26.09%
按下载量换算30

Antigravity

17.99%
按下载量换算21

Gemini CLI

14.08%
按下载量换算16

windsurf

8.4%
按下载量换算10

Codex

3.86%
按下载量换算4

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills