원클릭으로
api-design
Design RESTful APIs with proper resource modeling, HTTP methods, error handling, and clear contracts following REST principles
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Design RESTful APIs with proper resource modeling, HTTP methods, error handling, and clear contracts following REST principles
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Design AI agents with appropriate capabilities, tools, and personas for specific software development tasks
Document APIs comprehensively with signatures, parameters, return values, errors, and working code examples for developer reference
Implement robust third-party API integrations with proper authentication, error handling, and rate limiting
Apply proven architectural patterns (MVC, layered, microservices) to create maintainable systems with clear separation of concerns
Systematically reproduce, diagnose, and analyze bugs to determine root cause, assess severity, and plan fix strategy
Design and implement continuous integration and deployment pipelines with automated testing, builds, and deployments
| name | API Design |
| description | Design RESTful APIs with proper resource modeling, HTTP methods, error handling, and clear contracts following REST principles |
| category | architecture |
| required_tools | ["Read","Write","WebSearch"] |
Design clear, consistent, and maintainable REST APIs following industry best practices and conventions.
Context: User profile management API
Design:
GET /users/{id} # Get user
POST /users # Create user
PUT /users/{id} # Update user
DELETE /users/{id} # Delete user
GET /users/{id}/profile # Get profile
PUT /users/{id}/profile # Update profile