Live · 7d

Fastest-rising agent skills,
ranked by real GitHub data

Ranked by GitHub stars. Updated daily. Track what's actually gaining traction, not what marketplaces say is "installed".

Frequently Asked Questions

  • A skill is a instruction file that teaches an AI agent how to do one specific job. Drafting a contract. Building a slide deck. Pulling a weekly report. Without one, you re-explain the same context to the model every session. With one, the agent already knows how you work.

  • A .skill file is essentially a zip file with a .skill extension. Rename it to .zip, and extract on macOS or Linux. On Windows, right-click and pick "Extract All." Inside you'll find a SKILL.md file with the instructions, plus whatever scripts, templates, or reference docs the author shipped with it.

  • Skills help agents complete specific tasks more effectively by giving them structured instructions and reusable patterns. A skill bakes the workflow into the agent: which tools to call, which steps to skip, how your team formats things. Output gets more consistent, you waste fewer tokens, and the agent starts behaving more like a teammate.

  • Downloaded skill files should never be added blindly. Review the instructions, scripts, and templates before importing anything into your agent environment.

  • A SKILL.md file with YAML frontmatter at the top (at minimum, a name and a description) followed by the body of the instructions. Everything else is optional: scripts, reference docs, templates, images, even nested sub-skills. The agent only reads files it actually needs, which keeps the context window from filling up on workflows the user didn't ask for.

  • Using a slash command, which the user has to invoke by hand. The agent can also decide to use a skill on its own if it thinks the skill would be useful. It reads the name and description of every available skill, then decides which one fits the request. The description does most of the work here, because the model uses that text to figure out whether the skill applies.

  • No. Skills started in coding tools like Claude Code and Codex CLI, but the format jumped fences quickly. People use them now for writing, legal review, marketing ops, research, customer support, data analysis, design. If you'd hand the task to a new hire with a one-page onboarding doc, it can probably be a skill.

  • Skills are compatible with most AI agents like Claude, Codex, Cursor, Hermes, Openclaw, Manus, Grok, Antigravity, Perplexity Computer, Minimax.

  • Frontmatter is the YAML block at the top of SKILL.md, fenced by --- markers. It holds the metadata the agent reads before anything else: name, description, sometimes version, license, allowed tools. Get it wrong and the agent won't trigger the skill when it should. The spec lists every field.

  • The name field is lowercase, uses hyphens (no spaces, no underscores), sticks to letters, digits, and hyphens, and caps out at 64 characters per the Agent Skills spec. Treat it like a URL slug: "pdf-form-filler" works, "My Cool Skill!" does not. The name has to match the folder name exactly.

  • The description should explain both what the skill does and when it should be triggered. AI agents use the description to decide whether to invoke the skill, so vague descriptions can cause missed or incorrect usage.

  • Yes, each skill with their own SKILL.md and frontmatter. This works well for sprawling domains like office/ (one sub-skill each for docx, pptx, xlsx, and pdf) or accounting workflows where every procedure has its own quirks.

  • A skill costs roughly 53 tokens per turn, just the name and description sitting in the system prompt. An equivalent agent.md or claude.md file costs thousands of tokens per turn because the whole file loads on every turn whether the agent needs it or not. Over a long session, that's the difference between staying sharp and hitting the point where the agent compacts and degrades its intelligence.

  • They're complementary, not competing. MCP is connectivity: raw access to a tool or data source, the query syntax, the API format, the auth. Skills are workflow: which records to check first, how to structure the output, what order the steps go in. MCP is going to Home Depot and buying tools. Skills are knowing how to build the patio.