원클릭으로
api-scaffold
Scaffolds REST API endpoints with input validation, error handling, and tests. Use when creating API endpoints or microservices.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Scaffolds REST API endpoints with input validation, error handling, and tests. Use when creating API endpoints or microservices.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generates data analysis reports with quality summaries, ASCII tables, and methodology notes. Use when creating data analysis output or reports.
Explains code with diagrams and analogies. Use when explaining how code works. Intentionally minimal — contrast with meeting-prep-kit for a richer example.
Transform a raw meeting transcript into a stakeholder-ready prep kit — executive summary, decisions log, action items CSV, follow-up email, and topic-by-topic timeline with sentiment. Use when the user has a meeting transcript file and needs artifacts for attendees, stakeholders who missed the meeting, or downstream execution.
Reviews Dockerfiles and container configs for security and best practices. Use when reviewing or creating Docker configurations.
Generates UI components following vanilla JS, accessible HTML, and CSS custom property conventions. Use when creating frontend components.
| name | api-scaffold |
| description | Scaffolds REST API endpoints with input validation, error handling, and tests. Use when creating API endpoints or microservices. |
When creating an API endpoint:
Always return errors in this shape:
{
"error": {
"code": "VALIDATION_ERROR",
"message": "Human-readable description of what went wrong"
}
}
Standard error codes: VALIDATION_ERROR, NOT_FOUND, RATE_LIMITED, INTERNAL_ERROR