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   │
└──────────────────────────────────────────────────────┘
  1. Install a skill - the SKILL.md goes into your agent's skills directory
  2. The agent reads the frontmatter at startup (name + description, ~100 tokens)
  3. When relevant, the agent loads the full body to learn endpoints, auth, parameters, and examples
  4. The agent calls Oblien APIs using that knowledge

Available skills

Platform skills

SkillWhat the agent learns
oblien-runtimeWorkspace environment context + complete Runtime API - files, search, exec, terminal, watcher
oblien-apiControl-plane API - workspace CRUD, lifecycle, resources, snapshots, workloads
oblien-networkingNetworking - firewalls, private links, public access, SSH, tokens
oblien-platformPlatform guide - architecture, auth, SDK setup, common workflows

Focused skills

SkillWhat the agent learns
oblien-filesFile operations - list, read, write, stream, stat, delete
oblien-searchContent search (ripgrep) and filename search
oblien-execCommand execution - sync, streaming (SSE), background tasks
oblien-terminalInteractive PTY sessions over WebSocket
oblien-watcherReal-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 --all

See Installing Skills for all methods including manual download.

Next steps