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

debugging调试

Agent Skill

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

总安装

297

周安装

12

GitHub Stars

37

下载量

93
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/simhacker/moollm --skill debugging

简介

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

  • 它支持基于关键词或任务场景进行信息筛选,提升Agent在复杂查询中的效率。
  • 可通过npx skills add命令从GitHub仓库安装,具体用法需结合原始README进一步确认。
  • 安装前请核实权限范围、维护状态及是否涉及联网或文件操作。
  • debugging 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

🔧 Debugging Skill

"Hypothesize, test, learn, repeat."

Debug problems methodically. Track hypotheses, test systematically, converge on root causes.

Purpose

Debug problems methodically. Track hypotheses, document tests, record what you learn, and converge on root causes.

When to Use

  • Something isn't working as expected
  • Mysterious behavior needs explanation
  • Performance problems need diagnosis
  • "Works on my machine" situations

The Debugging Loop

OBSERVE → HYPOTHESIZE → TEST → LEARN → (repeat or) → FIX

Terminal States

  • FIX — Bug resolved
  • WONTFIX — Intentional behavior
  • DEFER — Not addressing now

Protocol

Observation Phase

Before guessing, gather facts:

observation:
  symptom: "What's the observable problem?"
  context: "When does it happen?"
  expected: "What should happen instead?"

  evidence:
    - "Error message (exact text)"
    - "Logs showing the issue"
    - "Steps to reproduce"

  constraints:
    - "What we know for sure"
    - "What we've already ruled out"

Hypothesis Tracking

hypothesis:
  id: "hyp-001"
  claim: "The bug is caused by X"
  confidence: "high|medium|low"

  if_true:
    - "We would expect to see..."
    - "Changing X should fix it"

  test:
    action: "What to try"
    expected: "What we expect if hypothesis is correct"

  result:
    status: "confirmed|refuted|inconclusive"
    observation: "What actually happened"
    learned: "What this tells us"

Test Documentation

test:
  id: "test-001"
  hypothesis: "hyp-001"
  action: "What we did"

  before:
    state: "System state before test"

  after:
    state: "System state after test"

  result: "confirmed|refuted|inconclusive"
  learned: "What we now know"

Schemas

Observation Schema

FieldRequiredPurpose
symptomObservable problem
expectedWhat should happen
error_messageExact error text
logsRelevant log entries
steps_to_reproduceHow to trigger
constraintsKnown facts
ruled_outEliminated possibilities

Hypothesis Schema

FieldRequiredPurpose
idUnique identifier
claimWhat you think is wrong
testHow to validate
confidencehigh/medium/low
if_trueExpected observations
resultTest outcome
learnedInsight gained

Test Schema

FieldRequiredPurpose
idUnique identifier
hypothesisWhich hypothesis
actionWhat was tried
resultconfirmed/refuted/inconclusive
beforeState before
afterState after
learnedInsight

Core Files

FilePurpose
DEBUG.ymlCurrent debugging session
HYPOTHESES.mdAll hypotheses and their status
TESTS.mdTest log
ROOT_CAUSE.mdFinal analysis

Commands

CommandAction
DEBUG [symptom]Start debugging session
OBSERVE [fact]Record observation
HYPOTHESIZE [claim]Propose hypothesis
TEST [action]Document test
LEARN [insight]Record what you learned
ROOT-CAUSE [explanation]Document root cause

The Scientific Method for Bugs

  1. Observe: What exactly is happening?
  2. Question: Why might this be happening?
  3. Hypothesize: Form testable explanation
  4. Predict: What would we see if hypothesis is true?
  5. Test: Try to confirm or refute
  6. Analyze: What did we learn?
  7. Iterate: New hypothesis or fix

Debugging Techniques

Binary Search

Narrow down where the bug lives. Use when the bug is somewhere in a large space.

technique: binary_search
steps:
  - "Find a known good state"
  - "Find a known bad state"
  - "Check the middle"
  - "Repeat until found"

Rubber Duck

Explain the problem in detail. Use when stuck and need fresh perspective. Write detailed observation in DEBUG.yml — forces you to articulate assumptions.

Minimal Reproduction

Simplify until bug is isolated. Use when complex system with unclear cause.

Git Bisect

Find the commit that introduced bug. Use when bug is a regression.

Print Debugging

Add logging to trace execution. Use when you need to understand flow.

Working Set

Always include in context:

  • DEBUG.yml
  • HYPOTHESES.md

Integration

DirectionSkillRelationship
play-learn-liftDebugging IS learning
session-logLog all debugging activities
research-notebookComplex bugs need research
honest-forgetCompress debugging wisdom
adventureDebugging IS adventure
roomDebug sessions are rooms
cardGit Goblin 🧌, Index Owl 🦉 companions

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.09%
按下载量换算32

Claude

29.82%
按下载量换算28

Cursor

19.15%
按下载量换算18

Gemini CLI

8.97%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/simhacker/moollm --skill debugging 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills