AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Api Tester Playbook

skill-vibbs-company-os-api-tester-playbook · by vibbs

Generates API testing playbooks covering contract tests, authentication testing, pagination validation, and error handling. Use when building or reviewing API test suites.

— No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-vibbs-company-os-api-tester-playbook

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-vibbs-company-os-api-tester-playbook)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Api Tester Playbook? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

API Tester Playbook

Reference

  • ID: S-QA-02
  • Category: QA
  • Inputs: API specification (OpenAPI/Swagger), auth model, endpoint inventory
  • Outputs: API test playbook → artifacts/qa/
  • Used by: QA Agent
  • Tool scripts: ./tools/artifact/validate.sh, ./tools/qa/contract-test.sh

Purpose

Produces a structured API testing playbook that covers contract testing, authentication and authorization edge cases, pagination correctness, rate limiting behavior, and error response validation for every endpoint.

Procedure

  1. Collect the API specification (OpenAPI/Swagger) or endpoint inventory.
  2. For each endpoint, generate contract tests: verify response shape matches the schema.
  3. Design authentication tests: valid tokens, expired tokens, missing tokens, wrong scopes.
  4. Design authorization tests: tenant isolation, role-based access, resource ownership.
  5. Design pagination tests: first page, last page, empty results, invalid cursors, page size limits.
  6. Design error handling tests: 400 (bad input), 404 (not found), 409 (conflict), 429 (rate limit), 500 (server error).
  7. Design idempotency tests for mutating endpoints (POST, PUT, DELETE).
  8. Define expected response headers (CORS, cache-control, rate-limit headers).
  9. Organize tests into a runnable playbook with setup/teardown steps.
  10. Save the playbook to artifacts/qa/.
  11. Validate the artifact using ./tools/artifact/validate.sh.

Test Scaffold Generation

After producing the playbook document, generate actual test file scaffolds:

  1. Read tech_stack.test_framework and tech_stack.language from company.config.yaml
  2. Generate test files based on stack:
  • TypeScript + Jest/Vitest: tests/integration/api/.test.ts
  • Python + pytest: tests/api/test_.py
  • Go + testing: internal//_test.go
  1. Each test file includes: setup/teardown, auth helper, one happy-path test, one error test
  2. Run ./tools/qa/contract-test.sh to validate against API spec

The playbook document remains as a companion artifact in artifacts/test-plans/.

Quality Checklist

  • [ ] Every endpoint has contract tests
  • [ ] Auth edge cases (expired, missing, wrong scope) are covered
  • [ ] Authorization boundaries are tested (tenant isolation, RBAC)
  • [ ] Pagination is tested for boundary conditions
  • [ ] Error responses match documented status codes and shapes
  • [ ] Mutating endpoints have idempotency tests
  • [ ] Rate limiting behavior is validated
  • [ ] Artifact passes validation

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.