ワンクリックで
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).