Cleanup: remove old status files, update AGENTS.md and README
This commit is contained in:
15
README.md
15
README.md
@@ -58,23 +58,28 @@ cp -r skills/* .opencode/skills/
|
||||
|
||||
## OpenClaw Installation
|
||||
|
||||
For OpenClaw, you can install skills to SSH-mounted folders or local `.openclaw/skills`:
|
||||
For OpenClaw, you need to install both skills AND credentials:
|
||||
|
||||
```bash
|
||||
# Option 1: SSH-mounted folder (dynamic detection)
|
||||
# OpenClaw uses any folder ending with .openclaw/skills
|
||||
# Option 1: Local OpenClaw folder
|
||||
mkdir -p ~/.openclaw/skills
|
||||
cp -r skills/* ~/.openclaw/skills/
|
||||
cp .env ~/.openclaw/.env
|
||||
|
||||
# Option 2: Remote server SSH folder
|
||||
# For example if your SSH mount is at ~/openclaw-vps/
|
||||
# Option 2: Remote server SSH mount (e.g. ~/openclaw-vps/)
|
||||
mkdir -p ~/openclaw-vps/.openclaw/skills
|
||||
cp -r skills/* ~/openclaw-vps/.openclaw/skills/
|
||||
cp .env ~/openclaw-vps/.openclaw/.env
|
||||
|
||||
# Option 3: rsync for faster sync over SSH
|
||||
rsync -av skills/ user@remote-server:.openclaw/skills/
|
||||
rsync -av .env user@remote-server:.openclaw/.env
|
||||
```
|
||||
|
||||
**What to copy:**
|
||||
- `skills/` - All skill folders
|
||||
- `.env` - Credentials (API keys, tokens)
|
||||
|
||||
**Note:** OpenClaw searches for skills in `~/.openclaw/skills` or any `*/.openclaw/skills` folder.
|
||||
|
||||
## Creating New Skills
|
||||
|
||||
Reference in New Issue
Block a user