원클릭으로
crash-analysis
Analyze reproduced crash evidence and produce a structured verdict for workflow routing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyze reproduced crash evidence and produce a structured verdict for workflow routing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Classify reproduced crashes into harness bug, upstream bug, or inconclusive using evidence only.
Generate complete fuzz scaffold artifacts aligned to selected targets and execution plan.
Discover, update, and rank vulnerability candidates before execution planning.
Apply minimal evidence-driven build fixes in fuzz scaffold files for next build attempt.
Repair fuzz scaffold after build failures with strategy change and mapping consistency.
Repair scaffold for coverage replan cycles using seed and harness feedback as primary signals.
| name | crash_analysis |
| description | Analyze reproduced crash evidence and produce a structured verdict for workflow routing. |
| compatibility | opencode |
| metadata | {"stage":"crash-analysis","owner":"tianheng"} |
This skill performs analysis-only crash verdicting after repro, without patching source code.
Use this skill in the crash-analysis stage after re-run has produced crash evidence.
crash_info.mdre_run_report.mdcrash_triage.json (if present)crash_analysis.jsoncrash_analysis.mdcrash_analysis.json must follow this minimal shape:
{
"verdict": "false_positive|real_bug|unknown",
"reason": "short explanation",
"confidence": 0.0,
"signals": ["concrete log lines or findings"]
}
crash_analysis.json and crash_analysis.md.unknown when evidence is weak.real_bug from sanitizer keywords alone.unknown and explain missing evidence explicitly.find, grep, rg, cat, ls, sed, awk, head, tail).verdict is exactly one of false_positive, real_bug, unknown.reason is non-empty and grounded in observed evidence.signals is a non-empty string array with concrete findings../done.crash_analysis.json as the sole text of ./done (run echo 'crash_analysis.json' > ./done; do not copy the file's contents).