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 skills/daedalus/fuzzer/crash-analysisnpx skills add daedalus/fuzzer --skill crash-analysisgit clone --depth 1 https://github.com/daedalus/fuzzerWrote 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/daedalus/fuzzer/crash-analysis)<a href="https://agentmods.dev/skills/daedalus/fuzzer/crash-analysis"><img src="https://agentmods.dev/badge/skills/daedalus/fuzzer/crash-analysis.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.1 | $0.00162 | $0.01931 |
| Opus 5 | $0.00081 | $0.00966 |
| Sonnet 5 | $0.00032 | $0.00386 |
| Haiku 4.5 | $0.00016 | $0.00193 |
Grade C, and why
crash-analysis scanned grade C with 1 finding 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 yesterday.
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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
> Mistake: running ``rm -rf crashes/*`` between analysis sessions. How it starts
The opening of the file, as written. The whole thing — 180 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Crash Analysis
Reproduce, classify, and attribute crash artifacts from fuzzing campaigns using the project's sidecar format and existing analysis tooling.
When to Use This Skill
- "analyze this crash"
- "why did it segfault"
- "build a regression test for this crash"
- "generate a FINDINGS.md entry for this bug"
- "root cause this SIGFPE"
- "find the mutation site"
- "ASAN heap-buffer-overflow" / "UAF" / "UAF in libfoo"
- "crash forensics"
- "crash report" / "crash artifact"
- "minimize this crash input"
Crash Artifact Format
The fuzzer writes a quintet of sidecar files per crash (via save_crash in
adapters/filesystem.py):
crashes/
crash_<ts>_<cluster_id>_<sig>.bin ← raw input bytes (only file counted as "crash")
crash_<ts>_<cluster_id>_<sig>.txt ← human-readable report (target, returncode, GDB replay)
crash_<ts>_<cluster_id>_<sig>.json ← same fields, machine-readable (CrashMetadata.to_dict())
crash_<ts>_<cluster_id>_<sig>.hex ← xxd-style hexdump + text repr
crash_<ts>_<cluster_id>_<sig>.sh ← base64 reproducer script
The .bin is the authoritative input; the .txt and .json carry the
same triage fields (sanitizer, error_type, fault_addr, frames, registers,
gdb_replay, nearest_corpus, raw_stderr) — .txt for humans, .json for
dashboards and downstream tooling. The two are written together by
save_crash; treat them as a single artifact.
Core Methodology
1. Discover
Glob crashes/*.bin to enumerate inputs. Each .bin already has a
companion .json sidecar with the parsed triage fields — read those
directly:
jq '.[] | {signal, sanitizer, error_type, fault_addr}' crashes/*.json
The .json is written by save_crash and mirrors CrashMetadata.to_dict()
(sanitizer, error_type, fault_addr, frames, registers, gdb_replay,
nearest_corpus, raw_stderr, target_sha256, returncode). No re-parse of the
.txt is needed.
2. Classify
Every crash falls into exactly one bucket:
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.
- yesterday First seen · 180 lines · 162 tokens per session scan C 6dd8e5fca8be
crash-analysis is a skill published in the GitHub repository daedalus/fuzzer (44 stars, last pushed today), licensed MIT. It adds 162 tokens to every session and 1,931 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.
Other skills, from other repositories
alf
Agentic LLDB fuzzer and crash-triage toolkit for Apple Mach-O on arm64(e). Use this skill whenever a user mentions alf, wants an AI agent to drive LLDB over MCP, asks about triaging a crash on macOS, wants to fuzz a Mach-O target with LLM guidance, is debugging a macOS kernel via Virtualization.framework / KDP /…
alf
Agentic LLDB fuzzer and crash-triage toolkit for Apple Mach-O on arm64(e). Use this skill whenever a user mentions alf, wants an AI agent to drive LLDB over MCP, asks about triaging a crash on macOS, wants to fuzz a Mach-O target with LLM guidance, is debugging a macOS kernel via Virtualization.framework / KDP /…
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…