Remove OpenClaw install script, add manual instructions to README

This commit is contained in:
Kunthawat Greethong
2026-03-27 17:16:14 +07:00
parent b590cf082c
commit a5fef9dbdc
2 changed files with 21 additions and 161 deletions

View File

@@ -56,6 +56,27 @@ mkdir -p .opencode/skills
cp -r skills/* .opencode/skills/
```
## OpenClaw Installation
For OpenClaw, you can install skills to SSH-mounted folders or local `.openclaw/skills`:
```bash
# Option 1: SSH-mounted folder (dynamic detection)
# OpenClaw uses any folder ending with .openclaw/skills
mkdir -p ~/.openclaw/skills
cp -r skills/* ~/.openclaw/skills/
# Option 2: Remote server SSH folder
# For example if your SSH mount is at ~/openclaw-vps/
mkdir -p ~/openclaw-vps/.openclaw/skills
cp -r skills/* ~/openclaw-vps/.openclaw/skills/
# Option 3: rsync for faster sync over SSH
rsync -av skills/ user@remote-server:.openclaw/skills/
```
**Note:** OpenClaw searches for skills in `~/.openclaw/skills` or any `*/.openclaw/skills` folder.
## Creating New Skills
Use the skill-creator to scaffold new skills: