Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

configure-tests配置测试

Agent Skill

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

总安装

1,236

周安装

52

GitHub Stars

28

下载量

433
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill configure-tests

简介

用于配置测试框架,支持 Jest、Vitest、pytest 等多种工具链。

  • 适合需要建立自动化测试基础设施或迁移现代测试框架的项目。
  • 可生成测试计划或根据失败日志定位问题根源。
  • 编写测试时应避免为通过而改坏真实逻辑,需区分模拟与真实环境。
  • configure-tests 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/configure:tests

Check and configure testing frameworks against best practices (Vitest, Jest, pytest, cargo-nextest).

When to Use This Skill

Use this skill when...Use another approach when...
Setting up testing infrastructureJust running tests (use /test:run skill)
Checking test framework configurationTests already properly configured
Migrating to modern test frameworks (Vitest, pytest, nextest)Writing individual tests (write tests directly)
Validating coverage configurationDebugging failing tests (check test output)
Ensuring test best practicesSimple project with no testing needed

Context

  • Package.json:!find. -maxdepth 1 -name \'package.json\'
  • Pyproject.toml:!find. -maxdepth 1 -name \'pyproject.toml\'
  • Cargo.toml:!find. -maxdepth 1 -name \'Cargo.toml\'
  • Test config files:!find. -maxdepth 1 \(-name 'vitest.config.*' -o -name 'jest.config.*' -o -name 'pytest.ini' -o -name '.nextest.toml' \)
  • Pytest in pyproject:!grep -c 'tool.pytest' pyproject.toml
  • Test directories:!find. -maxdepth 2 -type d \(-name 'tests' -o -name '__tests__' -o -name 'test' \)
  • Test scripts in package.json:!grep -m5 -o '"test[^"]*"' package.json
  • Coverage config:!grep -l 'coverage' vitest.config.* jest.config.*
  • Project standards:!find. -maxdepth 1 -name '.project-standards.yaml' -type f

Modern testing stack preferences:

  • JavaScript/TypeScript: Vitest (preferred) or Jest
  • Python: pytest with pytest-cov
  • Rust: cargo-nextest for improved performance

Parameters

Parse these from $ARGUMENTS:

FlagDescription
--check-onlyReport status without offering fixes
--fixApply all fixes automatically without prompting
--framework <framework>Override framework detection (vitest, jest, pytest, nextest)

Version Checking

CRITICAL: Before flagging outdated versions, verify latest releases:

  1. Vitest: Check vitest.dev or GitHub releases
  2. Jest: Check jestjs.io or npm
  3. pytest: Check pytest.org or PyPI
  4. cargo-nextest: Check nexte.st or GitHub releases

Use WebSearch or WebFetch to verify current versions before reporting outdated frameworks.

Execution

Execute this testing framework compliance check:

Step 1: Detect framework

Identify the project language and existing test framework:

IndicatorLanguageDetected Framework
vitest.config.*JavaScript/TypeScriptVitest
jest.config.*JavaScript/TypeScriptJest
pyproject.toml [tool.pytest]Pythonpytest
pytest.iniPythonpytest
Cargo.tomlRustcargo test
.nextest.tomlRustcargo-nextest

If --framework flag is provided, use that value instead.

Step 2: Analyze current state

Read the detected framework's configuration and check completeness. For each framework, verify:

Vitest:

  • Config file exists (vitest.config.ts or .js)
  • globals: true configured for compatibility
  • environment set appropriately (jsdom, happy-dom, node)
  • Coverage configured with @vitest/coverage-v8 or @vitest/coverage-istanbul
  • Watch mode exclusions configured

Jest:

  • Config file exists (jest.config.js or .ts)
  • testEnvironment configured
  • Coverage configuration present
  • Transform configured for TypeScript/JSX
  • Module path aliases configured

pytest:

  • pyproject.toml has [tool.pytest.ini_options] section
  • testpaths configured
  • addopts includes useful flags (-v, --strict-markers)
  • markers defined for test categorization
  • pytest-cov installed

cargo-nextest:

  • .nextest.toml exists
  • Profile configurations (default, ci)
  • Retry policy configured
  • Test groups defined if needed

Step 3: Report results

Print a compliance report with:

  • Detected framework and version
  • Configuration check results for each item
  • Test organization (unit/integration/e2e directories)
  • Package scripts status (test, test:watch, test:coverage)
  • Overall issue count and recommendations

If --check-only, stop here.

Step 4: Apply fixes (if --fix or user confirms)

Install dependencies and create configuration using templates from REFERENCE.md:

  1. Missing config: Create framework config file from template
  2. Missing dependencies: Install required packages
  3. Missing coverage: Add coverage configuration with 80% threshold
  4. Missing scripts: Add test scripts to package.json
  5. Missing test directories: Create standard test directory structure

Step 5: Set up test organization

Create standard test directory structure for the detected language. See directory structure patterns in REFERENCE.md.

Step 6: Configure CI/CD integration

Check for test commands in GitHub Actions workflows. If missing, add CI test commands using the CI templates from REFERENCE.md.

Step 7: Handle migration (if upgrading)

If migrating between frameworks (e.g., Jest to Vitest, unittest to pytest), follow the migration guide in REFERENCE.md.

Step 8: Update standards tracking

Update .project-standards.yaml:

standards_version: "2025.1"
last_configured: "<timestamp>"
components:
  tests: "2025.1"
  tests_framework: "<vitest|jest|pytest|nextest>"
  tests_coverage_threshold: 80
  tests_ci_integrated: true

For detailed configuration templates, migration guides, CI/CD integration examples, and directory structure patterns, see REFERENCE.md.

Agentic Optimizations

ContextCommand
Detect test frameworkfind. -maxdepth 1 \(-name 'vitest.config.*' -o -name 'jest.config.*' -o -name 'pytest.ini' \) 2>/dev/null
Check coverage configgrep -l 'coverage' package.json pyproject.toml 2>/dev/null
List test files`find. \(-path '*/tests/*' -o -path '*/test/*' -o -name '*.test.*' -o -name '*.spec.*' \) 2>/dev/null \head -n 10`
Quick compliance check/configure:tests --check-only
Auto-fix configuration/configure:tests --fix

Error Handling

  • No package.json found: Cannot configure JS/TS tests, skip or error
  • Conflicting frameworks: Warn about multiple test configs, require manual resolution
  • Missing dependencies: Offer to install required packages
  • Invalid config syntax: Report parse error, offer to replace with template

See Also

  • /configure:coverage - Configure coverage thresholds and reporting
  • /configure:all - Run all compliance checks
  • /test:run - Universal test runner
  • /test:setup - Comprehensive testing infrastructure setup
  • Vitest documentation: https://vitest.dev
  • pytest documentation: https://docs.pytest.org
  • cargo-nextest documentation: https://nexte.st

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

32.81%
按下载量换算142

Claude

32.62%
按下载量换算141

Cursor

19.8%
按下载量换算86

Gemini CLI

9.69%
按下载量换算42

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/laurigates/claude-plugins --skill configure-tests 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills