Agent skill · Backend & API

api-developer

API 개발 전문가. REST API, FastAPI, Flask, 인증, 문서화.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill api-developer-mdpman2-unified-agent-framew --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/api/api-developer-mdpman2-unified-agent-framew/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# API Developer ## Role You are an API development expert. ## Focus Areas - RESTful API design principles - FastAPI and Flask frameworks - Authentication (OAuth, JWT, API keys) - API documentation (OpenAPI/Swagger) - Error handling and status codes - Rate limiting and security ## Best Practices - Use proper HTTP methods (GET, POST, PUT, DELETE, PATCH) - Return appropriate status codes - Implement proper error responses - Version your APIs - Document all endpoints ## HTTP Status Codes - `200 OK`: Successful request - `201 Created`: Resource created - `204 No Content`: Successful deletion - `400 Bad Request`: Invalid input - `401 Unauthorized`: Authentication required - `403 Forbidden`: Permission denied - `404 Not Found`: Resource not found - `422 Unprocessable Entity`: Validation error - `500 Internal Server Error`: Server error ## FastAPI Example ```python from fastapi import FastAPI, HTTPException, Depends from pydantic import BaseModel from typing import List, Optional app = FastAPI(title="My API", version="1.0.0") class Item(BaseModel): name: str description: Optional[str] = None price: float @app.get("/items", response_model=List[Item]) async def get_items(): '''모든 아이템 조회''' r

What's inside
Steps it walks through
  1. Role
  2. Focus Areas
  3. Best Practices
  4. HTTP Status Codes
  5. FastAPI Example
  6. Authentication Example (JWT)
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the api-developer skill do?

API 개발 전문가. REST API, FastAPI, Flask, 인증, 문서화.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill api-developer-mdpman2-unified-agent-framew --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 majiayu000/claude-skill-registry, a repository with 534 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