Official AI agent skills from the Kernel for installing useful skills for our CLI and SDKs that you can load into popular coding agents.
# Add the Kernel skills marketplace
/plugin marketplace add kernel/skills
# Install the CLI skill
/plugin install kernel-cligit clone https://github.com/kernel/skills.git
cp -r skills/plugins/kernel-cli ~/.claude/skills/Before using these skills, ensure you have:
-
Kernel CLI installed:
brew install kernel/tap/kernel
-
Authenticated with Kernel:
kernel login
Once installed, your coding agent will automatically know how to use Kernel. Try prompts like:
"Spin up a browser and take a screenshot of kernel.sh"
Your agent will respond with:
kernel browsers create -o json
# Extract session_id from output
kernel browsers computer screenshot <session_id> --to screenshot.pngThe kernel-cli skill is organized into focused sub-skills:
| Skill | Description |
|---|---|
| browser-management | Browser creation, listing, deletion |
| computer-controls | Mouse, keyboard, screenshots |
| app-deployment | Deploy and invoke apps |
| browser-pools | Pre-warmed browser pools |
| profiles | Persistent browser state |
| extensions | Chrome extension management |
| proxies | Proxy configuration |
| process-execution | VM process execution |
| filesystem-ops | File operations |
| replays | Video recording |
Reference Documentation:
commands.md- Complete CLI reference
Each sub-skill is loaded contextually based on your prompts, minimizing token usage while providing comprehensive Kernel knowledge.
MIT