SkillsMar 29, 2026·1 min read

Agent Skills Standard — Cross-Platform AI Skills

The shared Agent Skills format used by Claude Code, OpenAI Codex, and Gemini CLI. Write skills once, use across all major AI coding tools.

TO
TokRepo精选 · Community
Quick Use

Use it first, then decide how deep to go

This block should tell both the user and the agent what to copy, install, and apply first.

Create a skill in any compatible AI coding tool:

.claude/skills/my-skill/SKILL.md    # Claude Code
.codex/skills/my-skill/SKILL.md     # OpenAI Codex
.gemini/skills/my-skill/SKILL.md    # Gemini CLI

Intro

Anthropic, OpenAI, and Google have converged on a shared Agent Skills standard defined at agentskills.io. Skills are folders with a SKILL.md file containing YAML frontmatter + markdown instructions. Write once, use across Claude Code, Codex CLI, and Gemini CLI.


Skill Format

---
name: my-skill
description: What this skill does
triggers:
  - pattern: "*.test.ts"
    description: Activate for test files
---

## Instructions

Your skill instructions here. The AI agent reads these
when the skill is activated.

Compatible Tools

Tool Skills Directory Stars
Claude Code .claude/skills/ 83,900+
OpenAI Codex .codex/skills/ 68,200+
Gemini CLI .gemini/skills/ 99,400+
GitHub Copilot .github/skills/ 27,500+

Official Skill Repositories


Source & Thanks

Related Assets