test

Run unit tests, gather coverage, and block commits until gates pass.

2|1|Updated Jan 27, 2026
One-click install
npx skills add https://github.com/lucidlabs-hq/agent-kit --skill test-lucidlabs-hq
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test
Source: https://github.com/lucidlabs-hq/agent-kit/tree/main/.claude/skills/test
Command: npx skills add https://github.com/lucidlabs-hq/agent-kit --skill test-lucidlabs-hq

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates the enforcement of testing gates before commits and pull requests to prevent faulty releases.

Core Features & Use Cases

  • Run unit tests across the codebase and report results.
  • Generate coverage reports and identify gaps through a structured gap analysis.
  • Enforce a mandatory gate before /commit and PR creation, ensuring code quality.
  • Applicable to frontend and backend projects within CI workflows.

Quick Start

Run the test gate to validate your changes before committing or opening a PR.

Frequently Asked Questions about test

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

FAQPage Schema
How do I enforce test coverage and prevent commits with failing unit tests?

To enforce test coverage and prevent faulty commits, this Skill automates testing gates that run unit tests, gather coverage, and block commits or pull requests until all checks pass.

What is gap analysis in software testing and how does it identify missing coverage?

Gap analysis in software testing identifies uncovered code areas by parsing test results and comparing them against recent changes. This structured gap analysis highlights missing coverage before integration.

Can I use automated quality gates for both frontend and backend projects in CI?

Yes, you can use automated quality gates for both frontend and backend projects within CI workflows. The gate validates changes by running unit, e2e, and coverage checks before PR creation.

How do I run end-to-end and unit tests before opening a pull request?

You can run end-to-end and unit tests before opening a pull request by triggering the testing gate. It supports specific commands for unit, e2e, and coverage tasks to validate your codebase.

What is the best way to block pull requests when infrastructure checks or tests fail?

The best way to block pull requests when tests fail is to implement an automated quality gate. This mechanism runs infrastructure checks and blocks PR creation until all testing gates successfully pass.