Agent skill · Backend & API

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 13 KB
Bundled scripts: none
Version: 2.0.0
Path: skills/ai-llm/openai-responses-secondsky-claude-skills/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Quick Start (5 Minutes)
  2. Node.js
  3. Cloudflare Workers
  4. What Is the Responses API?
  5. Top 3 Critical Rules
  6. Always Do ✅
  7. Never Do ❌
  8. Top 5 Use Cases
  9. Use Case 1: Stateful Conversation
  10. Use Case 2: Web Search Agent
  11. Use Case 3: Code Interpreter
  12. Use Case 4: File Search (RAG)
  13. Use Case 5: MCP Server Integration
  14. Built-in Tools
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going