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.
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 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.
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.
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.
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.
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.
### 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.
### 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.
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.
freeCodeCamp.org's open-source codebase and curriculum. Learn math, programming, and computer science for free.
→ read on GitHubA collective list of free APIs
→ read on GitHubYour own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞
→ read on GitHubInteractive roadmaps, guides and other educational content to help developers grow in their careers.
→ read on GitHubA list of Free Software network services and web applications which can be hosted on your own servers
→ read on GitHubThe library for web and native user interfaces.
→ read on GitHubLinux kernel source tree
→ read on GitHubAn Open Source Machine Learning Framework for Everyone
→ read on GitHubAn agentic skills framework & software development methodology that works.
→ read on GitHubFair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
→ read on GitHubThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
→ read on GitHubVisual Studio Code
→ read on GitHubAutoGPT 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 GitHubFlutter makes it easy and fast to build beautiful apps for mobile and beyond
→ read on GitHubThe most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.
→ read on GitHubA curated list of awesome Go frameworks, libraries and software
→ read on GitHubGet up and running with Kimi-K2.5, GLM-5, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models.
→ read on GitHubThe open source coding agent.
→ read on GitHubf.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🤗 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 GitHubThe agent that grows with you
→ read on GitHubJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发与系统设计。准备后端技术面试,首选 JavaGuide!
→ read on GitHubLangflow is a powerful tool for building and deploying AI-powered agents and workflows.
→ read on GitHubProduction-ready platform for agentic workflow development.
→ read on GitHubThe React Framework
→ read on GitHubUser-friendly AI Interface (Supports Ollama, OpenAI API, ...)
→ read on GitHubPublic repository for Agent Skills
→ read on GitHubThe agent engineering platform
→ read on GitHubThe Go programming language
→ read on GitHub🔥 The API to search, scrape, and interact with the web for AI
→ read on GitHubProduction-Grade Container Scheduling and Management
→ read on GitHub:electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS
→ read on GitHubCollection of publicly available IPTV channels from all over the world
→ read on GitHubAn open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.
→ read on GitHubThe most powerful and modular diffusion model GUI, api and backend with a graph/nodes interface.
→ read on GitHubEmpowering everyone to build reliable and efficient software.
→ read on GitHubBuild smaller, faster, and more secure desktop and mobile applications with a web frontend.
→ read on GitHubTop 10 dev stories every morning at 8am UTC. AI-curated. Retro terminal HTML email.