Skip to content

memepilot/clawlodge

Repository files navigation

ClawLodge

Discover and share powerful OpenClaw setups, skills, workflows, and guides.

OpenClaw Setups and Guides Community Uploads CLI MIT License

ClawLodge is a discovery and distribution hub for OpenClaw workspaces, agent setups, reusable skills, workflows, and memory systems. It combines a browsable web catalog, multilingual guide pages, and a CLI for searching, downloading, installing, publishing, and removing OpenClaw assets.

Instead of starting from scratch, you can inspect battle-tested configurations from other builders, install them into OpenClaw, and publish your own.

Website · Guides · Publish · Settings · CLI


Highlights

  • Browse published OpenClaw workspaces, skills, workflows, and memory systems
  • Install a lobster directly into OpenClaw with clawlodge install
  • Remove installed agents with clawlodge uninstall
  • Read multilingual guide pages under /guides, /zh, and /ja
  • Publish new assets from the web UI or CLI
  • Share detail pages with dynamic social preview images

Why ClawLodge

OpenClaw is flexible, but good setups take time to discover, compare, and reuse.

ClawLodge helps people:

  • start faster with proven setups
  • compare workspaces, skills, and workflows in one place
  • install real assets into OpenClaw
  • read guides for multi-agent configs, memory systems, and practical workflows
  • share tuned configurations with the rest of the ecosystem

Website

Screenshots

Home

ClawLodge home page screenshot

Lobster detail

ClawLodge lobster detail screenshot


CLI

Install the CLI:

npm install -g clawlodge-cli

Search:

clawlodge search multi-agent
clawlodge search memory

Inspect a lobster:

clawlodge show openclaw-config

Install into OpenClaw:

clawlodge install openclaw-config

Remove an installed agent:

clawlodge uninstall openclaw-config

Publish your default OpenClaw workspace:

clawlodge publish

Telemetry configuration:

clawlodge config get telemetry
clawlodge config set telemetry off
clawlodge config set telemetry anonymous

For advanced flags such as --workspace, --name, or --readme:

clawlodge help

What The Project Includes

  • Next.js web app
  • PostgreSQL-backed metadata and mirror tables
  • File-based lobster storage on the server
  • OpenClaw-oriented CLI for search, install, uninstall, download, and publish
  • Multilingual SEO routes for English, Chinese, and Japanese
  • Dynamic Open Graph / Twitter preview images for lobster detail pages

Local Development

git clone git@github.com:memepilot/clawlodge.git
cd clawlodge
cp .env.example .env.local
npm install
bash scripts/pg_tunnel_local.sh
DATABASE_URL=postgresql://postgres:clawlodge123@127.0.0.1:15432/clawlodge npm run dev

Open http://localhost:3000.


Self-Hosting

cp .env.production.example .env.production
mkdir -p /var/lib/clawlodge/storage
npm ci
npm run build
PORT=3001 npm run start

For production, keep uploaded assets outside the repository checkout and point the app at PostgreSQL:

DATABASE_URL=postgresql:///clawlodge?host=/var/run/postgresql
CLAWLODGE_DATA_DIR=/var/lib/clawlodge

Environment Variables

  • APP_ORIGIN: Public origin for absolute URLs
  • DATABASE_URL: PostgreSQL connection string for the application store
  • CLAWLODGE_DATA_DIR: Storage directory for uploaded assets and generated files
  • OPENROUTER_API_KEY: Required for server-side README generation
  • CLAWLODGE_README_MODEL: Optional README model override
  • GITHUB_CLIENT_ID: GitHub OAuth app client id
  • GITHUB_CLIENT_SECRET: GitHub OAuth app client secret
  • ALLOW_DEV_AUTH: Development-only auth bypass flag
  • NEXT_PUBLIC_GA_MEASUREMENT_ID: Optional Google Analytics measurement id

API Surface

  • GET /api/v1/lobsters
  • GET /api/v1/lobsters/[slug]
  • GET /api/v1/lobsters/[slug]/versions/[version]/download
  • POST /api/v1/workspace/publish
  • POST /api/v1/mcp/upload
  • GET /api/v1/auth/github/start
  • GET /api/v1/auth/github/callback

Support

If you like the project:

  • ⭐ Star the repo
  • 🦞 Publish a setup
  • 📚 Write or share guides
  • 📣 Share ClawLodge with other OpenClaw users
  • 🛠 Open a PR and help improve the platform

Tags

openclaw workspace agent-config multi-agent workflow memory-system ai-automation


License

MIT