โ† All skills
Tencent SkillHub ยท Communication & Collaboration

Approve new channels, and connections to openclaw ui and terminal

Web dashboard to approve OpenClaw device and channel pairings, manage connections, and access a live terminal from your browser.

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

Web dashboard to approve OpenClaw device and channel pairings, manage connections, and access a live terminal from your browser.

โฌ‡ 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
server.py, SKILL.md, templates/channel_approvals.html, templates/dashboard.html, templates/device_pairings.html, templates/index.html

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
1.0.1

Documentation

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

Approvals UI

A web dashboard for managing OpenClaw device pairings, channel approvals, and a live terminal โ€” all from your browser.

Install

Place this folder at: ~/.openclaw/workspace/projects/p1 Your file structure should look like: ~/.openclaw/workspace/projects/p1/ โ”œโ”€โ”€ SKILL.md โ”œโ”€โ”€ server.py โ””โ”€โ”€ templates/ โ”œโ”€โ”€ channel_approvals.html โ”œโ”€โ”€ dashboard.html โ”œโ”€โ”€ device_pairings.html โ”œโ”€โ”€ index.html โ”œโ”€โ”€ login.html โ””โ”€โ”€ terminal.html

Requirements

Install Python dependencies: pip install flask flask-socketio

โš ๏ธ Important โ€” Change These Before Running

This skill ships with placeholder credentials that you must change before using: Open server.py and update the following values near the top of the file: WhatVariableDefaultActionDashboard login usernameADMIN_USERNAMEDrinnasChange to your own usernameDashboard login passwordADMIN_PASSWORDadminChange to a strong passwordAPI auth passwordAUTH_PASSWORD / env SERVER_AUTH_PASSWORDBb7766!serverChange to a strong password or set the env varFlask secret keyenv FLASK_SECRET_KEYdev placeholderSet to a random string in your environment Example: export FLASK_SECRET_KEY="$(python3 -c 'import secrets; print(secrets.token_hex(32))')" export SERVER_AUTH_PASSWORD="your-strong-api-password-here" Do not run with the defaults. Anyone who knows the defaults can log in and access your terminal and gateway token.

Credential Explanation

There are two separate auth layers: Dashboard login (ADMIN_USERNAME / ADMIN_PASSWORD) โ€” protects the web UI pages (dashboard, device pairings, channel approvals, terminal). API password (AUTH_PASSWORD / env SERVER_AUTH_PASSWORD) โ€” protects the backend API endpoints (/pair, /sync, /approve) used for programmatic access. These endpoints are not exposed in the web UI but exist for automation/scripting. Both should be set to strong, unique values.

Usage

Start the server: cd ~/.openclaw/workspace/projects/p1 python3 server.py Then open http://127.0.0.1:9100 in your browser.

Features

Dashboard โ€” Landing page with quick navigation to all sections. Device Pairings โ€” View pending and paired browser/device connections. Approve or reject pairing requests. Copy your gateway token to clipboard. Channel Approvals โ€” Review and approve pending channel pairing requests (Telegram, Discord, WhatsApp, etc). Real-time updates via Socket.IO. Terminal โ€” Full interactive terminal session in the browser using xterm.js.

How It Works

Reads device pairings directly from ~/.openclaw/devices/pending.json and ~/.openclaw/devices/paired.json. Reads channel pairing requests from ~/.openclaw/credentials/*-pairing.json. Reads the gateway token from ~/.openclaw/openclaw.json โ†’ gateway.auth.token. Approve/reject actions use the openclaw devices approve and openclaw devices reject CLI commands. No external database needed โ€” everything reads from OpenClaw's own state files.

Security Notes

Localhost only โ€” The server binds to 127.0.0.1 by default. Do not change this to 0.0.0.0 unless you put it behind a reverse proxy with TLS and strong auth. Terminal access โ€” The terminal feature gives full shell access to your machine. If you don't need it, you can remove the /terminal route and terminal.html template. Sensitive files โ€” The app reads your openclaw.json (gateway token), device pairing files, and credential pairing files. Anyone who can access the web UI can see this data. API endpoints โ€” POST /pair, POST /sync, and POST /approve accept JSON with a password field. These are protected by AUTH_PASSWORD and are intended for scripting/automation, not the web UI.

Configuration

SettingLocationDefaultServer portserver.py bottom9100Dashboard loginserver.py ADMIN_USERNAME / ADMIN_PASSWORDDrinnas / adminAPI passwordserver.py AUTH_PASSWORD / env SERVER_AUTH_PASSWORDBb7766!serverFlask secret keyenv FLASK_SECRET_KEYdev placeholderOpenClaw state direnv OPENCLAW_STATE_DIR~/.openclaw

Tags

ui dashboard pairings approvals terminal web

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Files1 Docs1 Scripts
  • SKILL.md Primary doc
  • server.py Scripts
  • templates/channel_approvals.html Files
  • templates/dashboard.html Files
  • templates/device_pairings.html Files
  • templates/index.html Files