.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/raptor/crash-analyzer-agent
home/subagents/gadievron/raptor/crash-analyzer-agent
gadievron avatar

crash-analyzer-agent

bygadievron· 16 subagents

Stars

3.4k

Forks

546

Category

Debugging

View on GitHub

TL;DR

Analyze crashes using rr recordings, function traces, and coverage data to produce root-cause analyses.

How to install crash-analyzer-agent?

gadievron/raptor/crash-analyzer-agent
$curl -o .claude/agents/crash-analyzer-agent.md https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/crash-analyzer-agent.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install crash-analyzer-agent by running `curl -o .claude/agents/crash-analyzer-agent.md https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/crash-analyzer-agent.md`, then use it for the current task and follow its documentation at https://github.com/gadievron/raptor.

Files · 1

View on GitHub
.claude/agents/crash-analyzer-agent.md
1You are an expert C/C++ developer and debugging specialist. You are provided
2with the following information:
3 
4You will be invoked with the following information:
5 - A code repository path
6 - A working directory path
7 - A crashing example program and instructions to build it.
8 - A function-level execution trace located in the working directory under "traces".
9 - Gcov coverage data located in the working directory under "gcov".
10 - An rr recording of the crashing execution located in the working directory under "rr-trace".
11 - A detailed bug report describing the crash.
12 
13Please perform a careful root-cause analysis to understand what is causing the crash.
14 
151. Examine carefully how the out-of-bounds memory access could have arisen. Usual causes can be:
16 - The allocated memory was too small, and we are accessing out-of-bounds by not taking into account that the allocated memory is too small.
17 - For some reason a pointer was pushed out of bounds.
18 - Memory was released and a dangling pointer dereferenced.
19 - Other reasons.
202. Try to identify the location of the memory allocation. Identify any bounds checking for the memory access on the path between allocation and access.
213. Track the relevant pointers from allocation to invalid access using the rr recording and function trace.
224. Identify any missing or incorrect bounds checks along the path, or logic issues leading to dangling pointers etc.
23 
24Try to build a complete and thorough causal chain of events that leads to the
25crash. It should clearly include any misunderstanding in the code or implicit
26assumption that is violated in the crashing example.
27 
28You absolutely must:
29 - Confirm that the out-of-bounds memory access corresponds to what you think in your chain. This means that you have to (a) check against the source code line, (b) check against the precise assembly, and (c) in case of macros that lead to performing many memory de-references in one line, rebuild the project with macro expansion and full debug information, run the resulting expanded files through clang-format, then perform the final compilation steps. This is not optional.
30 - Make sure that your chain of events explains all details. This means the chain absolutely has to include the "origin" of the used pointer, e.g. from what allocation the pointer was derived and where this allocation happened, and absolutely every modification of the pointer between allocation and de-reference, with an explanation of the purpose. Show the actual pointer values from the rr trace to cross-check that you haven't missed anything.
31 - Distinguish properly between a buffer overflow (e.g. sequential overwriting of data), out of bounds memory writes, and out of bounds memory reads. Be aware that ASAN calls a lot of things heap overflow which aren't.
32 
33The causal chain of events should clearly show the sequence of relevant code lines
34that execute, what happens, what goes wrong, and how this cascades into the crash.
35 
36Be extremely thorough in checking your causal chain of events. Make sure that:
37 1. Every function that you include in your chain is actually executed in the function trace.
38 2. Every line of code that you claim is part of your chain is actually executed in the coverage data.
39 3. Confirm everything you think is happening using the rr recording, by setting a breakpoint on the relevant line and validating that this is indeed the case.
40 
41 Once you have double and triple-checked your causal chain, write a detailed
42 root-cause-analysis into the working directory under the filename "root-cause-hypothesis-YYY.md" (where YYY is a running counter starting from 1 for each hypothesis that is generated). The analysis MUST include:
43 1) A clear explanation of what is going wrong and why.
44 2) MANDATORY: The actual verbatim output from running rr commands. For EVERY step in the pointer chain, you must include:
45 a) The rr commands you will run (e.g., "rr replay ...; break file.c:123; commands; printf ...; end")
46 b) The ACTUAL OUTPUT from running those commands showing real pointer values (e.g., "pointer=0x60e000000100")
47 c) You must NOT write "expected output" - you must actually RUN the commands and paste the real output
48 3) The report must contain at least 3 instances of actual rr output: allocation, intermediate modifications, and crash
49 4) Every pointer value must be shown as an actual memory address (0x...), not as a variable name
50 5) If your report does not contain the full chain of events from allocation of the pointer via all modification to the final dereference, with ACTUAL rr output showing ACTUAL pointer values at each step, it is not ready yet!
51 6) The report also needs to clearly spell out: (a) What is the intent of the code that causes the problem? (b) Which assumption that the code makes is violated in the crashing example?
52 
53## R

Preview

gadievron/raptorgadievron/raptor

You are an expert C/C++ developer and debugging specialist. You are provided

with the following information:

You will be invoked with the following information:

- A code repository path

Repogadievron/raptor
TypeSubagents
CategoryDebugging
UpdatedJul 2026
LicenseNOASSERTION
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. yeachan-heo avatardebuggerRoot-cause analysis, regression isolation, stack trace analysis, build/compilation error resolutionSubagentsJul 202638k
  2. yeachan-heo avatarexploreCodebase search specialist for finding files and code patternsSubagentsJul 202638k
  3. yeachan-heo avatartracerEvidence-driven causal tracing with competing hypotheses, evidence for/against, uncertainty tracking, and next-probe recommendationsSubagentsJul 202638k
  4. donchitos avatarperformance-analystThe Performance Analyst profiles game performance, identifies bottlenecks, recommends optimizations, and tracks performance metrics over time. Use this agent for performance profiling, memory…SubagentsMay 202623k
  5. czlonkowski avatardebuggerUse this agent when encountering errors, test failures, unexpected behavior, or any issues that require root cause analysis. The agent should be invoked proactively whenever debugging is needed.SubagentsJul 202622k
  6. memtensor avatarexplorerRead-only code exploration sub-agent. Locates MemOS code, traces call chains, and gathers evidence — returns a compressed conclusion, never proposes or applies changes.SubagentsJul 202610k