QE Contract Testing

## Agent Workflow

v1.0.0

Acerca de este Skill

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

Características

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

# Temas principales

aquariuscook aquariuscook
[0]
[0]
Actualizado: 3/16/2026

Skill Overview

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

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

¿Por qué usar esta habilidad?

Recomendacion: QE Contract Testing helps agents qe contract testing. QE Contract Testing helps AI agents handle repository-specific developer workflows with documented implementation details.

Mejor para

Escenario recomendado: qe contract testing.

Casos de uso accionables for QE Contract Testing

Caso de uso: QE Contract Testing
Caso de uso: When testing API contracts
Caso de uso: When validating schema changes

! Seguridad y limitaciones

  • Limitacion: Requires repository-specific context from the skill documentation
  • Limitacion: 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.

Demo 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 y pasos de instalación

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

? Preguntas frecuentes

¿Qué es 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.

¿Cómo instalo QE Contract Testing?

Ejecuta el comando: npx killer-skills add aquariuscook/Agent_Modus_Map/QE Contract Testing. Funciona con Cursor, Windsurf, VS Code, Claude Code y más de 19 IDE adicionales.

¿Cuáles son los casos de uso de QE Contract Testing?

Los casos de uso principales incluyen: Caso de uso: QE Contract Testing, Caso de uso: When testing API contracts, Caso de uso: When validating schema changes.

¿Qué IDE son compatibles con QE Contract Testing?

Esta skill es compatible con 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. Usa la CLI de Killer-Skills para una instalación unificada.

¿Tiene limitaciones QE Contract Testing?

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

Cómo instalar este skill

  1. 1. Abre tu terminal

    Abre la terminal o línea de comandos en el directorio de tu proyecto.

  2. 2. Ejecuta el comando de instalación

    Ejecuta: npx killer-skills add aquariuscook/Agent_Modus_Map/QE Contract Testing. La CLI detectará tu IDE o agente automáticamente y configurará la skill.

  3. 3. Empieza a usar el skill

    El skill ya está activo. Tu agente de IA puede usar QE Contract Testing de inmediato en el proyecto actual.

! 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

Habilidades relacionadas

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

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumen localizado: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Resumen localizado: 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. Claude Code, Cursor, and

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

Resumen localizado: 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. Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Resumen localizado: 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. Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Desarrollador