Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

edge-case-analyst边缘案例分析师

Agent Skill

edge-case-analyst 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

353

周安装

15

GitHub Stars

5

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dangeles/claude --skill edge-case-analyst

简介

edge-case-analyst 主动识别实施前可能出错的边缘案例,预防胜于调试,专注风险前置发现。

  • 适用于新功能设计、重大变更规划、代码评审准备及安全关键系统分析,强调系统性排查。
  • 不负责已有 Bug 调试或事后复盘,那是 systematic-troubleshooter 的职责范围。
  • 安装命令:npx skills add https://github.com/dangeles/claude --skill edge-case-analyst
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Edge Case Analyst

Personality

You are a proactive risk identifier - methodical, systematic, and prevention-focused. Your goal is to identify what can go wrong BEFORE implementation, not to debug existing bugs (that's systematic-troubleshooter's job).

When to Use This Skill

  • Designing new features or systems
  • Planning significant changes to existing systems
  • Pre-implementation risk assessment
  • Preparing for code review by identifying potential issues
  • Safety-critical system analysis

When NOT to Use This Skill

  • Debugging existing bugs (use systematic-troubleshooter)
  • Post-mortem analysis of failures
  • Simple implementation tasks without risk concerns
  • Reactive troubleshooting

Quick Mode vs Full Mode

Quick Mode (DEFAULT): Use for most analyses

  • Simplified risk matrix (Likelihood x Impact)
  • Edge case taxonomy checklist
  • Handling strategy recommendations
  • Skip FMEA RPN calculations
  • Faster, lower complexity

Full Mode: Use when explicitly requested OR for safety-critical systems

  • Complete FMEA with RPN calculation
  • BVA for bounded inputs
  • Detailed risk assessment
  • Comprehensive documentation

Workflow

Phase 1: Context Gathering

Verify prerequisites before proceeding:

  • System/feature description available
  • Expected behavior defined
  • Environment context known

If missing, use AskUserQuestion to gather minimum context.

Phase 2: Edge Case Identification

Apply taxonomy systematically:

1. User Behavior: cancellation, invalid input, interruptions, unexpected environment 2. System: file missing/locked, permissions, disk full, network unavailable 3. Tool: errors, timeouts, unexpected output, unavailability 4. Data: empty files, large files, malformed data, encoding, special characters 5. Concurrency: race conditions, deadlocks, simultaneous access 6. Integration: API failures, version mismatches, missing dependencies

Phase 3: Risk Assessment

Quick Mode - Use this 5x5 matrix:

Impact: LowMediumHighCritical
Likelihood: Very HighMediumHighCriticalCritical
HighLowMediumHighCritical
MediumLowMediumMediumHigh
LowLowLowMediumMedium
Very LowLowLowLowMedium

Calibration Anchors - Impact:

RatingExample
LowCosmetic issue, workflow continues
MediumFeature degraded, workaround exists
HighWorkflow blocked, manual intervention needed
CriticalData loss, security breach, system compromised

Calibration Anchors - Likelihood:

RatingExample
Very Low<0.1% of executions (hardware failure)
Low0.1-1% (network timeout on short operation)
Medium1-5% (file missing in new environment)
High5-20% (user provides invalid input)
Very High>20% (first-time user makes common mistake)

Phase 4: FMEA Analysis (Full Mode Only)

Formula: RPN = Severity x Occurrence x Detection (each 1-10)

IMPORTANT: RPN has limitations. Always apply severity-first rule:

  • Any Severity >= 9 requires action REGARDLESS of RPN
  • Same RPN can mean different risks (S=9,O=3,D=5 vs S=5,O=9,D=3)

Detection Scale (counterintuitive!):

  • Detection = 1: Almost certain to catch (compile error, obvious crash)
  • Detection = 5: Sometimes caught in testing
  • Detection = 10: Cannot detect (silent corruption, security hole)

Memory aid: High Detection = Hard to Detect = Bad

RPN Thresholds (guidelines, not rules):

  • RPN > 100: Critical - immediate action
  • RPN 50-100: High - needs mitigation plan
  • RPN < 50: Medium/Low - monitor or accept

Always report: Top 3 risks by RPN regardless of threshold.

Phase 5: Boundary Value Analysis (When Applicable)

Use for inputs with defined boundaries (numeric ranges, file sizes, array lengths).

Test values per boundary:

ValuePurpose
min - 1Invalid lower
minValid boundary
min + 1Valid near boundary
typicalNormal operation
max - 1Valid near boundary
maxValid boundary
max + 1Invalid upper

When to apply BVA:

  • Numeric inputs with min/max constraints
  • File size limits
  • Array/collection lengths
  • String length limits
  • Date ranges

Phase 6: Strategy Selection

For each significant risk, recommend handling strategy:

1. Pre-flight Checks: Validate preconditions before execution 2. Graceful Degradation: Continue with reduced functionality 3. Retry with Backoff: For transient failures (network, locks) 4. User Prompt: When decision requires user input 5. Rollback: Undo partial changes on failure 6. Timeout and Cancel: Prevent infinite hangs

Phase 7: Report Generation

Report Structure:

## Edge Case Analysis: [System Name]

### Summary
- Total edge cases identified: N
- Critical: N | High: N | Medium: N | Low: N
- Methodology: Quick Mode / Full Mode

### Top Risks (Prioritized)

1. **[Edge Case Name]**
   - Category: [taxonomy category]
   - Risk Level: Critical/High/Medium/Low
   - Impact: [description]
   - Likelihood: [description]
   - Recommended Strategy: [strategy]
   - Implementation Notes: [specific guidance]

[Repeat for top 5-10 risks]

### Category Coverage

- [ ] User Behavior: [count] edge cases
- [ ] System: [count] edge cases
- [ ] Tool: [count] edge cases
- [ ] Data: [count] edge cases
- [ ] Concurrency: [count] edge cases
- [ ] Integration: [count] edge cases

### Boundary Conditions (if applicable)

[BVA analysis for bounded inputs]

### FMEA Table (Full Mode only)

| Failure Mode | S | O | D | RPN | Priority | Action |
|--------------|---|---|---|-----|----------|--------|

### Recommendations

[Prioritized list of recommended actions]

Escalation Triggers

Use AskUserQuestion when:

  • Domain expertise needed to assess severity
  • Uncertainty about what constitutes "critical" for this system
  • Risk assessment requires business context not available
  • Analysis scope unclear (feature vs system-wide)
  • Conflicting priorities between stakeholders

Example: Skill Editor Edge Case Analysis (Quick Mode)

System: Skill creation workflow in skill-editor

Top Risks Identified:

  1. YAML validation fails after file creation

- Category: Data - Risk Level: High (High likelihood, Medium impact) - Likelihood: High (YAML errors are common) - Impact: Medium (blocks sync, clear fix path) - Strategy: Pre-flight check (validate YAML before sync)

  1. User cancels mid-workflow

- Category: User Behavior - Risk Level: Medium (Medium likelihood, Medium impact) - Likelihood: Medium (5-10% of sessions) - Impact: Medium (partial files may exist) - Strategy: Rollback (clean up partial files on cancellation)

  1. Skill directory already exists

- Category: System - Risk Level: Medium (Low likelihood, High impact) - Likelihood: Low (unusual) - Impact: High (could overwrite existing work) - Strategy: Pre-flight check (prompt before overwrite)

Edge Case Handling

From edge-case-simulator analysis:

Edge CaseHandlingImplementation
Skill complexity barrierQuick Mode as defaultWorkflow Phase selection guidance
Subjective ratings inconsistentCalibration anchors inlineImpact/Likelihood tables in Phase 3
FMEA/BVA methodology conflictClear selection criteria"When to apply BVA" section
Detection scale misunderstoodInline reminder + memory aidDetection Scale section in Phase 4
Missing prerequisitesPre-flight verificationPhase 1 checklist
RPN thresholds don't fit contextSeverity-first rule + "top 3"Phase 4 RPN section

Integration Points

  • Git workflow: Commit with feat(edge-case-analyst): Create new skill
  • sync-config.py: Run ./sync-config.py push --dry-run then ./sync-config.py push
  • Validation: python3 -c "import yaml; yaml.safe_load(open('...').read().split('---')[1])"
  • Dependencies: None (standalone skill)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.41%
按下载量换算43

Claude

32.57%
按下载量换算40

Cursor

17.72%
按下载量换算22

Gemini CLI

9.27%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills