openai-responses
OpenAI Responses API for stateful agentic applications with reasoning preservation. Use for MCP integration, built-in tools, background processing, or migrating from Chat Completions.
npx skills add majiayu000/claude-skill-registry --skill openai-responses-secondsky-claude-skills --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# OpenAI Responses API **Status**: Production Ready | **API Launch**: March 2025 | **SDK**: openai@5.19.1+ --- ## Quick Start (5 Minutes) ### Node.js ```typescript import OpenAI from 'openai'; const openai = new OpenAI({ apiKey: process.env.OPENAI_API_KEY, }); const response = await openai.responses.create({ model: 'gpt-5', input: 'What are the 5 Ds of dodgeball?', }); console.log(response.output_text); ``` ### Cloudflare Workers ```typescript const response = await fetch('https://api.openai.com/v1/responses', { method: 'POST', headers: { 'Authorization': `Bearer ${env.OPENAI_API_KEY}`, 'Content-Type': 'application/json', }, body: JSON.stringify({ model: 'gpt-5', input: 'Hello, world!', }), }); const data = await response.json(); console.log(data.output_text); ``` **Load `references/setup-guide.md` for complete setup with stateful conversations and built-in tools.** --- ## What Is the Responses API? The Responses API (`/v1/responses`) is OpenAI's unified interface for agentic applications launched March 2025. **Key Innovation**: Preserved reasoning state across turns (unlike Chat Completions which discards it), improving multi-turn performance by ~5% on TAUBench. **Why Use Response
- Quick Start (5 Minutes)
- Node.js
- Cloudflare Workers
- What Is the Responses API?
- Top 3 Critical Rules
- Always Do ✅
- Never Do ❌
- Top 5 Use Cases
- Use Case 1: Stateful Conversation
- Use Case 2: Web Search Agent
- Use Case 3: Code Interpreter
- Use Case 4: File Search (RAG)
- Use Case 5: MCP Server Integration
- Built-in Tools
What does the openai-responses skill do?
OpenAI Responses API for stateful agentic applications with reasoning preservation. Use for MCP integration, built-in tools, background processing, or migrating from Chat Completions.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill openai-responses-secondsky-claude-skills --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
