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 SeaOf0/dsh-redteam-model --skill ida-ai-reversinggit clone --depth 1 https://github.com/SeaOf0/dsh-redteam-modelWrote 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/seaof0/dsh-redteam-model/ida-ai-reversing)<a href="https://agentmods.dev/skills/seaof0/dsh-redteam-model/ida-ai-reversing"><img src="https://agentmods.dev/badge/skills/seaof0/dsh-redteam-model/ida-ai-reversing/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/seaof0/dsh-redteam-model/ida-ai-reversing"><img src="https://agentmods.dev/badge/skills/seaof0/dsh-redteam-model/ida-ai-reversing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00130 | $0.02596 |
| Opus 5 | $0.00065 | $0.01298 |
| Sonnet 5 | $0.00026 | $0.00519 |
| Haiku 4.5 | $0.00013 | $0.00260 |
Grade A, and why
ida-reversing 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.
How it starts
The opening of the file, as written. The whole thing — 398 lines — stays where its author put it; the contents beside it link to each section on GitHub.
IDA Reversing Skill
This skill enables AI-powered reverse engineering in IDA Pro through the Model Context Protocol (MCP). It provides comprehensive guidance for analyzing binaries, understanding code behavior, and documenting findings.
Prerequisites
- IDA Pro installed (version 7.0+ recommended)qq:212717393
- IDA MCP plugin installed and configured
- IDA MCP server running (typically on localhost:13337 or similar)
Available Tools
The IDA MCP exposes these tool categories:
Connection & Metadata
check_connection()- Verify IDA MCP server is runningget_metadata()- Get information about current IDB database
Function Management
get_functions()- List all functions in the binaryget_function_by_name(name)- Get function info by exact nameget_function_by_address(address)- Get function info by addressget_decompile_function(address)- Get pseudocode decompilationget_disasm(address)- Get assembly disassembly
Cross-References
get_xrefs_from(address)- Get cross-references from an addressget_xrefs_to(address)- Get cross-references to an addresscallees(addrs)- Get functions called by specified function(s)callers(addr)- Get functions that call specified function
Data Operations
get_strings()- List all strings in the binaryget_imports()- List imported functionsget_exports()- List exported functionsget_segments()- List memory segments
Search Operations
search_text(pattern)- Search for text patternssearch_bytes(pattern)- Search for byte sequencessearch_immediate(value)- Search for immediate values in instructions
Type System
list_local_types()- List all local typesget_type(address)- Get inferred type at addressget_structs()- List all structures/unionsget_struct(name)- Get structure definition
Modification Operations
set_comments(items)- Set comments at addressesrename_function(address, new_name)- Rename functionsrename_variable(function, old_name, new_name)- Rename local variablespatch_asm(items)- Patch assembly instructionsapply_type(address, type_str)- Apply type signature
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 · 398 lines · 130 tokens per session scan A d8dca402b8ed
ida-reversing is a skill published in the GitHub repository SeaOf0/dsh-redteam-model (398 stars, last pushed today), licensed MIT. It adds 130 tokens to every session and 2,596 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-08-30.
Other skills, from other repositories
analyze-type-infer
A compiler analysis step that infers a symbol's type from its assignments. A type describes what kind of value something holds, such as a number, text, or Boolean value.
check-name-real
A name checker that verifies every required symbol has been declared. A symbol is a named program entity such as a variable or function.
compiler-0355bffb
A virtual-machine debugging skill for executing one instruction at a time. A virtual machine is a program that runs a compact instruction format instead of native machine code.
compiler-2dbea54a
A cycle-detection skill that checks a directed graph for loops using depth-first search, a method that follows each path before backtracking.
compiler-2f8c8f39
A call-graph skill that maps which functions call which other functions. A call graph is a network whose nodes are functions and whose links represent calls.
compiler-39fb5926
A debugger breakpoint handler for registering, clearing, and checking pause points in a program.