Awesome-omni-skill qa-api-testing-contracts
API testing and contract validation. Design and execute schema validation, contract tests, negative testing, and change safety for REST, GraphQL, and gRPC APIs. Use when you need API test plans, contract testing, or CI quality gates.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/qa-api-testing-contracts" ~/.claude/skills/diegosouzapw-awesome-omni-skill-qa-api-testing-contracts-b917cd && rm -rf "$T"
manifest:
skills/development/qa-api-testing-contracts/SKILL.mdsource content
QA API Testing and Contracts
When to Use This Skill
Use this skill when you need to:
- Design API test plans for REST, GraphQL, or gRPC services.
- Implement contract testing with Pact or consumer-driven workflows.
- Set up schema validation in CI/CD pipelines.
- Review API changes for backward compatibility.
- Define quality gates for API releases.
Scope
- Validate API schemas and enforce contracts.
- Design functional, negative, and edge case tests.
- Plan mocking and consumer driven contracts.
- Define CI gates and release safety checks.
- Align API tests with SLOs and error budgets.
Ask For Inputs
- API type (REST, GraphQL, gRPC) and schemas (OpenAPI, SDL, proto).
- Environments and authentication methods.
- Critical endpoints and business flows.
- Data constraints, idempotency, and rate limits.
- Change cadence and backward compatibility policy.
- Current test tooling and CI pipeline.
Workflow
- Confirm API surface and schema sources.
- Establish contract rules (breaking vs non breaking).
- Generate schema validation tests.
- Create functional tests for happy paths.
- Add negative, boundary, and auth tests.
- Add consumer contract tests or mocks as needed.
- Define CI gates, reporting, and rollback triggers.
Outputs
- API test plan and coverage map by endpoint.
- Contract validation suite and schema checks.
- Negative and security test list.
- Mock and test data strategy.
- CI quality gates and release checklist.
Quality Checks
- Fail fast on schema violations and breaking changes.
- Ensure tests are deterministic and data stable.
- Separate functional tests from load or resilience tests.
- Keep contract tests aligned with versioning policy.
Templates
for coverage planning.templates/api-test-plan.md
for breaking change review.templates/contract-change-checklist.md
for schema tooling and CI stages.templates/schema-validation-matrix.md
Resources
for change safety guidance.resources/contract-testing-patterns.md
Related Skills
- Use dev-api-design for API design decisions.
- Use qa-testing-strategy for overall testing strategy.
- Use qa-resilience for chaos and reliability testing.
- Use software-security-appsec for API security review.