OpenAI Codex Desktop Adds 90 Plugins and Reusable Skills
Learn how to configure OpenAI Codex plugins and reusable skills to automate desktop tasks and connect your coding workflows to external data sources.
OpenAI has transitioned Codex from a code completion assistant into an autonomous AI agent powered by GPT-5.5. The official Codex desktop update introduces Plugins and skills, enabling the application to perform computer use and automate complex workflows. You can now configure Codex to interact directly with macOS desktop applications, browse websites natively, and run background tasks in parallel.
Codex Architecture: Plugins vs. Skills
Codex relies on two distinct primitives for workflow automation. Plugins handle data ingestion and external tool communication. Skills operate as repeatable instruction sets.
| Component | Function | Examples | Invocation Method |
|---|---|---|---|
| Plugins | Connect to external APIs and local data sources | Google Drive, Jira, Slack, Atlassian Rovo, CircleCI | Automatic based on task context |
| Skills | Reusable playbooks for specific processes | Newsletter drafting, contractor onboarding audits | User-invoked via the $ symbol |
Configuring Plugins
Codex supports over 90 plugins out of the box. These integrations allow the agent to read emails, pull ticket data from Jira, and inspect repositories in GitLab. You must authorize each integration through the Codex desktop application settings.
The official documentation provides the authentication flows for enterprise endpoints. Connecting your environment to the Microsoft Suite allows the agent to reference internal documents directly. Understanding the mechanics of agent skills helps in structuring these tool handoffs efficiently.
Defining and Running Skills
Skills function as shareable workflow definitions. You define a sequence of operations that Codex must follow to complete a recurring task. A skill codifies your standard operating procedures into a format the agent can execute repeatedly.
To trigger a skill during an active thread, type the $ symbol followed by the skill name, such as $customer-update. The agent will retrieve the specific playbook and execute the defined steps using the available plugins. A new Memory feature tracks your tech stack and preferences across sessions to improve the accuracy of these executions.
Multi-Agent Execution and Computer Use
The updated platform supports running up to 5 agents in parallel within isolated worktrees. This allows you to offload CI/CD checks or triage tasks without blocking your active coding session. Structuring these workflows requires familiarity with multi-agent systems to prevent context overlap.
On macOS, Codex utilizes computer use to operate desktop applications. It controls a native cursor to click, type, and navigate interfaces to update Figma designs or test local UI components. The built-in in-app browser allows the agent to verify local development fixes directly.
System Requirements and Limitations
The feature set requires specific account tiers. You must be signed into the Codex desktop app with a ChatGPT Plus, Pro, Business, Edu, or Enterprise account.
Personalization and computer use features are currently restricted for users in the EU and UK due to regional compliance requirements. The computer use capabilities are also currently limited to the macOS environment.
Review your recurring code review processes to identify tasks suited for automation. Start by defining one simple skill playbook for repository auditing before scaling up to parallel agent execution.
Get Insanely Good at AI
The book for developers who want to understand how AI actually works. LLMs, prompt engineering, RAG, AI agents, and production systems.
Keep Reading
Codex Can Now Use Your Mac While You Work
OpenAI's Codex desktop app adds background computer use on macOS, an in-app browser, image generation via gpt-image-1.5, and 90+ new plugins.
Claude Code Gets Auto Mode for Uninterrupted Agent Runs
Anthropic launched Auto mode for Claude Code, a research-preview permissions feature that lets coding agents run longer tasks with fewer approvals.
OpenAI Agrees to Acquire Astral
OpenAI signed a deal to acquire Astral, adding its Python tooling team and projects to Codex pending regulatory approval.
Agent Skills vs Cursor Rules: When to Use Each
Cursor has both rules and skills for customizing the AI agent. They overlap, but they're not the same. Here's when to use each and how they interact.
How to Create Your First Agent Skill
A step-by-step guide to writing an agent skill from scratch: directory structure, SKILL.md format, effective descriptions, common patterns, and a complete working example.