deep-analysis

deep-analysis is a skill for Claude Code, Codex from cyberkaida/reverse-engineering-assistant. It costs 98 tokens per session (4,988 once invoked), scanned A, original, Apache-2.0.

A method for answering one focused reverse-engineering question about a compiled program while improving the program's analysis database as evidence is found.

In plain words
What is it for?
Use it to determine what a function does, trace calls and data, identify cryptography or command-and-control addresses, and improve names or types in Ghidra.
Why use it?
It keeps investigation depth-first and evidence-based, so unclear functions, data structures, references, and assumptions are resolved step by step.

Skill for Claude CodeCodex

Part of the ReVa plugin — 6 skills, 1 MCP server shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/cyberkaida/reverse-engineering-assistant/deep-analysis
Any agent
npx skills add cyberkaida/reverse-engineering-assistant --skill deep-analysis
Clone the repo
git clone --depth 1 https://github.com/cyberkaida/reverse-engineering-assistant

Made for: Claude Code, Codex.

Or install ReVa, the plugin that ships this one along with the rest of its 6 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for deep-analysis

README.md
[![agentmods](https://agentmods.dev/badge/skills/cyberkaida/reverse-engineering-assistant/deep-analysis.svg)](https://agentmods.dev/skills/cyberkaida/reverse-engineering-assistant/deep-analysis)
Your own site
<a href="https://agentmods.dev/skills/cyberkaida/reverse-engineering-assistant/deep-analysis"><img src="https://agentmods.dev/badge/skills/cyberkaida/reverse-engineering-assistant/deep-analysis.svg" alt="Measured on agentmods" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,988 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00098 $0.04988
Opus 5 $0.00049 $0.02494
Sonnet 5 $0.00020 $0.00998
Haiku 4.5 $0.00010 $0.00499

Measured 3d ago against content hash 622a5ab0622e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

deep-analysis scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

ReVa/skills/deep-analysis/SKILL.md · 608 lines

How it starts

The opening of the file, as written. The whole thing — 608 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Deep Analysis

Purpose

You are a focused reverse engineering investigator. Your goal is to answer specific questions about binary behavior through systematic, evidence-based analysis while improving the Ghidra database to aid understanding.

Unlike binary-triage (breadth-first survey), you perform depth-first investigation:

  • Follow one thread completely before branching
  • Make incremental improvements to code readability
  • Document all assumptions with evidence
  • Return findings with new investigation threads

Core Workflow: The Investigation Loop

Follow this iterative process (repeat 3-7 times):

1. READ - Gather Current Context (1-2 tool calls)

Get decompilation/data at focus point:
- get-decompilation (limit=20-50 lines, includeIncomingReferences=true, includeReferenceContext=true)
- find-cross-references (direction="to"/"from", includeContext=true)
- get-data or read-memory for data structures

2. UNDERSTAND - Analyze What You See

Ask yourself:

  • What is unclear? (variable names, types, logic flow)
  • What operations are being performed?
  • What APIs/strings/data are referenced?
  • What assumptions am I making?

3. IMPROVE - Make Small Database Changes (1-3 tool calls)

Prioritize clarity improvements:

rename-variables: var_1 → encryption_key, iVar2 → buffer_size
change-variable-datatypes: local_10 from undefined4 to uint32_t
set-function-prototype: void FUN_00401234(uint8_t* data, size_t len)
apply-data-type: Apply uint8_t[256] to S-box constant
set-decompilation-comment: Document key findings in code
set-comment: Document assumptions at address level

4. VERIFY - Re-read to Confirm Improvement (1 tool call)

get-decompilation again → Verify changes improved readability

5. FOLLOW THREADS - Pursue Evidence (1-2 tool calls)

Follow xrefs to called/calling functions
Trace data flow through variables
Check string/constant usage
Search for similar patterns

6. TRACK PROGRESS - Document Findings (1 tool call)

set-bookmark type="Analysis" category="[Topic]" → Mark important findings
set-bookmark type="TODO" category="DeepDive" → Track unanswered questions
set-bookmark type="Note" category="Evidence" → Document key evidence

Read the full file on GitHub · 608 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 608 lines · 98 tokens per session scan A 622a5ab0622e

Subscribe to this mod's changes

deep-analysis is a skill published in the GitHub repository cyberkaida/reverse-engineering-assistant (821 stars, last pushed 9d ago), licensed Apache-2.0. It adds 98 tokens to every session and 4,988 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

analyzing-golang-malware-with-ghidra

Reverse engineer Go-compiled malware in Ghidra by parsing Go buildinfo and pclntab structures, recovering stripped/obfuscated function names (e.g. via GoResolver), and extracting embedded module/dependency strings and types from Go binaries. Use when analyzing a Go-language malware sample, deobfuscating a…

mukul975/Anthropic-Cybersecurity-Skills · 95 tokens

analyzing-golang-malware-with-ghidra

Reverse engineer Go-compiled malware using Ghidra with specialized scripts for function recovery, string extraction, and type reconstruction in stripped Go binaries.

26zl/cybersec-toolkit · 40 tokens

osgrep-reference

Comprehensive CLI reference and search strategies for osgrep semantic code search. Use for detailed CLI options, index management commands, search strategy guidance (architectural vs targeted queries), and troubleshooting. Complements the osgrep plugin which handles daemon lifecycle.

tdimino/bg3se-macos · 52 tokens

bg3-steam-launcher

Launch Baldur's Gate 3 through Steam on macOS and load saved games using macos-automator and peekaboo MCP servers. Designed for testing bg3se-macos (Script Extender) development. Use when: (1) launching BG3 from Steam, (2) loading a BG3 saved game, (3) testing SE mod injection, (4) user asks to "start BG3", "load my…

tdimino/bg3se-macos · 129 tokens

bg3se-macos-ghidra

Develop the BG3 Script Extender macOS port using Ghidra for reverse engineering. Use this skill when: (1) Working on bg3se-macos port development or debugging (2) Using Ghidra to discover offsets, function addresses, or data structures in BG3 (3) Implementing new Lua APIs (Ext., Osi.) for macOS Script Extender (4)…

tdimino/bg3se-macos · 153 tokens

analyzing-golang-malware-with-ghidra

使用 Ghidra 及专用脚本对 Go 编译的恶意软件进行逆向工程,包括函数恢复、字符串提取和去符号表 Go 二进制文件的类型重建。.

killvxk/cybersecurity-skills-zh · 56 tokens