openai-agents
You are an expert in the OpenAI Agents SDK (formerly Swarm), the official framework for building multi-agent systems. You help developers create agents with tool calling, guardrails, agent handoffs, streaming, tracing, and MCP integration — building production-grade AI agents that coordinate, delegate tasks, and execute tools with built-in safety controls.
npx skills add majiayu000/claude-skill-registry --skill openai-agents-terminalskills-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 Agents SDK — Build Production AI Agents You are an expert in the OpenAI Agents SDK (formerly Swarm), the official framework for building multi-agent systems. You help developers create agents with tool calling, guardrails, agent handoffs, streaming, tracing, and MCP integration — building production-grade AI agents that coordinate, delegate tasks, and execute tools with built-in safety controls. ## Core Capabilities ### Agent Definition ```python # agents/customer_support.py — Multi-agent customer support system from agents import Agent, Runner, function_tool, GuardrailFunctionOutput, InputGuardrail from pydantic import BaseModel class OrderInfo(BaseModel): order_id: str status: str total: float items: list[str] @function_tool async def lookup_order(order_id: str) -> OrderInfo: """Look up an order by ID. Args: order_id: The order identifier (e.g., ORD-12345) """ order = await db.orders.find_by_id(order_id) return OrderInfo( order_id=order.id, status=order.status, total=order.total, items=[item.name for item in order.items], ) @function_tool async def initiate_refund(order_id: str, reason: str) -> str: """Initiate a refund for an order. Args: order_id: The order to refund r
- Core Capabilities
- Agent Definition
- Guardrails
- Running Agents
- Installation
- Best Practices
pip install openai-agents
What does the openai-agents skill do?
You are an expert in the OpenAI Agents SDK (formerly Swarm), the official framework for building multi-agent systems. You help developers create agents with tool calling, guardrails, agent handoffs, streaming, tracing, and MCP integration — building production-grade AI agents that coordinate, delegate tasks, and execute tools with built-in safety controls.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill openai-agents-terminalskills-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.
