ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

oblien-runtime

Complete Oblien workspace environment — what you are running inside (Firecracker microVM), how auth works (gateway JWT vs raw token), and the full Internal API reference: files, search, exec, terminal, and watcher on port 9990.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/hydralerne/oblien-runtime
Or

Oblien Workspace Runtime

You are operating inside an Oblien workspace — an isolated Firecracker microVM with its own Linux kernel, filesystem, and network interface. This is not a container. You have full root access to a real Linux environment.

What you can do

The workspace runs an Internal API — an HTTP server on port 9990 inside the VM. Through this API you can:

  • Read and write files anywhere on the filesystem
  • Execute commands synchronously or stream output in real-time via SSE
  • Search code using ripgrep (content search) or filesystem search (filename matching)
  • Open interactive terminal sessions over WebSocket (multiplexed PTY)
  • Watch for file changes in real-time over WebSocket

How authentication works

There are two ways to reach this API:

MethodURLTokenWhen to use
Gatewayhttps://workspace.oblien.comGateway JWT (~1hr, signed)Calling from outside — your app, CI, SDK
Directhttp://10.x.x.x:9990Raw connection token (hex)Calling from another workspace (lower latency)

Gateway access requires public_access: true on the workspace network config. Direct access requires a private link between the two workspaces.

Key facts

  • The filesystem persists across restarts (writable overlay on top of the base image)
  • Default working directory is /root
  • Outbound internet is ON by default, inbound is OFF by default (network-dark)
  • The workspace has dedicated CPU, memory, and disk — configured at creation time
  • Port 9990 is the Internal API. Your application can use any other port.

The reference below covers every Internal API endpoint with parameters, response schemas, and code examples.

Connection & Authentication

Before using the Workspace Internal API, the HTTP server inside the VM must be enabled. Once enabled, there are two ways to connect:

MethodURLAuthNetwork requirementUse case
Gatewayworkspace.oblien.comAuthorization: Bearer <gateway_jwt>public_access: trueExternal access - your app, SDK, CI, MCP
Direct10.x.x.x:9990Authorization: Bearer <raw_token>Private link from callerWorkspace-to-workspace over private network

Both methods hit the same server and the same endpoints. The difference is how you authenticate and how the request reaches the VM.


Enable the server

Start the internal server via the Oblien API. This returns a Gateway JWT for immediate use.

SDK:


const client = new Oblien({
  clientId: process.env.OBLIEN_CLIENT_ID!,
  clientSecret: process.env.OBLIEN_CLIENT_SECRET!,
});

Metadata

Stars2387
Views1
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-hydralerne-oblien-runtime": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.