Skills

Skill Format

Oblien skills follow the AgentSkills open standard - the format adopted by Claude Code, Cursor, OpenClaw, Goose, JetBrains AI, and other agent platforms.

Structure

Every skill is a folder containing a SKILL.md file:

oblien-runtime/
└── SKILL.md          # Agent-readable markdown with YAML frontmatter

Skills are single-file by design. The SKILL.md contains everything the agent needs - no supporting code, binaries, or config files.

SKILL.md anatomy

The SKILL.md has two parts: YAML frontmatter and a markdown body.

Frontmatter

---
name: oblien-runtime
description: >-
  Complete Oblien workspace Runtime API - connection and auth, files,
  search, exec, terminal, and watcher.
license: MIT
compatibility:
  - claude-code
  - cursor
  - openclaw
  - goose
  - jetbrains-ai
metadata:
  author: oblien
  version: 1.0.0
  source: https://oblien.com/docs
---

Fields

FieldRequiredDescription
nameYesSkill identifier (lowercase, hyphens). 1–64 characters.
descriptionYesWhat the agent learns from this skill. 1–1024 characters.
licenseNoLicense identifier (e.g. MIT, Apache-2.0).
compatibilityNoAgent platforms this skill is designed for.
metadataNoArbitrary key-value pairs - author, version, source URL, etc.

These fields follow the AgentSkills specification. Agents use name and description for discovery (~100 tokens), then load the full body on activation.

Body

The markdown body contains the complete API reference:

  • Endpoints with URL, method, and parameters
  • Code examples in SDK, REST, and cURL
  • Response schemas and field descriptions
  • Error codes and troubleshooting
  • Conceptual guides where relevant (networking, auth flows)

The body is plain markdown - no JSX, no framework-specific syntax. Any agent that can read text can consume it.

Progressive disclosure

The AgentSkills standard uses a three-tier loading model:

TierWhat loadsToken cost
Discoveryname + description from frontmatter~100 tokens per skill
ActivationFull SKILL.md bodyVaries (500–5000 tokens recommended)
ResourcesOptional references/ or assets/ directoriesOn demand

Oblien skills focus on the first two tiers. The agent sees skill names and descriptions at startup, then loads the full reference when the skill is relevant to the task.

Skill catalog

SkillCoverageRecommended for
oblien-runtimeRuntime API - files, search, exec, terminal, watcherAgents working inside a workspace
oblien-apiControl-plane API - workspace CRUD, lifecycle, resourcesAgents managing workspaces
oblien-networkingNetworking - firewalls, private links, public access, tokensAgents configuring network access
oblien-platformArchitecture, auth, SDK, images, billingAgents needing platform context
oblien-filesFile operations onlyAgents focused on file management
oblien-searchSearch onlyAgents focused on code search
oblien-execCommand execution onlyAgents running commands
oblien-terminalTerminal sessions onlyAgents needing interactive shells
oblien-watcherFile watching onlyAgents monitoring file changes

See the Skill Catalog for download links and detailed descriptions.