trace-hexdump-extractor

trace-hexdump-extractor is an agent for coding agents from icloudza/algokiller-plugin. It costs 152 tokens per session (934 once invoked), scanned A, original, MIT.

A read-only helper that extracts and interprets large hexadecimal byte dumps from execution traces. A hexadecimal dump is a text view of raw binary data.

In plain words
What is it for?
Use it to inspect trace lines, parse byte ranges, recognize encoded fields, and report whether a dump is unrelated bookkeeping.
Why use it?
It keeps large binary outputs out of the main analysis while identifying useful data such as text, JSON, or cryptographic buffers.

Agent

Part of the algokiller-plugin plugin — 4 skills, 3 commands, 4 agents, 5 hooks, 1 MCP server shipped together

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 agents/icloudza/algokiller-plugin/trace-hexdump-extractor
Clone the repo
git clone --depth 1 https://github.com/icloudza/algokiller-plugin

Or install algokiller-plugin, the plugin that ships this one along with the rest of its 4 skills, 3 commands, 4 agents, 5 hooks, 1 MCP server.

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 trace-hexdump-extractor

README.md
[![agentmods](https://agentmods.dev/badge/agents/icloudza/algokiller-plugin/trace-hexdump-extractor.svg)](https://agentmods.dev/agents/icloudza/algokiller-plugin/trace-hexdump-extractor)
Your own site
<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>
Per session 152 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 934 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.00152 $0.00934
Opus 5 $0.00076 $0.00467
Sonnet 5 $0.00030 $0.00187
Haiku 4.5 $0.00015 $0.00093

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

Security

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.

agents/trace-hexdump-extractor.md · 54 lines

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 the hexdump at address line)
  • 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:

  1. Call trace_hexblock --line <N> (preferred) or trace_context if hexblock fails because the line isn't a call func: header.
  2. First check call_kind — if it equals arc_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.
  3. Parse bytes_hex into 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.).
  4. 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
}

Read the full file on GitHub · 54 lines

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. 5d ago First seen · 54 lines · 152 tokens per session scan A 7ee0acdfe280

Subscribe to this mod's changes

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.

Related

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.

product-on-purpose/pm-skills · 50 tokens

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.

product-on-purpose/pm-skills · 59 tokens

empirical-investigator

Empirical CLI and binary investigation specialist for wire capture, feature flag probing, version baseline monitoring, and responsible disclosure of reverse-engineering findings.

pjt222/agent-almanac · 32 tokens

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".

RashadAnsari/myagents · 45 tokens

docs-reviewer

Reviews documentation for accuracy, completeness, and staleness. Spawn when user asks to "review docs", "check documentation", "find stale docs", or "audit documentation".

RashadAnsari/myagents · 39 tokens

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".

RashadAnsari/myagents · 63 tokens