Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计通过

testing-cicd-init测试 CICD 初始化

Agent Skill

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

总安装

2,447

周安装

99

GitHub Stars

21

下载量

768
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/shipshitdev/library --skill testing-cicd-init

简介

用于初始化 CI/CD 流水线所需的测试阶段配置。

  • 适合生成 YAML 文件定义测试步骤与环境变量。
  • 支持多分支策略和制品发布条件设置。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 需根据部署目标调整超时时间与资源配额限制。
  • testing-cicd-init 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Testing & CI/CD Initialization

Automatically sets up comprehensive test infrastructure for TypeScript projects including Vitest, coverage thresholds, and GitHub Actions CI/CD.

When to Use

This skill should be used when:

  • Adding tests to a project without test coverage
  • Setting up GitHub Actions CI/CD for the first time
  • Configuring Vitest with coverage thresholds
  • Initializing testing infrastructure for a new project
  • Migrating from Jest to Vitest

What It Does

  1. Detects project type (Next.js, NestJS, React, Node.js)
  2. Adds Vitest configuration with appropriate settings
  3. Creates test setup files for the environment
  4. Adds GitHub Actions workflow for CI/CD
  5. Configures 80% coverage thresholds
  6. Adds test scripts to package.json
  7. Installs required dependencies

Project Type Detection

The skill detects project type by scanning:

  • package.json dependencies (next, @nestjs/core, react, etc.)
  • Config files (next.config.*, nest-cli.json, etc.)
  • Directory structure (app/, src/, pages/, etc.)

Quick Start

Example prompt:

Add testing and CI/CD to this project

Or be specific:

Set up Vitest with 80% coverage and GitHub Actions for this Next.js project

Configuration by Project Type

Next.js Projects

Dependencies installed:

bun add -D vitest @vitest/coverage-v8 @vitejs/plugin-react @testing-library/react @testing-library/jest-dom jsdom

Files created:

  • vitest.config.ts - Vitest with jsdom environment
  • src/test/setup.ts - Test setup with RTL matchers
  • .github/workflows/ci.yml - CI pipeline

Test pattern: **/*.{test,spec}.{ts,tsx}

NestJS Projects

Dependencies installed:

bun add -D vitest @vitest/coverage-v8 supertest @types/supertest

Files created:

  • vitest.config.ts - Vitest with node environment
  • test/setup.ts - Test setup for NestJS
  • .github/workflows/ci.yml - CI with MongoDB service

Test pattern: src/**/*.spec.ts

React/Node.js Projects

Follows similar patterns based on detected framework.

Coverage Configuration

Default thresholds (configurable):

  • Lines: 80%
  • Functions: 80%
  • Branches: 75%
  • Statements: 80%

Coverage is enforced:

  1. In pre-commit hooks (via Husky)
  2. In CI/CD pipeline (GitHub Actions)

GitHub Actions Features

The generated CI workflow includes:

  • Bun setup with caching
  • Dependency installation
  • Lint/format checking (Biome)
  • TypeScript type checking
  • Test execution with coverage
  • Build verification
  • MongoDB service (for NestJS projects)

Templates

Templates are located in the templates/ directory:

TemplatePurpose
vitest.config.nextjs.tsVitest config for Next.js
vitest.config.nestjs.tsVitest config for NestJS
ci-nextjs.ymlGitHub Actions for Next.js
ci-nestjs.ymlGitHub Actions for NestJS
test-setup-react.tsTest setup with RTL
test-setup-node.tsTest setup for Node.js

Monorepo Support

For monorepos (detected by workspaces in package.json):

  1. Creates vitest.workspace.ts at root
  2. Creates individual vitest.config.ts per package
  3. Creates root-level GitHub Actions workflow
  4. Uses bun --filter '*' test for orchestration

Integration with Other Skills

SkillIntegration
husky-test-coverageAdds pre-commit coverage enforcement
linter-formatter-initWorks alongside for code quality
playwright-e2e-initAdds E2E testing after unit tests
testing-expertProvides testing patterns guidance

Example Usage

Adding tests to a Next.js project

User: Add testing to this project

Agent:
1. Detects Next.js from package.json
2. Installs vitest, @vitest/coverage-v8, @testing-library/react
3. Creates vitest.config.ts with jsdom environment
4. Creates src/test/setup.ts
5. Creates .github/workflows/ci.yml
6. Adds test scripts to package.json

Adding tests to a NestJS API

User: Set up tests for this NestJS API

Agent:
1. Detects NestJS from @nestjs/core dependency
2. Installs vitest, @vitest/coverage-v8, supertest
3. Creates vitest.config.ts with node environment
4. Creates test/setup.ts
5. Creates .github/workflows/ci.yml with MongoDB service
6. Adds test scripts to package.json

Troubleshooting

Tests not finding modules

Ensure path aliases in vitest.config.ts match tsconfig.json:

resolve: {
  alias: {
    "@": path.resolve(__dirname, "./src"),
  },
},

Coverage below threshold

  1. Check coverage report: bun test --coverage
  2. Identify uncovered lines
  3. Add tests or adjust thresholds temporarily

CI failing on type errors

Ensure bunx tsc --noEmit passes locally before pushing.

Best Practices

  1. Start with unit tests for utilities and services
  2. Add integration tests for API endpoints
  3. Use E2E tests sparingly for critical flows
  4. Run tests before commits via Husky
  5. Monitor coverage trends in CI

When this skill is active, it will:

  1. Detect the project type automatically
  2. Install appropriate testing dependencies
  3. Create properly configured test files
  4. Set up GitHub Actions CI/CD
  5. Configure coverage thresholds
  6. Add test scripts to package.json

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

31.56%
按下载量换算242

Gemini CLI

23.99%
按下载量换算184

Antigravity

16.98%
按下载量换算130

OpenCode

13.11%
按下载量换算101

Codex

9.02%
按下载量换算69

Cursor

3.85%
按下载量换算30

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills