Skills

Skill Catalog

All Oblien skills follow the AgentSkills standard. Each skill folder contains a SKILL.md with the complete reference in plain markdown.

Quick start: Install oblien-runtime for workspace operations (files, exec, search, terminal + platform context) or oblien-api for control-plane management (create, configure, and monitor workspaces).


Combined Skills

These skills bundle multiple doc sections into a single comprehensive reference, each with a platform-context preamble that teaches the agent the right mental model before diving into endpoints.

oblien-runtime

Workspace environment + complete Runtime API - what a workspace is (Firecracker microVM), how auth works (gateway JWT vs raw token), then the full reference: files, search, exec, terminal, and watcher.

The primary skill for agents working inside a workspace. Starts with platform context so the agent understands the environment it's operating in, then covers every endpoint on port 9990.

npx oblien skills install oblien-runtime

Download SKILL.md


oblien-api

Control-plane API at api.oblien.com - workspace CRUD, lifecycle (start/stop/restart), resources (CPU/memory/disk), snapshots, workloads, images, logs, metrics, metadata, and filesystem.

Includes auth setup (API key headers), the common create-to-connect workflow, and every control-plane endpoint. For agents that manage workspaces.

npx oblien skills install oblien-api

Download SKILL.md


oblien-networking

Workspace networking - firewall rules, private links, public access with preview URLs, dedicated outbound IPs, SSH, gateway vs direct connections, token management.

Starts with the key concept that workspaces are network-dark by default, then teaches how to open inbound access, link workspaces, and manage tokens.

npx oblien skills install oblien-networking

Download SKILL.md


oblien-platform

Platform guide - architecture, authentication (API keys vs tokens), SDK setup with code examples, images, lifecycle modes, resource pools, billing, and common workflows.

The getting-started skill. Includes runnable code examples for creating a workspace and connecting two workspaces together.

npx oblien skills install oblien-platform

Download SKILL.md


Focused Skills

Individual Runtime API surface areas. Install these when you want the agent to focus on a specific capability without the full runtime reference.

oblien-files

File operations - list, read, write, stream, stat, mkdir, and delete files.

npx oblien skills install oblien-files

Download SKILL.md · Source: Files docs


Content and filename search - ripgrep-powered content search with regex, whole-word, and context. Filesystem filename matching.

npx oblien skills install oblien-search

Download SKILL.md · Source: Search docs


oblien-exec

Command execution - run commands synchronously, stream output via SSE, manage background tasks with TTL and kill.

npx oblien skills install oblien-exec

Download SKILL.md · Source: Exec docs


oblien-terminal

Interactive terminal sessions - create PTY sessions, multiplex over WebSocket, scrollback retrieval, resize, reconnection.

npx oblien skills install oblien-terminal

Download SKILL.md · Source: Terminal docs


oblien-watcher

File system watcher - real-time file change events (create, write, remove, rename) streamed over WebSocket with exclude patterns.

npx oblien skills install oblien-watcher

Download SKILL.md · Source: Watcher docs


Install all skills

npx oblien skills install --all

Or download manually with curl (example for Claude Code):

for skill in oblien-runtime oblien-api oblien-networking oblien-platform oblien-files oblien-search oblien-exec oblien-terminal oblien-watcher; do
  mkdir -p .claude/skills/$skill
  curl -sL "https://oblien.com/skills/$skill/SKILL.md" -o ".claude/skills/$skill/SKILL.md"
done