惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
L
LangChain Blog
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
美团技术团队
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium
D
DataBreaches.Net
P
Proofpoint News Feed
小众软件
小众软件
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
WordPress大学
WordPress大学
雷峰网
雷峰网
G
Google Developers Blog

Blogs

From OpenClaw to the One-Person Company · Blogs From OpenClaw to the One-Person Company · Blogs Using npx skills to Supercharge Your AI Agents · Blogs Why I Didn’t Use KMP for the Whole App · Blogs Why I Didn’t Use KMP for the Whole App · Blogs How I Privately Analyzed Baby Tracking Data Using OpenClaw + Ollama + OnlyBaby · Blogs How I Privately Analyzed Baby Tracking Data Using OpenClaw + Ollama + OnlyBaby · Blogs Clawdbot/OpenClaw + Ollama as your personal assistant · Blogs Clawdbot/OpenClaw + Ollama as your personal assistant · Blogs The God in the Cracks · Blogs The God in the Cracks · Blogs The World That Was Heard · Blogs The World That Was Heard · Blogs Building a Cross-Platform AI Chat App With Cursor + Kotlin Multiplatform (KMP) · Blogs Building a Cross-Platform AI Chat App With Cursor + Kotlin Multiplatform (KMP) · Blogs Run LLMs Locally on Mac Studio with Ollama, Cherry Studio, and RAGFlow · Blogs Run LLMs Locally on Mac Studio with Ollama, Cherry Studio, and RAGFlow · Blogs The Fissioned City · Blogs The Fissioned City · Blogs
Using npx skills to Supercharge Your AI Agents · Blogs
2026-03-14 · via Blogs

Original on Medium

Introduction: A New Way to Extend AI Agents

Modern AI agents like Cursor, Claude, Codex, Continue, and local agent runners are becoming modular.

Instead of writing bigger prompts, you can install skills — reusable capabilities that extend what an agent can do.

With the ecosystem built around:

  • skills.sh (public index)
  • vercel-labs/skills (CLI)
  • local skills folders
  • GitHub skill repos

you can install skills with one command:

npx skills add <owner/repo>

What Is Skills?

Skills is an open system for adding reusable capabilities to AI agents.

It has three main parts.

1. Skills Website

https://skills.sh
  • Public catalog of skills
  • Shows install commands
  • Links to GitHub repos
  • Helps discover new skills

2. Skills CLI

https://github.com/vercel-labs/skills
  • Command line tool
  • Finds skills
  • Adds skills from repos
  • Manages installed skills

3. Local skills folder

Skills are copied into agent-specific directory such as:

.agents/skills/

For the agents that cannot support agents folder, the skills can be copied in their specific folders such as Antigravity.

Installing the Skills CLI

You don’t install it globally.

Use npx:

npx skills

Why this design?

  • Always uses latest version
  • No global install needed
  • Works per project
  • Safe for teams

Finding Skills

To search the skills by keywords:

npx skills find <keywords>

What this does:

  • Queries the skills index
  • Shows matching skills
  • Displays install instructions

This uses the same registry as skills.sh.

Installing Skills

Skills are installed from repositories, not from npm packages.

Basic command:

npx skills add <owner/repo>

Example:

npx skills add https://github.com/twostraws/swiftui-agent-skill

What happens when you run this:

  • Repo is downloaded
  • Skills are detected
  • Files are copied locally
  • Agent can use them

No manual setup needed.

Installing Only One Skill From a Repo

Some repos contain multiple skills.

Use:

npx skills add <owner/repo> --skill <skill-name>

Example:

npx skills add https://github.com/twostraws/swiftui-agent-skill --skill swiftui-pro

Useful when a repo contains many skills.

Listing Installed Skills

To see installed skills:

npx skills list

This shows:

  • Installed skills
  • Target agent
  • Install location

Removing Skills

To remove a skill:

npx skills remove <skill-name>

This deletes the skill from the local skills folder.

Using Skills with Multiple Agents

One of the best features of Skills is that the format is shared.

Skills can work with:

  • Cursor
  • Claude
  • Codex
  • Continue
  • Local agents
  • Custom runners

This means:

  • Install once
  • Use in multiple agents
  • Share in Git
  • Reuse across projects

Skills become part of your workflow.