Will this Update from OpenAI Make AI Agents Work Better?
Quick Overview
The update from OpenAI, integrating Anthropic's brilliant "skills" mechanism into ChatGPT and Codex CLI, will make AI agents work better by enabling them to dynamically manage files and execute specific procedural knowledge without requiring the user to constantly re-explain context, thereby improving efficiency and reliability over fragmented, custom-built agents.
Key Points: OpenAI integrated Anthropic's "skills" mechanism into both ChatGPT and Codex CLI, allowing models to dynamically manage files like spreadsheets and PDFs. This modular approach creates foundational pieces for next-gen LLM agents, contrasting with older methods that relied on building bespoke agents for every use case. Simon Willison noted that this adoption by OpenAI and Google reinforces his belief that Claude Skills are a "bigger deal than MCP," a standard he previously wrote about. Skills are structured as folders containing a SKILL.md file with metadata (name, description) and optional code/scripts, enabling progressive disclosure of context. The implementation allows for complex, composable resources, moving away from monolithic agents that required hardcoded context or constant re-explanation of processes. The structure of Skills (using Markdown and optional scripts) allows for greater efficiency and reliability by loading only necessary context when a skill is triggered.
Context: The video discusses the recent integration of a "skills" mechanism, originally pioneered by Anthropic for their Claude model, into OpenAI's ecosystem, specifically ChatGPT and the Codex CLI tool. This feature allows Large Language Models (LLMs) to access and execute external instructions, scripts, and resources—packaged in a structured folder format—to perform specific tasks, such as managing files, which was previously a major limitation for building reliable AI agents.
Detailed Analysis
The main takeaway is that OpenAI has adopted a "skills" mechanism, similar to Anthropic's, allowing models like ChatGPT and Codex CLI to dynamically manage files and execute procedures using structured folders. This addresses the problem where intelligent agents previously lacked specific expertise, were rigid, and required continuous context re-explanation. The skills are implemented as folders containing a SKILL.md Markdown file which defines metadata (name, description) and instructions/scripts. This structure facilitates a "progressive disclosure" model, where Claude only loads the necessary context (the actual body of the skill file) when it deems the skill relevant to the current task, avoiding unnecessary token consumption. Simon Willison views this standardization, evidenced by both OpenAI and Google adopting similar concepts, as a major step forward, suggesting it is a bigger deal than the Model Context Protocol (MCP). This composable approach allows for building reliable, specialized agents without the complexity of building monolithic agents for every single task, fostering greater adoption of AI agents across organizations.