reconstruct-types

reconstruct-types is a skill for Claude Code, Codex from marcosd4h/DeepExtractRuntime. It costs 81 tokens per session (2,946 once invoked), scanned A, original, MIT.

A skill for rebuilding C and C++ struct and class definitions from IDA Pro decompiled code. IDA Pro is a reverse-engineering tool; the skill examines assembly instructions, virtual tables, and name information across a module to produce header files.

In plain words
What is it for?
Use it to infer field layouts, rebuild class hierarchies, and generate C or C++ headers from supported IDA analysis data.
Why use it?
Decompiled code often shows raw memory offsets instead of readable fields and types. Reconstructed definitions make later code lifting easier to understand and compile.

Skill for Claude CodeCodex

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/marcosd4h/deepextractruntime/reconstruct-types
Any agent
npx skills add marcosd4h/DeepExtractRuntime --skill reconstruct-types
Clone the repo
git clone --depth 1 https://github.com/marcosd4h/DeepExtractRuntime

Made for: Claude Code, Codex.

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 reconstruct-types

README.md
[![agentmods](https://agentmods.dev/badge/skills/marcosd4h/deepextractruntime/reconstruct-types.svg)](https://agentmods.dev/skills/marcosd4h/deepextractruntime/reconstruct-types)
Your own site
<a href="https://agentmods.dev/skills/marcosd4h/deepextractruntime/reconstruct-types"><img src="https://agentmods.dev/badge/skills/marcosd4h/deepextractruntime/reconstruct-types.svg" alt="Measured on agentmods" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,946 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.00081 $0.02946
Opus 5 $0.00041 $0.01473
Sonnet 5 $0.00016 $0.00589
Haiku 4.5 $0.00008 $0.00295

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

Security

Grade A, and why

reconstruct-types 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.

The scan reads SKILL.md. This mod also ships 5 executable files (scripts/_common.py, scripts/extract_class_hierarchy.py, scripts/generate_header.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/reconstruct-types/SKILL.md · 302 lines

How it starts

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

Reconstruct Types

Purpose

Module-wide type reconstruction from DeepExtractIDA analysis databases. Scans ALL functions in a module using x64 assembly to collect every memory access pattern, merges with vtable contexts and mangled name data, and produces compilable C/C++ header files with struct/class definitions.

Assembly is the sole evidence source -- it provides exact field sizes from instruction operands and is deterministic across Hex-Rays versions. Functions without assembly data are skipped.

This skill feeds directly into code lifting -- once you have accurate structs, every subsequent lift replaces raw pointer arithmetic with readable field access.

This is NOT security analysis. The goal is faithful type reconstruction, not vulnerability research.

When NOT to Use

  • Lifting or rewriting decompiled functions to clean code -- use batch-lift
  • Scanning for vulnerabilities in functions that use reconstructed types -- use ai-memory-corruption-scanner or ai-logic-scanner
  • Understanding COM interfaces from vtable layouts -- use com-interface-reconstruction
  • Tracing data flow through struct fields across functions -- use data-flow-tracer
  • General function explanation -- use re-analyst or /explain

Data Sources

SQLite Databases (primary)

Individual analysis DBs in extracted_dbs/ contain per-function data:

  • assembly_code -- sole evidence source: exact offsets/sizes from x64 instructions
  • mangled_name -- decode class names, namespaces, inheritance
  • vtable_contexts -- reconstructed class skeletons with virtual method tables
  • function_signature / function_signature_extended -- parameter types

Generated Code (secondary)

extracted_code/{module}/file_info.json has function_summary with class/method groupings. Useful for orientation but lacks assembly and detailed xref data.

Finding a Module DB

Use the decompiled-code-extractor skill's find_module_db.py to locate a module's analysis DB:

Read the full file on GitHub · 302 lines

Files

What ships with it

7 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 · 302 lines · 81 tokens per session scan A 43928e06b2dd

Subscribe to this mod's changes

reconstruct-types is a skill published in the GitHub repository marcosd4h/DeepExtractRuntime (20 stars, last pushed 4mo ago), licensed MIT. It adds 81 tokens to every session and 2,946 once invoked, about $0.0004 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

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens