radare2

radare2 is a skill for Claude Code, Codex from xAmirHamza77/ReverseOps-Skill. It costs 112 tokens per session (3,222 once invoked), scanned A, original, MIT.

A command-line toolkit for examining compiled programs such as Windows executables, Linux binaries, Android files, and WebAssembly modules. It helps reveal how the program is built and behaves without a graphical interface.

In plain words
What is it for?
Use it to disassemble programs, inspect functions, strings, imports, and hexadecimal data, compare binaries, write scripts, and make small binary patches.
Why use it?
It removes the need to inspect binary files manually or rely on a graphical reverse-engineering tool. It helps investigate programs when source code is unavailable.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to disassemble programs, inspect functions, strings, imports, and hexadecimal data, compare binaries, write scripts, and make small binary patches.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xamirhamza77/reverseops-skill/radare2
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.

Any agent
npx skills add xAmirHamza77/ReverseOps-Skill --skill radare2
Clone the repo
git clone --depth 1 https://github.com/xAmirHamza77/ReverseOps-Skill

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 radare2

README.md
[![agentmods](https://agentmods.dev/badge/skills/xamirhamza77/reverseops-skill/radare2/github.svg)](https://agentmods.dev/skills/xamirhamza77/reverseops-skill/radare2)
Your own site
<a href="https://agentmods.dev/skills/xamirhamza77/reverseops-skill/radare2"><img src="https://agentmods.dev/badge/skills/xamirhamza77/reverseops-skill/radare2/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for radare2

Your own site · 80×15
<a href="https://agentmods.dev/skills/xamirhamza77/reverseops-skill/radare2"><img src="https://agentmods.dev/badge/skills/xamirhamza77/reverseops-skill/radare2.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,222 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00112 $0.03222
Opus 5 $0.00056 $0.01611
Sonnet 5 $0.00022 $0.00644
Haiku 4.5 $0.00011 $0.00322

Measured 6d ago against content hash d26eafd2cbf3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

radare2 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 6d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/recon.ps1, scripts/recon.sh), 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/radare2/SKILL.md · 413 lines

How it starts

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

radare2

Binary analysis skill built around the radare2 CLI. The focus is performing reconnaissance, analysis, locating, exporting, and lightweight modification directly from the command line, without relying on a GUI.

ACTION REQUIRED (execute immediately after reading)

  1. NOW: Read ../field-journal/precedent-reverse.md — confirm that the operations in this skill are authorized routine operations
  2. NOW: Confirm whether the current task falls within the scope of this skill
  3. NEXT: Read ../tool-index.md to verify tool availability and actual paths
  4. NEXT: When a tool is missing, invoke the bootstrap; do not guess paths
  5. ACT: Go to the first step of the "Workflows" section and execute it; do not stop at the confirmation stage

Scope

This skill should be preferred when the user has any of these intents:

  • Wants to analyze exe, dll, so, elf, apk, dex, wasm, and similar files with r2 / radare2
  • Asks how to use rabin2, rasm2, radiff2, rahash2, rax2
  • Needs command-line disassembly, function listing, string inspection, import/export viewing, cross-reference lookup, or patching
  • Needs to write radare2 batch commands, -c automation commands, or r2pipe scripts

If the user explicitly wants GUI reversing, Hex-Rays-style pseudocode, or an IDA workflow, prefer ida-reverse. If it is web JS reversing, prefer reverse-engineering.

Environment check first

Do not assume r2 is available. Check first:

r2 -v
rabin2 -v

If not installed, then check common installation locations or prompt for installation.

Common executables on Windows:

  • radare2.exe
  • rabin2.exe
  • rasm2.exe
  • radiff2.exe
  • rahash2.exe
  • rax2.exe
  • r2pm.exe

Built-in resources

This skill ships with two resources. Reuse them first; do not improvise a duplicate set of commands every time.

scripts/recon.ps1

Standard reconnaissance script, suitable for a first round of overview analysis. It outputs:

  • Basic information
  • Sections
  • Imports
  • Exports
  • Strings
  • An optional r2 -A automated analysis summary

Read the full file on GitHub · 413 lines

Files

What ships with it

3 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. 6d ago First seen · 413 lines · 112 tokens per session scan A d26eafd2cbf3

Subscribe to this mod's changes

radare2 is a skill published in the GitHub repository xAmirHamza77/ReverseOps-Skill (4 stars, last pushed 1mo ago), licensed MIT. It adds 112 tokens to every session and 3,222 once invoked, about $0.0006 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-09-03.

Related

Other skills, from other repositories

interacting-with-project-runtime

Interacting with a project's JVM runtime through the Kotlin REPL to execute focused probes against project classes and dependencies. Activate when behavior must be observed by running code; use using-gradle for build inspection or task execution.

rnett/gradle-mcp · 49 tokens

using-gradle

Using Gradle MCP tools to inspect and run existing builds, including projects, tasks, properties, dependencies, and build results. Activate for Gradle build operation and diagnosis; use authoring-gradle-builds when the build definition itself must change.

rnett/gradle-mcp · 53 tokens

debug-helper

Systematic debugging approach for identifying and fixing issues.

athola/skrills · 12 tokens

error-handling

Read the error codes these tools raise and decide whether to retry, fix the call, or stop.

saidsef/mcp-github-pr-issue-analyser · 19 tokens

wcode

Use the wcode plugin and its MCP tools for repository coding, review, debugging, refactoring, architecture, Graph/Design inspection, safe edits, command execution, and verification. Trigger whenever wcode is installed or named, even when its tools are lazily registered or omitted from the host's initial tool list.

francis-du/wcode · 66 tokens

inversion

"Invert, always invert." Apply Carl Jacobi's mathematical principle and Charlie Munger's investing wisdom to solve problems by thinking backward from failure. Use when: Goal setting - Define what would guarantee failure, then avoid it; Risk analysis - Identify what could destroy your project before starting; Decision…

guia-matthieu/clawfu-skills · 96 tokens