Agent Skills: The Standard 35 AI Tools Agreed On While You Weren't Looking

4 min read 37 sources clear_take
├── "Agent Skills represent a critical complement to MCP, standardizing procedural knowledge rather than tool access"
│  └── top10.dev editorial (top10.dev) → read below

The editorial draws a clean distinction: MCP standardizes what tools an agent can access (APIs, databases), while Agent Skills standardize how an agent should perform a task — the procedural knowledge, workflows, and domain-specific judgment calls. This makes Skills the layer where team tribal knowledge becomes machine-readable.

├── "Cross-competitor adoption signals the industry prioritizing interoperability over platform lock-in"
│  └── top10.dev editorial (top10.dev) → read below

The editorial argues that a standard this simple being adopted by both OpenAI Codex and Anthropic's Claude Code — direct competitors — signals the industry has decided agent-level interoperability matters more than platform lock-in. The coalition of 35+ tools including Cursor, GitHub Copilot, Google Gemini CLI, and JetBrains Junie is presented as evidence of unprecedented alignment.

├── "The standard's power lies in its deliberate simplicity — just markdown files with YAML frontmatter"
│  ├── anthropics (GitHub) → read

The anthropics/skills repository defines the spec as a folder containing a SKILL.md file with YAML frontmatter (name and description) plus markdown instructions, with optional scripts and templates. No SDK, no runtime, no protocol negotiation — this minimal surface area is what enabled rapid adoption across 35+ competing platforms.

│  └── obra (GitHub) → read

The superpowers project (113.5k stars) describes itself as 'an agentic skills framework & software development methodology that works,' building on the same markdown-based skills approach to create a practical development methodology around agent capabilities.

└── "Agent Skills are part of a broader ecosystem convergence around agentic coding infrastructure"
  ├── affaan-m (GitHub) → read

The everything-claude-code repository (115.1k stars) positions skills as one component of a larger 'agent harness performance optimization system' encompassing skills, instincts, memory, security, and research-first development — explicitly targeting Claude Code, Codex, Opencode, Cursor and beyond as a cross-platform concern.

  └── anomalyco (GitHub) → read

OpenCode (118.5k stars) bills itself as 'the open source coding agent,' representing the growing ecosystem of open-source agentic tools that benefit from a shared skills standard to avoid fragmentation across competing agent platforms.

What Happened

Anthropic's `anthropics/skills` repository surged past 131,000 GitHub stars, but the star count is the least interesting part of this story. The repo is the reference implementation for Agent Skills, an open standard that has quietly assembled the broadest coalition in AI tooling: Cursor, GitHub Copilot, VS Code, OpenAI Codex, Google's Gemini CLI, JetBrains Junie, Mistral Vibe, Databricks Genie Code, Snowflake Cortex Code, and roughly 25 more platforms have all adopted the format.

The spec lives at agentskills.io and defines something deliberately simple: a folder containing a `SKILL.md` file with YAML frontmatter (`name` and `description`) plus markdown instructions. Skills can optionally bundle scripts, reference materials, and templates. That's it. No SDK, no runtime, no protocol negotiation.

A standard this simple getting adopted by both OpenAI Codex and Anthropic's Claude Code — direct competitors — signals that the industry has decided agent-level interoperability matters more than platform lock-in.

Why It Matters

### The MCP Complement, Not Competitor

Developers who've been tracking Anthropic's Model Context Protocol (MCP) might wonder how Skills fit in. The distinction is clean: MCP standardizes *what tools an agent can access* (APIs, databases, file systems). Agent Skills standardize *how an agent should perform a task* — the procedural knowledge, the step-by-step workflow, the domain-specific judgment calls.

Think of it this way: MCP tells an agent "you can query this database." A Skill tells it "when reviewing a pull request for our payments service, check the migration files first, verify idempotency keys are present, and flag any direct SQL that bypasses the ORM."

Skills are where your team's tribal knowledge becomes machine-readable. The senior engineer who knows all the deployment gotchas? That's a skill. The design system conventions that only three people remember? Skill. The compliance checklist that lives in a Google Doc nobody reads? Skill.

### Progressive Disclosure Solves the Context Problem

The spec's most technically interesting decision is its three-stage loading model. At startup, an agent reads only the `name` and `description` fields from each available skill — a few tokens per skill. When a user's task matches a skill's description, the agent loads the full `SKILL.md` instructions. During execution, it optionally loads bundled scripts and reference files.

This matters because context windows are expensive and finite. An agent can have hundreds of skills available while consuming almost zero context until one is actually needed. It's the same lazy-loading principle we use everywhere in software, applied to LLM context management.

### The Adoption List Is the Story

Let's be specific about who's on board. The agentskills.io client showcase includes:

- IDE agents: Cursor, VS Code (Copilot), JetBrains Junie, TRAE (ByteDance), Kiro (AWS) - CLI agents: Claude Code, OpenAI Codex, Gemini CLI, Mistral Vibe, Goose (Block), Roo Code - Platform agents: Databricks Genie Code, Snowflake Cortex Code, Factory, OpenHands - Frameworks: Spring AI, Laravel Boost, Letta, fast-agent

That's not a list of Anthropic partners. That's a list of competitors who independently decided this format was worth supporting. When Google, Microsoft, OpenAI, and Anthropic all implement the same spec without a formal standards body forcing them to, you're looking at a de facto standard, not a proposal.

What This Means for Your Stack

### Start Writing Skills Now

If you're using any of the 35+ compatible agents, you can start packaging your team's knowledge today. The format is version-control friendly (it's just files), requires no build step, and works immediately:

``` my-team-skills/ ├── deploy-checklist/ │ └── SKILL.md ├── code-review-standards/ │ ├── SKILL.md │ └── references/style-guide.md └── incident-response/ ├── SKILL.md └── scripts/check-runbook.sh ```

The `anthropics/skills` repo includes production-grade examples: document creation skills for Word, PDF, PowerPoint, and Excel that demonstrate patterns for complex, multi-step workflows. These are the actual skills powering Claude's document capabilities, released as source-available reference implementations.

### Portability Is Real

The practical implication: a skill you write for Claude Code today works in Cursor, Copilot, Codex, or Gemini CLI without modification. If your team switches agents next quarter — and given how fast this market moves, that's not hypothetical — your accumulated workflow knowledge migrates with you. This is a meaningful reduction in switching costs that benefits developers, not vendors.

### Watch the Ecosystem, Not the Repo

The 131K stars on the GitHub repo are a vanity metric. What matters is the skill marketplace that's forming around the standard. Notion has already published official Notion Skills for Claude. Laravel shipped `laravel/boost` with agent skills baked in. Spring AI integrated skills support. The interesting question isn't whether the format wins — it already has — but how quickly third-party skill libraries emerge for common workflows: CI/CD pipelines, infrastructure-as-code patterns, security review checklists, compliance frameworks.

Looking Ahead

Agent Skills represent something we don't see often in AI: competing companies agreeing on a format before the market consolidates. The standard was originally developed by Anthropic, released openly, and adopted without the usual standards-body overhead. The risk is fragmentation — vendors extending the spec with proprietary features that break portability. But with this many implementers already shipping, the gravity is toward convergence. For practitioners, the move is straightforward: start encoding your team's hard-won knowledge as skills, commit them alongside your code, and treat them as first-class infrastructure. The agents are ready. The question is whether your workflows are.

GitHub 445216 pts 44646 comments

freeCodeCamp/freeCodeCamp trending with 437.9k stars

freeCodeCamp.org's open-source codebase and curriculum. Learn math, programming, and computer science for free.

→ read on GitHub
GitHub 435159 pts 47695 comments

public-apis/public-apis trending with 411.9k stars

A collective list of free APIs

→ read on GitHub
GitHub 373650 pts 77601 comments

openclaw/openclaw trending with 283.1k stars

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

→ read on GitHub
GitHub 355086 pts 44089 comments

kamranahmedse/developer-roadmap trending with 350.5k stars

Interactive roadmaps, guides and other educational content to help developers grow in their careers.

→ read on GitHub
GitHub 294058 pts 13652 comments

awesome-selfhosted/awesome-selfhosted trending with 281.2k stars

A list of Free Software network services and web applications which can be hosted on your own servers

→ read on GitHub
GitHub 245155 pts 51093 comments

facebook/react trending with 243.9k stars

The library for web and native user interfaces.

→ read on GitHub
GitHub 233851 pts 62412 comments

torvalds/linux trending with 221.6k stars

Linux kernel source tree

→ read on GitHub
GitHub 195213 pts 75357 comments

tensorflow/tensorflow trending with 194.1k stars

An Open Source Machine Learning Framework for Everyone

→ read on GitHub
GitHub 191072 pts 16990 comments

obra/superpowers trending with 113.5k stars

An agentic skills framework & software development methodology that works.

→ read on GitHub
GitHub 188956 pts 57865 comments

n8n-io/n8n trending with 178.2k stars

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

→ read on GitHub
GitHub 187667 pts 29046 comments

affaan-m/everything-claude-code trending with 115.1k stars

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

→ read on GitHub
GitHub 185164 pts 40021 comments

microsoft/vscode trending with 182.5k stars

Visual Studio Code

→ read on GitHub
GitHub 184443 pts 46247 comments

Significant-Gravitas/AutoGPT trending with 182.3k stars

AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters.

→ read on GitHub
GitHub 176406 pts 30388 comments

flutter/flutter trending with 175.5k stars

Flutter makes it easy and fast to build beautiful apps for mobile and beyond

→ read on GitHub
GitHub 174240 pts 79059 comments

twbs/bootstrap trending with 174.0k stars

The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.

→ read on GitHub
GitHub 173207 pts 13238 comments

avelino/awesome-go trending with 167.1k stars

A curated list of awesome Go frameworks, libraries and software

→ read on GitHub
GitHub 171846 pts 16206 comments

ollama/ollama trending with 164.5k stars

Get up and running with Kimi-K2.5, GLM-5, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models.

→ read on GitHub
GitHub 163334 pts 19262 comments

anomalyco/opencode trending with 118.5k stars

The open source coding agent.

→ read on GitHub
GitHub 162612 pts 21160 comments

f/prompts.chat trending with 151.0k stars

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

→ read on GitHub
GitHub 160812 pts 33282 comments

huggingface/transformers trending with 157.6k stars

🤗 Transformers: the model-definition framework for state-of-the-art machine learning models in text, vision, audio, and multimodal models, for both inference and training.

→ read on GitHub
GitHub 160450 pts 26060 comments

NousResearch/hermes-agent trending with 115.5k stars

The agent that grows with you

→ read on GitHub
GitHub 155751 pts 46157 comments

Snailclimb/JavaGuide trending with 154.2k stars

Java 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发与系统设计。准备后端技术面试,首选 JavaGuide!

→ read on GitHub
GitHub 148590 pts 9071 comments

langflow-ai/langflow trending with 145.4k stars

Langflow is a powerful tool for building and deploying AI-powered agents and workflows.

→ read on GitHub
GitHub 142125 pts 22337 comments

langgenius/dify trending with 131.7k stars

Production-ready platform for agentic workflow development.

→ read on GitHub
GitHub 139553 pts 31112 comments

vercel/next.js trending with 138.2k stars

The React Framework

→ read on GitHub
GitHub 138035 pts 19738 comments

open-webui/open-webui trending with 126.3k stars

User-friendly AI Interface (Supports Ollama, OpenAI API, ...)

→ read on GitHub
GitHub 137319 pts 16196 comments

anthropics/skills trending with 130.6k stars

Public repository for Agent Skills

→ read on GitHub
GitHub 137267 pts 22704 comments

langchain-ai/langchain trending with 128.9k stars

The agent engineering platform

→ read on GitHub
GitHub 133992 pts 19034 comments

golang/go trending with 133.0k stars

The Go programming language

→ read on GitHub
GitHub 122419 pts 7433 comments

firecrawl/firecrawl trending with 110.4k stars

🔥 The API to search, scrape, and interact with the web for AI

→ read on GitHub
GitHub 122376 pts 43125 comments

kubernetes/kubernetes trending with 121.0k stars

Production-Grade Container Scheduling and Management

→ read on GitHub
GitHub 121295 pts 17194 comments

electron/electron trending with 120.4k stars

:electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS

→ read on GitHub
GitHub 116290 pts 6141 comments

iptv-org/iptv trending with 112.6k stars

Collection of publicly available IPTV channels from all over the world

→ read on GitHub
GitHub 114450 pts 17213 comments

rustdesk/rustdesk trending with 111.7k stars

An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.

→ read on GitHub
GitHub 113342 pts 13277 comments

Comfy-Org/ComfyUI trending with 105.9k stars

The most powerful and modular diffusion model GUI, api and backend with a graph/nodes interface.

→ read on GitHub
GitHub 112833 pts 14918 comments

rust-lang/rust trending with 111.1k stars

Empowering everyone to build reliable and efficient software.

→ read on GitHub
GitHub 106402 pts 3585 comments

tauri-apps/tauri trending with 105.0k stars

Build smaller, faster, and more secure desktop and mobile applications with a web frontend.

→ read on GitHub

// share this

// get daily digest

Top 10 dev stories every morning at 8am UTC. AI-curated. Retro terminal HTML email.