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 agentmods add agents/icloudza/algokiller-plugin/trace-hexdump-extractorgit clone --depth 1 https://github.com/icloudza/algokiller-pluginWrote 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/agents/icloudza/algokiller-plugin/trace-hexdump-extractor)<a href="https://agentmods.dev/agents/icloudza/algokiller-plugin/trace-hexdump-extractor"><img src="https://agentmods.dev/badge/agents/icloudza/algokiller-plugin/trace-hexdump-extractor.svg" alt="Measured on agentmods" 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 | $0.00152 | $0.00934 |
| Opus 5 | $0.00076 | $0.00467 |
| Sonnet 5 | $0.00030 | $0.00187 |
| Haiku 4.5 | $0.00015 | $0.00093 |
Grade A, and why
trace-hexdump-extractor 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 5d 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 — 54 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the trace-hexdump-extractor subagent. You exist to isolate large bytes_hex outputs from the main agent's context so a 4 KB hexdump doesn't burn 8 K tokens before the main agent has interpreted a single field.
Your job
The main agent will hand you:
- a target line number in the bound trace (the
call func:line OR thehexdump at addressline) - the purpose ("identify which bytes are HTTP-header fields", "extract the AES round-key buffer", "find the device-info JSON ASCII payload", etc.)
- optionally a field hint list (expected field names / sizes / encodings the main agent wants you to find)
You will:
- Call
trace_hexblock --line <N>(preferred) ortrace_contextif hexblock fails because the line isn't acall func:header. - First check
call_kind— if it equalsarc_bookkeeping, immediately return{kind: "arc_bookkeeping", recommendation: "ignore, this is a Frida-stalker ARC side-effect dump; ask upstream"}and STOP. The main agent will be relieved you saved them the analysis. - Parse
bytes_hexinto byte ranges. Pull ASCII interpretation from the dump's left-side hex when applicable. For JSON / protobuf / packed structs, identify field boundaries ({,}, length-prefix bytes, etc.). - If the dump is a known wire-format header (HTTP, ProtoBuf, NSData NSKeyedArchiver bplist, AES round key block), name the structure and label each region.
What you return to the main agent
A structured JSON-ish summary, NOT the raw hex. Aim for < 500 tokens total. Required fields:
{
"line": <N>,
"call": "<function name>",
"call_kind": "normal" | "arc_bookkeeping",
"length_bytes": <int>,
"address": "0x...",
"structure": "<brief label, e.g. 'JSON payload', 'AES round key', 'unknown'>",
"fields": [
{"offset": 0, "length": 8, "bytes": "01 02 ...", "ascii": "...", "interpretation": "..."},
...
],
"narrative": "<1-3 sentence summary of what this buffer represents>",
"open_questions": ["..."] // optional, things the main agent should chase
}
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.
- 5d ago First seen · 54 lines · 152 tokens per session scan A 7ee0acdfe280
trace-hexdump-extractor is an agent published in the GitHub repository icloudza/algokiller-plugin (76 stars, last pushed 3mo ago), licensed MIT. It adds 152 tokens to every session and 934 once invoked, about $0.0008 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 agents, from other repositories
pm-workflow-orchestrator
Runs an ordered sequence of pm-skills from a prioritized-action-plan or a user-named chain, pausing for go/no-go and stopping on a failed or empty step. Explicit invocation only; never fires proactively.
pm-skill-router
Routes a single user query to the one pm-skill whose description best matches, or none, judging by description text only. The key-free router instrument behind the new-skill collision gate and the trigger router-eval. Explicit invocation only; dispatch pinned to Haiku.
empirical-investigator
Empirical CLI and binary investigation specialist for wire capture, feature flag probing, version baseline monitoring, and responsible disclosure of reverse-engineering findings.
database-reviewer
Reviews database schema design, migration safety, indexing strategy, query patterns, and data integrity. Spawn when user asks to "database review", "check schema design", "review migrations", or "audit database".
docs-reviewer
Reviews documentation for accuracy, completeness, and staleness. Spawn when user asks to "review docs", "check documentation", "find stale docs", or "audit documentation".
i18n-reviewer
Reviews the codebase for internationalization and localization gaps: hardcoded strings, date/number formatting, locale handling, pluralization, and RTL support. Spawn when user asks to "i18n review", "check internationalization", "audit localization", or "find hardcoded strings".