Skills
Skills
Skills are instruction packages that teach AI coding agents how to work with Oblien workspaces. Each skill is a folder with a SKILL.md file - a plain-text, agent-readable reference following the AgentSkills open standard.
Drop a skill into your agent's context directory and it gets structured knowledge of the Oblien platform - creating workspaces, configuring networking, managing files, executing commands, and more - without browsing docs or guessing endpoints.
Skills follow the AgentSkills standard - the open format supported by Claude Code, Cursor, OpenClaw, Goose, JetBrains AI, and others. Any agent that reads markdown can consume Oblien skills.
How it works
┌─ Your project ──────────────────────────────────────┐
│ │
│ .claude/skills/oblien-runtime/SKILL.md │
│ .cursor/skills/oblien-runtime/SKILL.md │
│ skills/oblien-runtime/SKILL.md (OpenClaw) │
│ │
│ Agent reads SKILL.md → calls Oblien APIs → result │
└──────────────────────────────────────────────────────┘- Install a skill - the
SKILL.mdgoes into your agent's skills directory - The agent reads the frontmatter at startup (name + description, ~100 tokens)
- When relevant, the agent loads the full body to learn endpoints, auth, parameters, and examples
- The agent calls Oblien APIs using that knowledge
Available skills
Platform skills
| Skill | What the agent learns |
|---|---|
oblien-runtime | Workspace environment context + complete Runtime API - files, search, exec, terminal, watcher |
oblien-api | Control-plane API - workspace CRUD, lifecycle, resources, snapshots, workloads |
oblien-networking | Networking - firewalls, private links, public access, SSH, tokens |
oblien-platform | Platform guide - architecture, auth, SDK setup, common workflows |
Focused skills
| Skill | What the agent learns |
|---|---|
oblien-files | File operations - list, read, write, stream, stat, delete |
oblien-search | Content search (ripgrep) and filename search |
oblien-exec | Command execution - sync, streaming (SSE), background tasks |
oblien-terminal | Interactive PTY sessions over WebSocket |
oblien-watcher | Real-time file change events over WebSocket |
Quick install
# Install for your agent (auto-detects Claude Code, Cursor, OpenClaw, etc.)
npx oblien skills install oblien-runtime
# Install for a specific agent
npx oblien skills install oblien-runtime --agent claude
npx oblien skills install oblien-runtime --agent cursor
# Install all skills
npx oblien skills install --allSee Installing Skills for all methods including manual download.
Next steps
- Installing Skills - Install via npx or manual download
- Agent Setup - Per-agent setup for Claude Code, Cursor, OpenClaw, Goose, and more
- Skill Format - The AgentSkills standard and SKILL.md structure
- Skill Catalog - Browse and download all available skills