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

推荐订阅源

Forbes - Security
Forbes - Security
L
Lohrmann on Cybersecurity
Simon Willison's Weblog
Simon Willison's Weblog
P
Proofpoint News Feed
P
Privacy International News Feed
The Hacker News
The Hacker News
AWS News Blog
AWS News Blog
S
Securelist
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
GbyAI
GbyAI
B
Blog RSS Feed
A
About on SuperTechFans
C
CXSECURITY Database RSS Feed - CXSecurity.com
Y
Y Combinator Blog
Microsoft Azure Blog
Microsoft Azure Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Cyberwarzone
Cyberwarzone
I
Intezer
T
Tor Project blog
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
Recorded Future
Recorded Future
aimingoo的专栏
aimingoo的专栏
Cisco Talos Blog
Cisco Talos Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
W
WeLiveSecurity
D
DataBreaches.Net
U
Unit 42
Project Zero
Project Zero
Martin Fowler
Martin Fowler
V
V2EX
The Last Watchdog
The Last Watchdog
Security Archives - TechRepublic
Security Archives - TechRepublic
C
Cisco Blogs
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V2EX - 技术
V2EX - 技术
Hacker News - Newest:
Hacker News - Newest: "LLM"
T
Threat Research - Cisco Blogs
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
T
Tenable Blog
F
Full Disclosure
T
The Exploit Database - CXSecurity.com
H
Heimdal Security Blog
Latest news
Latest news
Webroot Blog
Webroot 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.