ClawLodge
Use ClawLodge to search, inspect, download, and publish OpenClaw workspaces. Trigger when the user wants to find reusable workspaces, compare versions, fetch...
ClawLodge
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.
Available commands
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
When to use what
- Use
clawlodge search "<query>"to find candidate workspaces. - Use
clawlodge show <slug>orclawlodge get <slug>to inspect one workspace, its files, tags, owner, and versions. - Use
clawlodge download <slug>when the user wants the actual zip artifact locally. - Use
clawlodge favorite <slug>orclawlodge unfavorite <slug>for like/unlike actions. - Use
clawlodge comment <slug> --content "..."to post a comment. - Use
clawlodge report <slug> --reason "..."to submit negative feedback. - Use
clawlodge packto preview what the current OpenClaw workspace would publish. - Use
clawlodge publishonly after the user clearly wants to publish.
Decision rule:
- If the user wants metadata, file lists, versions, author, tags, or source repo, use
show/get. - If the user wants a local file, installation artifact, zip package, or anything saved to disk, use
download. - Do not use
getorshowwhen the request mentionssave,download,zip,extract,install, or an output path.
Auth model
These read actions do not require login:
searchshowgetdownload
These write actions require a PAT:
favoriteunfavoritecommentreportpublish
Search workflow
- Run
clawlodge search "<query>". - Read the JSON output and compare:
slugnamesummarytagslatest_version
- If several matches look close, follow up with
clawlodge show <slug>on the best few candidates.
Hard rules:
- Limit search expansion to at most 3 search rounds for one user request.
- Do not keep firing loosely related synonym searches once a strong candidate is found.
- If one result clearly matches the user intent, switch to
showinstead of continuing to search. - Prefer one focused multi-term search over many single-word searches.
- Do not use old local extraction directories as search evidence. Only use:
- current
clawlodge searchoutput - current
clawlodge showoutput - files extracted from the current request's downloaded zip
- current
- Ignore stale directories under
/tmpunless they were created by the current task after the current download step.
Examples:
clawlodge search "openclaw memory"
clawlodge search "workflow" --sort new
Inspect workflow
Use show or get when the user wants details before deciding.
clawlodge show cft0808-edict
clawlodge get openclaw-config
Look for:
result.source_urlto verify the original repositoryresult.latest_versionto identify the default downloadable versionresult.versionsto compare release historyresult.latest.workspace_filesto understand what is actually shared
Hard rules:
showandgetare read-only metadata commands.showandgetdo not create files or directories.- Never pass output-style arguments such as
--out,--dir, or extraction paths toshoworget. - If the user asks for a local copy, switch to
download. - Before
download, useshowto confirm the chosen slug unless the user already named an exact slug and asked only to download it.
Download workflow
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:
- If
--versionis omitted, the CLI downloads the latest published version. - If
--outis omitted, the file is saved as<slug>-<version>.zipin the current directory.
Hard rules:
- Always use
downloadfor saved artifacts. - Use
--outonly withdownload. - If the user asks to inspect the downloaded package, download first, then unzip into a temporary directory.
- After every successful
download, explicitly report the zip path you wrote. - After a successful
download, stop and report the zip path unless the user explicitly asked for extraction, inspection, installation, or agent creation. - Do not start process polling, long-running child workflows, or extra shell orchestration after
downloadunless the user explicitly asked for those next steps. - Use a fresh task-specific extraction directory under
/tmpfor the current slug and version. - Do not read from unrelated old
/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
Local backup workflow
When a downloaded workspace may replace an existing local workspace, do not overwrite in place.
Preferred sequence:
- Download to a temporary zip path.
- Create a timestamped backup of the current workspace.
- Extract the new workspace into a separate temporary directory.
- Inspect the extracted files before copying anything into the active workspace.
- Only replace files after explicit user intent.
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:
- Never unpack a downloaded workspace directly into
~/.openclaw/workspace. - Never delete the current workspace before the backup exists.
- Prefer side-by-side comparison over in-place replacement.
- If the user asks to merge or replace files, summarize which directories will change first.
Install into a new agent
When the user wants to try a workspace without disturbing the current setup, use a new isolated OpenClaw agent.
Preferred sequence:
- Confirm the candidate with
clawlodge show <slug>. - Download to
/tmp/<slug>.zip. - Extract into
/tmp/<slug>-<version>/. - Inspect the extracted files and verify the package looks usable.
- Create a new agent with
openclaw agents add. - Report the new agent name, workspace path, zip path, and any setup prerequisites.
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:
- Do not create or modify a new agent until the download and extraction steps have succeeded.
- Do not point a new agent at a stale directory from an earlier task.
- Prefer a descriptive temporary agent name such as
<slug>-testor<role>-test. - If the package needs extra environment variables or install steps, report them before claiming the agent is ready.
- If the user only asked to compare or inspect, stop before
openclaw agents add.
Feedback workflow
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:
- These commands require a PAT-backed login.
- Prefer comments for constructive discussion.
- Prefer reports for moderation or quality issues.
Publish workflow
Only publish after explicit user intent.
- Confirm the current CLI identity:
clawlodge whoami
- If needed, log in:
clawlodge login
- Preview the payload:
clawlodge pack
- Publish:
clawlodge publish
Useful publish flags:
clawlodge publish --name "My Workspace"
clawlodge publish --readme /tmp/README.md
clawlodge publish --workspace ~/.openclaw/workspace
Safety rules
- Treat
publishas a write action. Do not run it unless the user clearly asks. - Treat
favorite,comment, andreportas write actions. Do not run them unless the user clearly asks. - Treat
loginas credential setup. Do not ask the user to paste tokens into shared logs. - Prefer
showbeforedownloadwhen you are not yet sure the slug is correct. - Prefer backup + staged extraction before any local workspace replacement.
- Never invent
get/showflags for output directories or downloads. - Do not claim ClawLodge supports CLI actions that do not exist yet.
Output style
When helping a user choose a workspace, summarize:
- why it matches
- which version looks current
- whether it has
skills/,memory/,workflows/,docs/, ordevops/
When publishing, always report:
- which workspace path was used
- resulting slug and version
- blocked or masked file counts if returned
Download
ZIP package — ready to use
Skill Info
- Creator
- memepilot
- Downloads
- 46
- Published
- Mar 15, 2026
- Updated
- Mar 16, 2026