ワンクリックで
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