Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

api-design-principlesAPI 设计 principles

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

349

周安装

14

GitHub Stars

21

下载量

113
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:api-design-principles(API 设计 principles)
来源仓库:https://github.com/thapaliyabikendra/ai-artifacts
仓库路径:skills/api-design-principles
安装命令:
npx skills add https://github.com/thapaliyabikendra/ai-artifacts --skill api-design-principles
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/thapaliyabikendra/ai-artifacts --skill api-design-principles

简介

用于辅助 API 设计、接口文档和请求响应结构梳理,支持 OpenAPI 草稿生成和字段命名检查。

  • 适用于前后端联调、服务集成说明和接口规范制定等场景。
  • 通过安装命令 npx skills add https://github.com/thapaliyabikendra/ai-artifacts --skill api-design-principles 从 GitHub 仓库安装使用。
  • 需确认真实业务语义、鉴权方式和错误处理规则,避免凭空补字段,最好从现有代码或接口样例中提取事实。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

API Design Principles

Master REST API design principles to build intuitive, scalable, and maintainable APIs. This skill focuses on design theory - for implementation patterns, see abp-api-implementation or abp-service-patterns.

When to Use This Skill

  • Designing new REST API contracts
  • Reviewing API specifications before implementation
  • Establishing API design standards for your team
  • Planning API versioning and evolution strategy
  • Creating developer-friendly API documentation

Audience

  • Backend Architects - API contract design
  • Tech Leads - Standards and review
  • Business Analysts - Understanding API capabilities
For Implementation: Use abp-service-patterns for AppService code, api-response-patterns for response wrappers, fluentvalidation-patterns for validation.

Core Principles

1. Resource-Oriented Design

APIs expose resources (nouns), not actions (verbs).

ConceptGoodBad
Resource naming/patients, /appointments/getPatients, /createAppointment
Actions via HTTP methodsPOST /patientsPOST /createPatient
Plural for collections/patients/patient
Consistent casingkebab-case or camelCaseMixed styles

Resource Hierarchy:

/api/v1/patients                    # Collection
/api/v1/patients/{id}               # Single resource
/api/v1/patients/{id}/appointments  # Nested collection
/api/v1/appointments/{id}           # Direct access to nested resource

Avoid Deep Nesting (max 2 levels):

# Good - Shallow
GET /api/v1/patients/{id}/appointments
GET /api/v1/appointments/{id}

# Bad - Too deep
GET /api/v1/clinics/{id}/doctors/{id}/patients/{id}/appointments/{id}

2. HTTP Methods Semantics

MethodPurposeIdempotentSafeRequest Body
GETRetrieve resource(s)YesYesNo
POSTCreate resourceNoNoYes
PUTReplace entire resourceYesNoYes
PATCHPartial updateYes*NoYes
DELETERemove resourceYesNoNo

Idempotent: Multiple identical requests produce same result. Safe: Does not modify server state.

3. HTTP Status Codes

Success (2xx):

CodeMeaningUse When
200 OKSuccessGET, PUT, PATCH succeeded
201 CreatedResource createdPOST succeeded
204 No ContentSuccess, no bodyDELETE succeeded

Client Errors (4xx):

CodeMeaningUse When
400 Bad RequestMalformed requestInvalid JSON, missing required headers
401 UnauthorizedNot authenticatedMissing or invalid token
403 ForbiddenNot authorizedValid token, insufficient permissions
404 Not FoundResource doesn't existID not found
409 ConflictState conflictDuplicate email, version mismatch
422 Unprocessable EntityValidation failedBusiness rule violations
429 Too Many RequestsRate limitedExceeded request quota

Server Errors (5xx):

CodeMeaningUse When
500 Internal Server ErrorUnexpected errorUnhandled exception
503 Service UnavailableTemporarily downMaintenance, overload

Design Patterns

Pattern 1: Pagination

Always paginate collections - Never return unbounded lists.

Offset-Based (simple, good for small datasets):

GET /api/v1/patients?page=2&pageSize=20

Response:
{
  "items": [...],
  "totalCount": 150,
  "pageNumber": 2,
  "pageSize": 20,
  "totalPages": 8
}

Cursor-Based (efficient for large datasets, real-time data):

GET /api/v1/patients?cursor=eyJpZCI6MTIzfQ&limit=20

Response:
{
  "items": [...],
  "nextCursor": "eyJpZCI6MTQzfQ",
  "hasMore": true
}
ApproachProsConsBest For
OffsetSimple, supports jumping to pageSlow on large datasets, inconsistent with real-time dataAdmin panels, reports
CursorFast, consistentCan't jump to arbitrary pageInfinite scroll, feeds

Pattern 2: Filtering and Sorting

Query Parameters for Filtering:

GET /api/v1/patients?status=active
GET /api/v1/patients?status=active&createdAfter=2025-01-01
GET /api/v1/patients?doctorId=abc-123

Sorting:

GET /api/v1/patients?sorting=name
GET /api/v1/patients?sorting=createdAt desc
GET /api/v1/patients?sorting=lastName,firstName

Searching:

GET /api/v1/patients?filter=john
GET /api/v1/patients?search=john doe

Design Decisions:

  • Use WhereIf pattern - only apply filter if parameter provided
  • Define allowed sort fields (security - don't expose internal fields)
  • Set maximum page size (prevent abuse)

Pattern 3: Error Response Design

Consistent Structure:

{
  "error": {
    "code": "VALIDATION_ERROR",
    "message": "One or more validation errors occurred.",
    "details": [
      {
        "field": "email",
        "message": "Invalid email format."
      },
      {
        "field": "dateOfBirth",
        "message": "Date of birth cannot be in the future."
      }
    ],
    "traceId": "00-abc123-def456-00"
  }
}

Error Codes (for client handling):

CodeHTTP StatusMeaning
VALIDATION_ERROR422Input validation failed
NOT_FOUND404Resource doesn't exist
UNAUTHORIZED401Authentication required
FORBIDDEN403Permission denied
CONFLICT409State conflict
RATE_LIMITED429Too many requests

Pattern 4: Versioning Strategy

URL Versioning (Recommended for ABP):

/api/v1/patients
/api/v2/patients
StrategyExampleProsCons
URL Path/api/v1/Clear, easy routingMultiple URLs
HeaderApi-Version: 1Clean URLsHidden, harder to test
Query Param?version=1Easy testingCan be forgotten

Versioning Policy:

  • Major version for breaking changes
  • Support N-1 version minimum
  • Deprecation notice 6+ months before removal
  • Document migration path

Pattern 5: Resource Relationships

Embedding vs Linking:

// Embedded (fewer requests, larger payload)
{
  "id": "patient-123",
  "name": "John Doe",
  "doctor": {
    "id": "doctor-456",
    "name": "Dr. Smith"
  }
}

// Linked (smaller payload, more requests)
{
  "id": "patient-123",
  "name": "John Doe",
  "doctorId": "doctor-456"
}

// Hybrid (with expand parameter)
GET /api/v1/patients/123?expand=doctor,appointments

Decision Criteria:

Use EmbeddingUse Linking
Related data always neededRelated data rarely needed
Few relationshipsMany relationships
Related data is smallRelated data is large

API Contract Checklist

Resource Design

  • Resources are nouns, not verbs
  • Plural names for collections
  • Consistent naming convention
  • Max 2 levels of nesting
  • All CRUD mapped to correct HTTP methods

Request/Response

  • All collections paginated
  • Default and max page size defined
  • Filter parameters documented
  • Sorting parameters documented
  • Consistent error response format

Security

  • Authentication method defined
  • Authorization on all mutating endpoints
  • Rate limiting configured
  • Sensitive data not in URLs
  • CORS configured

Documentation

  • OpenAPI/Swagger spec
  • All endpoints documented
  • Request/response examples
  • Error responses documented

Anti-Patterns to Avoid

Anti-PatternProblemSolution
Verb endpointsPOST /createPatientPOST /patients
Ignoring HTTP methodsUsing POST for everythingUse appropriate method
No paginationReturning 10,000 itemsAlways paginate
Inconsistent errorsDifferent formats per endpointStandardize error structure
Exposing internalsDatabase columns in APIDesign API contract separately
No versioningBreaking changes break clientsVersion from day one
Deep nesting/a/{id}/b/{id}/c/{id}/dFlatten, max 2 levels

Integration with Other Skills

NeedSkill
AppService implementationabp-service-patterns
Response wrappersapi-response-patterns
Input validationfluentvalidation-patterns
Query optimizationlinq-optimization-patterns
Technical design docstechnical-design-patterns

References

  • references/rest-best-practices.md - Detailed REST patterns
  • assets/api-design-checklist.md - Pre-implementation checklist

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Cursor

53.1%
按下载量换算60

github-copilot

31.82%
按下载量换算36

Claude Code

13.4%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills