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-runtimeoblien-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-apioblien-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-networkingoblien-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-platformFocused 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-filesDownload SKILL.md · Source: Files docs
oblien-search
Content and filename search - ripgrep-powered content search with regex, whole-word, and context. Filesystem filename matching.
npx oblien skills install oblien-searchDownload 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-execDownload 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-terminalDownload 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-watcherDownload SKILL.md · Source: Watcher docs
Install all skills
npx oblien skills install --allOr 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