clawgo-clone
/install clawgo-clone
ClawGo workspace sync skill
Download a zip from clawgo.me, back up existing files, and copy Markdown from the archive into the local OpenClaw workspace.
Service limits
- Base URL:
https://clawgo.me - Key: 12 alphanumeric characters (server normalizes to uppercase)
- Only
.zippayloads; requirestatus: readybefore download - Target folder:
~/.openclaw/workspace/
Workflow
Step 1 — Check key readiness
curl -s https://clawgo.me/api/clones/{key}/availability
available: trueandstatus: ready→ continuestatus: pending→ stop with error: "No zip uploaded for this key yet"- Missing key (404) → stop with error: "Key not found"
Step 2 — Download zip to a temp path
curl -s -L -o /tmp/clone-{key}.zip \
https://clawgo.me/api/clones/{key}/download
Verify: file size must be greater than zero.
Step 3 — Extract and inspect
mkdir -p /tmp/clone-{key}
unzip -o /tmp/clone-{key}.zip -d /tmp/clone-{key}/
Run these safety checks after extraction. If anything looks wrong, warn the user clearly and ask whether to proceed:
- List archive contents
- Require at least one of:
SOUL.md,AGENTS.md,TOOLS.md - If empty or none of the expected Markdown files → stop with error
Step 4 — Back up current workspace files
BACKUP_DIR="/tmp/backup-before-clone-$(date +%Y%m%d-%H%M%S)"
mkdir -p "$BACKUP_DIR"
WORKSPACE="$HOME/.openclaw/workspace"
for f in SOUL.md AGENTS.md TOOLS.md IDENTITY.md USER.md HEARTBEAT.md; do
[ -f "$WORKSPACE/$f" ] && cp "$WORKSPACE/$f" "$BACKUP_DIR/$f"
done
Tell the user the backup path so they can roll back manually if needed.
Step 5 — Write archive files into the workspace
WORKSPACE="$HOME/.openclaw/workspace"
SRC="/tmp/clone-{key}"
for f in SOUL.md AGENTS.md TOOLS.md IDENTITY.md USER.md HEARTBEAT.md; do
[ -f "$SRC/$f" ] && cp "$SRC/$f" "$WORKSPACE/$f"
done
Only files present in the zip are copied; local files missing from the zip are left unchanged (not removed).
Step 6 — Report results
Tell the user:
- Files successfully written from the zip
- Files skipped because they were absent from the zip
- Backup directory path
- Suggestion: run
/resetto restart the session so new workspace content loads
Workspace file reference
| File | Role |
|---|---|
SOUL.md |
Primary identity, reasoning style, behavioral guardrails |
AGENTS.md |
Session bootstrap, tool policy, hard limits |
TOOLS.md |
Local tooling notes and proxy routing |
IDENTITY.md |
Display name, role, emoji metadata |
USER.md |
User profile and session context |
HEARTBEAT.md |
Scheduled task notes |
Errors
| Situation | Action |
|---|---|
status: pending |
Stop; ask the user to upload a zip first |
| Key missing (404) | Stop; invalid key |
| No expected Markdown in zip | Stop; archive content does not match expectations |
| Downloaded file size is 0 | Stop; retry or report failure |
| Copy failed (permissions, etc.) | Report error; backup remains available |
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install clawgo-clone - 安装完成后,直接呼叫该 Skill 的名称或使用
/clawgo-clone触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
clawgo-clone 是什么?
Download a zip from clawgo.me by key, back up current workspace Markdown, then copy zip contents into the local OpenClaw workspace. Use when the user gives a... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 169 次。
如何安装 clawgo-clone?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawgo-clone」即可一键安装,无需额外配置。
clawgo-clone 是免费的吗?
是的,clawgo-clone 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
clawgo-clone 支持哪些平台?
clawgo-clone 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 clawgo-clone?
由 chenjunyeee(@chenjunyeee)开发并维护,当前版本 v1.0.1。