Agent skill · Backend & API

api-sdk-generator

Generates client SDK code, API wrapper libraries, request/response models, and language-specific usage patterns for any REST API. Use whenever the user asks to "generate an SDK", "write a client library", "create API wrappers", "generate TypeScript types from my API", "write a Python...

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill api-sdk-generator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/api-sdk-generator/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# API SDK & Codegen Skill ## When to Use Use this skill when you need generates client SDK code, API wrapper libraries, request/response models, and language-specific usage patterns for any REST API. Use whenever the user asks to "generate an SDK", "write a client library", "create API wrappers", "generate TypeScript types from my API", "write a Python... Generate production-quality client libraries and SDK code for any API in any language. --- ## SDK Structure (any language) ``` sdk/ ├── client.{ext} — main client class with base URL, auth, retry ├── resources/ │ ├── users.{ext} — one file per API resource │ ├── orders.{ext} │ └── ... ├── models/ │ ├── user.{ext} — request/response data models │ └── ... ├── errors.{ext} — typed error classes └── utils/ ├── retry.{ext} └── pagination.{ext} ``` --- ## Base Client Pattern ### Python ```python import httpx from typing import Optional import time class APIClient: def __init__(self, api_key: str, base_url: str = "https://api.example.com/v1"): self.base_url = base_url self._headers = { "Authorization": f"Bearer {api_key}", "Content-Type": "application/json", "User-Agent": "example-sdk-python/1.0.0" } self._client = httpx.Client(timeout=3

What's inside
Steps it walks through
  1. When to Use
  2. SDK Structure (any language)
  3. Base Client Pattern
  4. Python
  5. TypeScript
  6. Resource Class Pattern
  7. Typed Error Classes
  8. Pagination Helper
  9. Rules
  10. After Completing the API SDK Output
  11. Limitations
More from agentic-awesome-skills
All skills →
About this skill
What does the api-sdk-generator skill do?

Generates client SDK code, API wrapper libraries, request/response models, and language-specific usage patterns for any REST API. Use whenever the user asks to "generate an SDK", "write a client library", "create API wrappers", "generate TypeScript types from my API", "write a Python...

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill api-sdk-generator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going