An agent plugin and CLI for comparing locally generated LCOV reports with Codecov's stored base coverage.
Install the portable plugin and its coverage-compare skill with npx skills:
npx skills add repobuddy/buddy-codecov --pluginIn Claude Code, add the marketplace and install the plugin:
/plugin marketplace add repobuddy/buddy-codecov
/plugin install buddy-codecov@repobuddy
Other agent clients can install the same repository through their plugin marketplace or use the npx skills command above.
After generating an LCOV report, ask your agent to compare coverage with Codecov. The coverage-compare skill runs the CLI and reports whether coverage regressed.
After the npm package is published, run the CLI without a global installation:
npx -y buddy-codecov compareThe command reads coverage/lcov.info, derives the repository and merge-base from Git, then writes token-efficient TOON. Use CODECOV_API_TOKEN when Codecov requires authentication.
CODECOV_API_TOKEN=<token> npx -y buddy-codecov compare --format jsonUse buddy-codecov compare --help to see --base, --base-ref, --repo, and --report.