QE Contract Testing — for Claude Code QE Contract Testing, Agent_Modus_Map, community, for Claude Code, ide skills, ## Agent Workflow, "qe-api-compatibility"), ### 2. Schema Validation, ### 3. GraphQL Contract Testing, ### 4. Event Contract Testing

v1.0.0

このスキルについて

適した場面: Ideal for AI agents that need qe contract testing. ローカライズされた概要: QE Contract Testing helps AI agents handle repository-specific developer workflows with documented implementation details.

機能

QE Contract Testing
When testing API contracts
When validating schema changes
When checking backward compatibility
When testing GraphQL APIs

# 主なトピック

aquariuscook aquariuscook
[0]
[0]
更新日: 3/16/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

適した場面: Ideal for AI agents that need qe contract testing. ローカライズされた概要: QE Contract Testing helps AI agents handle repository-specific developer workflows with documented implementation details.

このスキルを使用する理由

推奨ポイント: QE Contract Testing helps agents qe contract testing. QE Contract Testing helps AI agents handle repository-specific developer workflows with documented implementation details.

おすすめ

適した場面: Ideal for AI agents that need qe contract testing.

実現可能なユースケース for QE Contract Testing

ユースケース: QE Contract Testing
ユースケース: When testing API contracts
ユースケース: When validating schema changes

! セキュリティと制限

  • 制約事項: Requires repository-specific context from the skill documentation
  • 制約事項: Works best when the underlying tools and dependencies are already configured

About The Source

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs デモ

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ とインストール手順

These questions and steps mirror the structured data on this page for better search understanding.

? よくある質問

QE Contract Testing とは何ですか?

適した場面: Ideal for AI agents that need qe contract testing. ローカライズされた概要: QE Contract Testing helps AI agents handle repository-specific developer workflows with documented implementation details.

QE Contract Testing はどうやって導入しますか?

次のコマンドを実行してください: npx killer-skills add aquariuscook/Agent_Modus_Map/QE Contract Testing。Cursor、Windsurf、VS Code、Claude Code など19以上のIDEで使えます。

QE Contract Testing の主な用途は?

主な用途は次のとおりです: ユースケース: QE Contract Testing, ユースケース: When testing API contracts, ユースケース: When validating schema changes。

QE Contract Testing に対応するIDEは?

このスキルは Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer に対応しています。統一された導入には Killer-Skills CLI を使えます。

QE Contract Testing に制限はありますか?

制約事項: Requires repository-specific context from the skill documentation. 制約事項: Works best when the underlying tools and dependencies are already configured.

このスキルの導入方法

  1. 1. ターミナルを開く

    プロジェクトディレクトリでターミナルまたはコマンドラインを開きます。

  2. 2. インストールコマンドを実行

    npx killer-skills add aquariuscook/Agent_Modus_Map/QE Contract Testing を実行してください。CLI がIDEまたはエージェントを自動検出し、スキルを設定します。

  3. 3. スキルを使い始める

    このスキルはすぐに有効になります。現在のプロジェクトで QE Contract Testing をすぐ使えます。

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

QE Contract Testing

Install QE Contract Testing, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

QE Contract Testing

Purpose

Guide the use of v3's contract testing capabilities including consumer-driven contracts, schema validation, backward compatibility checking, and API versioning verification.

Activation

  • When testing API contracts
  • When validating schema changes
  • When checking backward compatibility
  • When testing GraphQL APIs
  • When verifying event schemas

Quick Start

bash
1# Generate contract from API 2aqe contract generate --api openapi.yaml --output contracts/ 3 4# Verify provider against contracts 5aqe contract verify --provider http://localhost:3000 --contracts contracts/ 6 7# Check breaking changes 8aqe contract breaking --old api-v1.yaml --new api-v2.yaml 9 10# Test GraphQL schema 11aqe contract graphql --schema schema.graphql --operations queries/

Agent Workflow

typescript
1// Contract generation 2Task("Generate API contracts", ` 3 Analyze the REST API and generate consumer contracts: 4 - Parse OpenAPI specification 5 - Identify critical endpoints 6 - Generate Pact contracts 7 - Include example requests/responses 8 Output to contracts/ directory. 9`, "qe-api-contract") 10 11// Breaking change detection 12Task("Check API compatibility", ` 13 Compare API v2.0 against v1.0: 14 - Detect removed endpoints 15 - Check parameter changes 16 - Verify response schema changes 17 - Identify deprecations 18 Report breaking vs non-breaking changes. 19`, "qe-api-compatibility")

Contract Testing Types

1. Consumer-Driven Contracts (Pact)

typescript
1await contractTester.consumerDriven({ 2 consumer: 'web-app', 3 provider: 'user-service', 4 contracts: 'contracts/web-app-user-service.json', 5 verification: { 6 providerBaseUrl: 'http://localhost:3000', 7 providerStates: providerStateHandlers, 8 publishResults: true 9 } 10});

2. Schema Validation

typescript
1await contractTester.validateSchema({ 2 type: 'openapi', 3 schema: 'api/openapi.yaml', 4 requests: actualRequests, 5 validation: { 6 requestBody: true, 7 responseBody: true, 8 headers: true, 9 statusCodes: true 10 } 11});

3. GraphQL Contract Testing

typescript
1await graphqlTester.testContracts({ 2 schema: 'schema.graphql', 3 operations: 'queries/**/*.graphql', 4 validation: { 5 queryValidity: true, 6 responseShapes: true, 7 nullability: true, 8 deprecations: true 9 } 10});

4. Event Contract Testing

typescript
1await contractTester.eventContracts({ 2 schema: 'events/schemas/', 3 events: { 4 'user.created': { 5 schema: 'UserCreatedEvent.json', 6 examples: ['examples/user-created.json'] 7 }, 8 'order.completed': { 9 schema: 'OrderCompletedEvent.json', 10 examples: ['examples/order-completed.json'] 11 } 12 }, 13 compatibility: 'backward' 14});

Breaking Change Detection

yaml
1breaking_changes: 2 always_breaking: 3 - endpoint_removed 4 - required_param_added 5 - response_field_removed 6 - type_changed 7 8 potentially_breaking: 9 - optional_param_removed 10 - response_field_added 11 - enum_value_removed 12 13 non_breaking: 14 - endpoint_added 15 - optional_param_added 16 - response_field_made_optional 17 - documentation_changed

Contract Report

typescript
1interface ContractReport { 2 summary: { 3 contracts: number; 4 passed: number; 5 failed: number; 6 warnings: number; 7 }; 8 consumers: { 9 name: string; 10 contracts: ContractResult[]; 11 compatibility: 'compatible' | 'breaking' | 'unknown'; 12 }[]; 13 breakingChanges: { 14 type: string; 15 location: string; 16 description: string; 17 impact: 'high' | 'medium' | 'low'; 18 migration: string; 19 }[]; 20 deprecations: { 21 item: string; 22 deprecatedIn: string; 23 removeIn: string; 24 replacement: string; 25 }[]; 26}

CI/CD Integration

yaml
1contract_verification: 2 consumer_side: 3 - generate_contracts 4 - publish_to_broker 5 - can_i_deploy_check 6 7 provider_side: 8 - fetch_contracts_from_broker 9 - verify_against_provider 10 - publish_results 11 12 pre_release: 13 - check_breaking_changes 14 - verify_all_consumers 15 - update_compatibility_matrix

Pact Broker Integration

typescript
1await contractTester.withBroker({ 2 brokerUrl: 'https://pact-broker.example.com', 3 auth: { token: process.env.PACT_TOKEN }, 4 operations: { 5 publish: true, 6 canIDeploy: true, 7 webhooks: true 8 } 9});

Coordination

Primary Agents: qe-api-contract, qe-api-compatibility, qe-graphql-tester Coordinator: qe-contract-coordinator Related Skills: qe-test-generation, qe-security-compliance

関連スキル

Looking for an alternative to QE Contract Testing or another community skill for your workflow? Explore these related open-source skills.

すべて表示

openclaw-release-maintainer

Logo of openclaw
openclaw

ローカライズされた概要: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
AI

widget-generator

Logo of f
f

ローカライズされた概要: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat. It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

149.6k
0
AI

flags

Logo of vercel
vercel

ローカライズされた概要: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

ローカライズされた概要: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review. It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
開発者