Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

api-designAPI 设计

Agent Skill

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

总安装

881

周安装

36

GitHub Stars

16

下载量

285
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill api-design

简介

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

  • 适用于前后端联调和接口规范制定场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用该技能。
  • 使用时需确认真实业务语义,避免凭空补字段。
  • api-design 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

API Design

Principles and patterns for designing APIs that are consistent, predictable, and easy to evolve. Applies to any language or framework — the focus is on protocol-level design decisions, not implementation details.

A well-designed API treats its surface as a product: consumers should be able to predict behavior, recover from errors, and integrate without reading source code.

When to Use

  • Designing a new public or internal API from scratch
  • Reviewing an existing API for consistency and usability
  • Choosing between REST and GraphQL for a project
  • Planning API versioning or migration strategy
  • Defining error response contracts across services
  • Establishing API standards for a team or organization

REST vs GraphQL

AspectRESTGraphQL
Best forCRUD-heavy, resource-oriented domainsComplex, interconnected data with varied client needs
Data fetchingFixed response shapes per endpointClient specifies exact fields needed
Over-fetchingCommon — endpoints return full resourcesEliminated — clients request only what they need
Under-fetchingCommon — requires multiple round tripsEliminated — single query can span relations
CachingBuilt-in HTTP caching (ETags, Cache-Control)Requires custom caching (normalized stores, persisted queries)
File uploadsNative multipart supportRequires workarounds (multipart spec or separate endpoint)
Real-timeWebhooks, SSE, or pollingSubscriptions built into the spec
Tooling maturityMature — OpenAPI, Postman, HTTP clientsGrowing — Apollo, Relay, GraphiQL
Learning curveLower — leverages existing HTTP knowledgeHigher — schema language, resolvers, query optimization
Error handlingHTTP status codes + response bodyAlways 200 — errors in response errors array
VersioningURL path, headers, or query paramsSchema evolution via deprecation + additive changes

Choose REST when: your domain maps naturally to resources and CRUD operations, you need HTTP caching, or your clients are simple (mobile apps, third-party integrations).

Choose GraphQL when: clients have highly varied data needs, you are aggregating multiple backend services, or you want a strongly typed contract between frontend and backend.

Both are valid. Many systems use REST for external/public APIs and GraphQL for internal frontend-backend communication.

REST Design Principles

REST APIs model the domain as resources and use HTTP semantics to operate on them.

Core rules:

  • Resources are nouns, not verbs: /orders, not /getOrders
  • HTTP methods are the verbs: GET reads, POST creates, PUT replaces, PATCH updates, DELETE removes
  • URLs identify resources; query parameters filter, sort, or paginate them
  • Use plural nouns for collections: /users, /users/{id}
  • Limit nesting to two levels: /users/{id}/orders is fine; /users/{id}/orders/{id}/items/{id}/variants is not
  • Use HTTP status codes meaningfully — do not return 200 for everything
  • Support content negotiation via Accept and Content-Type headers

HATEOAS (Hypermedia as the Engine of Application State) adds discoverability by including links in responses. Useful for public APIs but often overkill for internal services:

{
  "id": 42,
  "status": "shipped",
  "_links": {
    "self": { "href": "/orders/42" },
    "cancel": { "href": "/orders/42/cancel", "method": "POST" },
    "customer": { "href": "/customers/7" }
  }
}

See REST Patterns Reference for detailed conventions.

GraphQL Design Principles

GraphQL APIs expose a strongly typed schema that clients query declaratively.

Core rules:

  • Design schema-first — define the type system before writing resolvers
  • Types represent domain concepts; fields represent attributes and relations
  • Queries read data, mutations write data, subscriptions stream data
  • Use the type system to enforce constraints (non-null, enums, input types)
  • Avoid deeply nested schemas that create unpredictable query costs
  • Solve N+1 problems with batching (dataloader pattern)
  • Limit query depth and complexity to prevent abuse

Schema-first example:

type User {
  id: ID!
  name: String!
  email: String!
  orders(first: Int, after: String): OrderConnection!
}

type Order {
  id: ID!
  total: Float!
  status: OrderStatus!
  createdAt: DateTime!
}

enum OrderStatus {
  PENDING
  CONFIRMED
  SHIPPED
  DELIVERED
  CANCELLED
}

See GraphQL Patterns Reference for detailed conventions.

Error Handling

A consistent error format is one of the most impactful API design decisions. Consumers should be able to parse errors programmatically without inspecting message strings.

RFC 7807 Problem Details format (recommended for REST):

{
  "type": "https://api.example.com/errors/insufficient-funds",
  "title": "Insufficient Funds",
  "status": 422,
  "detail": "Account balance is $10.00 but the transfer requires $50.00.",
  "instance": "/transfers/abc-123",
  "errors": [
    {
      "field": "amount",
      "code": "insufficient_funds",
      "message": "Transfer amount exceeds available balance"
    }
  ]
}

Key principles:

  • Use a machine-readable type or code — clients should branch on codes, not messages
  • Include a human-readable detail for debugging
  • Return field-level errors for validation failures so clients can highlight specific inputs
  • Use appropriate HTTP status codes (REST) or structured error types (GraphQL)
  • Never expose stack traces, internal paths, or SQL queries in production
  • Include a correlation/request ID for tracing errors across services

GraphQL error conventions:

{
  "data": { "createOrder": null },
  "errors": [
    {
      "message": "Insufficient funds",
      "extensions": {
        "code": "INSUFFICIENT_FUNDS",
        "field": "amount"
      }
    }
  ]
}

Versioning

APIs evolve. Versioning strategies determine how you ship changes without breaking existing consumers.

StrategyMechanismProsCons
URL path/v1/usersExplicit, easy to routeURL pollution, hard to deprecate
Accept headerAccept: application/vnd.api+json;version=2Clean URLs, HTTP-correctLess visible, harder to test casually
Query param/users?version=2Simple to implementEasy to forget, caching complications

Practical guidance:

  • URL path versioning is the most common and easiest for consumers to understand
  • Only bump the major version for breaking changes
  • Prefer evolving the API additively (new fields, new endpoints) over creating new versions
  • When a version is deprecated, communicate a sunset date and provide migration guides

See API Evolution Reference for detailed strategies.

Pagination

Every list endpoint needs pagination. The choice between cursor and offset affects performance, consistency, and client complexity.

ApproachHow it worksProsCons
Offset?offset=20&limit=10Simple, supports "jump to page N"Inconsistent with real-time inserts/deletes, slow on large tables
Cursor?after=abc123&limit=10Stable with real-time data, performant at scaleCannot jump to arbitrary pages

Best practices:

  • Set a maximum page size (e.g., 100) and a sensible default (e.g., 20)
  • Return pagination metadata: hasNextPage, hasPreviousPage, totalCount (if cheap to compute)
  • If totalCount is expensive, make it optional or return an estimate
  • Use cursors for feeds, activity streams, and any data that changes frequently
  • Use offset for admin dashboards, reports, and datasets that rarely change during browsing

Cursor pagination response example:

{
  "data": [ ... ],
  "pagination": {
    "hasNextPage": true,
    "hasPreviousPage": false,
    "startCursor": "eyJpZCI6MX0=",
    "endCursor": "eyJpZCI6MTB9"
  }
}

Authentication & Authorization

Authentication verifies identity (who are you?). Authorization verifies permissions (what can you do?).

MechanismUse caseNotes
API keysServer-to-server, simple integrationsEasy to implement; rotate regularly; never expose in client code
OAuth 2.0Third-party access, delegated permissionsIndustry standard; use Authorization Code + PKCE for SPAs/mobile
JWT (Bearer tokens)Stateless auth for microservicesInclude only essential claims; set short expiry; validate signature and claims
Session cookiesBrowser-based web appsPair with CSRF protection; use Secure, HttpOnly, SameSite flags

Best practices:

  • Always use HTTPS — no exceptions
  • Transmit tokens in Authorization: Bearer <token> header, not in query strings
  • Implement scopes/permissions for fine-grained access control
  • Return 401 Unauthorized for missing/invalid credentials, 403 Forbidden for insufficient permissions
  • Rate-limit authentication endpoints aggressively to prevent brute-force attacks
  • Support token refresh flows to avoid forcing re-authentication

Common Antipatterns

AntipatternProblemFix
Chatty APIClients need 10+ requests to render a pageAggregate related data; consider GraphQL or composite endpoints
God endpointSingle endpoint accepts wildly different payloads via flagsSplit into focused endpoints with clear semantics
Inconsistent namingMix of snake_case, camelCase, plural/singularPick one convention and enforce it project-wide
Missing paginationList endpoints return unbounded resultsAlways paginate collections; set max page size
Breaking changes without versioningRenaming or removing fields breaks clients silentlyUse versioning or additive-only evolution
Leaking internalsDatabase column names, auto-increment IDs in URLsMap to stable external identifiers (UUIDs, slugs)
Ignoring idempotencyRetrying a POST creates duplicate resourcesSupport idempotency keys for non-idempotent operations
200 for everythingErrors return HTTP 200 with an error bodyUse appropriate HTTP status codes
Timestamps without timezone2024-01-15 14:30:00 is ambiguousAlways use ISO 8601 with timezone: 2024-01-15T14:30:00Z

Quality Checklist

Before shipping or reviewing an API, verify:

  • Resource naming is consistent (plural nouns, no verbs in URLs)
  • HTTP methods match semantics (GET is safe, PUT/DELETE are idempotent)
  • Every list endpoint is paginated with a max page size
  • Error responses use a consistent format with machine-readable codes
  • Authentication is required and uses HTTPS
  • Rate limiting is in place with appropriate headers
  • Breaking changes are versioned or avoided via additive evolution
  • Request/response examples exist for every endpoint
  • Timestamps use ISO 8601 with timezone
  • IDs are stable external identifiers, not internal auto-increments
  • CORS is configured for browser clients (if applicable)
  • Compression (gzip/brotli) is enabled for responses
  • API documentation is generated from the source of truth (OpenAPI schema, GraphQL introspection)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.06%
按下载量换算103

Claude

31.06%
按下载量换算89

Cursor

20.44%
按下载量换算58

Gemini CLI

9.41%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills