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

systematic-debugging系统调试

Agent Skill

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

总安装

791

周安装

32

GitHub Stars

75

下载量

248
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tmdgusya/engineering-discipline --skill systematic-debugging

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中获取信息的场景。
  • 通过 npx skills add 命令安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • systematic-debugging 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Systematic Debugging

A strict debugging workflow. Use when dealing with bugs, test failures, or unexpected behavior.

Three core purposes:

  1. Fix the cause, not the symptom.
  2. Prevent guess-based fixes.
  3. Lock the failure with a test before fixing.

Hard Gates

These rules have no exceptions.

  1. Do not fix until you have a reproducible or observable state.
  2. Do not fix until you have stated a root-cause hypothesis.
  3. Do not fix until you have a failing test or equivalent reproduction mechanism.
  4. Verify only one hypothesis at a time.
  5. No "while I'm here" refactoring during a fix.
  6. If three fix attempts fail, suspect a structural issue before applying another patch.

Violating this process is considered a debugging failure.

When To Use

Use this skill in the following situations:

  • When a test fails
  • When a bug occurs in production or locally
  • When a response, state, rendering, or query result differs from expectations
  • When investigating performance degradation, timeouts, race conditions, or intermittent failures
  • When something breaks again after being fixed at least once

The following excuses are not accepted:

  • "It looks simple, I'll just fix it directly"
  • "No time, let's patch it and move on"
  • "It's probably this, let me just change it"

Required Output Contract

When using this skill, the following items must be locked internally:

  1. Problem statement: Define what went wrong in one sentence
  2. Reproduction path: How to reproduce or observe the failure
  3. Evidence: Actual observed results
  4. Root-cause hypothesis: Why you believe this problem occurs
  5. Failing guard: One of: failing test, reproduction script, or log verification
  6. Fix: A single fix targeting the root cause
  7. Verification: Reproduction path and related test results after the fix

If any of these seven items are missing, the work is not done.

Workflow

Follow the steps below in order.

Phase 1. Define The Problem

First, condense the problem.

  • What is the expected behavior
  • What is the observed behavior
  • What is the scope of impact
  • Is it always reproducible or intermittent

Output format:

Problem: <expected> but got <actual> under <condition>

Do not mix symptoms with speculation.

Good: Product detail API returns 500 when brand is null.
Bad: Serializer is broken because brand mapping seems wrong.

Phase 2. Reproduce Or Instrument

You must be able to see the failure again before fixing it.

Priority:

  1. Reproduce with existing tests
  2. Reproduce with a minimal integration test
  3. Reproduce with a unit test
  4. Observe via reproduction script or command
  5. Observe after adding logs/instrumentation

Rules:

  • Make the reproduction path as small as possible.
  • Even if the bug is only visible in the UI, prefer reproducing at a lower layer if possible.
  • For intermittent failures, increase observability by adding logs, capturing inputs, timestamps, and concurrency conditions.
  • If reproduction fails, do not proceed to fixing — increase observability instead.

What to do when reproduction is not possible:

  1. Record input values
  2. Check for environment differences
  3. Check recent changes
  4. Add logs at boundary points
  5. Search for smaller conditions that produce the same symptom

Phase 3. Gather Evidence

Collect only observable facts.

Always check:

  • Full error messages and stack traces
  • Failing input values
  • Recently changed files or commits
  • Environment/configuration differences
  • Call paths and data flow

For multi-component problems, check at each boundary.

Examples:

  • controller -> application -> service -> repository
  • client -> API -> external service
  • scheduler -> batch service -> database

At each boundary, check:

  • What came in
  • What went out
  • What values were transformed
  • Under what conditions it breaks

Do not fix until you have pinpointed the problem location.

Phase 4. Isolate Root Cause

Formulate exactly one cause candidate.

Format:

Hypothesis: <root cause> because <evidence>

Qualities of a good hypothesis:

  • Points to a single cause
  • Connects to observed evidence
  • Can be disproved with a small experiment

Examples of bad hypotheses:

  • "There seems to be some async issue somewhere"
  • "The whole serialization layer seems unstable"

Trace the cause back to the source. If the error appears deep in the stack, trace the origin of the input, not the symptom.

Phase 5. Lock The Failure

Lock the failure before fixing.

Priority:

  1. Automated failing test
  2. Add a regression case to existing tests
  3. Minimal reproduction script
  4. Temporary verification via logs/assertions

Rules:

  • Create an automated test whenever possible.
  • It must fail before the fix.
  • It must pass on the same path after the fix.
  • The test name must reveal what broke.

If an automated test is feasible, use the test-driven-development skill alongside this one.

Phase 6. Implement A Single Fix

The fix addresses only one hypothesis.

Allowed:

  • Minimal code change that directly addresses the cause
  • Minimal supporting changes needed for verification

Forbidden:

  • Bundling multiple seemingly related fixes
  • Combining refactoring with the fix
  • Sneaking in formatting/cleanup/renaming
  • Adding null-guards without evidence
  • Swallowing exceptions

If the fix fails, immediately return to Phase 1 or Phase 3. The previous hypothesis was wrong.

Phase 7. Verify And Close

All of the following must be satisfied before closing:

  1. The original reproduction path no longer fails.
  2. The new failing guard passes.
  3. Related tests are not broken.
  4. You can explain that the fix blocks the cause, not the symptom.

For intermittent bugs, a single pass is not enough. Verification under repeated runs or varying conditions is required.

Stop Conditions

Stop and reframe in the following situations.

1. Reproduction Failed

If reproduction fails after multiple attempts:

  • Check if observability is insufficient.
  • Check if there are environment differences.
  • Check if the problem definition is wrong.

Changing code without reproduction is forbidden.

2. Three Failed Fixes

If three consecutive fixes miss the mark, conclude:

  • The current understanding is wrong, or
  • The problem is likely structural — shared state, boundary design, responsibility separation

From this point, a "fourth patch" is not the answer — a structural discussion is needed.

3. No Failing Guard

If you cannot create a failing test or equivalent reproduction mechanism, do not declare completion. At minimum, leave behind the reproduction command and observed results.

Red Flags

If any of the following thoughts arise, stop immediately and return to an earlier phase.

  • "I'll just change this one line and it should work"
  • "I'll check the logs later, let me fix it first"
  • "I'll add the test later"
  • "Let me fix this and that together at once"
  • "The error is gone, so I don't need to know the cause"

Minimal Checklist

Use this checklist for self-verification during execution.

  • Defined the problem in one sentence
  • Reproduced or made the failure observable
  • Collected evidence
  • Created a single root-cause hypothesis
  • Created a failing guard before fixing
  • Applied only a single fix
  • Verified via the same path after fixing

Completion Standard

The completion criterion for this skill is not "the code changed."

Completion criteria:

  • The problem definition is clear
  • The failure was locked before fixing
  • The fix is connected to the root cause
  • Verification results remain

Without these four, debugging is not finished.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

32.7%
按下载量换算81

Codex

32.08%
按下载量换算80

Cursor

17.89%
按下载量换算44

Gemini CLI

10.21%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills