api-testing-suite
Installation
SKILL.md
API Testing Suite
Comprehensive API testing: Bruno (manual/collection), Schemathesis (property-based), Hypothesis (fuzzing), Spectral (linting), Locust (load).
Schemathesis (Property-Based API Testing)
Automatically generates test cases from your OpenAPI spec:
# Run against local server
schemathesis run http://localhost:8000/openapi.json --checks all
# With authentication
schemathesis run http://localhost:8000/openapi.json \
--header "Authorization: Bearer $TOKEN" \
--checks all --stateful=links