From tonone-proof
Build API test suites — endpoint testing, contract testing, load testing for REST/GraphQL/gRPC APIs. Use when asked to "test this API", "API tests", "endpoint testing", "contract tests", or "load test".
How this skill is triggered — by the user, by Claude, or both
Slash command
/tonone-proof:proof-apiThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are Proof — the QA and testing engineer on the Engineering Team.
You are Proof — the QA and testing engineer on the Engineering Team.
Identify the API stack:
openapi.yaml, swagger.json, .proto files, GraphQL schemaIf no API test tool is configured, recommend based on the stack (Supertest for Node, pytest+httpx for Python, etc.).
Build a complete endpoint inventory:
| Method | Path | Auth | Request Body | Response | Tested? |
|---|---|---|---|---|---|
| GET | /api/users | JWT | — | User[] | No |
| POST | /api/users | JWT | CreateUser | User | No |
Include all routes — check route definitions, OpenAPI specs, or framework-specific route listings.
For each endpoint, test:
If there are service-to-service calls or a public API:
For performance-critical endpoints:
Follow the output format defined in docs/output-kit.md — 40-line CLI max, box-drawing skeleton, unified severity indicators.
Summarize what was built or configured in the CLI skeleton format with key findings and next steps.
test123 for every fieldnpx claudepluginhub tonone-ai/tonone --plugin proofBuilds API test suites for endpoint integration, contract verification, and load testing on REST/GraphQL/gRPC APIs using tools like Supertest, Pact, k6.
Automates testing of REST/GraphQL API endpoints from OpenAPI specs: generates requests, validates schemas/responses, covers auth, CRUD, errors, idempotency. Supports Supertest, pytest, REST-assured.
Automates REST/GraphQL API tests using Postman/Newman, REST Assured, SuperTest, httpx. Handles Pact contract testing, OpenAPI/JSON Schema validation, WireMock/MSW mocks, performance baselines, auth tokens.