QE Contract Testing — community QE Contract Testing, summarybot-ng, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

About this Skill

Perfect for API Testing Agents needing advanced contract testing and validation capabilities for APIs and GraphQL APIs. An agentically constructed replacement for my previously vibe-coded version

summarybotng summarybotng
[2]
[2]
Updated: 3/13/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
34
Canonical Locale
en
Detected Body Locale
en

Perfect for API Testing Agents needing advanced contract testing and validation capabilities for APIs and GraphQL APIs. An agentically constructed replacement for my previously vibe-coded version

Core Value

Empowers agents to verify API versioning, validate schema changes, and ensure backward compatibility using consumer-driven contracts and schema validation, leveraging OpenAPI specifications and event schemas.

Ideal Agent Persona

Perfect for API Testing Agents needing advanced contract testing and validation capabilities for APIs and GraphQL APIs.

Capabilities Granted for QE Contract Testing

Validating API contracts against OpenAPI specifications
Testing GraphQL APIs for schema compliance
Ensuring backward compatibility of API changes
Verifying event schemas for consistency

! Prerequisites & Limits

  • Requires OpenAPI specification files (e.g., openapi.yaml)
  • Limited to API testing and validation use cases

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Labs Demo

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 & Installation Steps

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

? Frequently Asked Questions

What is QE Contract Testing?

Perfect for API Testing Agents needing advanced contract testing and validation capabilities for APIs and GraphQL APIs. An agentically constructed replacement for my previously vibe-coded version

How do I install QE Contract Testing?

Run the command: npx killer-skills add summarybotng/summarybot-ng/QE Contract Testing. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for QE Contract Testing?

Key use cases include: Validating API contracts against OpenAPI specifications, Testing GraphQL APIs for schema compliance, Ensuring backward compatibility of API changes, Verifying event schemas for consistency.

Which IDEs are compatible with QE Contract Testing?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for QE Contract Testing?

Requires OpenAPI specification files (e.g., openapi.yaml). Limited to API testing and validation use cases.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add summarybotng/summarybot-ng/QE Contract Testing. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use QE Contract Testing immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

QE Contract Testing

Install QE Contract Testing, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

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

Related Skills

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

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer