一键导入
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).