一键导入
openapi-spec-writer
Generate comprehensive OpenAPI 3.1 specifications from API design requirements and existing endpoints
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate comprehensive OpenAPI 3.1 specifications from API design requirements and existing endpoints
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Orchestrate multi-agent teams in Claude Code — set up coordinated sessions with task delegation, inter-agent communication, and parallel execution
Leverage Claude Code's ultra-deep planning mode for complex architecture decisions, multi-file refactors, and system design
Deep code review using Claude Code's thorough analysis mode — security, performance, correctness, and maintainability
Safe isolated testing environment for multi-agent swarm topologies before production deployment
Automatically summarizes the current session context to prevent token window overflow.
Claude Code context pruner: slash command to summarize session and reset token bloat
| name | openapi-spec-writer |
| description | Generate comprehensive OpenAPI 3.1 specifications from API design requirements and existing endpoints |
| allowed-tools | ["Read","Write","Bash","Grep"] |
| effort | high |
openapi: 3.1.0
info:
title: Users API
version: 1.2.0
description: User management and authentication service
servers:
- url: https://api.example.com/v1
description: Production
paths:
/users:
get:
summary: List users
parameters:
- name: page
in: query
schema: { type: integer, default: 1 }
- name: limit
in: query
schema: { type: integer, default: 20, maximum: 100 }
responses:
'200':
description: Paginated user list
content:
application/json:
schema:
$ref: '#/components/schemas/UserListResponse'