← All skills
Tencent SkillHub · Communication & Collaboration

SDF COM Bridge

Bridge between SDF COM chatroom and Feishu-Lark messaging platform. Supports bi-directional message translation between English and Chinese, command executio...

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

Bridge between SDF COM chatroom and Feishu-Lark messaging platform. Supports bi-directional message translation between English and Chinese, command executio...

⬇ 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, _meta.json, requirements.txt, scripts/com_interaction.py, scripts/dependency_checker.py, scripts/error_recovery.py

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
2.0.0

Documentation

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

SDF COM Bridge

SDF COM chatroom to Feishu bridge with real-time message sync and translation.

Architecture

SSH Socket connects to SDF COM runs on remote Terminal Parser extracts messages Translator handles EN-ZH bidirectional translation Feishu Integration sends formatted messages

1. SSH Connection (scripts/ssh_connection.py)

Reuses ControlMaster socket for connection. from ssh_connection import SSHConnection conn = SSHConnection(user="yupeng", host="sdf.org") conn.connect("com -c") # Start COM conn.send("g anonradio\n") # Enter room

2. COM Interaction (scripts/com_interaction.py)

COM command wrapper. CommandFunctionDescriptionwget_users()List usersllist_rooms()List roomsgjoin_room("name")Join roomr/Rget_history(n)View historyssend_private(user, host, msg)Private messageeemote(action)Emote actionqquit()Exit COM

3. Terminal Parser (scripts/terminal_parser.py)

Extracts chat messages from terminal output. from terminal_parser import SimpleTextParser parser = SimpleTextParser() messages = parser.feed(raw_text)

4. Translator (scripts/translator.py)

English to Chinese translation. from translator import LLMTranslator translator = LLMTranslator() zh = translator.quick_translate_en_to_zh("hello")

5. Feishu Bridge (scripts/feishu_bridge.py)

Parse Feishu commands. CommandFormatFunctionSendcom: messageSend to COMStatuscom:pwdCheck connectionPrivmsgs: user@host messagePrivate message

6. Main Bridge (scripts/main.py)

Complete runtime example. from main import SDFComBridge bridge = SDFComBridge( user="yupeng", host="sdf.org", target_room="anonradio" ) bridge.start() bridge.handle_feishu_message("com: hello") bridge.stop()

Usage

Install dependencies: pip install -r requirements.txt Run directly: python scripts/main.py Test connection: python -c "from scripts.ssh_connection import SSHConnection; c = SSHConnection(); print(c._check_socket())"

Configuration

Edit main.py: bridge = SDFComBridge( user="yupeng", host="sdf.org", target_room="anonradio" )

Default Room

Auto-joins anonradio chatroom.

Message Flow

COM to Feishu: English messages auto-translated to Chinese Feishu to COM: Messages prefixed with "com:" sent to COM

Notes

Requires existing SSH ControlMaster socket Socket path: ~/.ssh/sockets/yupeng@sdf.org com command must be available on remote pyte requires correct terminal size (80x24 default)

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
3 Scripts1 Docs1 Config1 Files
  • SKILL.md Primary doc
  • scripts/com_interaction.py Scripts
  • scripts/dependency_checker.py Scripts
  • scripts/error_recovery.py Scripts
  • _meta.json Config
  • requirements.txt Files