Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问clear审计未展示

error-detective错误侦探

Agent Skill

error-detective 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

210

周安装

9

GitHub Stars

公开资料未说明

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add autumnsgrove/claudeskills --skill "error-detective"

简介

用于记录任务执行中的错误、用户纠正和经验总结,持续优化 Agent 表现。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中沉淀最佳实践和问题模式。
  • 通过 npx skills add 命令从 GitHub 安装,需指定技能名称。
  • 调用前应确认日志存储位置和隐私保护策略。
  • 建议查阅原始仓库了解错误分类和反馈闭环机制。

SKILL.md

Error Detective - Systematic Debugging and Error Resolution

Overview

Error Detective is a comprehensive debugging skill that applies systematic methodologies to identify, analyze, and resolve errors efficiently. Using the TRACE framework and structured analysis techniques, this skill guides you through debugging from initial error discovery to verified resolution.

Core Capabilities

Stack Trace Analysis

  • Parse and interpret stack traces across multiple languages
  • Identify root cause vs. symptom errors
  • Extract relevant file paths and line numbers
  • Understand call chains and error propagation

Error Pattern Recognition

  • Categorize errors by type (syntax, runtime, logic, integration)
  • Identify common error patterns and anti-patterns
  • Recognize framework-specific errors
  • Map errors to likely root causes

Root Cause Analysis

  • Distinguish between symptoms and underlying issues
  • Follow error chains to original source
  • Identify environmental vs. code issues
  • Detect configuration and dependency problems

Debugging Workflow Management

  • Structured investigation process
  • Hypothesis generation and testing
  • Iterative refinement of understanding
  • Documentation of findings and solutions

The TRACE Framework

TRACE is a systematic five-step approach to debugging any error:

T - Trace the Error

Objective: Capture complete error information and context

  1. Collect the full error message

- Complete stack trace (not just first few lines) - Error type and message - Timestamp and occurrence frequency - Environment where error occurred

  1. Identify error location

- Exact file and line number - Function or method where error occurred - Code context (surrounding lines) - Call stack from entry point to error

  1. Gather reproduction steps

- Minimal steps to reproduce - Input data or parameters used - Expected vs. actual behavior - Consistency of reproduction (always, intermittent, rare)

R - Read the Error Message

Objective: Extract all information from the error itself

  1. Parse error components

- Error type/class (TypeError, ValueError, etc.) - Error message content - Suggested fixes (if provided) - Related errors or warnings

  1. Understand error semantics

- What the error type means in this language/framework - What conditions trigger this error - What the error message is specifically telling you - Any error codes or status codes

  1. Identify error category

- Syntax error (code won't parse) - Runtime error (code crashes during execution) - Logic error (wrong results, no crash) - Integration error (external system failure) - Performance error (timeout, resource exhaustion)

A - Analyze the Context

Objective: Understand the broader context around the error

  1. Code analysis

- Review the failing line and surrounding code - Check recent changes to this code - Examine function/method signature and usage - Review related code that calls or is called by failing code

  1. Data analysis

- Inspect input values at point of failure - Check data types and structures - Verify data meets expected format/constraints - Identify edge cases or unexpected values

  1. Environment analysis

- Check dependencies and versions - Review configuration files - Verify environment variables - Confirm required resources are available (files, network, memory)

  1. State analysis

- Application state at time of error - Previous operations that led to this state - Shared state or global variables involved - Database or external system state

C - Check for Root Cause

Objective: Identify the underlying issue, not just symptoms

  1. Follow the error chain

- Start at bottom of stack trace (first error) - Work up to find originating cause - Distinguish between error origin and error handlers - Identify wrapped or re-thrown errors

  1. Test hypotheses

- Generate specific, testable hypotheses - Isolate variables (change one thing at a time) - Use logging/debugging tools to verify assumptions - Document which hypotheses are confirmed or rejected

  1. Common root causes

- Null/undefined values: Missing initialization or validation - Type mismatches: Incorrect data type passed or returned - Off-by-one errors: Array/loop boundary issues - Race conditions: Timing-dependent failures - Resource exhaustion: Memory, disk, connections depleted - Configuration errors: Wrong settings or missing config - Dependency issues: Version conflicts or missing libraries - Permission errors: Insufficient access rights - Network errors: Connectivity, timeout, DNS issues - Data corruption: Invalid or unexpected data format

E - Execute the Fix

Objective: Implement and verify the solution

  1. Design the fix

- Address root cause, not symptoms - Consider side effects and edge cases - Plan for backward compatibility if needed - Choose most maintainable solution

  1. Implement carefully

- Make minimal, targeted changes - Add validation and error handling - Include logging for future debugging - Document the fix and reasoning

  1. Verify thoroughly

- Confirm original error is resolved - Test with reproduction steps - Test edge cases and related functionality - Verify no new errors introduced

  1. Document and prevent

- Document what caused the error - Document the solution and why it works - Add tests to prevent regression - Update documentation or add warnings if needed

Debugging Workflow

Initial Assessment (5 minutes)

1. Read complete error message
2. Identify error type and severity
3. Check if error is reproducible
4. Assess impact (blocking, degraded, cosmetic)
5. Decide investigation priority

Deep Investigation (15-30 minutes)

1. Apply TRACE framework systematically
2. Use debugging tools (see scripts/debug_helper.py)
3. Generate and test hypotheses
4. Document findings as you go
5. Narrow down to root cause

Solution Implementation (varies)

1. Design fix addressing root cause
2. Implement with proper error handling
3. Add logging and validation
4. Test thoroughly
5. Document solution

Verification and Prevention (10 minutes)

1. Verify fix with original reproduction steps
2. Test related functionality
3. Add regression tests
4. Update documentation
5. Deploy and monitor

Common Error Patterns by Language

Python

AttributeError: 'NoneType' has no attribute 'X'

  • Root cause: Variable is None when expecting object
  • Check: Initialization, function return values, API responses
  • Fix: Add null checks, ensure proper initialization

KeyError: 'key_name'

  • Root cause: Dictionary missing expected key
  • Check: Data source, parsing logic, key spelling
  • Fix: Use.get() with default, validate data structure

ImportError / ModuleNotFoundError

  • Root cause: Module not installed or not in path
  • Check: requirements.txt, virtual environment, PYTHONPATH
  • Fix: Install missing package, fix import path

IndentationError

  • Root cause: Inconsistent spacing (tabs vs spaces)
  • Check: Editor settings, copied code
  • Fix: Standardize to spaces (PEP 8), use linter

JavaScript/TypeScript

TypeError: Cannot read property 'X' of undefined

  • Root cause: Accessing property on undefined object
  • Check: Object initialization, async timing, API responses
  • Fix: Optional chaining (?.operator), null checks

ReferenceError: X is not defined

  • Root cause: Variable used before declaration or out of scope
  • Check: Variable declaration, scope, hoisting issues
  • Fix: Declare variable, fix scope, check imports

Promise rejection / Uncaught (in promise)

  • Root cause: Async operation failed without catch handler
  • Check: API calls, file operations, async/await usage
  • Fix: Add.catch() or try/catch with await

SyntaxError: Unexpected token

  • Root cause: Invalid syntax, often from parsing JSON or code
  • Check: JSON structure, bracket matching, semicolons
  • Fix: Validate JSON, fix syntax, check for copy/paste errors

Java

NullPointerException

  • Root cause: Method called on null object reference
  • Check: Object initialization, method return values
  • Fix: Add null checks, use Optional, ensure initialization

ClassNotFoundException

  • Root cause: Class not found in classpath
  • Check: Dependencies, build configuration, package structure
  • Fix: Add dependency, fix classpath, check package/class names

ConcurrentModificationException

  • Root cause: Collection modified during iteration
  • Check: Nested loops, multi-threading, iterator usage
  • Fix: Use iterator.remove(), CopyOnWriteArrayList, or synchronization

Error Severity Classification

Critical (Fix Immediately)

  • Application crashes or won't start
  • Data loss or corruption
  • Security vulnerabilities
  • Production outages
  • Payment or transaction failures

High (Fix Soon)

  • Major features broken
  • Degraded performance affecting users
  • Error affects multiple users
  • Workarounds are complex

Medium (Schedule Fix)

  • Minor features broken
  • Cosmetic issues with impact
  • Errors with easy workarounds
  • Edge case failures

Low (Backlog)

  • Cosmetic issues
  • Minor improvements
  • Rare edge cases
  • Non-critical warnings

Debugging Tools and Techniques

Logging Best Practices

import logging

# Configure structured logging
logging.basicConfig(
    level=logging.DEBUG,
    format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)

# Log with context
logger = logging.getLogger(__name__)
logger.debug(f"Processing item: {item_id}, user: {user_id}")
logger.error(f"Failed to process: {error}", exc_info=True)

Strategic Breakpoints

  1. At error location: Catch exact state when error occurs
  2. Before error: Check inputs and preconditions
  3. After error: See how error propagates
  4. At decision points: Verify logic branches
  5. In loops: Check iteration variables

Print Debugging (Strategic)

# Add contextual debug prints
print(f"DEBUG: function_name called with {param1=}, {param2=}")
print(f"DEBUG: variable state before operation: {var=}")
print(f"DEBUG: condition check: {condition=}, result: {result=}")

Binary Search Debugging

When error location is unclear:

  1. Add checkpoint in middle of code path
  2. Determine if error before or after checkpoint
  3. Repeat in remaining half
  4. Converge on error location quickly

Rubber Duck Debugging

Explain code line-by-line to someone (or something):

  1. Forces you to examine assumptions
  2. Often reveals errors during explanation
  3. Clarifies complex logic
  4. Identifies knowledge gaps

Using the Debug Helper Script

The scripts/debug_helper.py utility provides automated assistance:

# Parse stack trace from file
python scripts/debug_helper.py parse-trace error.log

# Extract error patterns
python scripts/debug_helper.py analyze-log application.log

# Start debug session (creates log)
python scripts/debug_helper.py session start "Login error investigation"

# Add notes to session
python scripts/debug_helper.py session note "Tested with different users - same error"

# Close session with solution
python scripts/debug_helper.py session close "Fixed: Added null check for user.profile"

Best Practices

Do's

  • Read error messages completely: Don't skip details
  • Reproduce consistently: Ensure reliable reproduction before debugging
  • Change one thing at a time: Isolate what fixes the problem
  • Document as you go: Record hypotheses, tests, findings
  • Use version control: Commit before debugging, can revert if needed
  • Add tests: Prevent regression after fixing
  • Fix root cause: Don't just patch symptoms
  • Share knowledge: Document solutions for team

Don'ts

  • Don't assume: Verify your assumptions with data
  • Don't skip reading errors: Error messages contain crucial information
  • Don't make multiple changes: Can't tell what fixed it
  • Don't delete code impulsively: Comment out first, understand why it was there
  • Don't ignore warnings: Today's warning is tomorrow's error
  • Don't fix without understanding: May break something else
  • Don't forget to test: Verify fix works and doesn't introduce new issues

Common Debugging Scenarios

Scenario 1: "It Worked Yesterday"

Approach:

  1. Check recent changes (git diff, git log)
  2. Review dependency updates
  3. Check environment changes
  4. Look for time-dependent logic
  5. Compare configurations between environments

Common Causes:

  • Recent code changes
  • Updated dependencies
  • Configuration changes
  • Database schema changes
  • External API changes
  • Certificate expiration

Scenario 2: "Works on My Machine"

Approach:

  1. Compare environments (OS, dependencies, configs)
  2. Check environment variables
  3. Verify file paths and permissions
  4. Compare data between environments
  5. Look for hardcoded assumptions

Common Causes:

  • Different dependency versions
  • Missing environment variables
  • Different file paths
  • Database state differences
  • Operating system differences
  • Missing configuration files

Scenario 3: "Intermittent Failures"

Approach:

  1. Identify failure pattern (timing, frequency, conditions)
  2. Look for race conditions
  3. Check resource availability
  4. Review concurrent operations
  5. Add extensive logging
  6. Increase reproduction attempts

Common Causes:

  • Race conditions
  • Memory leaks
  • External service instability
  • Network issues
  • Timing-dependent logic
  • Resource exhaustion

Scenario 4: "Error in Production Only"

Approach:

  1. Check production-specific configuration
  2. Review production data characteristics
  3. Check production load/scale
  4. Examine production dependencies
  5. Review security/permission settings

Common Causes:

  • Production data edge cases
  • Scale/load issues
  • Production-specific configuration
  • Different security policies
  • Firewall or network restrictions
  • Production-only integrations

Advanced Techniques

Bisect Debugging (Git)

Find which commit introduced a bug:

git bisect start
git bisect bad                 # Current version has bug
git bisect good v1.2.0        # Version 1.2.0 was working
# Git checks out middle commit
# Test and mark as good/bad
git bisect good/bad
# Repeat until git identifies culprit commit
git bisect reset

Heisenbug (Observer Effect)

Errors that disappear when debugging:

Strategies:

  • Add logging without breakpoints
  • Use production-like environment for debugging
  • Review timing and concurrency issues
  • Check for initialization/timing dependencies
  • Use non-intrusive monitoring

Memory Profiling

For memory leaks and performance:

# Python memory profiling
import tracemalloc

tracemalloc.start()
# ... run code ...
snapshot = tracemalloc.take_snapshot()
top_stats = snapshot.statistics('lineno')

for stat in top_stats[:10]:
    print(stat)

Network Debugging

For API and integration errors:

Tools:

  • Browser DevTools Network tab
  • curl with verbose flag (-v)
  • Postman for API testing
  • Wireshark for packet inspection
  • Network proxy (Charles, Fiddler)

Check:

  • Request/response headers
  • Status codes
  • Request/response body
  • Timing (latency, timeout)
  • SSL/TLS issues

Quick Reference

TRACE Framework Quick Checklist

☐ T - TRACE
  ☐ Full error message captured
  ☐ Stack trace collected
  ☐ Reproduction steps documented
  ☐ Environment identified

☐ R - READ
  ☐ Error type identified
  ☐ Error message analyzed
  ☐ Error category determined
  ☐ Related errors checked

☐ A - ANALYZE
  ☐ Code reviewed
  ☐ Data inspected
  ☐ Environment verified
  ☐ State examined

☐ C - CHECK
  ☐ Error chain followed
  ☐ Hypotheses tested
  ☐ Root cause identified
  ☐ Assumptions verified

☐ E - EXECUTE
  ☐ Fix designed
  ☐ Fix implemented
  ☐ Fix verified
  ☐ Prevention measures added

Error Priority Matrix

Impact →     Low        Medium       High        Critical
Frequency ↓
High         Medium     High         Critical    Critical
Medium       Low        Medium       High        Critical
Low          Low        Low          Medium      High
Rare         Backlog    Low          Medium      High

Additional Resources

Examples

  • examples/debugging_workflow.md - Step-by-step debugging process examples
  • examples/common_errors.md - Catalog of frequent error patterns and solutions
  • examples/stack_traces.txt - Annotated stack trace examples with analysis

Scripts

  • scripts/debug_helper.py - Python debugging utilities for trace parsing and session management

Further Learning

  • Language-specific debugging documentation
  • Framework error handling guides
  • Profiling and performance analysis tools
  • Testing and quality assurance practices

Remember: Debugging is detective work. Be systematic, be patient, and let the evidence guide you to the truth. Every error message is a clue waiting to be understood.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

windsurf

28.77%
按下载量换算21

OpenCode

22.62%
按下载量换算17

weavefox

17.31%
按下载量换算13

Codex

10.76%
按下载量换算8

Claude Code

6.6%
按下载量换算5

Antigravity

3.33%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills