Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

api-designerAPI 设计

Agent Skill

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

总安装

346

周安装

14

GitHub Stars

2

下载量

109
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wyattowalsh/agents --skill api-designer

简介

用于辅助 API 设计、接口文档和请求响应结构梳理。

  • 适合生成 OpenAPI 草稿、检查字段命名或整理错误码。
  • 使用时需确认业务语义、鉴权方式和分页规则,避免凭空补字段。
  • 安装命令:npx skills add https://github.com/wyattowalsh/agents --skill api-designer。
  • 涉及接口文档时应从现有代码或样例中提取事实,而非虚构内容。

SKILL.md

API Designer

Contract-first API design across REST, GraphQL, and gRPC. Produces OpenAPI 3.1 specs, reviews existing APIs, analyzes backward compatibility, and scaffolds client code.

Canonical Vocabulary

TermDefinition
specAn OpenAPI 3.1 document (YAML or JSON) describing an API's surface
endpointA path + method combination in a REST API; a query/mutation in GraphQL; an RPC in gRPC
breaking changeAny modification that causes existing clients to fail without code changes
non-breaking changeA backward-compatible modification (additive fields, new endpoints, optional params)
resourceA domain entity exposed through the API (noun-based URL segment in REST)
contractThe formal agreement between API producer and consumer defined by the spec
protocolThe API paradigm: REST, GraphQL, or gRPC
surfaceThe complete set of endpoints, types, and operations an API exposes
versioning strategyHow breaking changes are communicated: URL path, header, or query parameter

Dispatch

$ARGUMENTSAction
design <requirements>Design a new API from requirements
spec <code or path>Generate OpenAPI 3.1 spec from existing code
review <spec or path>Audit an existing API design
version <spec or path>Versioning and deprecation strategy
compat <old> <new>Backward compatibility diff analysis
sdk <spec or path>Scaffold client code structure
Natural language about API designAuto-detect mode from intent
EmptyShow mode menu with examples

Mode Menu (empty args)

#ModeExample
1Designdesign "User management API with RBAC"
2Specspec src/routes/
3Reviewreview openapi.yaml
4Versionversion openapi.yaml
5Compatcompat v1.yaml v2.yaml
6SDKsdk openapi.yaml
Pick a number or describe what you need.

Protocol Detection

Detect the API protocol from input before entering any mode. Classification determines which conventions and patterns apply.

Detection signals:

SignalRESTGraphQLgRPC
File extension.yaml, .json (OpenAPI).graphql, .gql.proto
Keywordsendpoint, resource, CRUD, pathquery, mutation, subscription, resolverservice, rpc, message, protobuf
URL patterns/api/v1/resources/graphqlgRPC service names
Code patternsExpress/FastAPI routes, controllersSchema definitions, resolversProto service definitions

Routing:

  • Clear signal for one protocol: proceed with that protocol's conventions
  • Mixed signals or ambiguous: ask user — "Which protocol? [REST / GraphQL / gRPC]"
  • No protocol context (pure requirements): default to REST, note assumption

Load references/rest-conventions.md, references/graphql-patterns.md, or references/grpc-patterns.md based on detected protocol.

Mode A: Design

New API from requirements. Read references/rest-conventions.md (or protocol-specific reference).

Design Steps

  1. Parse requirements — Extract resources, relationships, operations, auth needs, constraints
  2. Resource modeling — Define resources with attributes, relationships, cardinality
  3. Endpoint design — Map CRUD + custom operations to endpoints following protocol conventions
  4. Request/response schemas — Define payloads with types, validation rules, examples
  5. Auth strategy — Recommend auth approach (API key, OAuth2, JWT) based on use case
  6. Error contract — Define error response format with codes, messages, detail objects
  7. Pagination & filtering — Apply cursor or offset pagination, filter query patterns
  8. Rate limiting — Recommend limits based on endpoint sensitivity and expected load
  9. Generate spec — Output complete OpenAPI 3.1 YAML
  10. Validate — Run scripts/api-spec-validator.py on generated spec

Mode B: Spec

Generate OpenAPI 3.1 from existing code.

Spec Steps

  1. Scan codebase — Read route definitions, controllers, handlers, decorators
  2. Extract endpoints — Map code to path + method + parameters + response types
  3. Infer schemas — Build request/response schemas from type annotations or runtime types
  4. Generate spec — Output OpenAPI 3.1 YAML with all discovered endpoints
  5. Validate — Run scripts/api-spec-validator.py
  6. Gap report — List endpoints missing descriptions, examples, or error responses

Mode C: Review

Audit existing API design. Read-only analysis.

Review Steps

  1. Parse spec — Load and validate the OpenAPI document
  2. Run validatorscripts/api-spec-validator.py for structural issues
  3. Run endpoint matrixscripts/api-endpoint-matrix.py for surface overview
  4. Convention check — Verify naming, HTTP method usage, status codes against references/rest-conventions.md
  5. Security audit — Check auth coverage, HTTPS enforcement, sensitive data exposure
  6. Consistency check — Verify naming patterns, response envelope consistency, error format uniformity
  7. Report — Present findings by severity (critical, warning, info) with specific fix recommendations

Mode D: Version

Versioning and deprecation strategy.

Version Steps

  1. Analyze current state — Parse spec, identify version indicators
  2. Recommend strategy — Compare URL path vs header vs query param versioning (load references/versioning-strategies.md)
  3. Deprecation plan — Timeline, sunset headers, migration guides for deprecated endpoints
  4. Version matrix — Table showing which endpoints exist in which versions
  5. Migration guide template — Skeleton for consumer migration documentation

Mode E: Compat

Backward compatibility diff between two spec versions.

Compat Steps

  1. Load both specs — Parse old and new OpenAPI documents
  2. Run compat checkerscripts/compat-checker.py <old> <new>
  3. Classify changes — Breaking vs non-breaking with change type and location
  4. Impact assessment — Which consumers are affected, estimated migration effort
  5. Remediation — For each breaking change, suggest backward-compatible alternatives

Mode F: SDK

Scaffold client code structure from a spec. NOT a publishable SDK package — a structural starting point.

SDK Steps

  1. Parse spec — Extract endpoints, schemas, auth requirements
  2. Group by resource — Organize endpoints into logical client modules
  3. Generate client skeleton — Method stubs with typed parameters and return types
  4. Auth integration — Wire auth mechanism into client constructor
  5. Error handling — Map API error codes to client exceptions
  6. Usage examples — One example per resource showing common operations

Scripts

ScriptPurposeRun When
scripts/api-spec-validator.pyValidate OpenAPI 3.x for completeness and best practicesDesign, Spec, Review
scripts/api-endpoint-matrix.pyExtract endpoint inventory from specReview, Version, SDK
scripts/compat-checker.pyCompare two specs for breaking changesCompat

Script Invocation

uv run python skills/api-designer/scripts/api-spec-validator.py <spec-path>
uv run python skills/api-designer/scripts/api-endpoint-matrix.py <spec-path>
uv run python skills/api-designer/scripts/compat-checker.py <old-spec> <new-spec>

All scripts output JSON to stdout, warnings to stderr.

Reference File Index

FileContentRead When
references/rest-conventions.mdREST best practices, HTTP methods, status codes, naming, pagination, rate limitingDesign, Spec, Review (REST)
references/graphql-patterns.mdGraphQL schema design, query patterns, error handling, subscriptionsDesign, Spec, Review (GraphQL)
references/grpc-patterns.mdgRPC service patterns, proto design, streaming, error codesDesign, Spec, Review (gRPC)
references/versioning-strategies.mdURL vs header vs query versioning, deprecation, backward compat checklistVersion, Compat
data/http-conventions.jsonHTTP method semantics reference dataScripts
data/status-codes.jsonHTTP status code guide reference dataScripts

Do not load all references at once. Load only what the detected protocol and active mode require.

Critical Rules

  1. Always detect protocol before entering any mode — never assume REST without evidence
  2. If protocol is ambiguous, ask the user — do not guess
  3. Generated specs must pass api-spec-validator.py before presenting to user
  4. Every endpoint must have at least one error response defined (4xx or 5xx)
  5. Never design APIs without pagination for list endpoints returning collections
  6. Breaking changes in compat mode must include remediation suggestions
  7. SDK mode produces structural scaffolds only — never claim the output is production-ready
  8. Use the canonical vocabulary consistently — "spec" not "swagger", "endpoint" not "route"
  9. All specs target OpenAPI 3.1 — do not generate Swagger 2.0 or OpenAPI 3.0
  10. NOT for MCP servers (use mcp-creator) or frontend API client code

Scope Boundaries

IS for:

  • Designing new REST, GraphQL, or gRPC APIs from requirements
  • Generating OpenAPI specs from existing code
  • Reviewing and auditing API designs
  • Versioning strategy and deprecation planning
  • Breaking change analysis between spec versions
  • Scaffolding client code structure

NOT for:

  • MCP server APIs (use /mcp-creator)
  • Frontend API client implementations
  • API gateway configuration
  • Runtime API testing or load testing
  • Database schema design (use /database-architect)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.42%
按下载量换算35

Claude

30.81%
按下载量换算34

Cursor

18.36%
按下载量换算20

Gemini CLI

9.72%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills