openai-docs-skill
OpenAIのAPI、SDK、ChatGPT Apps SDK、Codexなどに関する最新の公式情報を、CLIを通じてOpenAI開発者向けドキュメントから検索し、技術的な課題解決や仕様確認を支援するSkill。
📜 元の英語説明(参考)
Query the OpenAI developer documentation via the OpenAI Docs MCP server using CLI (curl/jq). Use whenever a task involves the OpenAI API (Responses, Chat Completions, Realtime, etc.), OpenAI SDKs, ChatGPT Apps SDK, Codex, MCP integrations, endpoint schemas, parameters, limits, or migrations and you need up-to-date official guidance.
🇯🇵 日本人クリエイター向け解説
OpenAIのAPI、SDK、ChatGPT Apps SDK、Codexなどに関する最新の公式情報を、CLIを通じてOpenAI開発者向けドキュメントから検索し、技術的な課題解決や仕様確認を支援するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o openai-docs-skill.zip https://jpskill.com/download/17147.zip && unzip -o openai-docs-skill.zip && rm openai-docs-skill.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17147.zip -OutFile "$d\openai-docs-skill.zip"; Expand-Archive "$d\openai-docs-skill.zip" -DestinationPath $d -Force; ri "$d\openai-docs-skill.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
openai-docs-skill.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
openai-docs-skillフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 2
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
OpenAI Docs MCP Skill
概要
OpenAIの開発者ドキュメントMCPサーバーをシェルから使用して、信頼できるドキュメントを検索および取得します。OpenAIプラットフォームに関する作業を行う際は、記憶や非公式の情報源に頼るのではなく、常にこれを使用してください。
主要なルール
- OpenAI API/SDK/Apps/Codexに関する質問や、正確で最新のドキュメントが必要な場合は、常にこのスキルを使用してください。
scripts/openai-docs-mcp.shのCLIラッパーを介してMCPサーバーにクエリを実行します(Codex MCPツールに依存しないでください)。searchまたはlistを使用して最適なドキュメントページを見つけ、次にfetchでページ(またはアンカー)を取得して正確なテキストを取得します。- 使用したドキュメントのURLを回答に含めて、情報源を明確にしてください。
クイックスタート
scripts/openai-docs-mcp.sh search "Responses API" 5
scripts/openai-docs-mcp.sh fetch https://platform.openai.com/docs/guides/migrate-to-responses
ワークフロー
- 発見: 焦点を絞ったクエリで
searchを実行します。不明な場合は、listを使用して参照します。 - 読み取り: 最も関連性の高いURLを
fetchします(オプションでアンカーを追加します)。 - 適用: 関連するセクションを要約または引用します。URLを含めます。
スクリプトリファレンス
CLIラッパーはscripts/openai-docs-mcp.shにあり、https://developers.openai.com/mcpに対してcurl + jqを使用します。
サブコマンド:
init: サーバーの機能を初期化および検査します。tools: MCPサーバーで利用可能なツールを一覧表示します。search <query> [limit] [cursor]: ドキュメントインデックスからJSONヒットを返します。list [limit] [cursor]: ドキュメントインデックスを参照します。fetch <url> [anchor]: ドキュメントページまたはセクションのMarkdownを返します。endpoints: OpenAPIエンドポイントを一覧表示します。openapi <endpoint-url> [lang1,lang2] [code-only]: OpenAPIスキーマまたはコードサンプルを取得します。
環境変数:
MCP_URL: デフォルトのMCPエンドポイントをオーバーライドします。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
OpenAI Docs MCP Skill
Overview
Use the OpenAI developer documentation MCP server from the shell to search and fetch authoritative docs. Always do this for OpenAI platform work instead of relying on memory or non-official sources.
Core rules
- Always use this skill for OpenAI API/SDK/Apps/Codex questions or when precise, current docs are required.
- Query the MCP server via the CLI wrapper in
scripts/openai-docs-mcp.sh(do not rely on Codex MCP tools). - Use
searchorlistto find the best doc page, thenfetchthe page (or anchor) for exact text. - Surface the doc URL you used in your response so sources are clear.
Quick start
scripts/openai-docs-mcp.sh search "Responses API" 5
scripts/openai-docs-mcp.sh fetch https://platform.openai.com/docs/guides/migrate-to-responses
Workflow
- Discover:
searchwith a focused query. If unsure, uselistto browse. - Read:
fetchthe most relevant URL (optionally add an anchor). - Apply: summarize and/or quote relevant sections; include the URL.
Script reference
The CLI wrapper is at scripts/openai-docs-mcp.sh and uses curl + jq against https://developers.openai.com/mcp.
Subcommands:
init: initialize and inspect server capabilities.tools: list available tools on the MCP server.search <query> [limit] [cursor]: return JSON hits from the docs index.list [limit] [cursor]: browse docs index.fetch <url> [anchor]: return markdown for a doc page or section.endpoints: list OpenAPI endpoints.openapi <endpoint-url> [lang1,lang2] [code-only]: fetch OpenAPI schema or code samples.
Environment:
MCP_URL: override the default MCP endpoint.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (2,068 bytes)
- 📎 scripts/openai-docs-mcp.sh (4,770 bytes)