Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

bug-fix错误修复

Agent Skill

bug-fix 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

899

周安装

36

GitHub Stars

3

下载量

291
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alpoxdev/hypercore --skill bug-fix

简介

bug-fix 针对具体运行时错误或逻辑缺陷提供精准修复路径选择。

  • 先分类问题复杂度,再决定是否直接修复或通过结构化阶段推进解决。
  • 聚焦单一功能点的异常表现,不支持全局重构或 CI 流水线清理。
  • 修复方案需经过本地验证,避免引入副作用影响其他模块稳定性。
  • bug-fix 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Bug Fix Skill

Diagnose a concrete bug, choose the safest repair path, and fix it — classify complexity first, then either fix directly or track progress through structured phases.

<request_routing>

Positive triggers

  • A specific runtime error with a reproduction path, such as Cannot read properties of undefined.
  • A specific logic bug such as duplicate rendering, stale state, or wrong calculations in one feature.
  • A concrete API bug with a failing request, response mismatch, or one broken integration path.

Out-of-scope

  • Repository-wide build or CI cleanup. Route that to build-fix.
  • Security audits, exploit review, or trust-boundary analysis. Route that to security-review.
  • New feature work, refactors, or speculative cleanup that are not tied to a concrete bug.

Boundary cases

  • If the user asks for root-cause analysis only, stay in diagnosis mode and do not edit.
  • If the user asks for a direct fix on a single concrete bug, this skill owns it.
  • If the request starts as a bug but expands into repo-wide build breakage, hand off to build-fix.

</request_routing>

<argument_validation>

If ARGUMENT is missing, ask immediately:

Which bug should be fixed?
- Error message / failing symptom
- Expected vs actual behavior
- Reproduction steps
- Related files or call sites
- Recent change, suspect commit, or environment detail

</argument_validation>

<mandatory_reasoning>

Mandatory Sequential Thinking

Always run sequential-thinking before implementation. Depth scales with complexity:

  • Simple (3 thoughts): Identify cause → determine fix → verify approach
  • Medium (5 thoughts): Classify → reproduce → hypothesize → compare options → recommend
  • Complex (7+ thoughts): Classify → reproduce → hypothesize multiple causes → explore dependencies → compare options → assess cross-cutting impact → recommend

Recommended sequence:

  1. Complexity classification
  2. Reproduction and symptom framing
  3. Root-cause hypotheses
  4. Option comparison
  5. Final recommendation

Before any edit, collect root-cause evidence and reduce the problem to a minimal reproduction or the narrowest failing boundary you can actually verify.

</mandatory_reasoning>

<complexity_classification>

Complexity Classification

Classify immediately after sequential-thinking:

ComplexitySignalsPath
SimpleSingle file, clear error message, obvious root cause, one fix path, low riskFix-now — proceed directly without flow tracking
ComplexCross-cutting bug, multiple potential root causes, requires investigation across systems, fix has side effects, multiple valid fix strategiesTracked — create .hypercore/bug-fix/flow.json

Announce the classification:

Complexity: [simple/complex] — [one-line reason]

When uncertain, classify as complex. It is cheaper to track than to lose investigation progress.

</complexity_classification>

<flow_tracking>

Flow Tracking (Complex Path Only)

When classified as complex, initialize the flow:

mkdir -p .hypercore/bug-fix

Write .hypercore/bug-fix/flow.json and update it as each phase progresses. See references/flow-schema.md for the full schema.

Phase progression

PhaseDescriptionNext
diagnoseReproduce, isolate root cause, collect evidenceoptions
optionsPresent 2-3 fix options with tradeoffsconfirm
confirmWait for and record user selectionfix
fixImplement selected optionverify
verifyRun validation, report outcomedone

Resume support

If .hypercore/bug-fix/flow.json already exists, read it first and continue from the last incomplete phase (in_progress or pending). Do not restart completed phases.

</flow_tracking>

<execution_modes>

Use one of these branches explicitly:

  • Diagnose-only: reproduce, isolate the failing path, summarize evidence, and stop before code edits.
  • Fix-now (simple path): If the user explicitly asks for a direct fix and one path is clearly the safest, say which path you are taking and implement without a second confirmation round. No flow tracking.
  • Option-first (complex path): present 2-3 repair options with flow tracking and wait for user selection.
  • Handoff: route repo-wide build breakage to build-fix and security review requests to security-review.

</execution_modes>

Simple Path (Fix-now)

StepTaskTool
1Validate input, sequential-thinking (3 thoughts)sequential-thinking
2Classify as simple-
3Explore relevant code, identify root causeRead/Grep/Glob
4Announce fix path and implementEdit
5Run validation (typecheck/test/build)Bash
6Report outcome and changed files-

Complex Path (Option-first)

StepTaskTool
1Validate input, sequential-thinking (7+ thoughts)sequential-thinking
2Classify as complex, create .hypercore/bug-fix/flow.jsonWrite
3Deep investigation → update flow diagnose: completedRead/Grep/Glob + Edit
4Present 2-3 fix options → update flow options: completedEdit
5Wait for user selection → update flow confirm: completedEdit
6Implement selected option → update flow fix: completedEdit/Write
7Run validation → update flow verify: completedBash + Edit
8Report outcome, set flow status to completedEdit

<option_presentation>

Use this format (complex path):

## Bug Analysis Result
**Root cause**: ...
**Impact scope**: ...
**Complexity**: complex

### Option 1: ... (Recommended)
- **Pros**:
- **Cons**:
- **Risk**:
- **Files**:

### Option 2: ...
- **Pros**:
- **Cons**:
- **Risk**:
- **Files**:

### Option 3: ... (Temporary)
- **Pros**:
- **Cons**:
- **Risk**:
- **Files**:

Recommendation: Option N (reason ...)
Which option should I apply? (1/2/3)

</option_presentation>

<implementation_rules>

  • Do not modify code before user option selection unless in the explicit Fix-now branch.
  • Avoid speculative edits; use evidence-based fixes only.
  • Keep scope limited to the requested bug and direct impact.
  • Always run targeted validation for the changed path, not just a generic command dump.
  • Report the commands run, the key result lines, and the touched files in the final report.
  • If validation cannot run, say why and what remains unverified.

Reporting

After execution, report:

## Done

**Bug**: [original symptom]
**Root cause**: [what was wrong]
**Fix applied**: [which option or approach]
**Changes**: [list of changed files]
**Validation**: [what was verified and result]

For complex path: also update .hypercore/bug-fix/flow.json status to completed.

</implementation_rules>

Execution checklist:

  • ARGUMENT validated
  • sequential-thinking completed (depth matches complexity)
  • Complexity classified (simple/complex)
  • Flow JSON created and maintained (complex path only)
  • Root-cause evidence collected
  • 2-3 options presented (complex path) or fix path announced (simple path)
  • User choice confirmed (complex path)
  • typecheck/test/build executed
  • outcome + touched files reported
  • Flow JSON finalized with completed status (complex path only)

Forbidden:

  • speculative fix without evidence
  • immediate implementation without options (complex path)
  • implementation without explicit user choice (complex path)
  • completion claim without validation
  • skipping flow JSON updates in complex path

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.52%
按下载量换算92

Claude

31.75%
按下载量换算92

Cursor

19.3%
按下载量换算56

Gemini CLI

10.15%
按下载量换算30

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills