codecov-coverage

Fetch and analyze Codecov coverage data for the LinkML project.

587|187|Updated Mar 16, 2021
One-click install
npx skills add https://github.com/linkml/linkml --skill codecov-coverage
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: codecov-coverage
Source: https://github.com/linkml/linkml/tree/main/.claude/skills/codecov-coverage
Command: npx skills add https://github.com/linkml/linkml --skill codecov-coverage

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill fetches and analyzes code coverage data from Codecov for the LinkML project, helping you verify test coverage before PRs and identify gaps.

Core Features & Use Cases

  • Overall coverage: Retrieve the quick, high-level coverage percentage for the main branch.
  • Detailed totals: Access lines, hits, misses, and total files to understand coverage distribution.
  • File-level insights: Get per-file coverage to locate low-coverage areas that may need tests.

Quick Start

Use the codecov-coverage skill to fetch the current overall coverage for LinkML on the main branch from Codecov.

Frequently Asked Questions about codecov-coverage

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check code coverage for LinkML before submitting a PR?

Code coverage measures what percentage of your code is tested. This Skill fetches LinkML's current coverage percentage and detailed metrics from Codecov, helping you verify coverage hasn't dropped before you submit a PR.

Can I see which files in LinkML have low test coverage?

Yes. This Skill retrieves per-file coverage reports from Codecov, showing you exactly which files have gaps so you can prioritize adding tests to the lowest-coverage areas.

What coverage metrics does Codecov provide for LinkML?

Codecov provides overall coverage percentage, detailed line counts (total lines, hits, misses), and file-level reports. This Skill fetches all three to give you both quick summaries and granular insights.

How do I integrate coverage checks into my development workflow?

This Skill supports WebFetch and Bash workflows, letting you query coverage data and feed results into PR decisions or automated checks without manual Codecov visits.

When should I use coverage analysis in my testing process?

Run coverage checks before creating a PR, during code changes, or when asked about test gaps. It ensures coverage remains stable and flags untested code that could hide bugs.