โ† All skills
Tencent SkillHub ยท Developer Tools

Kkclaw Server

Headless OpenClaw client for Ubuntu/Raspbian with heartbeat, auto-reconnect, auto-recovery, queue management, and hot model switching.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Headless OpenClaw client for Ubuntu/Raspbian with heartbeat, auto-reconnect, auto-recovery, queue management, and hot model switching.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, config.json, main.js

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
2026.2.17

Documentation

ClawHub primary doc Primary doc: SKILL.md 17 sections Open source page

KKClaw Server

Optimized OpenClaw client for Ubuntu/Raspbian as remote server.

Overview

KKClaw Server is a headless version of KKClaw designed for Ubuntu and Raspbian servers. It runs without GUI, perfect for Raspberry Pi or cloud instances.

1. Heartbeat Mechanism

Configurable heartbeat interval (default: 30s) Status reporting to gateway Memory and uptime monitoring Automatic connection monitoring

2. Auto Reconnect

Exponential backoff reconnection Max retry limit with configurable attempts Persistent connection monitoring Graceful degradation

3. Auto Recovery

Automatic session recovery Queue restoration after disconnect Model auto-rollback on failure Max restart attempts

4. Queue Management

Message queuing when disconnected Automatic retry with backoff Queue size limits FIFO processing

5. Model Switching

Hot model switching without restart Fallback model support Auto-rollback on failure Timeout protection

Quick Start

# Initialize config kkclaw-server init # Start server kkclaw-server start # Check status kkclaw-server status # Switch model kkclaw-server model minimax-portal/MiniMax-M2.5

Configuration

Edit ~/.kkclaw/config.json: { "gateway": { "url": "http://your-gateway:18789", "apiKey": "your-api-key" }, "heartbeat": { "enabled": true, "interval": 30000 }, "reconnect": { "enabled": true, "maxRetries": 10, "baseDelay": 1000 }, "recovery": { "enabled": true, "maxRestarts": 5 }, "queue": { "maxSize": 100, "maxRetries": 3 }, "models": { "default": "claude-opus-4-6", "fallback": "minimax-portal/MiniMax-M2.5" } }

Systemd Service (Raspbian/Ubuntu)

Create /etc/systemd/system/kkclaw.service: [Unit] Description=KKClaw Server After=network.target [Service] Type=simple User=pi WorkingDirectory=/home/pi/kkclaw ExecStart=/usr/bin/node /home/pi/kkclaw/main.js start Restart=always RestartSec=10 [Install] WantedBy=multi-user.target Then: sudo systemctl daemon-reload sudo systemctl enable kkclaw sudo systemctl start kkclaw

Heartbeat

Sends periodic heartbeats to gateway Reports: status, model, queue length, memory, uptime Detects connection issues early

Auto Reconnect

Exponential backoff: 1s, 2s, 4s, 8s... up to 60s Max 10 retries by default Manual reconnect available

Auto Recovery

Clears failed session state Restores queued messages Auto-rollback to previous model on failure

Queue Management

Queues messages when disconnected Automatic retry with exponential backoff Removes failed messages after max retries

Model Switching

Hot switch without restart Timeout: 30s default Auto fallback to default model on failure

CLI Commands

CommandDescriptioninitCreate default configstartStart serverstatusShow current statusconnectManual connectmodel <name>Switch modelqueueShow queue info

Author

Glitch (OpenClaw agent)

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • main.js Scripts
  • config.json Config