Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

error-taxonomy错误分类法

Agent Skill

error-taxonomy 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

240

周安装

10

GitHub Stars

1

下载量

80
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:error-taxonomy(错误分类法)
来源仓库:https://github.com/cleanexpo/nodejs-starter-v1
仓库路径:skills/error-taxonomy
安装命令:
npx skills add https://github.com/cleanexpo/nodejs-starter-v1 --skill error-taxonomy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cleanexpo/nodejs-starter-v1 --skill error-taxonomy

简介

error-taxonomy 建立 DOMAIN_CATEGORY_SPECIFIC 格式的标准化错误代码体系。

  • 适用于 FastAPI 后端与 Next.js 前端之间的错误响应一致性保障。
  • 映射每个运行时错误到 HTTP 状态码、严重等级和用户可读消息。
  • 安装方式:通过 npx 从 GitHub 仓库添加,需同步更新后端 ErrorResponse 模型和前端 ApiClientError 类。
  • 有助于自动化测试和监控告警,但增加初期设计工作量。

SKILL.md

Error Taxonomy - Structured Error Classification

Unified error classification system ensuring every error in the stack has a code, category, severity, and user-facing message. Bridges the FastAPI ErrorResponse model with the Next.js ApiClientError class.

Description

Provides a structured error code taxonomy following the DOMAIN_CATEGORY_SPECIFIC format. Maps every runtime error to an HTTP status code, severity level, and user-facing message, ensuring consistent error handling between the FastAPI backend and Next.js frontend.

When to Apply

Positive Triggers

  • Creating or modifying API error responses
  • Adding new HTTPException raises in FastAPI routes
  • Implementing frontend error handling or display
  • Designing error boundaries for React components
  • Reviewing error consistency across backend and frontend
  • User mentions: "error handling", "error codes", "error messages", "error response"

Negative Triggers

  • Implementing retry/resilience logic (use retry-strategy instead)
  • Designing React error boundary components (use error-boundary instead)
  • The error is a build/lint/type error (not runtime error handling)

Core Directives

Error Code Format

All error codes follow the pattern: {DOMAIN}_{CATEGORY}_{SPECIFIC}

AUTH_VALIDATION_INVALID_TOKEN
AGENT_RUNTIME_TIMEOUT
DATA_VALIDATION_MISSING_FIELD

Domains

DomainPrefixScope
AuthenticationAUTH_Login, JWT, permissions
AgentAGENT_AI agent execution, LLM providers
DataDATA_Validation, transformation, storage
WorkflowWORKFLOW_Pipeline, state machine, scheduling
SystemSYS_Infrastructure, database, external services

Categories

CategorySuffixMeaning
Validation_VALIDATION_Input/schema validation failure
Runtime_RUNTIME_Unexpected runtime failure
Permission_PERMISSION_Authorisation or access denied
NotFound_NOTFOUND_Resource does not exist
Conflict_CONFLICT_State conflict or duplicate
RateLimit_RATELIMIT_Throttled request
External_EXTERNAL_Third-party service failure

Severity Levels

LevelHTTP RangeAction
Fatal500-599Log + alert + escalate
Error400-499Log + return user message
Warning200 with warning headerLog only

Backend Pattern (FastAPI)

Standard Error Response Model

The project already has ErrorResponse in apps/backend/src/models/contractor.py. Extend this as the canonical model:

from pydantic import BaseModel, Field
from typing import Optional
from enum import Enum

class ErrorSeverity(str, Enum):
    FATAL = "fatal"
    ERROR = "error"
    WARNING = "warning"

class ErrorResponse(BaseModel):
    """Canonical error response for all API endpoints."""

    detail: str = Field(..., description="Human-readable error message")
    error_code: str = Field(..., description="Machine-readable error code")
    severity: ErrorSeverity = Field(
        default=ErrorSeverity.ERROR,
        description="Error severity level"
    )
    field: Optional[str] = Field(
        None,
        description="Specific field that caused the error (validation)"
    )

Raising Errors

# GOOD: Structured error with code
raise HTTPException(
    status_code=status.HTTP_401_UNAUTHORIZED,
    detail=ErrorResponse(
        detail="Token has expired. Please log in again.",
        error_code="AUTH_VALIDATION_EXPIRED_TOKEN",
    ).model_dump(),
)

# BAD: Unstructured string
raise HTTPException(
    status_code=401,
    detail="Invalid token",
)

Validation Error Handler

Register a global handler to convert Pydantic ValidationError into structured responses:

from fastapi import Request
from fastapi.responses import JSONResponse
from pydantic import ValidationError

async def validation_exception_handler(
    request: Request,
    exc: ValidationError
) -> JSONResponse:
    errors = []
    for error in exc.errors():
        field = ".".join(str(loc) for loc in error["loc"])
        errors.append({
            "detail": error["msg"],
            "error_code": f"DATA_VALIDATION_{error['type'].upper()}",
            "field": field,
        })
    return JSONResponse(
        status_code=422,
        content={"errors": errors},
    )

Frontend Pattern (Next.js)

Error Interface

The project has ApiError and ApiClientError in apps/web/lib/api/client.ts. Extend to include severity:

export interface ApiError {
  detail: string;
  error_code: string;
  severity?: 'fatal' | 'error' | 'warning';
  field?: string;
}

export class ApiClientError extends Error {
  constructor(
    message: string,
    public status: number,
    public errorCode: string,
    public severity: 'fatal' | 'error' | 'warning' = 'error',
    public field?: string
  ) {
    super(message);
    this.name = 'ApiClientError';
  }

  get isAuth(): boolean {
    return this.errorCode.startsWith('AUTH_');
  }

  get isValidation(): boolean {
    return this.errorCode.includes('_VALIDATION_');
  }

  get isRetryable(): boolean {
    return this.status === 429 || this.status >= 500;
  }
}

User-Facing Message Map

Map technical error codes to user-friendly messages:

const ERROR_MESSAGES: Record<string, string> = {
  AUTH_VALIDATION_INVALID_TOKEN: 'Your session has expired. Please sign in again.',
  AUTH_VALIDATION_EXPIRED_TOKEN: 'Your session has expired. Please sign in again.',
  AUTH_PERMISSION_DENIED: 'You do not have permission to perform this action.',
  AUTH_PERMISSION_INACTIVE: 'Your account has been deactivated.',
  DATA_VALIDATION_MISSING_FIELD: 'Please fill in all required fields.',
  AGENT_RUNTIME_TIMEOUT: 'The AI agent took too long to respond. Please try again.',
  AGENT_EXTERNAL_PROVIDER_DOWN: 'The AI service is temporarily unavailable.',
  SYS_EXTERNAL_DATABASE: 'A database error occurred. Please try again later.',
  SYS_RATELIMIT_EXCEEDED: 'Too many requests. Please wait a moment.',
};

export function getUserMessage(error: ApiClientError): string {
  return ERROR_MESSAGES[error.errorCode] ?? error.message;
}

Error Code Registry

Authentication Errors

CodeHTTPMessage
AUTH_VALIDATION_INVALID_TOKEN401Invalid authentication token
AUTH_VALIDATION_EXPIRED_TOKEN401Token has expired
AUTH_VALIDATION_MISSING_TOKEN401No authentication token provided
AUTH_PERMISSION_DENIED403Insufficient permissions
AUTH_PERMISSION_INACTIVE403Account is inactive
AUTH_PERMISSION_NOT_ADMIN403Admin access required
AUTH_NOTFOUND_USER404User not found

Agent Errors

CodeHTTPMessage
AGENT_RUNTIME_TIMEOUT504Agent execution timed out
AGENT_RUNTIME_FAILED500Agent execution failed
AGENT_EXTERNAL_PROVIDER_DOWN503AI provider unavailable
AGENT_VALIDATION_INVALID_INPUT422Invalid agent input
AGENT_NOTFOUND_TYPE404Unknown agent type

Data Errors

CodeHTTPMessage
DATA_VALIDATION_MISSING_FIELD422Required field missing
DATA_VALIDATION_INVALID_FORMAT422Invalid data format
DATA_NOTFOUND_DOCUMENT404Document not found
DATA_NOTFOUND_CONTRACTOR404Contractor not found
DATA_CONFLICT_DUPLICATE409Resource already exists

System Errors

CodeHTTPMessage
SYS_EXTERNAL_DATABASE500Database connection error
SYS_EXTERNAL_REDIS500Cache service error
SYS_RATELIMIT_EXCEEDED429Rate limit exceeded
SYS_RUNTIME_INTERNAL500Internal server error

Adding New Error Codes

When adding a new error code:

  1. Choose domain from the Domains table
  2. Choose category from the Categories table
  3. Add specific identifier describing the failure
  4. Register in the Error Code Registry table above
  5. Map a user-facing message in the frontend ERROR_MESSAGES
  6. Use the ErrorResponse model when raising HTTPException

Anti-Patterns

PatternProblemCorrect Approach
Unstructured error strings (raise HTTPException(detail="bad input"))No machine-readable code, inconsistent frontend handlingUse ErrorResponse model with error_code field
Inconsistent error codes (AUTH_BAD_TOKEN vs AUTH_VALIDATION_INVALID_TOKEN)Breaks the DOMAIN_CATEGORY_SPECIFIC conventionFollow the three-part code format defined in this skill
Missing user-facing messagesFrontend falls back to raw technical error textMap every error code in the ERROR_MESSAGES record
Error codes not matching domain prefixAgent errors using SYS_ prefix or vice versaChoose domain from the Domains table before naming

Checklist

  • Error codes follow DOMAIN_CATEGORY_SPECIFIC format
  • User-facing messages defined in frontend ERROR_MESSAGES map
  • HTTP status codes mapped correctly per severity table
  • Frontend ApiClientError handling matches backend ErrorResponse contract
  • New error codes registered in the Error Code Registry section

Response Format

[AGENT_ACTIVATED]: Error Taxonomy
[PHASE]: {Classification | Implementation | Review}
[STATUS]: {in_progress | complete}

{error analysis or implementation guidance}

[NEXT_ACTION]: {what to do next}

Integration Points

Council of Logic (Shannon Check)

  • Error messages must be concise — no verbose stack traces in user-facing output
  • Error codes encode maximum information in minimum characters
  • One error code per failure mode, no duplicates

API Contract

  • Every API endpoint must document its possible error codes
  • Error codes form part of the API contract between backend and frontend
  • Breaking error code changes require a version bump

Australian Localisation (en-AU)

  • Date Format: DD/MM/YYYY
  • Currency: AUD ($)
  • Spelling: colour, behaviour, optimisation, analyse, centre, authorisation
  • Tone: Direct, professional — error messages should be helpful, not apologetic

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.2%
按下载量换算29

Claude

31.83%
按下载量换算25

Cursor

16.66%
按下载量换算13

Gemini CLI

10.03%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills