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.
What it is
The Agent Skills Standard is a specification for writing portable AI skills that work across multiple agent platforms. Instead of writing separate instructions for Claude Code, Cursor, Gemini CLI, and other tools, you write one SKILL.md file that any compatible agent can load and use.
The standard targets skill authors and tool builders who want their work to reach the widest possible audience without maintaining platform-specific versions.
How it saves time or tokens
Without a standard, skill authors maintain separate configurations for each agent platform. The Agent Skills Standard eliminates this duplication. A single SKILL.md file installed via npx skills add works across all compatible agents. This also means users only need to learn one installation flow regardless of which agent they use.
How to use
- Install a skill from any compatible repository:
npx skills add author/skill-name
- The skill auto-detects installed agents and configures itself.
- Use the skill in your agent of choice. It activates when relevant tasks are detected.
Example
A SKILL.md file following the standard:
# My Skill
Description
This skill helps with database migrations.
Instructions
When the user asks about database migrations:
- Check for existing migration files in the project
- Generate migration SQL based on model changes
- Apply migrations with rollback support
Triggers
- User mentions 'migration' or 'schema change'
- Files matching 'migrations/*.sql' are detected
Dependencies
- Node.js 18+
- PostgreSQL client
Installation detects your agents:
$ npx skills add myorg/db-migration-skill
Detected agents:
- Claude Code (.claude/skills/)
- Cursor (.cursor/skills/)
- Gemini CLI (~/.gemini/skills/)
Installed to all 3 agents.
Related on TokRepo
- Featured workflows — discover skills following this standard
- Coding tools — AI-assisted development tools
Common pitfalls
- Not all agents support the full standard yet; test your skill on each target platform before publishing
- Skills with platform-specific features (like Claude Code hooks) should degrade gracefully on unsupported agents
- The npx skills CLI requires Node.js 18+; Python-only environments need manual installation
Frequently Asked Questions
Claude Code, Cursor, Gemini CLI, GitHub Copilot, Windsurf, and OpenAI Codex have varying levels of support. The standard is evolving, and new agents adopt it regularly. Check the skills CLI documentation for the current compatibility list.
A prompt is a single instruction. A skill is a structured package that includes instructions, triggers, dependencies, and sometimes code. Skills activate contextually based on what you are working on, while prompts must be invoked manually.
Yes. Skills can include helper scripts, templates, and configuration files alongside the SKILL.md instructions. The skills CLI handles installing all files to the correct locations for each agent platform.
Publish your skill as a GitHub repository with a SKILL.md at the root. Users install it via npx skills add your-github-org/your-skill-repo. No package registry is required; the CLI pulls directly from GitHub.
Yes. Once installed, skills are local files in your agent configuration directory. They do not require network access during use. The npx skills add command needs network access only during installation.
Citations (3)
- Skills CLI GitHub— Agent Skills Standard for cross-platform AI skills
- Anthropic Docs— Claude Code supports installable skills
- Google Gemini CLI— Gemini CLI supports extensions and skills
Related on TokRepo
Source & Thanks
Standard: agentskills.io Anthropic: anthropics/skills OpenAI: openai/codex Google: google-gemini/gemini-cli
Discussion
Related Assets
Claude-Flow — Multi-Agent Orchestration for Claude Code
Layers swarm and hive-mind multi-agent orchestration on top of Claude Code with 64 specialized agents, SQLite memory, and parallel execution.
SuperClaude — Workflow Framework for Claude Code
Adds 16+ slash commands, 9 cognitive personas, and a smart flag system to Claude Code in one pipx install.
Claudia — Tauri Desktop GUI for Claude Code
Open-source Tauri/Rust desktop app for managing Claude Code sessions, custom agents, sandboxed execution, and checkpoints.