Agent-Skills-Hub web-api-tester
Test API endpoints for correctness, edge cases, auth handling, and OpenAPI contract compliance.
install
source · Clone the upstream repo
git clone https://github.com/0x-Professor/Agent-Skills-Hub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/0x-Professor/Agent-Skills-Hub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/web-api-tester" ~/.claude/skills/0x-professor-agent-skills-hub-web-api-tester && rm -rf "$T"
manifest:
skills/web-api-tester/SKILL.mdsource content
Web API Tester
Objective
Run endpoint-level testing against
openapi.yaml and produce API quality
coverage artifacts.
Required Workflow
- Read
fromopenapi.yaml
.web-backend-builder - Build API collections for Bruno or Hoppscotch.
- Optionally generate automated tests in Vitest, Jest, or pytest.
- For each endpoint test:
- happy path
- edge cases (missing fields, invalid types, max payloads)
- auth failures (
,401
)403 - rate limiting behavior
- Validate response contracts against OpenAPI using Zod (TS) or Pydantic (Python).
- Add frontend-backend contract tests for API call compatibility.
- Generate endpoint and edge-case coverage percentages.
- Output
.api-test-report.json
Execution
python skills/web-api-tester/scripts/api_tester.py --input <workspace> --output <out.json> --format json
References
references/tools.md