3.9k★by lxgicstudios
coverage-booster – OpenClaw Skill
coverage-booster is an OpenClaw Skills integration for coding workflows. Find untested code paths and generate tests to boost coverage. Use when your test coverage is too low and you need to fill the gaps.
Skill Snapshot
| name | coverage-booster |
| description | Find untested code paths and generate tests to boost coverage. Use when your test coverage is too low and you need to fill the gaps. OpenClaw Skills integration. |
| owner | lxgicstudios |
| repository | lxgicstudios/coverage-booster |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @lxgicstudios/coverage-booster |
| last updated | Feb 7, 2026 |
Maintainer

name: coverage-booster description: Find untested code paths and generate tests to boost coverage. Use when your test coverage is too low and you need to fill the gaps.
Coverage Booster
Your coverage report says 47%. Your manager says 80%. This tool finds the untested code paths in your project and generates the missing tests. Stop writing boilerplate test code by hand when a tool can find the gaps and fill them for you.
One command. Zero config. Just works.
Quick Start
npx ai-coverage-boost src/
What It Does
- Scans your source files and identifies functions, branches, and lines without test coverage
- Generates Jest or Vitest compatible test files for the uncovered code
- Prioritizes untested code by complexity so you fix the riskiest stuff first
- Handles edge cases like error handlers and conditional branches
- Outputs ready to run test files that actually pass
Usage Examples
# Boost coverage for your whole src directory
npx ai-coverage-boost src/
# Target a specific file
npx ai-coverage-boost src/utils/parser.ts
# Scan all TypeScript files
npx ai-coverage-boost "src/**/*.ts"
Best Practices
- Run your existing tests first - Know your baseline before generating new ones
- Review generated tests - They're good starting points but might need tweaks for your specific setup
- Focus on business logic - Don't waste time boosting coverage on trivial getters and setters
- Integrate with CI - Set a coverage threshold and use this tool when you dip below it
When to Use This
- Coverage dropped below your team's threshold after a big feature push
- You inherited a project with almost no tests
- You need to hit a coverage target for a release gate
- You want to find risky untested code before it bites you in production
Part of the LXGIC Dev Toolkit
This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.
Find more:
- GitHub: https://github.com/LXGIC-Studios
- Twitter: https://x.com/lxgicstudios
- Substack: https://lxgicstudios.substack.com
- Website: https://lxgic.dev
Requirements
No install needed. Just run with npx. Node.js 18+ recommended.
npx ai-coverage-boost --help
How It Works
The tool scans your source files and compares them against existing test files to find gaps. It identifies untested functions, branches, and error paths, then generates test cases that cover those specific code paths. The output is test files compatible with Jest or Vitest.
License
MIT. Free forever. Use it however you want.
Coverage Booster
Find untested code paths and generate tests to boost coverage.
Quick Start
npx ai-coverage-boost src/
What It Does
- Finds untested functions, branches, and lines
- Generates Jest/Vitest compatible test files
- Prioritizes by complexity
Part of the LXGIC Dev Toolkit
110+ free developer tools. No paywalls.
- GitHub: https://github.com/LXGIC-Studios
- Twitter: https://x.com/lxgicstudios
- Website: https://lxgic.dev
MIT License.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
No install needed. Just run with npx. Node.js 18+ recommended. ```bash npx ai-coverage-boost --help ```
FAQ
How do I install coverage-booster?
Run openclaw add @lxgicstudios/coverage-booster in your terminal. This installs coverage-booster into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/coverage-booster. Review commits and README documentation before installing.
