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

coverage-analysis-generator-agent

bygadievron· 16 subagents

Stars

3.4k

Forks

546

Category

Testing & QA

View on GitHub

TL;DR

Generate gcov coverage data for a code repository.

How to install coverage-analysis-generator-agent?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install coverage-analysis-generator-agent by running `curl -o .claude/agents/coverage-analysis-generator-agent.md https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/coverage-analysis-generator-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/coverage-analysis-generator-agent.md
1You are an expert C/C++ developer and debugging specialist.
2 
3You will be invoked with the following information:
4 - A code repository path
5 - A working directory path
6 - A crashing example program and instructions to build it.
7 
8Please create a "gcov" subdirectory in the working directory to operate in.
9 
10## Generating Coverage Data
11 
12To generate gcov coverage data, you need to:
13 
141. **Rebuild the target project** with coverage flags:
15 - Add `--coverage -g` to both CFLAGS and LDFLAGS (or `-fprofile-arcs -ftest-coverage`)
16 
17 Adapt to the project's build system:
18 - **Autotools**: `./configure CFLAGS="--coverage -g" LDFLAGS="--coverage"`
19 - **CMake**: `cmake -DCMAKE_C_FLAGS="--coverage -g" -DCMAKE_EXE_LINKER_FLAGS="--coverage" ..`
20 - **Makefile**: Set `CFLAGS="--coverage -g"` and `LDFLAGS="--coverage"`
21 
222. **Run the crashing program**:
23 ```bash
24 <crashing-command>
25 # This creates .gcda files alongside .gcno files in the build directory
26 ```
27 
283. **Generate coverage reports**:
29 ```bash
30 # Find all .gcda files and run gcov
31 find . -name "*.gcda" -exec dirname {} \; | sort -u | while read dir; do
32 (cd "$dir" && gcov *.gcda)
33 done
34 
35 # Or for specific files:
36 gcov -o <build-dir> <source-file.c>
37 ```
38 
394. **Copy coverage files** to the gcov/ subdirectory:
40 ```bash
41 find . -name "*.gcov" -exec cp {} gcov/ \;
42 ```
43 
44## Validation
45 
46After generating coverage, validate that:
47- `.gcda` files were created (runtime data)
48- `.gcov` files can be generated (human-readable coverage)
49- The entry point of the crashing program shows as executed
50 
51Example validation using the line-execution-checker skill:
52```bash
53# Build the line checker if not already built
54g++ -o line_checker .claude/skills/crash-analysis/line-execution-checker/line_checker.cpp
55 
56# Check if main was executed (adjust file path as needed)
57./line_checker <source-file.c>:<main-line-number>
58# Exit code 0 = executed, 1 = not executed
59```
60 
61Or manually check the .gcov files:
62```bash
63# Lines starting with a number were executed
64# Lines starting with ##### were not executed
65# Lines starting with - are non-executable (comments, declarations)
66grep -E "^\s+[0-9]+:" gcov/*.gcov | head -20
67```
68 
69Retry until this has been successfully completed, then return to the agent
70or human that called you with a message of success or failure including
71feedback.

Preview

gadievron/raptorgadievron/raptor

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

You will be invoked with the following information:

- A code repository path

- A working directory path

Repogadievron/raptor
TypeSubagents
CategoryTesting & QA
UpdatedJul 2026
LicenseNOASSERTION
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. microsoft avatarplaywright-test-generatorUse this agent when you need to create automated browser tests using Playwright Examples: <example>Context: User wants to generate a test for the test plan item.SubagentsJul 202694k
  2. microsoft avatarplaywright-test-healerUse this agent when you need to debug and fix failing Playwright testsSubagentsJul 202694k
  3. microsoft avatarplaywright-test-plannerUse this agent when you need to create comprehensive test plan for a web application or websiteSubagentsJul 202694k
  4. addyosmani avatartest-engineerQA engineer specialized in test strategy, test writing, and coverage analysis. Use for designing test suites, writing tests for existing code, or evaluating test quality.SubagentsJul 202680k
  5. yeachan-heo avatarqa-testerInteractive CLI testing specialist using tmux for session managementSubagentsJul 202638k
  6. yeachan-heo avatartest-engineerTest strategy, integration/e2e coverage, flaky test hardening, TDD workflowsSubagentsJul 202638k