crashdx CLAUDE.md

crashdx CLAUDE.md is an instructions file for coding agents from r00tify/crashdx. It costs 1,347 tokens per session, scanned A, original, MIT.

Repository instructions for CrashDX, a Swift tool that analyzes crash reports, finds debugging symbol files, and explains likely causes. It includes build, test, command, architecture, and data-constraint guidance.

In plain words
What is it for?
Use it when building or testing CrashDX, analyzing or symbolizing .ips crash reports, working on its diagnosis engine, or testing its MCP server.
Why use it?
It gives coding agents the project-specific commands and design rules needed to change or diagnose CrashDX safely.

Instructions file

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 instructions/r00tify/crashdx/claude-md
Clone the repo
git clone --depth 1 https://github.com/r00tify/crashdx

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 crashdx CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/r00tify/crashdx/claude-md.svg)](https://agentmods.dev/instructions/r00tify/crashdx/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/r00tify/crashdx/claude-md"><img src="https://agentmods.dev/badge/instructions/r00tify/crashdx/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,347 This file is loaded in full into every session.
When invoked 1,347 The same file — it is already loaded in full.
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.1 $0.01347 $0.01347
Opus 5 $0.00674 $0.00674
Sonnet 5 $0.00269 $0.00269
Haiku 4.5 $0.00135 $0.00135

Measured 5d ago against content hash ded2a4491b70, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

crashdx CLAUDE.md 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.

CLAUDE.md · 98 lines

How it starts

The opening of the file, as written. The whole thing — 98 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Commands

swift build                                   # debug build (crashdx, crashdx-mcp, CrashDXCore)
swift build -c release
swift test                                    # full test suite (Swift Testing, not XCTest)
swift test --filter DiagnosisEngineTests      # one suite (regex match on the suite name)
swift test --filter watchdogTimeoutFiresOnSyntheticFixture  # one @Test function

swift run crashdx analyze <report.ips> [--json --tier full] [--dsym <path>] [--no-spotlight] [--no-archives]
swift run crashdx symbolicate <report.ips> [--dsym <path>] [--no-spotlight] [--no-archives]
swift run crashdx-mcp                         # stdio MCP server

python3 Tests/mcp-smoke.py [.build/debug/crashdx-mcp]  # manual MCP protocol smoke test;
                                                        # NOT part of `swift test`; run after `swift build`

Architecture

Three targets share one core:

  • CrashDXCore, the library: .ips parsing (IPSFile), dSYM discovery (DSYMLocator), symbolication (Symbolicator), the diagnosis engine (Diagnosis/), and untrusted-text rendering (SafeRendering). Every report-derived string a front end prints must go through sanitized(_:). Imports only Foundation.
  • crashdx: CLI. analyze/symbolicate subcommands.
  • crashdx-mcp: MCP server (stdio, newline-delimited JSON-RPC). The only target importing an external package (modelcontextprotocol/swift-sdk). Note SwiftPM resolves per package, so library consumers still pull that graph.

AnalyzePipeline (Sources/CrashDXCore/AnalyzePipeline.swift) is the single shared parse → locate dSYMs → symbolicate → diagnose → build-report sequence. Both the CLI and the MCP server call it. Never duplicate this flow in either front end; add new steps there so the two can't drift.

Diagnosis engine

Three deterministic stages, no LLM calls (full spec in docs/DESIGN.md):

Read the full file on GitHub · 98 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 · 98 lines · 1,347 tokens per session scan A ded2a4491b70

Subscribe to this mod's changes

crashdx CLAUDE.md is an instructions file published in the GitHub repository r00tify/crashdx (7 stars, last pushed 1mo ago), licensed MIT. It adds 1,347 tokens to every session, about $0.0067 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.