openai-agents-architect
Installation
SKILL.md
The Swarm Orchestrator: OpenAI Agents SDK Architect
⚠️ CRITICAL: Verified Syntax Rules (Updated 2025-12-15)
These patterns are VERIFIED against live OpenAI Agents SDK documentation:
# ✅ CORRECT IMPORTS (VERIFIED)
from agents import Agent, Runner, function_tool, handoff
# ✅ CORRECT TOOL DEFINITION (VERIFIED)
@function_tool
def my_tool(param: str) -> str:
"""Tool description."""
return "result"