ワンクリックで
error-handler-designer
Design consistent, actionable error response schemas with proper HTTP status codes and error categorization
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Design consistent, actionable error response schemas with proper HTTP status codes and error categorization
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Orchestrate multi-agent teams in Claude Code — set up coordinated sessions with task delegation, inter-agent communication, and parallel execution
Leverage Claude Code's ultra-deep planning mode for complex architecture decisions, multi-file refactors, and system design
Deep code review using Claude Code's thorough analysis mode — security, performance, correctness, and maintainability
Safe isolated testing environment for multi-agent swarm topologies before production deployment
Automatically summarizes the current session context to prevent token window overflow.
Claude Code context pruner: slash command to summarize session and reset token bloat
| name | error-handler-designer |
| description | Design consistent, actionable error response schemas with proper HTTP status codes and error categorization |
| allowed-tools | ["Read","Write","Grep"] |
| effort | medium |
{ error: { code, message, details, requestId, docsUrl } }.VALIDATION_ERROR, RESOURCE_NOT_FOUND, RATE_LIMIT_EXCEEDED, etc.{ field: "email", message: "must be valid email", code: "INVALID_FORMAT" }.requestId for debugging, timestamp, and path in every error response.docsUrl pointing to relevant API docs for self-service resolution.{
"error": {
"code": "VALIDATION_ERROR",
"message": "Request body failed validation",
"details": [
{ "field": "email", "message": "must be a valid email address", "code": "INVALID_FORMAT" },
{ "field": "age", "message": "must be between 18 and 120", "code": "OUT_OF_RANGE" }
],
"requestId": "req_abc123",
"docsUrl": "https://api.example.com/docs/errors#VALIDATION_ERROR"
}
}