-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Open
Labels
enhancementNew feature or requestNew feature or request
Description
First of all, thank you for the excellent work on the OpenAI Agents SDK. It provides a very clean and flexible foundation for building agent-based systems.
Using skills through Codex or the hosted shell runtime introduces extra steps and is not convenient in many cases.
For many workflows (e.g., local development, healthcare support, research experiments, multi-agent prototyping), developers often need to use local scripts that they want to expose to agents.
Direct local skill support would simplify development and reduce friction.
For example:
from agents import Agent
agent = Agent(
name="Shell Agent",
model="gpt-5.2",
instructions="Use available skills to solve tasks.",
skills=[exp1, exp2]
)Thank you again for building and maintaining the Agents SDK. Looking forward to future improvements and discussions around skill extensibility.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request