The SkillDepot Handbook
Every AI agent is only as good as the tools it can use. SkillDepot provides a standard, secure, and distributed platform for managing these capabilities.
Instant Integration
Hook into any skill with just an API key. Zero infrastructure management required on your end.
Maximum Security
Isolated execution environments and strictly typed schemas ensure your agents operate within safe bounds.
Quickstart Guide
Get from zero to production-ready skills in under 5 minutes with our developer toolkit.
1Install the Command Line Interface
➜npm install -g @skilldepot/cli
added 42 packages in 2s
➜skilldepot login
✔ Successfully authenticated as developer_user
2Execute your first skill
Use the official JavaScript/TypeScript SDK to call any skill as an asynchronous function.
const result = await skilldepot.run('weather-pro', {
city: 'New York',
units: 'metric'
});CLI Reference
skilldepot install <skill-id>Downloads and builds a skill locally for development.
skilldepot publishBundles and uploads your local skill to the marketplace.
skilldepot helpLists all available CLI commands.