TOKREPO · ARSENAL
Promoted from Trending

Skills Ecosystem

Vercel Skills, Anthropic's official skill standard, and the cross-platform tools that turn one skill into 14 deployments.

7 assets

What's in this pack

Skills are the format Anthropic standardized in late 2025 for distributing reusable agent capabilities — a folder containing a SKILL.md plus optional scripts, references, and templates. Vercel and others adopted the same standard. This pack collects the seven assets that let you write a skill once and ship it across the entire AI tooling ecosystem.

# Asset Layer Why it's here
1 Anthropic skill format spec standard the canonical SKILL.md schema
2 Vercel Skills implementation cross-model skill runtime via AI SDK
3 Skill Maker tooling scaffold a new skill with the right metadata
4 Skill → Cursor rules converter tooling one skill, .mdc output
5 Skill → AGENTS.md converter tooling for Codex CLI projects
6 Skill registry pattern infra host private skills behind an HTTP endpoint
7 14-target deployment matrix reference which surfaces accept which subset of skill features

Why this matters

Before the skill standard, every AI tool wanted the same capability described in its own dialect: a Cursor rule was an .mdc, a Claude Code subagent was a Markdown frontmatter file, a Codex CLI project wanted AGENTS.md, a Cline rule lived in .clinerules. The same logical skill (e.g. "review code for security issues") had to be hand-translated 14 times.

The skill standard solves this with one canonical format and a tooling layer that emits the per-tool variants. Three concrete wins:

  1. Single source of truth. You author and version-control one SKILL.md per capability. Reviews, edits, and changelog all happen in one place.
  2. Mechanical translation, not copy-paste. The converter tools generate Cursor .mdc, Codex AGENTS.md, Cline rules, and the others from the canonical skill. No drift between platforms.
  3. Composability at the agent level. Anthropic's runtime can load multiple skills into one Claude session. Vercel's AI SDK implementation does the same across model providers. A skill written today still works in two years when the underlying model changes.

Install in one command

# Install the entire pack
tokrepo install pack/skills-ecosystem

# Or pick the piece you need first
tokrepo install skill-maker
tokrepo install vercel-skills

The TokRepo CLI drops skill scaffolding, the converter scripts, and a starter SKILL.md template into your project. Run one command and you have a skill that builds for all 14 targets.

Common pitfalls

  • Treating SKILL.md as a prompt template. It's not — it's a capability declaration with metadata, allowed tools, and progressive-disclosure references. Write it as you'd write an internal documentation page, not as an LLM prompt.
  • Including secrets in the skill body. Skills are designed to be checked into a public repo. Reference secrets via env vars or runtime injection; never paste them in.
  • Skipping the description field. The agent uses the description to decide whether to load this skill on a given query. A vague description means the skill never gets used. Be specific about scope and triggers.
  • Forgetting the per-target feature matrix. Cursor .mdc supports glob-based scoping. Codex AGENTS.md is project-wide. Claude Code subagents have allowed-tools. The converters emit the closest equivalent, but you have to be aware of the differences when you author.
  • Building a skill for one tool when you mean to build it for all. If the capability is portable (review code, summarize a document, generate tests), author as a skill from day one. If it's tool-specific (a Claude Code plugin that uses Anthropic's tool API directly), then write it as a tool-specific asset.

Relationship to other packs

The Anthropic Builders pack ships the 17 first-party Anthropic skills that establish the canonical patterns. Use those as references when authoring your own. The Awesome Claude Code Subagents pack is the runtime layer that loads skills into a Claude Code session — it's what runs your skill once it's authored. This Skills Ecosystem pack focuses on the cross-platform translation layer: how to take a skill and make it work in Cursor, Codex CLI, and the rest.

For tools that don't yet support a skill format natively, the converter outputs include a "shim" asset (a Markdown file the user pastes into the tool's context) so even unsupported surfaces get most of the value.

INSTALL · ONE COMMAND
$ tokrepo install pack/skills-ecosystem
hand it to your agent — or paste it in your terminal
What's inside

7 assets in this pack

Skill#01
Vercel Skills — Agent Skill Ecosystem & CLI

Open agent skills ecosystem from Vercel. Install packaged SKILL.md instruction sets into Claude Code, Cursor, Codex, and 30+ AI agents with one command. 13,000+ GitHub stars.

by Vercel·254 views
$ tokrepo install vercel-skills-agent-skill-ecosystem-cli-d1eba6f1
Skill#02
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.

by TokRepo Curated·192 views
$ tokrepo install agent-skills-standard-cross-platform-ai-skills-1a1292f5
Prompt#03
Awesome Claude Skills — 50+ Verified Agent Skills

Curated collection of 50+ verified Claude skills across 11 categories: document processing, testing, debugging, security, media creation, data analysis, and meta skills. Community-driven, MIT license.

by Prompt Lab·153 views
$ tokrepo install awesome-claude-skills-50-verified-agent-skills-9939ef92
Skill#04
Agent Skill Creator — One Skill, 14+ Platforms

Turn any workflow into reusable AI agent skills that install on Claude Code, Copilot, Cursor, Windsurf, Codex, Gemini CLI, Kiro, and 7 more tools. No coding required. MIT, 660+ stars.

by Skill Factory·133 views
$ tokrepo install agent-skill-creator-one-skill-14-platforms-0b7c0a41
Skill#05
Claude Official Skill: frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or appli...

by Anthropic·177 views
$ tokrepo install claude-official-skill-frontend-design-71a05a12
Skill#06
Claude Official Skill: webapp-testing

Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots...

by Anthropic·95 views
$ tokrepo install claude-official-skill-webapp-testing-8353a203
Skill#07
Claude Official Skill: mcp-builder

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP serve...

by Anthropic·63 views
$ tokrepo install claude-official-skill-mcp-builder-04ab7e67
FAQ

Frequently asked questions

Are skills free to use?

The skill format spec is open and free. Anthropic's official skills are MIT-licensed and free to fork. Vercel's AI SDK is free at the SDK level (you pay the underlying model providers per token). The TokRepo install drops working scaffolding into your project at no cost — you only pay your model API bills, which are unchanged whether you use skills or write inline prompts.

How do skills compare to Cursor rules?

Cursor rules (.mdc files) are Cursor-specific instructions — they only work in Cursor. Skills are the cross-platform abstraction. Your SKILL.md is the source; the TokRepo converter generates the .mdc that Cursor needs, plus equivalents for Codex CLI, Cline, Roo Code, and the rest. If you only use Cursor, native .mdc is fine. If you use two or more tools, write skills.

Will this work with Cursor or Codex CLI?

That's literally the point — yes. The skill standard targets exactly this multi-tool reality. The converter outputs .mdc for Cursor, AGENTS.md for Codex CLI, plus per-tool variants for Cline, Roo Code, Windsurf, GitHub Copilot, and Claude Code subagents. Authoring is once; deployment is to all 14 targets via tokrepo deploy.

What's the difference between this pack and Anthropic Builders?

Anthropic Builders is the catalog of the 17 official Anthropic skills (PDF reading, file management, web fetching, etc.) — finished capabilities you install and use. Skills Ecosystem is the meta pack: the format spec, the authoring tools, the cross-platform converters, the Vercel implementation. Use Anthropic Builders to install ready-made skills; use Skills Ecosystem to author and deploy your own.

What if a target tool doesn't support a feature my skill needs?

The converter detects unsupported features and either degrades gracefully (e.g. drops glob-scoped rules when targeting a tool with no scoping) or emits a warning. The 14-target deployment matrix asset documents exactly which features each tool supports, so you can decide upfront whether to author a fully portable skill or accept that one capability won't work everywhere.

MORE FROM THE ARSENAL

12 packs · 80+ hand-picked assets

Browse every curated bundle on the home page

Back to all packs