Clawdbot Setup Guide
Description
Setup guide for ClawdBot - Claude Code custom Agent Skills framework
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
ClawdBot + MiniMax Coding Plan Setup
Deploy ClawdBot on Ubuntu VPS with MiniMax M2.1 as the AI backend.
⚠️ Security Warnings
**IMPORTANT:** Read these warnings before deploying ClawdBot in production.
Installation Security
- Curl-pipe-bash risk: The
curl | bashinstallation method executes remote code without inspection. Always review scripts before running:curl -fsSL https://clawd.bot/install.sh -o install.sh && less install.sh && bash install.sh - Verify checksums: When possible, verify package integrity before installation
API Keys & Credentials
- Never commit credentials: Do not commit
clawdbot.jsonwith API keys to version control. Add it to.gitignore - Use environment variables: Consider using
MINIMAX_API_KEY,TELEGRAM_BOT_TOKEN,DISCORD_BOT_TOKENenv vars instead of hardcoding in config - Restrict file permissions:
chmod 600 ~/.clawdbot/clawdbot.jsonto prevent other users from reading your credentials - Rotate keys regularly: If you suspect key exposure, regenerate immediately
Access Control ⚠️
dmPolicy: "open"+allowFrom: ["*"]= ANYONE can use your bot. This includes strangers, spammers, and malicious actors who will consume your API credits- Prefer
allowlistmode in production with explicit phone numbers/user IDs pairingmode adds friction but prevents unauthorized access- Monitor usage: Check
clawdbot logsregularly for unexpected activity
Network Security
gateway.bind: "loopback"(default) only accepts local connections - do not change to0.0.0.0unless behind a firewall- Firewall rules: If exposing the gateway port, restrict access via
ufworiptables - Use reverse proxy: For remote access, use nginx/caddy with TLS instead of exposing the port directly
Bot Token Security
- Telegram/Discord tokens grant full bot control. Treat them like passwords
- Revoke compromised tokens immediately: Use BotFather `/rev
Related Skills
Awesome Go
A curated list of awesome Go frameworks, libraries and software
Development next.js
| The React Framework | 138360 | 1503 | 1 |
Development sharing-skills
skill for guidance.
Development root-cause-tracing
Use when errors occur deep in execution and you need to trace back to find the original trigger.
Development Template Skill
Minimal skeleton for a new skill project structure.
Development Third-party Notices
THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THI
Development