Agent skill · AI & Agents

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.

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

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Version: 1.0.0
Declared author: terminal-skills
Path: skills/agent/openai-agents-terminalskills-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 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

What's inside
Steps it walks through
  1. Core Capabilities
  2. Agent Definition
  3. Guardrails
  4. Running Agents
  5. Installation
  6. Best Practices
Ships with 1 file
  • metadata.json
Commands it runs
pip install openai-agents
More from claude-skill-registry
All skills →
About this skill
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.

Keep going