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

code-debug-skill代码调试技能

Agent Skill

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

总安装

309

周安装

13

GitHub Stars

公开资料未说明

下载量

108
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/abekdwight/code-debug-skills --skill code-debug-skill

简介

code-debug-skill 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 它适用于 Bug 调查场景,强调将事实与推断分离,保持多种假设并按可能性排序,优先获取决定性信号而非依赖叙事。
  • 使用时需结合来源仓库和原始 README 核验具体用法,建议确认权限范围和维护状态后再安装。
  • 安装前应检查是否会触发联网、命令执行或文件读写操作,避免在不确定环境中运行调试指令。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Bug Investigation Skill

Investigation mindset (how to think)

  • Treat facts as primary. Separate observations from inferences at all times.
  • Keep multiple competing hypotheses and rank them by likelihood and impact.
  • For each hypothesis, define:

- prediction (what must be observed if true), - falsifier (what would disprove it), - required instrumentation (what to measure or log).

  • Prefer decisive signals over narratives. Do not ask for reproduction without a plan to capture evidence.
  • Narrow with comparisons (fail vs pass) and a binary-search style approach when possible.
  • Add debug instrumentation generously to capture decisive signals in a single reproduction run.

- Assume each reproduction is costly; instrument enough to narrow root cause without requiring additional runs.

  • Never fix code speculatively. Confirm root cause with evidence before any production code change.

Tool selection (what to use)

  • Primary tool for new instrumentation: local HTTP ingest logger (debugsk).

- AI MUST start the server via npx debugsk@latest server start --json before instrumentation. - Use the JSON output to copy the snippet and endpoint. - The server accepts CORS preflight (OPTIONS), so the default JSON snippet works across origins.

  • AI MUST auto-generate sessionId/runId and embed them directly into instrumentation code.

- Do NOT ask the user to set these via console.

  • If reproduction is possible, prioritize logs/metrics that directly test predictions.
  • If reproduction is not possible, pivot to existing signals:

- logs/metrics/traces, config diffs, data snapshots, dumps, and deterministic probes.

  • If native signals do not answer the question, prefer debugsk for new observations.

- This avoids contaminating native logging and keeps investigation logs isolated.

  • Use native logs as reference in addition to new instrumentation.

Operating principles

  • Separate facts (observed) from hypotheses (inferred).
  • Maintain multiple competing hypotheses until evidence eliminates them.
  • For each hypothesis, define predictions, falsifiers, and required instrumentation.
  • AI performs all automatable tasks: server start, ID generation, log collection, analysis.
  • User performs ONLY non-automatable UI actions (clicks, form inputs, etc.).
  • Do not ask for reproduction until an instrumentation plan is ready.

Core loop

  1. Clarify the bug precisely:

- Environment (local/staging/production), version/commit, frequency, impact. - Minimal reproduction steps, expected vs actual, errors and timestamps.

  1. Identify candidate code paths:

- Search by endpoint/route/feature/config key/error text. - Map request → handler → data/dependencies.

  1. Generate at least three hypotheses:

- Client/input, server logic, data/state, concurrency, config, dependency, resource.

  1. Start debug server and generate IDs:

- Run npx debugsk@latest server start --json to get endpoint. - Auto-generate sessionId/runId and embed in instrumentation code.

  1. Instrument to validate hypotheses:

- Add logs/metrics at decision points and boundaries. - Include auto-generated correlation keys (no user action required).

  1. Execute controlled reproduction:

- AI starts servers if needed. - Provide ONLY UI steps to the user (click, drag, submit, etc.). - NO console commands, NO file operations.

  1. Collect and analyze logs:

- AI reads log files directly using Read/Grep tools. - Compare successful vs failing runs. - Prefer binary search-style narrowing when possible.

  1. Iterate until root cause is confirmed.

Instrumentation policy

  • Prefer a local HTTP ingest logger when available; otherwise integrate with existing logging.
  • If native signals are insufficient, prioritize debugsk over adding more native logs.
  • Use native logs as reference alongside the added instrumentation.
  • Logs must never throw, avoid secrets/PII, and be easy to remove.
  • Record location, message, timestamp, and correlation fields in every event.
  • YOU MUST ALWAYS include all log fields (timestamp, message, sessionId, runId, hypothesisId, location) in every log event. Never omit any field.
  • Do not guard instrumentation behind environment flags. Write logs for the investigation, then remove them after completion.
  • AI starts the debug server, generates IDs, inserts instrumentation, and collects/analyzes logs.
  • User performs ONLY UI actions (clicks, form inputs, etc.). NO console commands, NO file operations.

User interaction rules

  • MINIMIZE user burden. AI performs all automatable tasks:

- Start/stop debug server - Generate and embed sessionId/runId - Read and analyze log files - Determine if tunneling is needed (inspect environment, don't ask)

  • User performs ONLY non-automatable UI actions:

- Click buttons, drag elements, fill forms - Navigate screens - Observe visible behavior

  • When reproduction is required, provide ONLY UI steps. NO console commands, NO file operations.
  • If reproduction is not possible, pivot to existing logs, metrics, traces, config diffs, or safe probes.
  • For external/mobile access, AI determines tunneling need based on environment inspection:

- If remote/staging: check existing tunnels or propose specific setup - Do NOT ask open-ended "should we use tunnel?" questions

Cleanup policy

  • When the user confirms the issue is resolved or the investigation is closed, stop the debug server and delete all investigation logs (e.g., .logs/).
  • Do not use git checkout, git clean, or other bulk git cleanup for log deletion. Remove files explicitly and safely.
  • If deletion could affect unrelated files, confirm the exact paths before removal.

Reporting format

Use the template in assets/report-template.md. Headings are bilingual (English / Japanese); write content in the user's language.

References

  • Use references/logging-schema.md when adding or validating instrumentation.
  • Use references/hypothesis-template.md to structure hypotheses and predictions.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

33.53%
按下载量换算36

Codex

32.84%
按下载量换算35

Cursor

19.98%
按下载量换算22

Gemini CLI

9.2%
按下载量换算10

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

未通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills