What problem does it solve?
This Skill eliminates the complexity of building agentic AI applications by providing comprehensive knowledge of OpenAI's Responses API - the stateful successor to Chat Completions.
Core Features & Use Cases
- Stateful Conversations: Automatic state management with 40-80% better cache utilization.
- Reasoning Preservation: Maintains model's thought process across turns for 5% better performance.
- Built-in Tools: Server-side Code Interpreter, File Search, Web Search, and MCP server integration.
- Use Case: When building customer support agents that remember conversation history, or data analysis tools that build on previous calculations.
Quick Start
Use the openai-responses skill to create a stateful AI agent that can handle multi-turn conversations while preserving reasoning state.
Quick Start
Create a stateful conversation with automatic reasoning preservation:
const conv = await openai.conversations.create();
const response = await openai.responses.create({
model: 'gpt-5',
conversation: conv.id,
input: 'Analyze this quarterly report and identify key trends.
Then follow up with:
Now analyze how these trends compare to the previous quarter.