Skillbase/spm
npm for AI skills. Create, share, and discover reusable AI instructions for any model via MCP.
Skillbase / spm
Skills Package Manager — install, share, and manage reusable AI skills across any MCP-compatible client.
What is spm?
spm is a package manager for AI skills. Skills are structured instructions — not code — that teach AI models how to perform specific tasks: code review, security audits, API design, prompt engineering, DeFi analysis, and more.
npm install -g @skillbase/spm
spm connects to your AI client via MCP (Model Context Protocol), giving your AI access to a registry of community-contributed skills that load on demand.
Unlike npm-based approaches that piggyback on node_modules, spm has its own registry, its own format, and works with any AI client — not just code editors.
Already using Vercel Skills? spm is fully compatible — spm add owner/repo/skill-name and you're done. Auto-converts, no extra steps. See details below.
Quick start
# Install
npm install -g @skillbase/spm
# Initialize in your project
spm init
# Connect to your AI client
spm connect claude # Claude Desktop / Claude Code
spm connect cursor # Cursor
spm connect vscode # VS Code (Copilot)
spm connect windsurf # Windsurf
spm connect jetbrains # Any JetBrains IDE
# Install a skill
spm add skillbase/arch-code-review
# Install a persona (a bundle of skills with a defined role)
spm persona add skillbase/sec
Once connected, your AI automatically discovers and loads skills when it encounters a matching task. No manual invocation needed.
How it works
spm registers as an MCP server. Your AI client gets five tools:
| Tool | Purpose |
|---|---|
skill_list | Browse installed skills (compact index, not full content) |
skill_load | Load a skill's full instructions into context |
skill_search | Find skills by keyword, tag, or file pattern |
skill_install | Install new skills from the registry |
skill_feedback | Rate skill quality (feeds confidence scores) |
Lazy loading is key to the design. The AI sees a lightweight index of all installed skills. When it encounters a task that matches a skill's trigger, it loads just that skill's full instructions. This keeps context windows clean and lets you install dozens of skills without overhead.
User: "Review this pull request for architecture issues"
↓
AI sees skill_list → finds arch-code-review (trigger matches)
↓
AI calls skill_load("arch-code-review")
↓
Full review methodology loads into context
↓
AI performs structured code review
What's inside a skill?
A skill is a directory. At its core is a SKILL.md file — structured Markdown with YAML frontmatter:
---
name: arch-code-review
version: 1.0.3
description: "Architecture-aware code review"
tags: [code-review, architecture, solid, complexity]
triggers:
- "code review"
- "architecture review"
- "pull request review"
---
# Code Review Methodology
## Evaluation criteria
- Coupling/cohesion at module and class level
- SOLID principle adherence
- Cyclomatic complexity hotspots
...
But a skill isn't limited to instructions. The directory can also contain auxiliary scripts, templates, example files, and any other resources the AI needs during execution. Think of SKILL.md as package.json — it's the entry point, but the whole directory is the package.
Skill features
- Semver versioning —
skillbase/[email protected] - Dependencies — skills can depend on other skills
- Auxiliary files — scripts, templates, reference data bundled alongside instructions
- Triggers — descriptions and file patterns that help the AI decide when to load
- Tags — for search and discovery
- Confidence scores — computed from real user feedback via
skill_feedback
Personas
A persona bundles multiple skills into a complete AI identity with a defined role, tone, and expertise area.
spm persona add skillbase/sec
This installs the Security Auditor persona with its dependencies: smart-contract-audit, appsec, and web3-threat-modeling. When activated, the AI assumes the persona's role and has access to all bundled skills.
Available personas:
| Persona | Role | Skills |
|---|---|---|
arch | Software architect | system design, API contracts, code review |
py | Python backend engineer | FastAPI, async, testing, MongoDB/PostgreSQL |
ts | TypeScript fullstack dev | React/Next/Nuxt, Node, Tailwind, wagmi |
sol | Solidity/EVM developer | Foundry, OpenZeppelin, gas optimization |
sec | Security auditor | smart contract audit, AppSec, threat modeling |
trader | DeFi/crypto trader | on-chain analysis, yield strategies, MEV |
growth | Growth marketer | funnels, metrics, Web3 go-to-market |
prompt-engineer | Prompt engineer | SKILL.md authoring, prompt best practices |
prompt-manager | Prompt manager | skill demand research, quality review |
Team sync
Skillbase Sync adds team-level configuration and knowledge sharing on top of spm. Define a standard skill set for your project — everyone installs with one command.
# Link your repo to a Sync project
spm sync init
# Install everything the project requires
spm sync
# Check what's missing without installing
spm sync --status
When Sync is connected, your AI agent also gets access to shared team knowledge — decisions, constraints, and context captured by teammates. No more starting from scratch when someone else picks up a task.
Learn more: Sync documentation
Registry
The registry hosts skills across several domains:
Development — python-backend, python-testing, db-mongodb, arch-code-review, arch-api-design, arch-system-design
Security — appsec, smart-contract-audit, web3-threat-modeling, prompt-injection-detector, jailbreak-scanner, prompt-safety-validator
DeFi & Trading — yield-analysis, leverage-calc, onchain-signals, mev-awareness, trade-journal
Growth & Strategy — defi-growth-strategy, growth-airdrop-design, web3-grant-writing
Meta — prompt-engineering-craft (learn to write better prompts and skills)
Browse the full registry: skillbase.space/explore
Vercel Skills compatibility
spm is fully compatible with Vercel Skills and any GitHub-hosted skills that follow the same SKILL.md format. You don't have to choose — if a skill exists on GitHub, you can use it in spm.
Install directly — one command, auto-converts and installs:
spm add vercel-labs/agent-skills/web-design-guidelines
That's it. spm fetches the skill from GitHub, detects the format, converts it to SPM on the fly, and installs it locally. Ready to use immediately — no flags, no extra steps.
Or convert first, then publish — if you want to review, edit, and share with the community:
# 1. Fetch and convert to a local directory
spm convert vercel-labs/agent-skills/web-design-guidelines -o ./
# 2. Review and edit SKILL.md if needed
# 3. Publish to the spm registry
spm publish ./web-design-guidelines
Author defaults to the GitHub repo owner. Override with --author <name> if needed. The --skill <name> flag is also supported as an alternative: spm add vercel-labs/agent-skills --skill web-design-guidelines.
What spm adds on top of the original skill:
| Feature | Vercel Skills | With spm |
|---|---|---|
| Versioning | none | semver (1.0.0) |
| Dependencies | not supported | skill-to-skill deps with resolution |
| Lazy loading | none | on-demand via MCP |
| Discovery | manual | auto-trigger by task, tags, file patterns |
| Feedback & scoring | none | confidence scores from real usage |
| Client support | select editors | any MCP client (15+) |
| Personas | none | bundle skills into roles |
You can also list all available skills in a repository before installing:
spm convert vercel-labs/agent-skills
# → lists all skills in the repo's skills/ directory
Works with any GitHub repo that contains SKILL.md files — not limited to Vercel's repositories.
Publish your own skill
From the CLI:
# Scaffold a new skill from scratch
spm create my-skill
# Or convert an existing prompt file
spm convert my-prompt.md --author myname
# Or import from GitHub (auto-converts Vercel Skills)
spm convert owner/repo/skill-name -o ./
# Edit SKILL.md, then publish
spm publish
From Skillbase Studio:
Skillbase Studio provides a visual editor for creating, testing, publishing, and installing skills — all in the browser. Studio communicates with your local spm daemon to publish and install directly from the UI.
- Create or import a skill in Studio
- Edit and test with the built-in sandbox
- Click Publish — Studio sends the compiled SKILL.md to your local spm, which handles registry auth and upload
- Click Install — installs the published version locally via spm
Studio requires spm to be running locally (spm status-server start or click "Connect spm" in the UI). All publishing uses your existing spm login credentials.
Skills are free to publish and free to use. The registry is open.
Supported clients
spm works with any client that supports MCP:
Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, Cline, Roo Code, JetBrains IDEs (all), Zed, OpenAI Codex, Emacs, Neovim, and others.
# See all supported clients
spm connect --list
Why not just use npm?
Some projects bundle AI skills inside npm packages. spm takes a different approach:
- Own registry — skills are first-class citizens, not a side-effect of npm install. Discovery, search, versioning, and confidence scores are built in.
- Not tied to Node.js — spm skills work with any AI client on any platform. You don't need a
node_modulesfolder. - Lazy loading via MCP — skills load into AI context on demand, not all at once. This is critical when you have dozens of skills.
- Feedback loop —
skill_feedbacklets users rate skills. Confidence scores surface the most effective skills. - Personas — bundle skills into roles. npm has no concept of this.
- Extensible format — a skill can grow from pure instructions to include scripts, templates, and data without changing how it's installed or loaded.
- Compatible, not locked-in — import skills from Vercel Skills, GitHub, or local prompt files.
spm converthandles format conversion automatically.
Security
All skills and personas in the public registry go through a security review before publication. Auxiliary files bundled with skills are scanned with antivirus and additional automated security tooling. spm uses token-scoped authorization for publishing — only verified authors can update their packages.
The SKILL.md format is plain Markdown with structured metadata — there's no postinstall script execution or hidden side effects.
Contributing
We welcome skills, bug reports, feature requests, and documentation improvements.
Links
- skillbase.space — spm homepage and registry
- Skillbase Sync — team knowledge sharing and project configuration
- Skillbase Studio — visual editor for creating, testing, and publishing skills
- Skillbase Workspace — marketplace for ready-made AI agent teams; publish your own and earn revenue share on every deployment
- Documentation
- npm
License
MIT — see LICENSE.
Related Servers
Relay-gateway
Relay is a desktop application for managing Model Context Protocol (MCP) servers. It provides a user-friendly interface to configure, enable/disable, and export MCP servers for use with Claude Desktop and other AI applications.
MCP Audio Tweaker
Batch audio processing and optimization using FFmpeg. Modify sample rate, bitrate, volume, channels, and apply effects.
Uncyclopedia MCP Server
An MCP server for performing operations on Uncyclopedia with interactive authentication.
MCP Location Services for LLM
Provides geocoding, reverse geocoding, routing, and driving distance calculations for LLMs using pgGeocoder and pgrServer.
asterpay
EUR settlement for AI agents. USDC/EURC to EUR via SEPA Instant. Trust scoring (KYA 0-100), market data, crypto analytics, AI tools.
Reaudit MCP
An MCP Server to Control Your AI Visibility Through Reaudit.io
wodeapp
AI-powered no-code app builder with 17 MCP tools — create projects, generate pages from natural language, AI text/image generation (GPT, Claude, Gemini, 14+ models), page CRUD, workflow execution, publish & version control. SSE transport, API key auth.
OpenRegistry
Unmodified government company registry data — 27 national registries, live. Cross-border UBO / beneficial owner chain walker for KYC, AML, due diligence. 27 tools + 10 MCP prompt workflows.
Interzoid Data Quality
AI-powered data matching, enrichment, standardization, and verification APIs. 29 tools for company/name/address deduplication, business intelligence, email trust scoring, and more. Supports x402 crypto micropayments.
Strider Amazon
MCP server for Amazon shopping - AI agents can search products, check prices, add to cart, and manage shopping lists.