
Case Review
FreeAudit reverse engineering cases for compliance and readiness.
Free · Opens the source repo
What Case Review does
The Case Review skill is designed for professionals involved in reverse engineering, forensics, Capture The Flag (CTF) events, or authorized security investigations. It provides a structured approach to reviewing existing case packages, ensuring that all necessary elements are in place prior to handing off reports. The skill operates in a read-only mode, meaning it does not alter the case or interact with the target, which is critical for maintaining the integrity of the evidence.
This skill performs a thorough audit of the existing case directory, checking for essential files such as scope.md, timeline.md, workitems.md, and evidence records. It evaluates the metadata and readiness of the case, ensuring that all evidence is properly documented and traceable. The review process includes checks for evidence IDs, findings without evidence references, and the overall structure of the report. By generating results in either Markdown or JSON format, it facilitates easy integration into reporting workflows.
One of the key features of this skill is its optional SHA-256 verification for case-local artifacts, which adds an additional layer of integrity checking. This is particularly useful in scenarios where the authenticity of evidence is paramount. The skill also provides clear next steps and recommendations based on the review findings, allowing users to systematically address any issues before finalizing their reports.
Overall, the Case Review skill is an essential tool for anyone involved in the meticulous process of case management in security and forensic contexts. It ensures that all aspects of a case are adequately reviewed and documented, thus supporting a defensible handoff of findings and conclusions.
When to use it
Use this skill when preparing for a report handoff in reverse engineering or forensic investigations to ensure all evidence is accounted for and properly linked.
When not to use it
This skill is not suitable for active reconnaissance or exploitation tasks, as it strictly adheres to a read-only review process.
What you can build with it
Preparing for a Forensic Report
Use the skill to audit your case package before handing off the findings to ensure all evidence is documented.
Ensuring Evidence Integrity
Run the review to verify SHA-256 hashes of artifacts, ensuring they have not been altered since collection.
Streamlining Case Management
Integrate the skill into your workflow to systematically check for compliance and readiness of case files.
How to install Case Review
View source1. Install with the skills CLI
npx skills add zhaoxuya520/reverse-skill/case-review --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by zhaoxuya520Evidence Graph Review
Use this skill when a reverse engineering, forensics, CTF, or authorized security case needs a defensible handoff. It audits the existing work/<case>/ package without changing the case or touching a target.
Scope
This skill covers:
- Scope metadata and target-activity readiness
- Evidence record structure and reproducibility fields
- References from work items and timeline entries to Evidence
- Structured Findings and Paths in report Markdown
- Optional SHA-256 verification for case-local artifacts
- A Markdown or JSON review result for a report handoff
It MUST NOT perform reconnaissance, exploitation, dynamic instrumentation, or target changes. Those actions belong to the routed analysis skill and require the case scope gate.
ACTION REQUIRED
NOW: read../field-journal/precedent-reverse.mdand confirm that this is a review of an existing authorized case package.NOW: confirm the case path and choose read-only review mode.NEXT: read../tool-index.md; this skill uses only Python 3 standard library and does not require bootstrap.NEXT: runpython3 scripts/review_case.py <case-root> --format markdown.ACT: resolve every error, then rerun the review before claiming a handoff is complete.
Tool dependencies
| Tool | Required | Purpose | Auto-bootstrap |
|---|---|---|---|
| Python 3.9+ | Yes | Runs the read-only case review script | No, use the platform Python installation |
No network access or third-party package is required.
Workflow
Phase 1: Intake
Run the review against the existing case directory:
python3 skills/case-review/scripts/review_case.py work/<case> --format markdown
Confirm that scope.md, timeline.md, workitems.md, and evidence/ are present. A non-strict review reports scope warnings while a strict review treats warnings as handoff blockers.
建议下一步(选一个编号)
- 修复 scope.md 中的授权、范围或 network_profile 字段
- 继续检查 Evidence 记录的可复现命令和来源
- 导出当前 review 结果并附到阶段性报告
- 换 JSON 输出接入 CI 或其他审查工具
- 暂停,先确认审查范围
Phase 2: Traceability
Review the checks for:
- Evidence IDs that do not exist
- Findings without
evidence_ids - Paths without an allowed
path_typeor Evidence reference - Work items and timeline entries pointing to unknown Evidence
- Unlinked Evidence records
- Validated Findings with low confidence
An offline observation may use repro_command: n/a only when its notes field explicitly documents the offline limitation.
Use JSON when another tool needs stable fields:
python3 skills/case-review/scripts/review_case.py work/<case> --format json
建议下一步(选一个编号)
- 补写缺失的 Evidence,并保留原始命令
- 将候选 Finding 绑定到 Evidence 后重新审查
- 为调用链或攻击链补充 P-id 和 Path 步骤
- 生成 Markdown handoff summary
- 换回 PRIMARY skill 继续分析
Phase 3: Fixity verification
When an Evidence record contains both content_hash and artifact_path, verify the case-local artifact:
python3 skills/case-review/scripts/review_case.py work/<case> --verify-hashes --strict
The script accepts sha256:<64 hex characters> and checks that the artifact remains inside the case root. A hash mismatch is a hard failure.
The PowerShell Evidence helper can record a hash while appending a record:
powershell -File skills/scripts/append-evidence.ps1 -CaseRoot work\<case> -Id E-001 -Title "Sample hash" -ReproCommand "sha256sum evidence/sample.bin" -ArtifactPath "evidence\sample.bin"
建议下一步(选一个编号)
- 修复 hash mismatch 或替换已污染的工作副本
- 为未固定的原始文件补充 SHA-256 和 artifact_path
- 继续进入报告生成阶段
- 导出 JSON 结果供 CI 保存
- 暂停并请求人工复核
Phase 4: Handoff
Use strict mode before a final report or specialist handoff:
python3 skills/case-review/scripts/review_case.py work/<case> --strict --format markdown > work/<case>/report/case-review.md
The command is read-only with respect to the case unless shell redirection is explicitly used to save its output. The review is not legal advice and does not replace organizational evidence handling procedures.
建议下一步(选一个编号)
- 将通过的 review 结果交给
docs-generator/生成正式报告 - 回到 PRIMARY skill 补齐新的分析证据
- 归档 Markdown 和 JSON review 结果
- 暂停并请求人工复核
Language behavior contract
- Internal reasoning, tool selection, and phase control: English.
- User-visible messages, section labels, reports, and next-step menus: Chinese unless the user requests another language.
- Default bilingual labels place Chinese first and English second, separated by
/.
Bootstrap boundary
This skill has no third-party dependency. If Python 3 is unavailable, the only allowed recovery action is the repository bootstrap path when a Python capability is registered for the current platform. If no such capability is registered, stop and report the missing runtime. Do not guess executable paths, download packages, or perform a manual install from inside this skill.
Routing context
Upstream entry: any reverse, forensics, CTF, or authorized security skill that has produced a case package.
Downstream exit: docs-generator/ for a formal report, or the original PRIMARY skill when the graph is incomplete.
Related modules: ops/evidence-finding-path.md, ops/timeline-workitem.md, digital-forensics/, reverse-engineering/, and docs-generator/.
References
- NIST SP 800-86: Guide to Integrating Forensic Techniques into Incident Response
- SWGDE Best Practices for Computer Forensic Acquisitions
- SWGDE Best Practices for Archiving Digital and Multimedia Evidence
任务完成自检
- 我是否审查了 scope.md、timeline.md、workitems.md 和 evidence/?
- 所有 Finding 是否引用了现存 Evidence?
- 所有 Path 是否包含合法 path_type 和 Evidence 引用?
- 是否执行了 hash verification,或记录了未执行原因?
- 是否以 strict 模式重新运行并保存了 review 结果?
Frequently asked questions about Case Review
Similar skills
Asset Criticality Scoring for Vulns
Prioritize vulnerabilities based on asset criticality.
Performing Alert Triage with Elastic SIEM
Streamline alert triage processes in Elastic Security.
Active Directory Vulnerability Assessment
Secure your Active Directory with comprehensive assessments.
Active Directory Investigation
Streamline your Active Directory compromise investigations.
Parsing Artifacts with Eric Zimmerman Tools
Efficiently parse Windows forensic artifacts for analysis.
Operationalizing MISP Threat Feeds
Enhance threat detection with curated MISP feeds.
