Agent Setup
Oblien skills follow the AgentSkills open standard. Any agent that reads SKILL.md files can use them. This page covers setup for popular agents.
Claude Code
Claude Code discovers skills from the .claude/ directory in your project root.
Install
npx oblien skills install oblien-runtime --agent claudeOr manually:
mkdir -p .claude/skills/oblien-runtime
curl -sL https://oblien.com/skills/oblien-runtime/SKILL.md \
-o .claude/skills/oblien-runtime/SKILL.mdSkill locations
| Location | Scope |
|---|---|
.claude/skills/ | Project-level (commit to git) |
~/.claude/skills/ | User-level (all projects) |
Referencing in CLAUDE.md
You can also reference skills in your project's CLAUDE.md to ensure Claude Code loads them:
# Project Instructions
This project uses Oblien workspaces for isolated execution environments.
## Skills
See `.claude/skills/oblien-runtime/SKILL.md` for Runtime API reference.
See `.claude/skills/oblien-networking/SKILL.md` for network configuration.Recommended skills
npx oblien skills install oblien-runtime oblien-networking --agent claudeThis gives Claude Code full workspace control - file operations, command execution, and network configuration.
Cursor
Cursor loads context from .cursor/rules/ and supports AgentSkills discovery.
Install
npx oblien skills install oblien-runtime --agent cursorOr manually:
mkdir -p .cursor/skills/oblien-runtime
curl -sL https://oblien.com/skills/oblien-runtime/SKILL.md \
-o .cursor/skills/oblien-runtime/SKILL.mdSkill locations
| Location | Scope |
|---|---|
.cursor/skills/ | Project-level |
~/.cursor/skills/ | User-level (all projects) |
Recommended skills
npx oblien skills install oblien-runtime oblien-api --agent cursorOpenClaw
OpenClaw supports AgentSkills natively via clawhub.
Install
clawhub install oblien-runtimeSkill locations
| Location | Scope |
|---|---|
<workspace>/skills/ | Project-level (local) |
~/.openclaw/skills/ | User-level (global) |
| Bundled skills | Built into OpenClaw |
Configuration
Configure which skills are active in ~/.openclaw/openclaw.json:
{
"skills": {
"entries": [
{ "name": "oblien-runtime", "enabled": true },
{ "name": "oblien-networking", "enabled": true },
{ "name": "oblien-api", "enabled": true }
]
}
}Skill gating
Gate skills on environment requirements so they only activate when credentials are present:
metadata:
openclaw:
requires:
env:
- OBLIEN_CLIENT_ID
- OBLIEN_CLIENT_SECRETHot reload
OpenClaw watches skills directories - update a SKILL.md and it reloads automatically.
Goose
Goose by Block loads skills from .goose/skills/.
Install
npx oblien skills install oblien-runtime --agent gooseOr manually:
mkdir -p .goose/skills/oblien-runtime
curl -sL https://oblien.com/skills/oblien-runtime/SKILL.md \
-o .goose/skills/oblien-runtime/SKILL.mdJetBrains AI
JetBrains AI Assistant supports AgentSkills from .jb-ai/skills/.
Install
npx oblien skills install oblien-runtime --agent jetbrainsGeneric / Custom Agents
For any agent that reads markdown context files, place skills wherever the agent looks for instructions:
# Install to a custom path
npx oblien skills install oblien-runtime --path ./my-agent/context/
# Or download directly
mkdir -p ./my-agent/context/oblien-runtime
curl -sL https://oblien.com/skills/oblien-runtime/SKILL.md \
-o ./my-agent/context/oblien-runtime/SKILL.mdThe SKILL.md is plain markdown with YAML frontmatter. Any agent that can read text files can consume it.
Token overhead
Each installed skill adds to the agent's context:
| Stage | Cost | When |
|---|---|---|
| Discovery | ~100 tokens per skill | At startup (name + description only) |
| Activation | 500–5000 tokens per skill | On demand when the skill is relevant |
With all 9 Oblien skills installed, discovery overhead is under 1000 tokens. Full skill bodies load only when the agent activates them for a task.
Recommended combinations
| Use case | Skills |
|---|---|
| Agent working inside a workspace | oblien-runtime |
| Agent managing multiple workspaces | oblien-api + oblien-networking |
| Agent needing full platform control | oblien-runtime + oblien-api + oblien-networking |
| Agent onboarding to the platform | oblien-platform |
Most agents only need oblien-runtime + oblien-api. The runtime skill teaches workspace operations (files, exec, search) with platform context, and the API skill teaches workspace management (create, start, stop, scale).