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

shared-bug-investigation共享错误调查

Agent Skill

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

总安装

449

周安装

18

GitHub Stars

3

下载量

145
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/desquared/agents-rules-skills --skill shared-bug-investigation

简介

shared-bug-investigation 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • 当前无额外底部简介内容,可参考来源仓库进一步了解功能细节。

SKILL.md

Bug Investigation - Scientific Method

Apply scientific methodology to investigate and resolve software bugs systematically.

Scientific Method Process

  1. Observe - Gather data about the problem
  2. Hypothesize - Form testable explanations (ranked by likelihood)
  3. Experiment - Test hypotheses with controlled changes
  4. Analyze - Interpret results objectively
  5. Conclude - Identify root cause and validate fix

Core Principles

  • Context first - Understand the project before investigating
  • Hypothesis-driven - Never jump to solutions without forming testable hypotheses
  • Isolate variables - Change one thing at a time
  • Reproduce reliably - Can't fix what you can't reproduce
  • Root causes over symptoms - Dig deeper than surface fixes
  • Validate rigorously - Confirm fix resolves issue without regressions

Investigation Workflow

Phase 1: Project Context (2-5 min)

Discover before investigating:

  • Language & version (Python 3.11, Java 17, Go 1.21, etc.)
  • Build system (Gradle, npm, Cargo, Make, etc.)
  • Key dependencies & frameworks
  • Architecture pattern (MVC, microservices, etc.)
  • Testing setup

Quick discovery:

# Find package managers
view package.json / requirements.txt / Cargo.toml / pom.xml

# Check config files
view .env / config.yml / settings.py

# Identify entry points
view main.* / index.* / app.*

Output: One-line context

Python 3.11, Flask API, PostgreSQL, pytest, Docker

Phase 2: Problem Definition

Gather:

  • Error messages (full text, codes)
  • Stack traces / logs
  • Steps to reproduce
  • Expected vs actual behavior
  • Environment (OS, version, config)
  • Reproducibility (always/sometimes/rare)

Document:

Bug: [Short description]
Reproduces: [Always/Sometimes/Unable]
Error: [Key error message]
Steps:
1. [Action 1]
2. [Action 2]
3. [Failure occurs]
Expected: [What should happen]
Actual: [What happens]

Phase 3: Hypotheses (Ranked)

Phase 3: Hypotheses (Ranked)

Form 2-4 testable hypotheses, ranked by likelihood.

H1: [Most likely cause]

  • Evidence for: [Why this is likely]
  • Test: [How to prove/disprove]
  • If true: [Expected result]
  • If false: [Expected result]

H2: [Alternative cause]

  • Evidence for: [Supporting observations]
  • Test: [Falsifiable experiment]

Common categories:

  • Logic errors (off-by-one, wrong operator, incorrect condition)
  • State issues (race condition, uninitialized, stale data)
  • Type/data (null/nil, type mismatch, parsing error)
  • Concurrency (data race, deadlock, thread safety)
  • Integration (API mismatch, version incompatibility)
  • Environment (config, platform-specific, resource limits)

Phase 4: Experiment

For each hypothesis:

Test H1: [Hypothesis name]

  • Change: [One variable to modify]
  • Measure: [What to observe]
  • Method: [Specific steps]
  • Result: [Actual outcome]
  • Conclusion: [Validated/Invalidated]

Techniques:

  • Add logging at key points
  • Use debugger breakpoints
  • Binary search (remove half the code)
  • Minimal reproduction (strip to essentials)
  • Diff working vs broken states
  • Isolate components

Phase 5: Root Cause

Identified: [Clear statement of actual cause]

Evidence: [Chain from observation → hypothesis → validation]

Why it occurred:

  • Immediate: [Technical reason]
  • Contributing: [What enabled this]
  • Systemic: [Deeper issue if any]

Phase 6: Solution & Validation

Fix: [Specific changes to make]

Why this works: [Explain causal connection]

Validation:

  1. Reproduce bug (confirm failure)
  2. Apply fix
  3. Retest (confirm success)
  4. Test edge cases
  5. Run test suite (no regressions)
  6. Add test for this bug

Prevention:

  • [Test to add]
  • [Assertion to include]
  • [Pattern to avoid]

Investigation Techniques

Binary Search: Remove half the code, test if bug persists. Repeat on failing half until isolated.

Minimal Reproduction: Strip to <50 lines that reproduce issue. Removes noise.

Differential Testing: Compare working vs broken (commits, versions, configs).

Strategic Logging: Add prints at key decision points to trace execution flow.

Rubber Duck: Explain code line-by-line aloud. Often reveals logic errors.

Common Bug Patterns (Language-Agnostic)

Logic Errors:

  • Off-by-one: i < n vs i <= n
  • Wrong operator: && vs ||, == vs =
  • Negation errors: !condition logic flipped

State Issues:

  • Race conditions: concurrent access without synchronization
  • Uninitialized: using variable before setting value
  • Stale state: using outdated cached data

Type/Data:

  • Null/nil dereference
  • Type coercion errors
  • Integer overflow
  • Floating-point precision

Concurrency:

  • Deadlock: mutual waiting for locks
  • Data race: unsynchronized shared access
  • Thread safety: non-thread-safe code on multiple threads

Integration:

  • API contract mismatch
  • Version incompatibility
  • Missing dependencies
  • Incorrect configuration

Output Format

# Bug Investigation: [Name]

## Context
[One-line: Language, framework, architecture]

## Problem
Error: [Message]
Reproduces: [Always/Sometimes]
Steps: [1,2,3]

## Hypotheses
H1: [Most likely] - Test by [method]
H2: [Alternative] - Test by [method]

## Investigation
Tested H1: [Result - validated/invalidated]
[If needed] Tested H2: [Result]

## Root Cause
[One sentence explanation]
Evidence: [What confirmed it]

## Solution
Fix: [Specific change]
Why it works: [Explanation]
Validated: [Tested successfully]

## Prevention
- Test added: [Description]
- Warning signs: [What to watch for]

Quick Decision Tree

Symptom → Likely Category:

  • Intermittent failure → Concurrency/state
  • Always fails same way → Logic error
  • Null/nil crash → Type/data
  • Specific environment only → Configuration
  • Performance degradation → Resource/algorithm
  • After dependency update → Integration

Critical Reminders

  • Start with context discovery
  • Form hypotheses before coding
  • Change ONE variable at a time
  • Reproduce before fixing
  • Validate fix rigorously
  • Add regression test
  • Document root cause

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.66%
按下载量换算46

Claude

31.05%
按下载量换算45

Cursor

19.96%
按下载量换算29

Gemini CLI

9.36%
按下载量换算14

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills