Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

wcs-helper-network-skillwcs 助手网络技能

Agent Skill

wcs-helper-network-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,105

周安装

132

GitHub Stars

公开资料未说明

下载量

1,088
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:wcs-helper-network-skill(wcs 助手网络技能)
来源仓库:https://github.com/guanqi0914/wcs-helper-network-skill
安装命令:
openclaw skills install wcs-helper-network-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install wcs-helper-network-skill

简介

为中国服务器提供国际网站访问通道,支持 GitHub、Google 等平台直连。

  • 适用于受防火墙限制的开发者进行代码托管或模型下载操作。
  • 基于 SSH 隧道技术,单次密码验证即可建立持久连接会话。
  • 流量经第三方服务器中转,存在隐私风险,不建议传输敏感数据。
  • 免费额度有限,长期使用需自行维护跳板机或升级服务方案。

SKILL.md

name
wcs-helper-network-skill
description
SSH tunnel for China servers to access internationally blocked sites (GitHub, ClawHub, HuggingFace, arXiv, Google, YouTube). Password-auth based, one-command setup, auto-reconnect.
metadata
openclaw
tags
["network", "proxy", "github", "china", "ssh", "tunnel", "proxychains", "autossh"]
user-invocable
true
version
1.0.0

WCS Helper: Network Tunnel

Access internationally blocked websites from your China-based server.

When You Need This

Scenario A — "git push keeps timing out"

git push github main
# → Connection timeout

/万重山-隧道-开启 → try push again → succeeds

Scenario B — "npm install keeps failing for a package from GitHub"

npm install some-github-package
# → network timeout

/万重山-隧道-开启 → npm works through tunnel

Scenario C — "HuggingFace model download is stuck"

huggingface-cli download ...
# → timeout or connection reset

/万重山-隧道-开启 → download completes through tunnel

Scenario D — "ClawHub skill install is super slow"

clawhub install author/skill
# → extremely slow, often fails

/万重山-隧道-开启 → ClawHub installs at full speed


Supported Sites

SiteUse CaseStatus
GitHubgit clone/push, npm packages
ClawHubskill install, plugin browsing
HuggingFacemodel downloads, datasets
arXivresearch paper access
Googlesearch, fonts, analytics
YouTubevideo embeds, APIs
Twitter/Xsocial media embeds
Redditforum access, APIs

Prerequisites

Required

  • A server outside China (any VPS with SSH access)

- Recommended: Tencent Cloud Singapore, AWS Singapore, or any international VPS - SSH password authentication must be enabled

  • SSH password for that server
  • Server's public IP address

Recommended

  • autossh installed on your China server (auto-restarts tunnel if it drops)

- Install: apt install autossh (Debian/Ubuntu)

  • sshpass installed (for password-based SSH)

- Install: apt install sshpass

Network Flow

Your China Server (autossh client)
        ↓ SSH tunnel (encrypted)
Singapore/International VPS (as SOCKS5 proxy)
        ↓
GitHub / ClawHub / HuggingFace / Google

Setup

1. Get a Tunnel Server

Any international VPS works. Recommended:

  • Tencent Cloud Singapore (CNY ~15/month)
  • AWS Singapore Free Tier
  • DigitalOcean Singapore
  • Vultr Tokyo/Singapore

Requirements:

  • SSH password access enabled
  • Port 22 (SSH) open to China IPs

2. Install the Skill

npx -y clawhub install guanqi0914/wcs-helper-network-skill

3. Configure with Your Server

Send this command via Feishu private chat:

/万重山-隧道-配置 服务器IP SSH端口 用户名 密码

Example:

/万重山-隧道-配置 43.134.164.43 22 ubuntu myPassword123

4. Start the Tunnel

/万重山-隧道-开启

You should see: ✅ Tunnel connected

5. Test It

curl --socks5 127.0.0.1:1080 https://api.github.com
# Should return: HTTP 200

All Commands

CommandWhat It Does
/万重山-隧道-配置 <IP> <端口> <用户> <密码>Set up tunnel server credentials
/万重山-隧道-开启Start the tunnel
/万重山-隧道-关闭Stop the tunnel
/万重山-隧道-状态Show tunnel connection status
/万重山-隧道-测试Test tunnel speed
/万重山-隧道-帮助Show help

Usage Tips

Before Running git/npm Commands

Send /万重山-隧道-状态 first. If you see "Tunnel: ✅", you're good. If "Tunnel: ❌", send /万重山-隧道-开启 first.

Tunnel Stays On Until You Close It

The tunnel runs in the background. Send /万重山-隧道-关闭 when you don't need international access any more.

Which Ports Are Proxied

Only TCP connections through the SOCKS5 proxy are tunneled:

  • GitHub (443) ✅
  • ClawHub (443) ✅
  • HuggingFace (443) ✅
  • Google (443) ✅

UDP traffic (some gaming, VoIP) is NOT proxied.


How It Works

Connection Process

1. autossh connects to your international server via SSH
   sshpass -p 'password' ssh -N -D 127.0.0.1:1080 user@server-ip

2. SSH creates encrypted tunnel

3. autossh monitors the tunnel every 30 seconds

4. If tunnel drops → autossh auto-restarts it

5. Applications use 127.0.0.1:1080 as SOCKS5 proxy

Without the Tunnel (Direct Connection)

China Server → GitHub/ClawHub/HuggingFace
  ↓
Connection timeout / reset / very slow

With the Tunnel

China Server → SSH Tunnel → International VPS → GitHub/ClawHub/HuggingFace
                         ↓
              Stable encrypted connection

Performance

MetricValue
Tunnel latency~50-100ms (China → Singapore)
GitHub clone speed500KB/s - 5MB/s
ClawHub install1-5 seconds
Proxy overhead~5-10% bandwidth

Troubleshooting

"Tunnel: ❌ Connection failed" → Check server IP, SSH port, username, password → Make sure SSH password auth is enabled on your VPS

"Tunnel connects but git push still times out" → Try again — GitHub sometimes rate-limits tunnel IPs temporarily → If persistent, your VPS IP may be on GitHub's blacklist

"autossh process not running after server restart" → Send /万重山-隧道-开启 to restart manually → Or set up systemd service (advanced — see auto-fix.sh)

"SSH connection refused" → Check if port 22 is open on your VPS firewall → Try SSH port 2222 if 22 is blocked


Security Notes

  • The tunnel only handles outbound connections from your China server
  • Your VPS provider can see the traffic (GitHub, ClawHub, etc.) but NOT your China server's other traffic
  • No data is stored on the VPS — only encrypted transit
  • Tunnel credentials are stored locally in ~/.wcs_tunnel.conf (chmod 600)

Uninstall

# Stop tunnel
/万重山-隧道-关闭

# Remove skill files
rm -rf ~/.openclaw/workspace/skills/wcs-helper-network-skill
rm -f ~/.wcs_tunnel.conf

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.47%
按下载量换算810

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills