Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@skillbase/spm) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
SkillBase
Package manager for AI skills — discover, install, and publish reusable prompts and tools.
npm install -g @skillbase/spmQuick start
# Initialize skills directory
spm init
# Search for skills
spm search "code review"
# Install a skill
spm install author/skill-name
# Connect to your AI client
spm connect claudeWhat is a skill?
A skill is a portable, versioned package containing prompts, tools, or instructions that any AI model can use. Think npm packages, but for AI capabilities.
my-skill/
├── skill.json # Manifest (name, version, dependencies)
└── SKILL.md # Main promptCommands
| Command | Description |
|---|---|
spm init |
Initialize skills directory |
spm create <name> |
Scaffold a new skill |
spm install [source] |
Install skills (supports GitHub URLs) |
spm publish <path> |
Publish to registry |
spm search <query> |
Search local and remote registries |
spm connect <client> |
Connect to AI client (Claude, Zed) |
spm convert <file> |
Convert .md/.txt prompts to skills |
spm list |
List installed skills |
spm info <name> |
Show skill details |
spm rate <name> |
Rate a skill |
MCP Server
SkillBase includes a built-in Model Context Protocol server for direct AI integration:
spm serve --stdioRegistries
Skills can be published to self-hosted registries or installed directly from GitHub:
# Add a registry
spm registry add https://registry.example.com
# Install from GitHub
spm install github:author/repo
# Publish to a specific registry
spm publish ./my-skill --registry myregistryAuthentication
# Login via GitHub OAuth
spm login --github
# Or with a specific registry
spm login https://registry.example.comRequirements
- Node.js >= 20.0.0