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

debugging调试

Agent Skill

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

总安装

606

周安装

25

GitHub Stars

11

下载量

198
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akillness/skills-template --skill debugging

简介

用于将失败现象转化为可复现的诊断过程。

  • 需构建最小复现用例并隔离问题边界。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 每次只验证一个假设,避免多变量干扰。
  • 应与原始条件保持一致进行验证。debugging 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装时请确认是否有日志读取和执行调试命令权限。

SKILL.md

Debugging

Use this skill when the job is to turn a concrete failure into a bounded diagnosis loop.

The center of the skill is small and repeatable:

  1. define the failing behavior in testable terms,
  2. build or confirm the cheapest reliable reproducer,
  3. isolate the narrowest failing boundary,
  4. run one discriminating check per hypothesis,
  5. verify the fix under the same conditions.

Read references/handoff-boundaries.md before taking work that may belong to log-analysis, testing-strategies, code-review, or performance-optimization. Read references/debug-loop.md for the full experiment-loop scaffolding. Read references/mode-selection-and-fast-checks.md when the case is clearly a regression, flake, env/config mismatch, or artifact-led investigation.

When to use this skill

  • A command, test, request, or UI flow fails and the user needs a root-cause workflow
  • A bug is reproducible or close to reproducible and needs narrowing before patching
  • A regression has a likely change window or last-known-good state
  • A flaky failure needs repeated-run evidence, isolation, and stabilization of one concrete case
  • CI/staging/prod-only behavior now has enough evidence to compare environment or config differences
  • The user asks how to reproduce, isolate, bisect, confirm, or verify a bug fix

When not to use this skill

  • The user only has logs / stack traces and still needs the first actionable failure → use log-analysis
  • The real task is test-program design, flake policy, or coverage planning → use testing-strategies
  • The task is reviewing a diff / PR for correctness, risk, or missing evidence → use code-review
  • The main job is telemetry rollout, dashboards, or observability-platform design → use monitoring-observability
  • The main job is bottleneck measurement and optimization tradeoffs → use performance-optimization

Instructions

Step 1: Freeze the failure definition

Write the failure in a form that can be retested.

Capture:

  • expected behavior
  • actual behavior
  • exact trigger, input, or state
  • environment: local / CI / staging / production / browser / mobile / runtime
  • deterministic vs flaky vs unknown
  • last-known-good state if this may be a regression

Minimum shape:

Expected: ...
Actual: ...
Trigger: ...
Environment: ...
Confidence: high | medium | low

If the report is still just "something failed" with giant logs and no narrowed symptom, route to log-analysis first.

Step 2: Choose the right first evidence source

Pick the cheapest path that can falsify or confirm your next hypothesis.

Use this routing shortcut:

  • Known failing command/test/request/UI flow → reproduce it directly
  • Regression with last-known-good → compare recent changes and consider git bisect
  • Flaky / intermittent → measure frequency first with repeated runs
  • CI/staging/prod only → compare env/config/runtime facts before speculating about code
  • Artifact-led case → inspect the first meaningful log/trace/screenshot, then narrow to one suspect boundary
  • Performance-only complaint → route to performance-optimization unless a concrete broken behavior still needs diagnosis

Step 3: Build the smallest reliable reproducer

Prefer the cheapest reproduction that still fails.

Common shapes:

  • one CLI command
  • one HTTP request or API call
  • one UI flow with exact steps
  • one failing test or fixture
  • one save file / seed / payload / config combination
  • one commit range for regression hunting

Useful tactics:

  • reduce unrelated setup
  • freeze time/randomness/network when possible
  • capture exact env/config values that differ
  • keep repeated-run loops focused on one suspect

Step 4: Isolate the boundary before proposing fixes

Narrow the problem first.

Isolation angles:

  1. boundary — UI vs API vs DB vs worker vs config vs dependency vs asset/runtime
  2. input — one payload, record, seed, scene, or fixture
  3. history — what changed between good and bad
  4. environment — local vs CI vs staging vs production
  5. timing — ordering, retries, caching, clocks, async waits, shared state

High-value questions:

  • Can one file/module/config branch now be named as the primary suspect?
  • Is the failure about data shape, state transition, config drift, dependency behavior, or code path?
  • Is the current bottleneck still diagnosis, or has the task shifted to review / test-policy / optimization work?

Step 5: Run one discriminating check per hypothesis

Do not patch five things at once.

For each hypothesis:

  • state why it explains the failure
  • run one read-only or reversible check first
  • record the result
  • keep or reject the hypothesis based on evidence

Good first checks:

  • inspect the request/payload/config at the narrowed boundary
  • compare one good state and one bad state
  • rerun one targeted test instead of the whole suite
  • diff the suspect commit range
  • add temporary instrumentation only at the narrowed boundary

Step 6: Use the right mode packet

Once the case type is clear, follow the matching packet in references/mode-selection-and-fast-checks.md:

  • regression debugging
  • flaky-failure debugging
  • env/config mismatch debugging
  • artifact-led debugging after log/trace/screenshot triage
  • runtime / browser / game-loop debugging

Step 7: Fix the cause, then prove it

A good debugging result shows that the cause was addressed, not just the symptom muted.

Verification checklist:

  • the reproducer now passes
  • nearby edge cases still behave correctly
  • a regression guard exists when practical
  • the explanation matches the observed failure
  • the fix scope is smaller than the search space you started with

Step 8: Escalate honestly when evidence is still weak

If reproduction or isolation still fails:

  1. say confidence is low,
  2. ask for the smallest missing artifact only,
  3. avoid pretending the root cause is known,
  4. prefer one more discriminating check over speculative patching.

Output format

Always return a concise debugging brief or debugging plan.

# Debugging Brief

## Failure definition
- Expected: ...
- Actual: ...
- Reproducer: ...
- Confidence: high | medium | low

## Isolation result
- Narrowed boundary: ...
- Recent change / env difference / artifact clue: ...

## Hypotheses and checks
1. Hypothesis: ...
   - Check: ...
   - Result: ...

## Likely root cause
- 1-3 sentences grounded in evidence

## Fix direction
1. ...
2. ...

## Verification
- Reproducer rerun: ...
- Regression guard: ...

## Handoff
- Stay in `debugging` | route to `log-analysis` | route to `testing-strategies` | route to `code-review` | route to `performance-optimization`

Examples

Example 1: Regression after a refactor

Input

Saving a profile without uploading a new avatar now clears the existing avatar. It worked before the refactor.

Output sketch

  • Define expected vs actual behavior in one reproducible form submission
  • Compare the update path before/after the refactor
  • Check whether absent field and explicit null are treated the same
  • Verify with a focused regression test and rerun of the original flow

Example 2: Flaky CI failure

Input

This checkout test passes locally but fails in CI about one in eight runs.

Output sketch

  • Mark the case as flaky, not deterministic
  • Run a repeated-run loop and compare timing/shared-state/env differences
  • Inspect only the failing test and nearby fixtures first
  • Route to testing-strategies only if the job expands into suite-wide flake policy

Example 3: Prod-only behavior with artifact clue

Input

The job only fails in staging. I have the first failing request payload and the config diff.

Output sketch

  • Treat this as env/config mismatch debugging
  • Compare staging vs local/runtime facts before patching code
  • Narrow to the one flag/version/secret branch that changes behavior
  • Verify with the same payload under the corrected config

Example 4: Symptom-only log dump

Input

Here are 500 lines of retries and stack traces. Can you debug this?

Output sketch

  • Route first to log-analysis
  • State that the first actionable failure still needs narrowing
  • Do not pretend a root-cause loop can start yet

Best practices

  1. Reproduce before patching — unproven fixes are guesses.
  2. Use the cheapest evidence source first — direct repro, repeated run, env diff, or artifact clue.
  3. Keep mode selection explicit — regression, flake, env/config, artifact-led, and runtime cases need different first checks.
  4. Separate symptom triage from diagnosis — logs help you start, not finish.
  5. Change one thing at a time — debugging is an experiment loop.
  6. End with verification — every result should say how the cause was confirmed.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.78%
按下载量换算67

Claude

29.21%
按下载量换算58

Cursor

20.67%
按下载量换算41

Gemini CLI

10.28%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills