원클릭으로
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"
}
}