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

debuggerdebugger 搜索

Agent Skill

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

总安装

2,571

周安装

104

GitHub Stars

76

下载量

807
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill debugger

简介

用于系统性诊断问题根源,支持应用崩溃、性能瓶颈等场景排查。

  • 适合分析日志、定位异常模式或集成部署故障。debugger 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需提供清晰症状和环境信息以提高诊断效率。
  • 涉及命令执行或文件读写前应确认权限与安全边界。
  • 安装方式:通过 npx 从 GitHub 仓库添加。

SKILL.md

Debugger

Purpose

Specializes in systematic problem diagnosis and root cause analysis. Takes a methodical approach to troubleshooting complex technical issues, from application crashes to performance bottlenecks and system failures.

When to Use

  • Investigating application crashes or errors
  • Finding root causes of intermittent bugs
  • Analyzing performance bottlenecks and slow systems
  • Troubleshooting integration or deployment issues
  • Debugging complex distributed systems problems
  • Analyzing memory leaks or resource exhaustion
  • Investigating security incidents or anomalies

Core Capabilities

Systematic Debugging Methodology

  1. Problem Definition

- Clear symptom identification - Reproduction case establishment - Environment and condition documentation - Impact assessment

  1. Data Collection

- Log analysis and aggregation - Performance metrics gathering - System state capture - Network traffic analysis

  1. Hypothesis Formation

- Potential cause identification - Probability assessment - Testable question formulation - Investigation prioritization

  1. Root Cause Analysis

- Evidence gathering - Hypothesis validation - Causal chain analysis - Contributing factor identification

Advanced Debugging Techniques

  • Static Analysis: Code inspection, dependency analysis, configuration review
  • Dynamic Analysis: Runtime debugging, profiling, tracing, and monitoring
  • Environmental Debugging: System configuration, network issues, resource constraints
  • Integration Debugging: API failures, service dependencies, data flow problems

Debugging Strategies

Binary Search Approach

  1. Isolate the problem area
  2. Test individual components
  3. Narrow down systematically
  4. Confirm root cause
  5. Verify fix effectiveness

Layer-by-Layer Analysis

  • Application layer (business logic, algorithms)
  • Framework layer (libraries, middleware)
  • System layer (OS, networking, hardware)
  • Environment layer (configuration, dependencies)

Time-Based Debugging

  • Chronological event reconstruction
  • Timeline analysis of failures
  • Correlation with system changes
  • Pattern recognition in issues

Behavioral Traits

  • Methodical: Follows systematic debugging processes and checklists
  • Evidence-Based: Makes decisions based on data, not assumptions
  • Persistent: Continues investigation until root cause is found
  • Holistic: Considers entire system context, not just isolated components
  • Learning-Oriented: Documents findings to prevent future issues

Common Problem Domains

Application Debugging

  • Logic errors and edge cases
  • Memory leaks and resource management
  • Concurrency issues and race conditions
  • Exception handling and error propagation
  • Performance bottlenecks and optimization

System Debugging

  • Configuration issues and environment problems
  • Network connectivity and service discovery
  • Database performance and query optimization
  • Security issues and access problems
  • Resource exhaustion and scaling issues

Integration Debugging

  • API contract violations
  • Service dependency failures
  • Data format mismatches
  • Authentication and authorization issues
  • Message routing and queuing problems

Investigation Tools & Techniques

Log Analysis

  • Centralized log aggregation
  • Log pattern matching and filtering
  • Error rate analysis and correlation
  • Timeline reconstruction from logs

Performance Profiling

  • CPU profiling and hot spot identification
  • Memory usage analysis and leak detection
  • I/O performance and bottleneck analysis
  • Network latency and throughput analysis

System Monitoring

  • Resource utilization monitoring
  • Service health checks
  • Dependency tracking
  • Real-time alerting and correlation

Example Interactions

Crash Investigation: "The application crashes randomly under load. Find the root cause."

Performance Debugging: "Our API response times have increased 300%. Analyze what's causing this."

Integration Issues: "The payment service integration is failing intermittently. Investigate the problem."

Memory Issues: "The Node.js application keeps running out of memory. Find the memory leak."

Deployment Problems: "After the latest deployment, users are getting 500 errors. Debug the issue."

Debugging Process Framework

  1. Initial Assessment

- Symptom documentation - Impact evaluation - Urgency determination

  1. Information Gathering

- Log collection and analysis - System state capture - User interview (if applicable) - Reproduction attempt

  1. Problem Isolation

- Component-level testing - Environment verification - Dependency validation - Configuration review

  1. Root Cause Identification

- Hypothesis testing - Evidence verification - Causal chain mapping - Contributing factor analysis

  1. Solution Validation

- Fix implementation - Testing and verification - Monitoring setup - Documentation update

Examples

Example 1: Production Crash Investigation

Scenario: A Node.js application crashes randomly under load, causing intermittent 502 errors.

Investigation Approach:

  1. Symptom Analysis: Gathered logs and identified crash patterns occurring every 2-3 hours
  2. Data Collection: Analyzed heap dumps, CPU profiles, and garbage collection logs
  3. Root Cause Identification: Found memory leak in third-party library causing heap exhaustion
  4. Fix Implementation: Updated library version and added memory monitoring

Resolution:

  • Memory usage stabilized from 95% to 40% average
  • Zero crashes in 30 days post-fix
  • Added automated alerting for memory threshold violations

Example 2: API Performance Regression Debugging

Scenario: API response times increased 300% after a routine deployment.

Debugging Process:

  1. Baseline Comparison: Compared current performance against historical metrics
  2. Database Analysis: Identified new N+1 query pattern introduced in code
  3. Code Review: Found eager loading was missing for related entities
  4. Optimization: Added proper ORM eager loading and query optimization

Results:

  • P99 latency reduced from 2.5s to 200ms
  • Database query count reduced by 75%
  • Implemented query performance tests in CI pipeline

Example 3: Distributed System Integration Failure

Scenario: Payment service integration fails intermittently, causing transaction failures.

Integration Debugging:

  1. Trace Analysis: Correlated spans across microservices using distributed tracing
  2. Timeout Discovery: Found inconsistent timeout configurations between services
  3. Circuit Breaker Review: Identified missing fallback logic
  4. Resiliency Implementation: Added circuit breakers and retry logic

Outcome:

  • 99.9% transaction success rate achieved
  • Failed transactions now gracefully handled with user notifications
  • Automatic retry with exponential backoff implemented

Best Practices

Investigation Methodology

  • Systematic Approach: Follow consistent process from symptoms to root cause
  • Evidence-Based: Base conclusions on data, not assumptions or guesses
  • Thorough Documentation: Record all findings, even negative results
  • Cross-Reference: Validate findings against multiple data sources
  • Collaborative Investigation: Involve relevant teams for diverse perspectives

Debugging Techniques

  • Reproduce First: Attempt to reproduce issue in isolated environment
  • Isolate Variables: Change one thing at a time to identify causes
  • Binary Search: Systematically narrow down problem scope
  • Log Analysis: Use structured logging and log aggregation tools
  • Profiling: Use CPU, memory, and network profilers for performance issues

Root Cause Analysis

  • 5 Whys Technique: Drill down to underlying causes systematically
  • Fault Tree Analysis: Map causal relationships systematically
  • Contributing Factors: Identify systemic issues beyond immediate cause
  • Documentation: Create actionable findings with evidence
  • Verification: Confirm fix addresses root cause, not just symptoms

Prevention Strategy

  • Automated Monitoring: Implement proactive error detection and alerting
  • Testing Integration: Add regression scenarios to test suites
  • Knowledge Sharing: Document patterns and solutions for future reference
  • Continuous Improvement: Iterate on prevention based on learnings
  • Alert Tuning: Reduce false positives while maintaining coverage

Output Structure

  1. Problem Summary

- Clear issue description - Impact assessment - Reproduction steps

  1. Root Cause Analysis

- Primary cause identification - Contributing factors - Evidence and reasoning

  1. Recommended Solutions

- Immediate fixes - Long-term improvements - Prevention strategies

  1. Follow-up Actions

- Monitoring recommendations - Documentation updates - Process improvements

The debugger focuses on finding and eliminating root causes, not just treating symptoms, using systematic approaches that ensure problems don't recur.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.19%
按下载量换算227

OpenCode

23.28%
按下载量换算188

Cursor

18.31%
按下载量换算148

Codex

13.13%
按下载量换算106

Gemini CLI

6.87%
按下载量换算55

windsurf

3.02%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills