Claude Code Skills·Claude Skills·The open SKILL.md registry for Claude
HomeIntegrations › Codex

Use Claude Code skills with OpenAI Codex

OpenAI's Codex (the 2026 incarnation — different from the deprecated 2021-2023 product) is a CLI + IDE agent that reads AGENTS.md as its primary rule file. AGENTS.md was adopted as the open Agentic AI Foundation standard in 2026 and is now read by Codex, Cursor (Agent mode), Windsurf, Gemini CLI, GitHub Copilot, and others. Mapping a ClaudSkills SKILL.md to AGENTS.md is essentially a rename.

Codex rule-file format (2026)

Codex looks for AGENTS.md in the project root and walks up the directory tree to layer instructions. In your Codex home directory, AGENTS.override.md takes precedence if present. Codex's config is TOML (~/.codex/config.toml), not JSON. As of May 2026, Codex's Goal mode runs autonomous multi-day objectives — skills that frame multi-step workflows are particularly useful here.

Modern (2026)Legacy fallback
AGENTS.md (project root) AGENTS.override.md (per-directory override in Codex home)

Upstream docs: https://developers.openai.com/codex/guides/agents-md

SKILL.md → Codex field mapping

SKILL.md fieldCodex equivalent
name→ no equivalent; just use the filename / H1
description→ first paragraph of AGENTS.md
allowed-tools→ Codex reads OS permissions; no per-rule tool list
user-invokable→ AGENTS.md is always loaded

Worked example

Pick any ClaudSkills SKILL.md from the catalog. Strip the YAML frontmatter; drop the body into the file shown below:

# File: AGENTS.md

# Project assistant instructions

When working in this repo, follow these conventions:
- Branch from main, PR within 24h, never push to main directly
- All tests must pass before merge
- Use the language-specific style guide in docs/STYLE.md

Save, restart your editor session, and the skill becomes available to Codex's agent on the next prompt.

Recommended skills for Codex users

From the 6 skills below, pick the one or two that match your project's most-common workflows. Each links to the full SKILL.md on ClaudSkills.

Limitations to know about

FAQ

Is AGENTS.md going to replace SKILL.md?

Not in Claude Code itself — Claude Code still uses SKILL.md as its primary skill format. But for cross-tool portability, AGENTS.md is the lingua franca of 2026. Most skills work in both formats with a frontmatter strip.

Does Codex support all 69,000+ ClaudSkills skills?

Most port cleanly. The biggest gap is Claude-specific tool-use idioms (XML tags around tool calls, Claude's specific refusal language). Codex uses OpenAI's tool-use format internally, so heavy Claude-specific wording may behave slightly differently.

Can I use AGENTS.override.md to share skills across projects?

Yes. Put your global / cross-project skills in ~/.codex/AGENTS.override.md; Codex layers them under every project's AGENTS.md. Same shape as Claude Code's ~/.claude/skills/ directory.

Keep reading