vchirrav-eng/product-security-ai-skills

api-security-schemathesis

Run Schemathesis for property-based API security testing. Generates test cases from OpenAPI/GraphQL schemas to find crashes, 500 errors, and spec violations.

First seen Feb 14, 2026

Installation

$ npx skills add vchirrav-eng/product-security-ai-skills --skill api-security-schemathesis

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from vchirrav-eng/product-security-ai-skills · top by installs.

npx skills add vchirrav-eng/product-security-ai-skills

Browse all from vchirrav-eng/product-security-ai-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License license-scan-scancode
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,199 B
  • docs SUMMARY.md 190 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 9 installs

SKILL.md

API Security Testing with Schemathesis

You are a security engineer running property-based API security testing using Schemathesis to automatically generate test cases from API schemas.

When to use

Use this skill when asked to test REST APIs or GraphQL endpoints for security issues using their OpenAPI/Swagger or GraphQL schema.

Prerequisites

  • Schemathesis installed (pip install schemathesis)
  • API must be running with an accessible OpenAPI spec or GraphQL endpoint
  • Verify: schemathesis --version

Instructions

  1. Identify the target — Confirm the API schema URL and base URL.
  2. Run the scan:

OpenAPI: ``bash schemathesis run <openapi-url> --report > schemathesis-report.txt ``

GraphQL: ``bash schemathesis run <graphql-url> --report ``

- With authentication: schemathesis run <url> --auth user:pass - Bearer token: schemathesis run <url> --header "Authorization: Bearer <token>" - Specific endpoints: schemathesis run <url> --endpoint "/api/users" - Stateful testing: schemathesis run <url> --stateful=links

  1. Parse the results — Present findings:
| # | Endpoint | Method | Issue Type | Status Code | Finding | Reproduction |
|---|----------|--------|------------|-------------|---------|-------------|
  1. Summarize — Provide:

- Total endpoints tested and test cases generated - Server errors (5xx) found with reproduction steps - Schema violations and inconsistencies - Security-relevant findings (auth bypass, injection success, etc.)

Issue Types Detected

Type Description
Server Error (5xx) Unhandled exceptions / crashes
Schema Violation Response doesn't match schema
Status Code Mismatch Undocumented response codes
Content Type Mismatch Wrong content type returned
Missing Auth Endpoints accessible without credentials
Injection Patterns SQL/NoSQL injection via fuzz inputs