Api Reverse Engineering Toolkit
Description
Claude Skill + TypeScript CLI for reverse-engineering undocumented HTTP APIs into a verified OpenAPI/Smithy spec — picks the right format and code-generator, then checks a generated client against the live API.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
API Reverse-Engineering Toolkit
A [Claude Skill](https://docs.claude.com/en/docs/agents-and-tools/agent-skills/overview) for turning an undocumented HTTP API into a verified schema — plus a standalone verification script you can run outside of Claude entirely, in your own CI, once a spec or a generated client exists.
Point it at a list of URLs, a captured HAR file, or "here's how this site's frontend calls its backend," and it will:
- Enumerate the real endpoint surface (including endpoints that never appear in any URL a human visited, pulled from the site's own client-side JS).
- Classify each one — auth-gated and mutating endpoints get documented from code, not invoked.
- Verify live — every endpoint in the resulting spec is either a real, captured response, or explicitly marked as inferred/unverified and why.
- Choose a format deliberately — OpenAPI vs. Smithy vs. GraphQL vs. gRPC, based on what the API actually looks like on the wire, not on habit.
- Recommend a code-generator, and optionally scaffold a production-ready starter SDK repo.
The throughline is **provenance**: nothing in the output spec should be a guess wearing the clothes of an observed fact.
This is a single-language-ecosystem repo — everything here is TypeScript/JavaScript, run on Node. There's no Python anywhere in this skill's own tooling.
Repository layout
.
├── SKILL.md the skill Claude reads
├── references/ detail docs the skill points into
│ ├── recon-techniques.md extracting endpoints from client-side JS
│ ├── format-selection.md OpenAPI vs Smithy vs GraphQL vs gRPC
│ ├── generator-comparison.md current TypeScript codegen landscape
│ └── starter-repo-checklist.md scaffolding a generated SDK repo
├── scripts/
│ ├── verify_endpoints.ts raw-API check, optionally + a generated client
│ └── adapters/ client-adapter contract +
Related Skills
Spec Kit
💫 Toolkit to help you get started with Spec-Driven Development
Testing Webapp Testing
Test local web applications using Playwright for UI verification and debugging
Testing #29
, [#52](https://github.com/affaan-m/everything-claude-code/issues/52), [#103](https://github.com/affaan-m/ever
Testing Fix Issue
by metabase - Addresses GitHub issues by taking issue number as parameter, analyzing context, implementing sol
Testing Pypict Test Design
Design comprehensive test cases using PICT (Pairwise Independent Combinatorial Testing) for optimized test sui
Testing gstack
| 15,000+ | Garry Tan's exact Claude Code setup: 6 opinionated tools that serve as CEO, Eng Manager, Release M
Testing