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

openapi-specificationopenapi 规范

Agent Skill

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

总安装

649

周安装

26

GitHub Stars

15

下载量

210
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nickcrew/claude-ctx-plugin --skill openapi-specification

简介

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。

  • 适合梳理 endpoint、生成 OpenAPI 草稿、检查字段命名或整理错误码。
  • 通过 npx skills add 命令从指定仓库安装并使用该技能。
  • 使用时需确认业务语义、鉴权方式、分页和错误处理规则,避免凭空补字段。
  • 建议从现有代码、schema 或接口样例中提取事实,确保文档准确性。

SKILL.md

OpenAPI Specification

Design, validate, and maintain OpenAPI 3.x specifications for REST API contracts. Covers schema patterns, security schemes, versioning, and code generation integration.

When to Use This Skill

  • Creating a new OpenAPI specification from scratch
  • Adding endpoints or schemas to an existing spec
  • Reviewing or validating an API contract for correctness
  • Setting up code generation from OpenAPI definitions
  • Designing reusable schema components for large APIs
  • Implementing security schemes in API specifications
  • Managing API versioning and deprecation

Quick Reference

ResourcePurposeLoad when
references/spec-patterns.mdSchema patterns, security schemes, validation, versioning, reusable componentsDesigning or reviewing specs

Workflow

Phase 1: Design       → Define API overview, resources, and operations
Phase 2: Schema       → Build data models with reusable components
Phase 3: Validate     → Lint and verify the spec for correctness
Phase 4: Integrate    → Generate docs, SDKs, and contract tests

Phase 1: API Design

Start with a high-level design before writing the spec:

  1. Identify resources -- what nouns does this API expose?
  2. Map operations -- what CRUD and custom actions apply to each resource?
  3. Define relationships -- how do resources reference each other?
  4. Plan authentication -- what security schemes are needed?
  5. Set conventions -- naming style, pagination, error format

Spec Skeleton

openapi: 3.1.0
info:
  title: [API Name]
  version: 1.0.0
  description: [What this API does]
paths:
  /resources:
    get:
      summary: List resources
      operationId: listResources
    post:
      summary: Create a resource
      operationId: createResource
  /resources/{id}:
    get:
      summary: Get a resource
      operationId: getResource
components:
  schemas: {}
  securitySchemes: {}

Phase 2: Schema Design

Build data models using components/schemas for reuse:

  • Use $ref to reference shared schemas -- never duplicate definitions
  • Apply allOf for composition, oneOf / anyOf for polymorphism
  • Add example values to every schema and property
  • Use required arrays explicitly -- don't rely on implicit behavior
  • Document nullable fields with type: [string, "null"] (3.1) or nullable: true (3.0)

Phase 3: Validate

Run validation before committing any spec changes:

# Spectral (recommended)
spectral lint openapi.yaml

# Redocly
redocly lint openapi.yaml

# swagger-cli
swagger-cli validate openapi.yaml

Common Validation Issues

IssueFix
Missing operationIdAdd unique operationId to every operation
Unused schemaRemove from components or add a $ref
Missing response descriptionAdd description to every response code
Path parameter not in pathMatch {param} in path with parameter definition
No 2xx response definedAdd at least one success response per operation

Phase 4: Integrate

Use the validated spec to generate downstream artifacts:

  • Documentation: Redoc, Swagger UI, Stoplight
  • Client SDKs: openapi-generator, autorest, orval
  • Server stubs: openapi-generator with server templates
  • Contract tests: Schemathesis, Dredd, Prism

Quality Checklist

  • All paths have operationIds
  • HTTP methods match resource actions (GET reads, POST creates, etc.)
  • Every response has a description and schema
  • Security requirements defined at operation or global level
  • Examples provided for request and response bodies
  • Consistent naming conventions (camelCase, snake_case -- pick one)
  • Deprecation fields set on sunset endpoints
  • Spec passes linter with zero errors

Anti-Patterns

  • Do not inline schemas -- use $ref to components/schemas for anything reused
  • Do not mix API versions in a single spec file
  • Do not use 200 OK for create operations -- use 201 Created
  • Do not omit error response schemas -- document 4xx and 5xx consistently
  • Do not use additionalProperties: true without clear justification

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.28%
按下载量换算70

Claude

32.01%
按下载量换算67

Cursor

18.3%
按下载量换算38

Gemini CLI

9.27%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills