Use ClawLodge to search, inspect, download, and publish OpenClaw workspaces. Trigger when the user wants to find reusable workspaces, compare versions, fetch...
Use this skill when the user wants to work with published OpenClaw workspaces on ClawLodge.
Prefer the clawlodge CLI over manual browser steps. The default origin is https://clawlodge.com, so you usually do not need --origin.
clawlodge --version
clawlodge login
clawlodge whoami
clawlodge search "memory"
clawlodge show openclaw-config
clawlodge get openclaw-config
clawlodge download openclaw-config --version 0.13.1 --out /tmp/openclaw-config.zip
clawlodge favorite openclaw-config
clawlodge unfavorite openclaw-config
clawlodge comment openclaw-config --content "Useful setup"
clawlodge report openclaw-config --reason "Contains broken publish output"
clawlodge pack
clawlodge publish
clawlodge search "<query>" to find candidate workspaces.clawlodge show <slug> or clawlodge get <slug> to inspect one workspace, its files, tags, owner, and versions.clawlodge download <slug> when the user wants the actual zip artifact locally.clawlodge favorite <slug> or clawlodge unfavorite <slug> for like/unlike actions.clawlodge comment <slug> --content "..." to post a comment.clawlodge report <slug> --reason "..." to submit negative feedback.clawlodge pack to preview what the current OpenClaw workspace would publish.clawlodge publish only after the user clearly wants to publish.Decision rule:
show/get.download.get or show when the request mentions save, download, zip, extract, install, or an output path.These read actions do not require login:
searchshowgetdownloadThese write actions require a PAT:
favoriteunfavoritecommentreportpublishclawlodge search "<query>".slugnamesummarytagslatest_versionclawlodge show <slug> on the best few candidates.Hard rules:
show instead of continuing to search.clawlodge search outputclawlodge show output/tmp unless they were created by the current task after the current download step.Examples:
clawlodge search "openclaw memory"
clawlodge search "workflow" --sort new
Use show or get when the user wants details before deciding.
clawlodge show cft0808-edict
clawlodge get openclaw-config
Look for:
result.source_url to verify the original repositoryresult.latest_version to identify the default downloadable versionresult.versions to compare release historyresult.latest.workspace_files to understand what is actually sharedHard rules:
show and get are read-only metadata commands.show and get do not create files or directories.--out, --dir, or extraction paths to show or get.download.download, use show to confirm the chosen slug unless the user already named an exact slug and asked only to download it.Use download when the user wants to install, inspect offline, or reuse a workspace.
clawlodge download openclaw-config
clawlodge download cft0808-edict --version 0.1.1 --out /tmp/cft0808-edict.zip
Notes:
--version is omitted, the CLI downloads the latest published version.--out is omitted, the file is saved as <slug>-<version>.zip in the current directory.Hard rules:
download for saved artifacts.--out only with download.download, explicitly report the zip path you wrote.download, stop and report the zip path unless the user explicitly asked for extraction, inspection, installation, or agent creation.download unless the user explicitly asked for those next steps./tmp for the current slug and version./tmp/*inspect* directories.Example:
clawlodge download openclaw-config --out /tmp/openclaw-config.zip
mkdir -p /tmp/openclaw-config-inspect
unzip -o /tmp/openclaw-config.zip -d /tmp/openclaw-config-inspect
When a downloaded workspace may replace an existing local workspace, do not overwrite in place.
Preferred sequence:
Example shell flow:
clawlodge download openclaw-config --out /tmp/openclaw-config.zip
cp -R ~/.openclaw/workspace ~/.openclaw/workspace.backup-$(date +%Y%m%d-%H%M%S)
mkdir -p /tmp/openclaw-config
unzip -o /tmp/openclaw-config.zip -d /tmp/openclaw-config
Rules:
~/.openclaw/workspace.When the user wants to try a workspace without disturbing the current setup, use a new isolated OpenClaw agent.
Preferred sequence:
clawlodge show <slug>./tmp/<slug>.zip./tmp/<slug>-<version>/.openclaw agents add.Example:
clawlodge show openclaw-config
clawlodge download openclaw-config --out /tmp/openclaw-config.zip
mkdir -p /tmp/openclaw-config-0.13.1
unzip -o /tmp/openclaw-config.zip -d /tmp/openclaw-config-0.13.1
openclaw agents add openclaw-config-test --workspace /tmp/openclaw-config-0.13.1 --non-interactive
Rules:
<slug>-test or <role>-test.openclaw agents add.Use write actions only after explicit user intent.
clawlodge favorite openclaw-config
clawlodge unfavorite openclaw-config
clawlodge comment openclaw-config --content "Helpful memory layout and publish flow."
clawlodge report openclaw-config --reason "README still references an outdated setup step"
Notes:
Only publish after explicit user intent.
clawlodge whoami
clawlodge login
clawlodge pack
clawlodge publish
Useful publish flags:
clawlodge publish --name "My Workspace"
clawlodge publish --readme /tmp/README.md
clawlodge publish --workspace ~/.openclaw/workspace
publish as a write action. Do not run it unless the user clearly asks.favorite, comment, and report as write actions. Do not run them unless the user clearly asks.login as credential setup. Do not ask the user to paste tokens into shared logs.show before download when you are not yet sure the slug is correct.get/show flags for output directories or downloads.When helping a user choose a workspace, summarize:
skills/, memory/, workflows/, docs/, or devops/When publishing, always report:
ZIP package — ready to use