clawdbot-ops
Use when starting, stopping, diagnosing, or troubleshooting Clawdbot. Includes gateway management, health checks, and common fixes.
Best use case
clawdbot-ops is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Use when starting, stopping, diagnosing, or troubleshooting Clawdbot. Includes gateway management, health checks, and common fixes.
Teams using clawdbot-ops should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/clawdbot-ops/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How clawdbot-ops Compares
| Feature / Agent | clawdbot-ops | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Use when starting, stopping, diagnosing, or troubleshooting Clawdbot. Includes gateway management, health checks, and common fixes.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Clawdbot Operations Guide ## Quick Reference ### Start Clawdbot ```bash # Start gateway (foreground, see logs) clawdbot gateway start # Start gateway as background daemon clawdbot gateway start --daemon # Check if running clawdbot gateway status ``` ### Stop Clawdbot ```bash # Stop gateway clawdbot gateway stop # Force stop if hung clawdbot gateway stop --force ``` ### Health Check & Diagnosis ```bash # Full health check with auto-fix suggestions clawdbot doctor # View recent logs clawdbot logs # View logs in real-time clawdbot logs --follow ``` ## Common Issues & Fixes ### Issue: Gateway won't start ```bash # 1. Check if already running clawdbot gateway status # 2. Kill zombie processes pkill -f clawdbot # 3. Check port conflicts (default: 18789) lsof -i :18789 # 4. Reset and restart clawdbot gateway stop --force clawdbot gateway start ``` ### Issue: RPC probe failed / Gateway connection error Symptoms: `gateway closed (1006 abnormal closure)`, `Gateway agent failed; falling back to embedded` ```bash # 1. Kill all clawdbot processes completely pkill -9 -f clawdbot # 2. Wait and reinstall gateway sleep 2 && clawdbot gateway install # 3. Wait for startup and verify sleep 5 && clawdbot gateway status # Should show: RPC probe: ok ``` ### Issue: Telegram/Discord not connecting ```bash # 1. Run doctor to diagnose clawdbot doctor # 2. Reconfigure credentials clawdbot configure # 3. Check device pairing clawdbot devices list ``` ### Issue: Config corruption ```bash # Backup exists at ~/.clawdbot/clawdbot.json.bak cp ~/.clawdbot/clawdbot.json.bak ~/.clawdbot/clawdbot.json # Or reset config entirely clawdbot reset --config ``` ### Issue: Skills not loading ```bash # Check skills status clawdbot plugins list # Reinstall a skill npx clawhub@latest install <skill-name> --force ``` ## Full Command Reference | Command | Description | |---------|-------------| | `clawdbot setup` | Initialize config and workspace | | `clawdbot onboard` | Interactive setup wizard | | `clawdbot configure` | Configure credentials & devices | | `clawdbot doctor` | Health checks + quick fixes | | `clawdbot gateway start` | Start the gateway | | `clawdbot gateway stop` | Stop the gateway | | `clawdbot gateway status` | Check gateway status | | `clawdbot logs` | View gateway logs | | `clawdbot logs --follow` | Tail logs in real-time | | `clawdbot dashboard` | Open Control UI | | `clawdbot devices list` | List paired devices | | `clawdbot reset` | Reset local config/state | | `clawdbot uninstall` | Full uninstall | ## Config Locations | Path | Purpose | |------|---------| | `~/.clawdbot/clawdbot.json` | Main config | | `~/.clawdbot/clawdbot.json.bak` | Config backup | | `~/.clawdbot/logs/` | Log files | | `~/.clawdbot/credentials/` | API keys & tokens | | `~/.clawdbot/telegram/` | Telegram session | | `~/.clawdbot/memory/` | Agent memory | ## Dev Mode For development/testing with isolated state: ```bash # Use dev profile (state in ~/.clawdbot-dev, port 19001) clawdbot --dev gateway start # Or use named profile clawdbot --profile test gateway start ``` ## Startup Checklist Before starting Clawdbot, verify: 1. **Config exists**: `ls ~/.clawdbot/clawdbot.json` 2. **No zombie processes**: `pgrep -f clawdbot` 3. **Port available**: `lsof -i :18789` 4. **Credentials set**: `clawdbot doctor` ## Emergency Recovery If everything is broken: ```bash # 1. Kill all processes pkill -9 -f clawdbot # 2. Backup current config cp ~/.clawdbot/clawdbot.json ~/.clawdbot/clawdbot.json.emergency-backup # 3. Reset (keeps CLI installed) clawdbot reset # 4. Re-run setup clawdbot onboard ```
Related Skills
podcastfy-clawdbot
Generate an AI podcast (MP3) from one or more URLs using the open-source Podcastfy project. Use when the user says “make a podcast from this URL/article/video/PDF”, “turn this webpage into a podcast”, or wants an MP3 conversation-style summary from links. Uses Gemini for transcript generation via GEMINI_API_KEY and Edge TTS for free voice.
clawdbot-update-plus
Full backup, update, and restore for Clawdbot - config, workspace, and skills with auto-rollback
clawdbot-dashboard
A beautiful, feature-rich dashboard for Clawdbot that displays workspace stats, memory, tasks, goals, analytics, and installed skills. Works with any Clawdbot installation - no database needed, all data from workspace files.
clawdbot-config
Comprehensive Clawdbot configuration and skills system management. Use when working with Clawdbot setup, configuration files, creating/modifying AgentSkills-compatible skills with YAML frontmatter, troubleshooting agent behavior, managing channels, workspace, sandbox, or multi-agent routing.
bgo
Automates the complete Blender build-go workflow, from building and packaging your extension/add-on to removing old versions, installing, enabling, and launching Blender for quick testing and iteration.
privgraph
Privacy and security annotation for Mermaid diagrams. Use this skill when: (1) a user shares or creates a Mermaid flowchart or sequence diagram and asks for privacy, security, or compliance review, (2) a user asks to annotate a diagram with data classifications, controls, trust boundaries, or compliance scope, (3) a user mentions 'privgraph', '@pg:', or 'risk-informed diagram', (4) a user asks about data flow risks, missing controls, or GDPR/HIPAA/PCI compliance gaps in an architecture diagram, (5) a user is writing a design doc with Mermaid diagrams and wants privacy/security feedback embedded in the diagram itself. Do NOT use for general Mermaid syntax help, diagram styling, or non-security topics.
prisma-workflow
Prisma workflow for schema changes, migrations, and common pitfalls in this repo.
prisma-v7
Expert guidance for Prisma ORM v7 (7.0+). Use when working with Prisma schema files, migrations, Prisma Client queries, database setup, or when the user mentions Prisma, schema.prisma, @prisma/client, database models, or ORM. Covers ESM modules, driver adapters, prisma.config.ts, Rust-free client, and migration from v6.
prisma-orm
Type-safe database access with Prisma ORM. Covers schema design, migrations, relations, queries, and TypeScript integration. Use when working with Prisma, database modeling, or building type-safe data layers for Node.js/TypeScript projects.
prisma-expert
Prisma ORM expert for schema design, migrations, query optimization, relations modeling, and database operations. Use PROACTIVELY for Prisma schema issues, migration problems, query performance, relation design, or database connection issues.
prisma-docs
Local Prisma documentation reference. Use when asked about Prisma ORM, Prisma Client, Prisma Schema, migrations, database queries, Prisma Accelerate, or Prisma Postgres.
prisma-database-setup
Guides for configuring Prisma with different database providers (PostgreSQL, MySQL, SQLite, MongoDB, etc.). Use when setting up a new project, changing databases, or troubleshooting connection issues. Triggers on "configure postgres", "connect to mysql", "setup mongodb", "sqlite setup".