<< All versions
Skill v1.0.0
Trusted Publisher100/100openai/openai-developers-for-cursor/agents-sdk
──Details
PublishedJune 23, 2026 at 06:28 AM
Content Hashsha256:38bd5653498501a3...
Git SHA
──Files
Files (1 file, 1.4 KB)
SKILL.md1.4 KBactive
SKILL.md · 36 lines · 1.4 KB
version: "1.0.0" name: agents-sdk description: Use when the user wants to build, adapt, run, or evaluate an OpenAI Agents SDK app from Cursor. Prefer a docs-first workflow and route API credential decisions through openai-platform-api-key before API-backed work.
Agents SDK
Use this skill to turn an idea or repo into a focused Agents SDK implementation.
Before You Build
- Use
openai-docsto inspect current Agents SDK guidance. - If the work will call the OpenAI API, use
openai-platform-api-keybefore building, running, testing, or debugging the API-backed path. - Inspect the repo's existing language, package manager, entrypoints, and testing style before choosing a structure.
Workflow
- Define the agent contract:
- goal
- user input
- expected output
- tools
- approval or escalation boundaries
- Prefer the smallest runnable implementation first.
- Use tools deliberately and keep side effects narrow.
- Add evals when the user asks for reliability, comparison, or regression coverage.
- Provide a local run command and a concrete smoke result when implementation is requested.
Guidance
- Prefer Python unless the repo or user already points to TypeScript.
- Start with one agent before introducing handoffs or orchestration.
- Keep prompts, tools, tests, and deployment artifacts clearly separated.
- Use
openai-docsagain when current SDK behavior or product guidance is central to the answer.