一键导入
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