Token导航 LogoToken导航TokenDH.com
开发规范external-servicegithub未标认证来源可访问clear审计通过

openai-agents-sdk-guidelinesOpenAI Agent SDK guidelines 命令行

Agent Skill

openai-agents-sdk-guidelines 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

349

周安装

14

GitHub Stars

公开资料未说明

下载量

113
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openai-agents-sdk-guidelines(OpenAI Agent SDK guidelines 命令行)
来源仓库:https://github.com/flurin17/openai-agents-guidelines
仓库路径:skills/openai-agents-sdk-guidelines
安装命令:
npx skills add https://github.com/flurin17/openai-agents-guidelines --skill openai-agents-sdk-guidelines
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/flurin17/openai-agents-guidelines --skill openai-agents-sdk-guidelines

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • openai-agents-sdk-guidelines 属于开发规范类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

OpenAI Agents SDK Guidelines

Comprehensive implementation guide for the OpenAI Agents Python SDK, designed for AI agents and LLMs. Contains 30+ rules across 8 categories, prioritized by impact from critical (agent design, multi-agent patterns) to incremental (streaming, advanced patterns). Each rule includes detailed explanations, code examples comparing incorrect vs. correct implementations, and specific guidance for automated code generation and review.

When to Apply

Reference these guidelines when:

  • Creating new agents with the OpenAI Agents SDK
  • Implementing multi-agent workflows (manager pattern or handoffs)
  • Adding tools (function tools, hosted tools, agents-as-tools)
  • Configuring guardrails for input/output validation
  • Managing context and conversation state
  • Setting up streaming for real-time updates
  • Integrating MCP servers

Rule Categories by Priority

PriorityCategoryImpactPrefix
1Agent DesignCRITICALagent-
2Multi-Agent PatternsCRITICALmulti-agent-
3ToolsHIGHtool-
4GuardrailsMEDIUM-HIGHguardrail-
5Context ManagementMEDIUMcontext-
6Running AgentsMEDIUMrunner-
7Conversation ManagementMEDIUMconversation-
8Streaming & AdvancedLOW-MEDIUMstreaming-

Quick Reference

1. Agent Design (CRITICAL)

  • agent-basic-config - Configure name, instructions, model, and tools
  • agent-output-type - Use Pydantic models for structured outputs
  • agent-dynamic-instructions - Use functions for context-aware prompts
  • agent-tool-choice - Force specific tool usage with ModelSettings
  • agent-tool-use-behavior - Control how tool outputs are processed
  • agent-reset-tool-choice - Prevent infinite tool loops

2. Multi-Agent Patterns (CRITICAL)

  • multi-agent-manager-pattern - Use agents-as-tools for centralized orchestration
  • multi-agent-handoffs - Use handoffs for decentralized delegation
  • multi-agent-handoff-description - Add handoff descriptions for routing
  • multi-agent-handoff-inputs - Capture LLM-provided data during handoffs
  • multi-agent-input-filter - Filter conversation history on handoffs

3. Tools (HIGH)

  • tool-function-decorator - Use @function_tool for automatic schema
  • tool-docstrings - Write clear docstrings for tool descriptions
  • tool-context-parameter - Access RunContextWrapper in tools
  • tool-error-handling - Handle errors with failure_error_function
  • tool-agents-as-tools - Expose agents as callable tools
  • tool-conditional-enabling - Dynamically enable/disable tools

4. Guardrails (MEDIUM-HIGH)

  • guardrail-input-validation - Validate user input with input guardrails
  • guardrail-output-validation - Validate agent output with output guardrails
  • guardrail-tripwire - Use tripwires to halt execution on failure
  • guardrail-execution-mode - Choose parallel vs blocking execution
  • guardrail-tool-guardrails - Wrap function tools with guardrails

5. Context Management (MEDIUM)

  • context-local-context - Use RunContextWrapper for dependencies
  • context-type-consistency - Keep context type consistent across agents
  • context-llm-visibility - Make data available to LLMs via instructions/tools
  • context-tool-context - Use ToolContext for tool metadata

6. Running Agents (MEDIUM)

  • runner-async-vs-sync - Choose run() vs run_sync() appropriately
  • runner-max-turns - Set max_turns to prevent infinite loops
  • runner-run-config - Configure global settings with RunConfig
  • runner-exception-handling - Handle SDK exceptions properly

7. Conversation Management (MEDIUM)

  • conversation-manual-history - Use to_input_list() for manual management
  • conversation-sessions - Use Sessions for automatic history
  • conversation-server-managed - Use conversation_id for server-side state

8. Streaming & Advanced (LOW-MEDIUM)

  • streaming-run-streamed - Use run_streamed() for real-time updates
  • streaming-raw-events - Handle raw LLM response events
  • streaming-item-events - Handle high-level run item events

How to Use

Read individual rule files for detailed explanations and code examples:

rules/agent-basic-config.md
rules/multi-agent-handoffs.md
rules/_sections.md

Each rule file contains:

  • Brief explanation of why it matters
  • Incorrect code example with explanation
  • Correct code example with explanation
  • Additional context and references

Full Compiled Document

For the complete guide with all rules expanded: AGENTS.md

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

28.39%
按下载量换算32

Claude Code

20.57%
按下载量换算23

windsurf

18.59%
按下载量换算21

trae

12.24%
按下载量换算14

OpenCode

7.68%
按下载量换算9

Cursor

3.19%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills