Primorum

Skills Directory / Guides

Agent skills beyond Claude Code

SKILL.md is an open standard (agentskills.io), not a Claude Code feature. Most of the skills in our directory work in Codex, Cursor, Gemini CLI, and other agents with at most a different install path.

What transfers, what doesn't

Transfers directly: the skill itself — frontmatter (name, description) plus markdown instructions, reference files, and scripts. The content is agent-agnostic prose.

Claude Code-specific: plugins, marketplaces (/plugin marketplace add), slash commands, and Claude-only frontmatter extensions (tool restrictions, subagent hints). Other agents ignore these gracefully; you just install by copying folders instead.

Compatibility table

AgentWhere skills liveNotes
Claude Code~/.claude/skills/ (personal) · .claude/skills/ (project)Native home of the format. Also supports plugins, marketplaces, slash commands.
OpenAI CodexAgent skills directory per Codex docsReads SKILL.md; several major collections ship Codex install scripts.
CursorProject rules / skills directorySKILL.md content transfers; Claude-specific frontmatter extensions are ignored.
Gemini CLISkills directory per Gemini CLI docsSupports the agentskills.io standard.
GitHub Copilot.github/copilot-instructions.mdNo native SKILL.md support — paste the instruction body; frontmatter and dynamic features don't apply.
Others (OpenCode, Windsurf, Aider…)VariesMulti-tool collections like wshobson/agents and alirezarezvani/claude-skills ship converters.

The universal install pattern

git clone https://github.com/owner/skills-repo
cp -r skills-repo/<skill-folder> <your-agent's-skills-directory>/

Every skill page in our directory includes a copy-paste install prompt written to work agent-agnostically — it tells whatever agent you paste it into to detect its own skills directory and install there.

Cross-agent collections

If you run multiple agents, start with collections that maintain multi-tool support deliberately: wshobson/agents (6 harnesses) and alirezarezvani/claude-skills (13 tools, with conversion scripts). Official vendor skills (Cloudflare, Vercel, Hugging Face) are plain SKILL.md folders and work everywhere.


New to the format? Start with what are agent skills, then how to install.