<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: John Benedict Dago-oc</title>
    <description>The latest articles on DEV Community by John Benedict Dago-oc (@dmgjdagooc).</description>
    <link>https://dev.to/dmgjdagooc</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3818184%2F11f28d34-87ba-476a-978a-4881ad330104.jpg</url>
      <title>DEV Community: John Benedict Dago-oc</title>
      <link>https://dev.to/dmgjdagooc</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dmgjdagooc"/>
    <language>en</language>
    <item>
      <title>The Rise of Reusable AI Agent Skills: How skills.sh and Anthropic Are Changing the Way We Build with Claude</title>
      <dc:creator>John Benedict Dago-oc</dc:creator>
      <pubDate>Wed, 11 Mar 2026 09:30:46 +0000</pubDate>
      <link>https://dev.to/dmgjdagooc/the-rise-of-reusable-ai-agent-skills-how-skillssh-and-anthropic-are-changing-the-way-we-build-242d</link>
      <guid>https://dev.to/dmgjdagooc/the-rise-of-reusable-ai-agent-skills-how-skillssh-and-anthropic-are-changing-the-way-we-build-242d</guid>
      <description>&lt;p&gt;The “npm Moment” for AI Agents: Vercel Skills + Anthropic Agent Skills&lt;/p&gt;

&lt;p&gt;The way we extend AI agents is getting a major upgrade.&lt;/p&gt;

&lt;p&gt;With the launch of &lt;strong&gt;&lt;a href="https://skills.sh/" rel="noopener noreferrer"&gt;skills.sh&lt;/a&gt;&lt;/strong&gt; by Vercel and &lt;strong&gt;&lt;a href="https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills" rel="noopener noreferrer"&gt;Anthropic's Agent Skills system&lt;/a&gt;&lt;/strong&gt;, we're entering a new era of &lt;strong&gt;composable, reusable AI capabilities&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Think of it as &lt;strong&gt;npm for agent behaviors&lt;/strong&gt;.&lt;/p&gt;




&lt;h1&gt;
  
  
  What Are Agent Skills?
&lt;/h1&gt;

&lt;p&gt;At their core, &lt;strong&gt;agent skills&lt;/strong&gt; are modular packages of instructions, context, and scripts that AI agents like Claude can load dynamically to improve performance on specialized tasks.&lt;/p&gt;

&lt;p&gt;Instead of stuffing every capability into a massive system prompt, &lt;strong&gt;skills allow agents to load only what they need&lt;/strong&gt; — keeping context windows lean and responses more accurate.&lt;/p&gt;

&lt;p&gt;Each skill is centered around a &lt;code&gt;SKILL.md&lt;/code&gt; file: a simple Markdown document with &lt;strong&gt;YAML frontmatter&lt;/strong&gt; that tells the agent:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What the skill does&lt;/li&gt;
&lt;li&gt;When to use it&lt;/li&gt;
&lt;li&gt;How to invoke it&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Supporting assets like templates, examples, and scripts can live alongside it.&lt;/p&gt;

&lt;h3&gt;
  
  
  Example skill structure
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;my-skill/
├── SKILL.md        # required — main instructions
├── templates/      # optional supporting files
├── examples/       # example outputs
└── scripts/        # executable scripts
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No complex configuration.&lt;br&gt;
No framework lock-in.&lt;/p&gt;

&lt;p&gt;Just &lt;strong&gt;Markdown&lt;/strong&gt;.&lt;/p&gt;


&lt;h1&gt;
  
  
  Introducing skills.sh: An Open Registry for Agent Skills
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://skills.sh/" rel="noopener noreferrer"&gt;skills.sh&lt;/a&gt;&lt;/strong&gt; is Vercel's open-source skills directory — a centralized registry where developers can &lt;strong&gt;publish, discover, and install reusable agent skills&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Launched in early &lt;strong&gt;2026&lt;/strong&gt;, it has quickly become the &lt;strong&gt;de facto standard for cross-agent skill distribution&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It works with &lt;strong&gt;30+ AI agents out of the box&lt;/strong&gt;, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Claude Code&lt;/li&gt;
&lt;li&gt;Cursor&lt;/li&gt;
&lt;li&gt;GitHub Copilot&lt;/li&gt;
&lt;li&gt;Aider&lt;/li&gt;
&lt;li&gt;Codex&lt;/li&gt;
&lt;li&gt;Gemini&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Installing a skill is simple:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills add anthropics/skills
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The CLI automatically detects which AI agent you're using and installs the skill in the correct directory:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;.claude/skills/&lt;/code&gt; for Claude Code&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;.cursor/skills/&lt;/code&gt; for Cursor&lt;/li&gt;
&lt;li&gt;and others depending on the agent&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In other words: &lt;strong&gt;build it once, run it everywhere.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The platform also features a &lt;strong&gt;usage leaderboard based on anonymous telemetry&lt;/strong&gt;, allowing developers to see which skills the community actually uses and trusts.&lt;/p&gt;




&lt;h1&gt;
  
  
  Anthropic’s Role: First-Party Skills for Claude
&lt;/h1&gt;

&lt;p&gt;Anthropic is actively contributing to the skills ecosystem and maintains an official repository:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/anthropics/skills" rel="noopener noreferrer"&gt;https://github.com/anthropics/skills&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;These skills are also integrated into Claude across multiple environments:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Claude Web&lt;/strong&gt; – &lt;a href="https://claude.ai" rel="noopener noreferrer"&gt;https://claude.ai&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude Code CLI&lt;/strong&gt; – &lt;a href="https://code.claude.com" rel="noopener noreferrer"&gt;https://code.claude.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude Agent SDK&lt;/strong&gt; – &lt;a href="https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview" rel="noopener noreferrer"&gt;https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Current first-party skill library
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Skill&lt;/th&gt;
&lt;th&gt;What it does&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;PDF&lt;/td&gt;
&lt;td&gt;Read, extract, and generate PDF files&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DOCX&lt;/td&gt;
&lt;td&gt;Create and manipulate Word documents&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PPTX&lt;/td&gt;
&lt;td&gt;Build and edit PowerPoint presentations&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;XLSX&lt;/td&gt;
&lt;td&gt;Work with Excel spreadsheets&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Internal Comms&lt;/td&gt;
&lt;td&gt;Draft company-specific communications&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Brand Guidelines&lt;/td&gt;
&lt;td&gt;Enforce style and tone&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;These aren’t just prompts — they’re &lt;strong&gt;fully structured skill packages&lt;/strong&gt; with instructions that Claude loads &lt;strong&gt;only when relevant&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This keeps responses accurate while preserving valuable context window space.&lt;/p&gt;




&lt;h1&gt;
  
  
  How Claude Uses Skills: Progressive Disclosure
&lt;/h1&gt;

&lt;p&gt;One of the most clever parts of the Anthropic implementation is &lt;strong&gt;progressive disclosure&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Claude &lt;strong&gt;doesn't load every skill all the time&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Instead:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;A user makes a request (e.g. &lt;em&gt;“summarize this PDF”&lt;/em&gt;)&lt;/li&gt;
&lt;li&gt;Claude identifies the relevant skill&lt;/li&gt;
&lt;li&gt;Only that skill's instructions are loaded into context&lt;/li&gt;
&lt;li&gt;Claude executes with specialized knowledge&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This approach prevents &lt;strong&gt;context window bloat&lt;/strong&gt; while giving the agent &lt;strong&gt;deep expertise on demand&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Users can also manually invoke skills with slash commands like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/pdf
/docx
/pptx
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h1&gt;
  
  
  Why This Matters: The “npm Moment” for AI Agents
&lt;/h1&gt;

&lt;p&gt;The &lt;strong&gt;skills.sh + Anthropic Skills ecosystem&lt;/strong&gt; represents something bigger than a convenience feature.&lt;/p&gt;

&lt;p&gt;It’s a &lt;strong&gt;standardization layer for agent capabilities&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Before skills, every team building with Claude had to reinvent the wheel — writing their own prompts for document handling, formatting rules, and domain instructions.&lt;/p&gt;

&lt;p&gt;Now:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Teams can &lt;strong&gt;share skills internally across projects&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Vendors can &lt;strong&gt;publish skills for their products&lt;/strong&gt; (imagine a Stripe skill for billing agents)&lt;/li&gt;
&lt;li&gt;Anthropic can &lt;strong&gt;ship improvements to skills without breaking your code&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Skills are &lt;strong&gt;portable across agents&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The open &lt;strong&gt;&lt;code&gt;SKILL.md&lt;/code&gt; standard&lt;/strong&gt; means a skill written for Claude Code can also work with Cursor, Copilot, or any compliant agent.&lt;/p&gt;

&lt;p&gt;This is the &lt;strong&gt;same network effect that made npm and pip powerful — now applied to AI behavior.&lt;/strong&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  Getting Started
&lt;/h1&gt;

&lt;p&gt;Install the &lt;strong&gt;skills.sh CLI&lt;/strong&gt; and add Anthropic's official skills to your Claude Code environment:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills add anthropics/skills
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or browse the registry:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://skills.sh" rel="noopener noreferrer"&gt;https://skills.sh&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;To create your own skill, simply add a &lt;code&gt;SKILL.md&lt;/code&gt; file to:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.claude/skills/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;See the full specification here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://code.claude.com/docs/en/skills" rel="noopener noreferrer"&gt;https://code.claude.com/docs/en/skills&lt;/a&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  The Bottom Line
&lt;/h1&gt;

&lt;p&gt;Agent skills are the &lt;strong&gt;missing abstraction layer between raw AI models and production-ready AI workflows&lt;/strong&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;skills.sh&lt;/strong&gt; provides the distribution platform&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic Agent Skills&lt;/strong&gt; provide the foundation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Together, they make building &lt;strong&gt;specialized, reliable AI agents dramatically easier&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;If you're building serious AI workflows with Claude in &lt;strong&gt;2026&lt;/strong&gt;, skills should absolutely be part of your toolkit.&lt;/p&gt;




&lt;h1&gt;
  
  
  Further Reading
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://vercel.com/changelog/introducing-skills-the-open-agent-skills-ecosystem" rel="noopener noreferrer"&gt;https://vercel.com/changelog/introducing-skills-the-open-agent-skills-ecosystem&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills" rel="noopener noreferrer"&gt;https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview" rel="noopener noreferrer"&gt;https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://code.claude.com/docs/en/skills" rel="noopener noreferrer"&gt;https://code.claude.com/docs/en/skills&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/anthropics/skills" rel="noopener noreferrer"&gt;https://github.com/anthropics/skills&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>llm</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
