Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问clear审计通过

husky-test-coverage哈士奇测试覆盖率

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

2,495

周安装

105

GitHub Stars

21

下载量

874
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:husky-test-coverage(哈士奇测试覆盖率)
来源仓库:https://github.com/shipshitdev/library
仓库路径:skills/husky-test-coverage
安装命令:
npx skills add https://github.com/shipshitdev/library --skill husky-test-coverage
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/shipshitdev/library --skill husky-test-coverage

简介

husky-test-coverage 用于辅助测试设计、自动化测试和回归验证。

  • 适合让 Agent 编写单元测试、端到端测试或根据失败日志定位问题。
  • 使用时需要确认项目测试框架、运行命令和夹具数据。
  • 避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时区分环境。
  • 建议结合来源仓库和原始 README 核验具体用法和功能细节。

SKILL.md

Husky Test Coverage

Set up or verify Husky git hooks to ensure tests run and coverage thresholds are enforced on every commit.

Purpose

This skill automates the setup of:

  • Husky git hooks for pre-commit testing
  • Test runner detection (Jest, Vitest, Mocha)
  • Coverage configuration with thresholds (default: 80%)
  • Pre-commit hook that runs tests with coverage
  • Configurable coverage enforcement (block or warn)

When to Use

This skill should be used when:

  • Setting up test coverage enforcement for the first time
  • Verifying existing Husky/test setup is correctly configured
  • Ensuring coverage thresholds are met before commits
  • Configuring pre-commit hooks for test coverage
  • Adapting coverage setup to different test runners

Project Context Discovery

Before setting up test coverage, discover the project's context:

  1. Check package.json:

- Review existing test scripts - Detect test runner from dependencies (jest, vitest, mocha) - Check for existing Husky installation - Review existing coverage configuration

  1. Identify Test Runner:

- Jest: Check for jest in dependencies, look for jest.config.js or jest.config.json - Vitest: Check for vitest in dependencies, look for vitest.config.ts or vitest.config.js - Mocha: Check for mocha in dependencies, check for coverage tool (nyc, c8)

  1. Check Coverage Configuration:

- Jest: Look for coverageThreshold in jest.config.* - Vitest: Look for coverage.thresholds in vitest.config.* - Mocha: Look for .nycrc.json or coverage config in package.json

  1. Verify Existing Husky Setup:

- Check if .husky/ directory exists - Review existing pre-commit hook - Check if Husky is in package.json dependencies

  1. Detect Test Files:

- Scan for *.test.* or *.spec.* files - Verify tests exist before enforcing coverage

Quick Start

# Basic setup (80% coverage threshold, blocks commits below threshold)
python3 scripts/setup-husky-coverage.py \
  --root /path/to/project

# Custom threshold (85%)
python3 scripts/setup-husky-coverage.py \
  --root /path/to/project \
  --threshold 85

# Warn only (don't block commits)
python3 scripts/setup-husky-coverage.py \
  --root /path/to/project \
  --no-fail-on-below

# Skip if no tests found
python3 scripts/setup-husky-coverage.py \
  --root /path/to/project \
  --skip-if-no-tests

# Dry run to preview changes
python3 scripts/setup-husky-coverage.py \
  --root /path/to/project \
  --dry-run

What Gets Configured

Husky Setup

  • Installs Husky if not already present
  • Initializes Husky (npx husky install)
  • Creates .husky/pre-commit hook that runs tests with coverage
  • Adds prepare script to package.json (if missing)

Test Runner Detection

The skill automatically detects:

  • Jest: Uses jest --coverage --watchAll=false in pre-commit hook
  • Vitest: Uses vitest --coverage --run in pre-commit hook
  • Mocha: Uses nyc or c8 with mocha test command

Coverage Configuration

Jest:

  • Creates or updates jest.config.json with coverageThreshold
  • Default thresholds: 80% lines, 75% branches, 80% functions, 80% statements

Vitest:

  • Creates or updates vitest.config.ts/js with coverage thresholds
  • Configures v8 coverage provider
  • Sets same default thresholds as Jest

Mocha + nyc:

  • Creates or updates .nycrc.json with coverage thresholds
  • Configures text, html, and lcov reporters

Pre-commit Hook

The created hook:

  • Runs tests with coverage before every commit
  • Fails the commit if coverage is below threshold (configurable)
  • Can skip if no test files are found (optional)

Configuration Options

Command Line Arguments

  • --root <path>: Project root directory (required)
  • --threshold <number>: Coverage threshold percentage (default: 80)
  • --fail-on-below: Fail commit if coverage below threshold (default: true)
  • --no-fail-on-below: Allow commit even if coverage below threshold
  • --skip-if-no-tests: Skip hook if no test files found
  • --dry-run: Show what would be done without making changes

Configuration File

Create .husky-test-coverage.json in project root:

{
  "coverageThreshold": {
    "lines": 80,
    "branches": 75,
    "functions": 80,
    "statements": 80
  },
  "failOnCoverageBelowThreshold": true,
  "skipIfNoTests": false
}

Package.json Configuration

Alternatively, add to package.json:

{
  "huskyTestCoverage": {
    "threshold": 80,
    "failOnBelow": true
  }
}

Tech Stack Adaptation

Jest Projects

Detection:

  • Checks for jest in dependencies
  • Looks for jest.config.js or jest.config.json

Configuration:

  • Updates or creates jest.config.json with coverage thresholds
  • Pre-commit hook: npm test -- --coverage --watchAll=false

Example jest.config.json:

{
  "coverageThreshold": {
    "global": {
      "lines": 80,
      "branches": 75,
      "functions": 80,
      "statements": 80
    }
  }
}

Vitest Projects

Detection:

  • Checks for vitest in dependencies
  • Looks for vitest.config.ts or vitest.config.js

Configuration:

  • Updates or creates Vitest config with coverage thresholds
  • Pre-commit hook: npm test -- --coverage --run

Example vitest.config.ts:

import { defineConfig } from 'vitest/config'

export default defineConfig({
  test: {
    coverage: {
      provider: 'v8',
      reporter: ['text', 'json', 'html'],
      thresholds: {
        lines: 80,
        branches: 75,
        functions: 80,
        statements: 80
      }
    }
  }
})

Mocha Projects

Detection:

  • Checks for mocha in dependencies
  • Checks for coverage tool (nyc or c8)

Configuration:

  • Creates or updates .nycrc.json for nyc
  • Pre-commit hook: nyc --reporter=text --reporter=html npm test

Example.nycrc.json:

{
  "check-coverage": true,
  "lines": 80,
  "branches": 75,
  "functions": 80,
  "statements": 80,
  "reporter": ["text", "text-summary", "html", "lcov"]
}

Package Manager Support

The skill automatically detects and uses:

  • npm: npm run test
  • yarn: yarn test
  • pnpm: pnpm run test
  • bun: bun run test

Workflow

When using this skill:

  1. Discover Project Context:

- Scan package.json for test runner and dependencies - Check existing Husky configuration - Review existing coverage config files - Verify test files exist

  1. Detect Test Runner:

- Identify Jest, Vitest, or Mocha - Detect coverage tool (built-in or nyc/c8) - Determine package manager

  1. Setup or Verify Husky:

- Install Husky if missing - Initialize Husky hooks - Add prepare script if needed

  1. Configure Coverage:

- Create or update coverage configuration - Set coverage thresholds (default 80%) - Configure appropriate reporters

  1. Create Pre-commit Hook:

- Generate hook script with test command - Configure to run tests with coverage - Set enforcement behavior (block or warn)

  1. Verify Setup:

- Review generated configuration - Test hook with a commit - Adjust thresholds if needed

Integration with Other Skills

This skill works alongside:

SkillHow It Works Together
fullstack-workspace-initAutomatically invoked after scaffolding to set up 80% coverage threshold
linter-formatter-initBoth configure Husky; this skill focuses on test coverage, linter-formatter-init focuses on linting/formatting
testing-expertUses testing patterns and coverage targets from testing-expert skill

Automatic Setup with fullstack-workspace-init

When using fullstack-workspace-init to scaffold a new project, this skill is automatically applied with:

  • Vitest as the test runner
  • 80% coverage threshold
  • Pre-commit hooks enabled
  • GitHub Actions CI/CD integration

You don't need to run this skill separately if you used fullstack-workspace-init.

Manual Integration

If adding to an existing project:

python3 scripts/setup-husky-coverage.py \
  --root /path/to/project \
  --threshold 80

Troubleshooting

Pre-commit hook not running

# Reinstall Husky
npx husky install
chmod +x .husky/pre-commit

Coverage not being checked

  • Verify test command includes coverage flag
  • Check coverage configuration file exists and is correct
  • Ensure coverage tool is installed (nyc/c8 for Mocha)

Hook fails even when tests pass

  • Check coverage thresholds are achievable
  • Review coverage report to see what's below threshold
  • Consider adjusting thresholds or improving test coverage

Tests run but coverage not enforced

  • Verify coverage configuration file has correct thresholds
  • Check test runner supports coverage (Jest/Vitest have built-in, Mocha needs nyc/c8)
  • Review pre-commit hook script for correct command

Multiple test runners detected

The skill uses the first detected runner in priority order: Vitest > Jest > Mocha

Best Practices

  1. Start with reasonable thresholds: Begin with 80% and adjust based on project needs
  2. Monitor coverage trends: Use coverage reports to identify gaps
  3. Incremental improvement: Gradually increase thresholds as coverage improves
  4. Consider context: Some files (utilities, configs) may not need high coverage
  5. Use with CI/CD: Pre-commit hooks catch issues early, but CI/CD provides final gate
  6. Team alignment: Ensure team understands coverage requirements and goals

Resources


When this skill is active, it will:

  1. Discover project test setup and configuration
  2. Detect test runner and coverage tool
  3. Set up or verify Husky installation
  4. Configure coverage thresholds appropriately
  5. Create pre-commit hook that enforces coverage
  6. Provide troubleshooting guidance when needed

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.18%
按下载量换算246

Antigravity

23.33%
按下载量换算204

Gemini CLI

17.14%
按下载量换算150

OpenCode

11.98%
按下载量换算105

Codex

7.38%
按下载量换算65

Cursor

3.31%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills