Quick Start
Get running with Skill Engine in under 5 minutes.
Install
One command to install the pre-compiled binary:
curl -fsSL https://dqkbk9o7ynwhxfjx.public.blob.vercel-storage.com/install.sh | shThis automatically:
- Detects your OS and architecture
- Downloads the correct binary
- Installs to
~/.skill-engine/bin/skill - Adds to your PATH
No Rust compiler needed - it's a pre-compiled binary.
Verify Installation
skill --version
# Output: skill 0.3.0For Claude Code Users
If you're using Claude Code, set up MCP integration with one command:
skill claude setupThat's it! This command:
- Finds your skill binary automatically
- Creates/updates
.mcp.jsonin your project - Configures the MCP server correctly
Restart Claude Code and you'll have access to all your skills through Claude.
Use Skills in Claude
Now ask Claude to use skills:
You: "List the kubernetes pods in the default namespace"
Claude: I'll check the pods using the Kubernetes skill.
[Uses skill-engine MCP tools]
Here are the pods in the default namespace:
- nginx-deployment-xxx (Running)
- redis-cache-yyy (Running)
...Global Setup (Optional)
To use Skill Engine with Claude across all projects:
skill claude setup --globalThis adds Skill Engine to your global Claude Code configuration at ~/.claude/mcp.json.
For Other MCP Clients
If you're using a different MCP client (not Claude Code), manually add to your MCP config:
{
"mcpServers": {
"skill-engine": {
"type": "stdio",
"command": "skill",
"args": ["serve"]
}
}
}List Available Skills
See what skills are available:
skill listOutput:
Installed Skills:
kubernetes - Kubernetes cluster management with kubectl
terraform - Infrastructure as Code management
github - GitHub API integration
...Run Your First Tool
Execute a tool from any skill:
# List Kubernetes pods
skill run kubernetes get --resource pods
# Check Terraform plan
skill run terraform plan
# List GitHub repositories
skill run github list-repos --owner=yourusernameCheck Claude Integration Status
Verify your Claude Code integration is working:
skill claude statusOutput:
✓ Claude Code integration configured
Location: /path/to/project/.mcp.json
Server name: skill-engine
Binary: /Users/you/.skill-engine/bin/skillStart Web UI (Optional)
For a visual interface with API explorer:
skill webOpens at http://localhost:3000 with:
- Skill browser and search
- Interactive tool tester
- API documentation
- Usage history
Next Steps
- Installation Guide - Platform-specific details and troubleshooting
- Claude Code Integration Guide - Advanced Claude setup and tips
- MCP Protocol Guide - Configure other MCP clients
- Skill Development - Build your own skills
- Browse Catalog - Explore available skills
Common Issues
"skill: command not found"
Reload your shell:
source ~/.bashrc # or ~/.zshrcOr manually add to PATH:
export PATH="$HOME/.skill-engine/bin:$PATH"Claude Code not seeing skills
- Verify integration:
skill claude status - Check
.mcp.jsonexists in your project - Restart Claude Code completely
- Check Claude Code MCP logs for errors
Docker skills failing
Make sure Docker is running:
docker psIf Docker isn't installed, Docker-based skills won't work. Use native or WASM skills instead.
Tips
Skill Discovery: Use skill search <keyword> to find skills semantically
Tool Help: Run skill run <skill-name> <tool-name> --help for tool-specific options
Environment Variables: Set credentials once:
export GITHUB_TOKEN=your_token_hereShortcuts: Create aliases for common commands:
alias k8s='skill run kubernetes'
alias tf='skill run terraform'