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.
npx skills add mattmre/EVOKORE-MCP-PUBLIC --skill ghidra-rename-and-retypegit clone --depth 1 https://github.com/mattmre/EVOKORE-MCP-PUBLICWrote 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.
[](https://agentmods.dev/skills/mattmre/evokore-mcp-public/ghidra-rename-and-retype)<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/ghidra-rename-and-retype"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/ghidra-rename-and-retype/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.
<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/ghidra-rename-and-retype"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/ghidra-rename-and-retype.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00047 | $0.00559 |
| Opus 5 | $0.00023 | $0.00280 |
| Sonnet 5 | $0.00009 | $0.00112 |
| Haiku 4.5 | $0.00005 | $0.00056 |
Grade A, and why
ghidra-rename-and-retype 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 12d 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.
What it actually says
Ghidra Rename and Retype
Convert analysis notes into durable semantic improvements. Rename, comment, and retype only after the supporting evidence is explicit.
Workflow
- Start from a confirmed function-analysis result.
- Rename in this order:
- function
- globals/data labels
- parameters
- local variables
- Add comments for:
- behavior summary
- argument meaning
- protocol / file format meaning
- unresolved caveats
- Apply type improvements:
- function signature
- return type
- variable types
- parsed C definitions
- structure filling from decompiler output when justified
- Re-run decompilation and verify the output became clearer, not noisier.
Tool Families to Prefer
ghidra_headless_function.renameghidra_headless_variable.renameghidra_headless_variable.retypeghidra_headless_function.signature.setghidra_headless_function.return_type.setghidra_headless_type.parse_cghidra_headless_type.apply_atghidra_headless_layout.struct.fill_from_decompiler
GhidraMCP-style equivalents:
- rename function
- rename data
- rename variable
- set function prototype
- set decompiler comment
- set disassembly comment
Guardrails
- Avoid generic names like
handler,func1, orprocess_dataunless there is no stronger evidence. - Preserve uncertainty in the name when needed, for example
maybe_parse_config. - Prefer short behavioral comments over long essays.
- Batch related renames together so call chains stay coherent.
Deliverable Format
- Old name -> new name mappings
- Signature/type updates applied
- Comments added
- Remaining semantic gaps that still need evidence
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.
- 12d ago First seen · 75 lines · 47 tokens per session scan A 16ab391897d6
ghidra-rename-and-retype is a skill published in the GitHub repository mattmre/EVOKORE-MCP-PUBLIC (3 stars, last pushed 3mo ago), licensed MIT. It adds 47 tokens to every session and 559 once invoked, about $0.0002 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-31.
Other skills, from other repositories
ts-debug
TypeScript/Node debugging expert. Use when the user needs to debug, profile, or trace TypeScript or Node.js code — e.g. "how do I debug this", "find the memory leak", "why is this slow", "add a breakpoint", "profile this function", "why won't the process exit".
py-debug
Python debugging expert. Use when the user needs to debug, profile, or trace Python code — e.g. "how do I debug this", "find the memory leak", "why is this slow", "add a breakpoint", "profile this function".
ctf-rev
Solve CTF reverse engineering challenges using systematic analysis to find flags, keys, or passwords. Use for crackmes, binary bombs, key validators, obfuscated code, algorithm recovery, or any challenge requiring program comprehension to extract hidden information.
deep-analysis
Performs focused, depth-first investigation of specific reverse engineering questions through iterative analysis and database improvement. Answers questions like "What does this function do?", "Does this use crypto?", "What's the C2 address?", "Fix types in this function". Makes incremental improvements (renaming…
pyghidra-scripting
Write and run Python (PyGhidra) code inside the Ghidra session that ReVa's MCP server is already attached to, using the five ReVa scripting tools — run-script, list-scripts, read-script, write-script, edit-script. Use this whenever the user asks to execute Python against the current program, reach for the Ghidra Flat…
binary-triage
Performs initial binary triage by surveying memory layout, strings, imports/exports, and functions to quickly understand what a binary does and identify suspicious behavior. Use when first examining a binary, when user asks to triage/survey/analyze a program, or wants an overview before deeper reverse engineering.