Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

validating-api-contractsvalidating API contracts 文档

Agent Skill

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

总安装

558

周安装

23

GitHub Stars

2,063

下载量

182
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill validating-api-contracts

简介

validating-api-contracts 辅助 API 设计与接口文档生成,支持 OpenAPI 草稿和字段命名检查。

  • 适合梳理 endpoint、整理错误码、协助前后端联调,需结合业务语义和鉴权规则使用。
  • 通过 GitHub 安装,使用 npx skills add 命令添加指定仓库的技能模块。
  • 生成接口文档时应从现有代码或 schema 中提取事实,避免凭空补字段。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Contract Test Validator

Overview

Validate API contracts between services using consumer-driven contract testing to prevent breaking changes in microservice architectures. Supports Pact (the industry standard for CDC testing), Spring Cloud Contract (JVM), and OpenAPI-diff for specification comparison.

Prerequisites

  • Contract testing framework installed (Pact JS/Python/JVM, or Spring Cloud Contract)
  • Pact Broker running (or PactFlow SaaS) for contract storage and verification
  • Consumer and provider services with clearly defined API boundaries
  • Existing integration points documented (which consumers call which provider endpoints)
  • CI pipeline configured for both consumer and provider repositories

Instructions

  1. Identify consumer-provider relationships in the system:

- Map which services call which APIs (e.g., Frontend calls User API, Order API calls Payment API). - Document each interaction: HTTP method, path, headers, request body, expected response. - Prioritize contracts for the most critical and frequently changing integrations.

  1. Write consumer-side contract tests (Pact consumer tests):

- Define the expected interaction: method, path, query parameters, headers, request body. - Specify the expected response: status code, headers, and response body structure. - Use matchers for flexible assertions (like(), eachLike(), term()) instead of exact values. - Generate a Pact file (JSON contract) from the consumer test.

  1. Publish consumer contracts to the Pact Broker:

- Run pact-broker publish with the consumer version and branch/tag. - Enable webhooks to trigger provider verification when new contracts are published. - Configure can-i-deploy checks in CI to gate deployments.

  1. Write provider-side verification tests:

- Configure the Pact verifier to fetch contracts from the Pact Broker. - Set up provider states (test data scenarios matching consumer expectations). - Run verification against the actual provider implementation. - Publish verification results back to the Pact Broker.

  1. Handle contract evolution:

- Adding new fields: Safe -- consumers using matchers will not break. - Removing fields: Breaking -- coordinate with all consumers before removal. - Changing field types: Breaking -- requires consumer updates first. - Use can-i-deploy to check compatibility before releasing either side.

  1. For schema-based validation (non-Pact):

- Compare OpenAPI spec versions using openapi-diff to detect breaking changes. - Flag removed endpoints, changed parameter types, and narrowed response schemas. - Run schema validation tests against the actual API responses.

  1. Integrate contract tests into the CI/CD pipeline for both consumers and providers.

Output

  • Consumer Pact test files defining expected API interactions
  • Generated Pact contract files (JSON) in pacts/ directory
  • Provider verification test configuration
  • Pact Broker deployment with published contracts and verification status
  • CI pipeline integration with can-i-deploy deployment gates
  • Contract evolution report flagging breaking vs. non-breaking changes

Error Handling

ErrorCauseSolution
Provider verification failsProvider response does not match consumer expectationsCheck if the contract is outdated; update consumer tests if the change is intentional; fix provider if regression
can-i-deploy blocks releaseConsumer has unverified or failed contractsRun provider verification; check if the right version tags are published; verify Pact Broker webhook fired
Pact Broker connection errorBroker URL or credentials misconfiguredVerify PACT_BROKER_BASE_URL and PACT_BROKER_TOKEN environment variables; check network connectivity
Provider state not foundConsumer test references a state the provider does not implementAdd the missing provider state setup function; align state names between consumer and provider
Too many contracts to maintainEvery consumer-provider pair has extensive contractsFocus on critical interactions; use matchers instead of exact values; consolidate similar interactions

Examples

Pact consumer test (JavaScript):

import { PactV4 } from '@pact-foundation/pact';

const provider = new PactV4({ consumer: 'Frontend', provider: 'UserAPI' });

describe('User API Contract', () => {
  it('fetches a user by ID', async () => {
    await provider
      .addInteraction()
      .given('user with ID 1 exists')
      .uponReceiving('a request for user 1')
      .withRequest('GET', '/api/users/1', (builder) => {
        builder.headers({ Accept: 'application/json' });
      })
      .willRespondWith(200, (builder) => {  # HTTP 200 OK
        builder
          .headers({ 'Content-Type': 'application/json' })
          .jsonBody({
            id: like('1'),
            name: like('Alice'),
            email: like('alice@example.com'),
          });
      })
      .executeTest(async (mockServer) => {
        const response = await fetch(`${mockServer.url}/api/users/1`);
        const user = await response.json();
        expect(user.name).toBeDefined();
      });
  });
});

Provider verification test:

import { Verifier } from '@pact-foundation/pact';

describe('User API Provider Verification', () => {
  it('validates consumer contracts', async () => {
    await new Verifier({
      providerBaseUrl: 'http://localhost:3000',  # 3000: 3 seconds in ms
      pactBrokerUrl: process.env.PACT_BROKER_BASE_URL,
      pactBrokerToken: process.env.PACT_BROKER_TOKEN,
      provider: 'UserAPI',
      publishVerificationResult: true,
      providerVersion: process.env.GIT_SHA,
      stateHandlers: {
        'user with ID 1 exists': async () => {
          await db.users.create({ id: '1', name: 'Alice', email: 'alice@example.com' });
        },
      },
    }).verifyProvider();
  });
});

can-i-deploy CI check:

pact-broker can-i-deploy \
  --pacticipant Frontend \
  --version $(git rev-parse HEAD) \
  --to-environment production \
  --broker-base-url $PACT_BROKER_URL \
  --broker-token $PACT_BROKER_TOKEN

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.28%
按下载量换算62

Claude

29.97%
按下载量换算55

Cursor

18.43%
按下载量换算34

Gemini CLI

9.05%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills