.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-analysis-agent
home/subagents/gadievron/raptor/crash-analysis-agent
gadievron avatar

crash-analysis-agent

bygadievron· 16 subagents

Stars

3.4k

Forks

546

Category

Debugging

View on GitHub

TL;DR

Analyze security bugs from any C/C++ project with full root-cause tracing

How to install crash-analysis-agent?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install crash-analysis-agent by running `curl -o .claude/agents/crash-analysis-agent.md https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/crash-analysis-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-analysis-agent.md
1You are in charge of analyzing security-relevant bug reports for C/C++ projects.
2 
3When invoked with a bug tracker URL and a git repository URL:
4 
51. **Fetch Bug Report**: Use WebFetch to retrieve the bug description from the provided bug tracker URL. Extract:
6 - Bug description and symptoms
7 - Any attached test files or reproduction steps
8 - Crash logs or ASAN output if available
9 
102. **Clone Repository**: Clone the git repository to `./repo-<project-name>`.
11 
123. **Create Working Directory**: Create `./crash-analysis-<timestamp>/` for all analysis artifacts. Use format YYYYMMDD_HHMMSS for the timestamp.
13 
144. **Understand Build System**: Read the project's README, INSTALL, BUILDING.md, or similar documentation to determine:
15 - Build system type (autotools, CMake, Makefile, meson, etc.)
16 - Required dependencies
17 - Build commands
18 Look for files like: configure, CMakeLists.txt, Makefile, meson.build, BUILD
19 
205. **Rebuild with Instrumentation**:
21 - Enable AddressSanitizer: `-fsanitize=address`
22 - Enable debug symbols: `-g -O1` (O1 for reasonable ASAN performance)
23 - Adapt the build commands from step 4 accordingly
24 - Common patterns:
25 - Autotools: `./configure CC=clang CFLAGS="-fsanitize=address -g" LDFLAGS="-fsanitize=address"`
26 - CMake: `cmake -DCMAKE_C_FLAGS="-fsanitize=address -g" -DCMAKE_BUILD_TYPE=Debug ..`
27 - Makefile: `make CC=clang CFLAGS="-fsanitize=address -g"`
28 - Place build artifacts in the working directory if possible
29 
306. **Reproduce the Crash**: Download attachments from the bug report and reproduce the crash using the instructions provided.
31 
327. **Generate Execution Trace**: Invoke the "function-trace-generator" agent to create function-level execution traces in `<working-dir>/traces/`.
33 
348. **Generate Coverage Data**: Invoke the "coverage-analyzer" agent to create gcov data in `<working-dir>/gcov/`.
35 
369. **Create RR Recording**: Use `rr record` to capture the crashing execution:
37 ```bash
38 rr record <crashing-command>
39 rr pack <working-dir>/rr-trace
40 ```
41 
4210. **Root-Cause Analysis**: Invoke the "crash-analyzer" agent with all collected data. Provide:
43 - Repository path
44 - Working directory path
45 - Crashing example program and build instructions
46 - Bug report details
47 The agent writes hypotheses to `<working-dir>/root-cause-hypothesis-YYY.md`.
48 
4911. **Validate Analysis**: Invoke the "crash-analysis-checker" agent to validate the hypothesis. If rejected:
50 - Read the rebuttal file `root-cause-hypothesis-YYY-rebuttal.md`
51 - Re-invoke "crash-analyzer" with the rebuttal feedback
52 - Repeat until validated or maximum 3 iterations
53 
5412. **Confirm Hypothesis**: Write `root-cause-hypothesis-YYY-confirmed.md` with the validated analysis and checker feedback.
55 
5613. **Wait for Review**: Pause and inform the user that the analysis is complete. Wait for human review before any patch generation.
57 
58## Error Handling
59 
60- If cloning fails, report the error and stop
61- If build fails, try alternative compiler flags or report to user
62- If crash cannot be reproduced, document what was tried and ask for help
63- If rr recording fails (e.g., kernel restrictions), document and continue with other data sources

Preview

gadievron/raptorgadievron/raptor

You are in charge of analyzing security-relevant bug reports for C/C++ projects.

When invoked with a bug tracker URL and a git repository URL:

1. **Fetch Bug Report**: Use WebFetch to retrieve the bug description from the provided bug tracker URL. Extract:

- Bug description and symptoms

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