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

api-testsAPI tests 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

1,454

周安装

60

GitHub Stars

28

下载量

475
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于配置和管理 API 契约测试基础设施。api-tests 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 支持验证 API 契约、schema 和消费者-提供者协议。
  • 适用于设置 Pact、OpenAPI 规范或 schema 验证流程。
  • 使用前应确认目标测试框架和 CI/CD 集成方式。
  • 注意该技能包含 shell 命令,需审查执行权限与安全性。

SKILL.md

/configure:api-tests

Check and configure API contract testing infrastructure for validating API contracts, schemas, and consumer-provider agreements.

When to Use This Skill

Use this skill when...Use another approach when...
Setting up API contract testing (Pact, OpenAPI, schema)Running existing API tests (use bun test or test runner directly)
Validating OpenAPI specification complianceEditing OpenAPI spec content (use editor directly)
Adding breaking change detection to CIGeneral CI workflow setup (use /configure:workflows)
Checking API testing infrastructure statusUnit or integration test setup (use /configure:tests or /configure:integration-tests)
Configuring Pact consumer/provider workflowsDebugging specific API endpoint failures (use test runner with verbose output)

Context

  • Lock files:!find. -maxdepth 1 \(-name 'bun.lockb' -o -name 'bun.lock' -o -name 'package-lock.json' -o -name 'yarn.lock' \)
  • Project files:!find. -maxdepth 1 \(-name 'tsconfig.json' -o -name 'pyproject.toml' -o -name 'package.json' \)
  • Pact installed:!find. -maxdepth 1 \(-name package.json -o -name 'requirements*.txt' -o -name pyproject.toml \) -exec grep -l "pact-foundation/pact\|pact-python" {} +
  • OpenAPI spec:!find. -maxdepth 2 \(-name 'openapi.yaml' -o -name 'openapi.yml' -o -name 'openapi.json' -o -name 'swagger.json' -o -name 'swagger.yaml' \)
  • Schema validator:!grep -l '"ajv"\|"zod"' package.json
  • OpenAPI validation lib:!grep -l "swagger-parser\|@apidevtools" package.json
  • Pact contracts dir:!find. -maxdepth 1 -type d -name \'pacts\'
  • Contract tests:!find. -maxdepth 3 -type d -name 'contract'
  • API test files:!find. -maxdepth 4 \(-name '*.pact.*' -o -name '*.openapi.*' -o -name '*.contract.*' \)
  • CI workflows:!find.github/workflows -maxdepth 1 \(-name '*api*' -o -name '*contract*' -o -name '*pact*' \)

Parameters

Parse $ARGUMENTS for these flags:

FlagDescriptionDefault
--check-onlyReport status without making changesOff
--fixApply all fixes automatically without promptingOff
--type <type>Focus on specific type: pact, openapi, or schemaAll types

API Testing Types:

TypeUse Case
PactMicroservices, multiple consumers, breaking change detection
OpenAPIAPI-first development, documentation-driven testing
SchemaSimple validation, GraphQL APIs, single service

Execution

Execute this API testing compliance check:

Step 1: Detect project infrastructure

Scan the project for existing API testing indicators:

IndicatorComponentCheck
pact in dependenciesPact contract testingpackage.json or pyproject.toml
openapi.yaml or swagger.jsonOpenAPI specificationRoot or docs/ directory
@apidevtools/swagger-parserOpenAPI validationpackage.json devDependencies
ajv or zod in dependenciesSchema validationpackage.json dependencies
pacts/ directoryPact contractsProject root

If --type is specified, only check the relevant component.

Step 2: Analyze current state

Check completeness of each API testing component:

Contract Testing (Pact):

  1. Check if @pact-foundation/pact (JS/TS) or pact-python (Python) is installed
  2. Look for consumer tests in tests/contract/consumer/
  3. Look for provider verification in tests/contract/provider/
  4. Check for Pact Broker configuration in CI files
  5. Check for can-i-deploy CI gate

OpenAPI Validation:

  1. Verify OpenAPI specification file exists and is valid
  2. Check for request validation middleware
  3. Check for response validation in tests
  4. Look for breaking change detection (oasdiff)

Schema Testing:

  1. Check for JSON Schema or Zod definitions
  2. Verify validator is installed (ajv or zod)
  3. Look for response validation test helpers

Step 3: Generate compliance report

Print a formatted compliance report:

API Testing Compliance Report
==============================
Project: [name]
API Type: [REST | GraphQL | gRPC]

Contract Testing (Pact):
  Package:                   [INSTALLED | MISSING]
  Consumer tests:            [FOUND | NONE]
  Provider tests:            [FOUND | NONE]
  Pact Broker:               [CONFIGURED | OPTIONAL]

OpenAPI Validation:
  OpenAPI spec:              [EXISTS | MISSING]
  Spec version:              [CURRENT | OUTDATED]
  Request validation:        [CONFIGURED | MISSING]
  Response validation:       [CONFIGURED | MISSING]
  Breaking change CI:        [CONFIGURED | OPTIONAL]

Schema Testing:
  JSON Schemas:              [EXISTS | N/A]
  Schema validator:          [INSTALLED | MISSING]
  Response validation:       [CONFIGURED | MISSING]

Overall: [X issues found]
Recommendations: [list specific actions]

If --check-only is set, stop here.

Step 4: Apply configuration

If --fix is set or user confirms, apply fixes for missing components. Use the project language detected in Context to select TypeScript or Python templates.

For each missing component, create the appropriate files using templates from REFERENCE.md:

  1. Pact Contract Testing: Install dependencies, create consumer test template, create provider verification template
  2. OpenAPI Validation: Install validation libraries, create OpenAPI validator helper, create compliance tests
  3. Schema Testing (Zod): Install Zod, create schema definitions, create schema validation tests
  4. OpenAPI Breaking Change Detection: Install oasdiff, add CI step

Step 5: Configure CI/CD integration

Create or update .github/workflows/api-tests.yml with jobs for:

  1. Consumer contract tests
  2. Provider verification (with database service if needed)
  3. OpenAPI spec validation and breaking change detection
  4. Pact artifact publishing (main branch only)

Add test scripts to package.json. Use CI workflow template from REFERENCE.md.

Step 6: Update standards tracking

Update .project-standards.yaml with API testing configuration:

components:
  api_tests: "2025.1"
  api_tests_contract: "[pact|none]"
  api_tests_openapi: true
  api_tests_schema: "[zod|ajv|none]"
  api_tests_breaking_change_ci: true

Step 7: Generate final report

Print a summary of all changes applied including:

  • Configuration files created
  • Dependencies installed
  • Test commands available (with exact bun run / npm run commands)
  • CI/CD jobs configured
  • Recommended next steps for verification

Agentic Optimizations

ContextCommand
Quick status check/configure:api-tests --check-only
Auto-fix all issues/configure:api-tests --fix
Pact-only setup/configure:api-tests --fix --type pact
OpenAPI-only setup/configure:api-tests --fix --type openapi
Check for OpenAPI specfind. -maxdepth 2 \(-name 'openapi.yaml' -o -name 'swagger.json' \) 2>/dev/null
Check Pact installedgrep -l "pact-foundation" package.json 2>/dev/null

Examples

# Check compliance and offer fixes
/configure:api-tests

# Check only, no modifications
/configure:api-tests --check-only

# Auto-fix all issues
/configure:api-tests --fix

# Configure Pact only
/configure:api-tests --fix --type pact

# Configure OpenAPI validation only
/configure:api-tests --fix --type openapi

Error Handling

ErrorResolution
No OpenAPI spec foundOffer to create template
Pact version mismatchSuggest upgrade path
Schema validation failsReport specific errors
Pact Broker not configuredProvide setup instructions

See Also

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.9%
按下载量换算156

Claude

29.85%
按下载量换算142

Cursor

20.98%
按下载量换算100

Gemini CLI

10.44%
按下载量换算50

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills