name: openclaw-skills description: "Canonical master skill for The Nine Skills that configure OpenClaw instances deterministically across Claude, Hermes, Gemini, Codex, Cursor, WindSurf, Antigravity, OpenCode, and 8gent.dev."
openclaw-skills
This is a thin wrapper. The canonical skill lives in this repo at the path below (resolve the repo root at runtime — paths are never hardcoded).
- Canonical skill path (repo-relative):
bin/orama-system/skills/openclaw-skills/SKILL.md
Before Use
Before relying on the canonical card, check whether the canonical repository can safely sync:
ROOT="$(git rev-parse --show-toplevel 2>/dev/null || pwd)"
cd "$ROOT/bin/orama-system/skills/openclaw-skills"
git fetch origin --prune
git status --short --branch
If the repo is on a tracking branch and the worktree is clean:
git pull --ff-only
If the worktree is dirty, the branch is not tracking origin, or fast-forward is impossible, do not overwrite local work. Report the drift and read the current canonical card with that caveat.
Load Canonical Skill
Open and follow bin/orama-system/skills/openclaw-skills/SKILL.md (relative to the repo root). Do not copy behavior from this wrapper.
Windows UTF-8 Note
On Windows PowerShell, set UTF-8 explicitly before reading or writing skill files:
[Console]::InputEncoding=[System.Text.UTF8Encoding]::new($false)
[Console]::OutputEncoding=[System.Text.UTF8Encoding]::new($false)
$OutputEncoding=[System.Text.UTF8Encoding]::new($false)
$env:PYTHONUTF8='1'