api-developer
API 개발 전문가. REST API, FastAPI, Flask, 인증, 문서화.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Role
- Focus Areas
- Best Practices
- HTTP Status Codes
- FastAPI Example
- Authentication Example (JWT)
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.
