Single Binary
No servers required. Install once, works everywhere. Runs in CI/CD, terminal agents, or IDEs.
A universal skill runtime that runs anywhere. No servers, no context bloat, just tools that work.
AI agents need to do things in the real world. Query databases. Deploy code. Manage infrastructure. Call APIs.
Today, you have two choices:
Skill is a third way. A universal skill runtime that runs anywhere, stays secure, finds tools intelligently, and works with any agent.
# Install
curl -fsSL https://dqkbk9o7ynwhxfjx.public.blob.vercel-storage.com/install.sh | sh
# Discover tools with natural language
skill find "manage kubernetes pods"
# Execute in sandboxed WASM
skill run kubernetes:get --resource pods --all-namespacesRead the full installation guide β
Perfect for Claude Code, Aider, or any terminal-based agent:
skill find "<what you want to do>" # Discover tools
skill run <skill>:<tool> [args] # Execute tools
skill list # See what's installedThe agent uses shell commands. No SDK, no protocol, no complexity.
For agents that speak Model Context Protocol:
# Start the MCP server
skill serveAdd to your Claude Desktop or IDE config:
{
"mcpServers": {
"skill": {
"command": "skill",
"args": ["serve"]
}
}
}The same skills work in both modes. Write once, use everywhere.
Learn more about MCP integration β
Stuff docs into prompts
Always-on processes
Best of both worlds
| Metric | Value |
|---|---|
| Cold start | ~100ms (includes AOT compilation) |
| Warm start | <10ms (cached) |
| Vector search | <50ms (local FastEmbed) |
| MCP tool call | <100ms typical |
All operations run locally. No API calls. Works offline.
Skills declare capabilities at install time and can't escape their boundaries:
capabilities:
network:
- "*.amazonaws.com"
filesystem:
- read: "${args.file}"
allowed-tools:
- kubectl
- helmUse Skill with Claude Code, Aider, Cursor, or custom agents. No integration code neededβjust shell commands.
Standardize tool access across your organization. Audit logging and RBAC built-in.
Write your skill once in Rust, JavaScript, or Python. Runs everywhere without modification.
Or explore:Build a Skill Β· API Reference Β· Browse Examples