ワンクリックで
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'