endpoint-validator

endpoint-validator is a skill for Claude Code from notque/vexjoy-agent. It costs 15 tokens per session (2,412 once invoked), scanned A, original, MIT.

A tool that finds HTTP API endpoints, tests them against expected results, and reports clear pass or fail outcomes.

In plain words
What is it for?
Use it to validate routes, authentication, configuration, timeouts, and security headers, then produce machine-readable or human-readable reports.
Why use it?
It turns endpoint checking into a repeatable process and provides exit codes that continuous integration systems can use.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

Good fit Use it to validate routes, authentication, configuration, timeouts, and security headers, then…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/notque/vexjoy-agent/endpoint-validator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add notque/vexjoy-agent --skill endpoint-validator
Clone the repo
git clone --depth 1 https://github.com/notque/vexjoy-agent

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for endpoint-validator

README.md
[![agentmods](https://agentmods.dev/badge/skills/notque/vexjoy-agent/endpoint-validator.svg)](https://agentmods.dev/skills/notque/vexjoy-agent/endpoint-validator)
Your own site
<a href="https://agentmods.dev/skills/notque/vexjoy-agent/endpoint-validator"><img src="https://agentmods.dev/badge/skills/notque/vexjoy-agent/endpoint-validator.svg" alt="Measured on agentmods" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,412 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00015 $0.02412
Opus 5 $0.00008 $0.01206
Sonnet 5 $0.00003 $0.00482
Haiku 4.5 $0.00002 $0.00241

Measured 3d ago against content hash 4ce08bd4748c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

endpoint-validator scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

1. Test a single endpoint manually with `curl -v`
skills/infrastructure/endpoint-validator/SKILL.md · 250 lines

How it starts

The opening of the file, as written. The whole thing — 250 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Endpoint Validator Skill

Deterministic HTTP endpoint validation following a Discover, Validate, Report pattern. Finds endpoints, tests each against expectations, and produces machine-readable results with clear pass/fail verdicts and CI-compatible exit codes.

Reference Loading Table

Signal Load These Files Why
Security header WARNs, HSTS/CSP/X-Frame issues security-headers.md Routes to the matching deep reference
Config errors, hardcoded IPs, timeout problems endpoint-config-preferred-patterns.md Routes to the matching deep reference
401/403 failures, Bearer/API-key/cookie auth auth-endpoint-patterns.md Routes to the matching deep reference

Instructions

Phase 1: DISCOVER

Goal: Locate or receive endpoint definitions before making any requests.

Step 1: Read repository CLAUDE.md

Check for and follow any repository-level CLAUDE.md before running validation. It may contain base URL conventions, environment variable names, or endpoint paths relevant to the project.

Step 2: Search for endpoint configuration

Look for definitions in priority order:

  1. endpoints.json in project root
  2. tests/endpoints.json
  3. Inline specification provided by user or calling agent

Prefer config files checked into version control over ad-hoc endpoint lists. Manually listing endpoints every run leads to drift and missed endpoints.

Step 3: Parse and validate configuration

Configuration must contain base_url and at least one endpoint:

{
  "base_url": "http://localhost:8000",
  "endpoints": [
    {"path": "/health", "expect_status": 200},
    {"path": "/api/v1/users", "expect_key": "data", "timeout": 10},
    {"path": "/api/v1/search?q=test", "max_time": 2.0}
  ]
}

Each endpoint supports these fields:

  • path (required): URL path appended to base_url
  • expect_status (default: 200): Expected HTTP status code
  • expect_key (optional): Top-level JSON key that must exist in response. Only top-level key presence is checked -- full JSON schema validation is out of scope.
  • timeout (default: 5): Request timeout in seconds. The 5-second default prevents hanging on unresponsive endpoints.
  • max_time (optional): Fail if response exceeds this threshold in seconds
  • method (optional): HTTP method. Defaults to GET. POST/PUT/DELETE require explicit configuration with a request body -- send mutating requests only when the user explicitly configures them.
  • headers (optional): Additional headers per endpoint (e.g., Accept, Content-Type, Authorization)

Read the full file on GitHub · 250 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 250 lines · 15 tokens per session scan A 4ce08bd4748c

Subscribe to this mod's changes

endpoint-validator is a skill published in the GitHub repository notque/vexjoy-agent (419 stars, last pushed yesterday), licensed MIT. It adds 15 tokens to every session and 2,412 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

api-testing

Test REST and GraphQL endpoint contracts using Playwright request fixture (TypeScript) or REST Assured (Java). Use for standalone API tests covering schemas, auth, status/error handling, pagination, idempotency, rate limits, or contract checks; not for browser E2E specs. Keywords: REST, GraphQL, API contract, schema…

fugazi/test-automation-skills-agents · 78 tokens

web-mocks-msw

MSW handlers, browser/server workers, test data. Use when setting up API mocking for development or testing, creating mock handlers with variants, or sharing mocks between browser and Node environments.

agents-inc/skills · 43 tokens

thirdparty-api-integration-test

Create and run gated Go integration tests for third-party APIs with real external calls, strict configuration gates, bounded timeouts, and safe runtime controls. Use for vendor/client contract verification and failure triage.

johnqtcg/awesome-skills · 47 tokens

contract-testing-designer

Establishes consumer-driven contract tests using Pact or OpenAPI to prevent breaking changes across services.

codebygarv/Ai-skills · 24 tokens

firebase-development-add-feature

This skill should be used when adding features to existing Firebase projects. Triggers on "add function", "create endpoint", "new tool", "add api", "new collection", "implement", "build feature". Guides TDD workflow with test-first development, security rules, and emulator verification.

aiskillstore/marketplace · 64 tokens

api-test-suite-builder

Generate API test suites from route definitions across frameworks: auth, input validation, contract, k6 load testing, mocking, and OpenAPI-driven generation. Use when adding new APIs, auditing test coverage, or building regression suites.

borghei/Claude-Skills · 50 tokens