← 返回 Skills 市场
135
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install guoshun-vpn-nodes
功能描述
国顺VPN节点获取技能 - 江苏国顺智能科技有限公司专用。自动搜索、测试并整理可用的V2Ray/Clash免费节点订阅链接,验证可用性,输出可导入的节点配置。功能包括:(1)搜索最新免费节点订阅 (2)验证节点可用性 (3)输出各客户端导入教程。使用场景:员工需要VPN时触发,自动获取可用节点并指导导入。
使用说明 (SKILL.md)
国顺VPN节点获取技能
功能概述
当员工需要VPN上网时,自动执行以下操作:
- 从多个来源搜索最新的V2Ray/Clash免费节点
- 实际测试这些订阅链接的可用性(HTTP状态码)
- 整理出可用的订阅链接
- 根据用户使用的客户端,提供具体的导入教程
输出格式
📡 今日可用VPN节点(2026-XX-XX)
✅ 已验证可用的订阅链接:
【电脑客户端 - Clash for Windows】
订阅地址:https://xxx
节点数量:xx个
覆盖地区:xx/xx/xx
【手机客户端 - V2RayNG / Shadowrocket】
订阅地址:https://xxx
---
📱 导入教程:
(根据客户端类型给出具体步骤)
已知可靠的订阅来源
2026-04-03 验证结果
| 来源 | 订阅类型 | 状态 | 节点数 | 备注 |
|---|---|---|---|---|
| yoyapai.com | Clash/YAML | ✅ | 78个 | 综合多协议 |
| yoyapai.com | V2Ray/TXT | ✅ | 48个 | VMess/VLESS/Trojan |
| naidounode.cczzuu.top | v2ray | ✅ | 48个 | 每日更新 |
节点搜索关键词
v2ray 免费节点 2026clash 免费订阅 2026vmess vless free node April 2026free vpn subscription 2026
验证方法
使用 curl 测试订阅链接:
curl -s -o /dev/null -w "%{http_code} %{time_total}s %{url_effective}" \x3C订阅链接> --max-time 10
状态码200 = 可用
各客户端导入教程
1. Clash for Windows(电脑)
- 下载 Clash for Windows:https://github.com/Fndroid/clash_for_windows_pkg/releases
- 打开软件 → 点击左侧「配置」
- 点击「新建」
- 粘贴订阅地址(YAML格式)→ 点击下载
- 选择节点 → 点击「代理」启用
2. V2RayNG(安卓)
- 下载 V2RayNG(应用商店搜索或GitHub)
- 打开 → 点击右上角「订阅」
- 点击「添加订阅」
- 粘贴订阅地址(VMess格式)
- 点击更新,导入节点
- 选择节点 → 点击V字图标连接
3. Shadowrocket(iOS)
- App Store下载 Shadowrocket
- 打开 → 点击右上角「+」
- 类型选择「Subscribe」
- 粘贴订阅地址
- 点击完成,自动更新节点
- 选择节点,开启VPN
4. Clash for Android
- 下载 Clash for Android(GitHub)
- 打开 → 点击「配置」
- 点击「新建配置」或「从URL导入」
- 粘贴订阅地址 → 确认
- 选择节点 → 点击连接
5. Stash(iOS,Clash Meta)
- App Store下载 Stash
- 打开 → 点击左侧「配置」
- 点击「远程」
- 点击「添加」
- 粘贴订阅地址 → 保存
- 选择节点,开启VPN
注意事项
- 免费节点可能随时失效,建议保存多个来源
- 使用VPN时避免访问敏感网站
- 重要账户操作建议断开VPN
- 建议使用前将DNS设为8.8.8.8或114.114.114.114
调用方式
用户说"我要VPN"、"帮我找节点"、"需要翻墙"等时触发。
安全使用建议
This skill appears to do what it claims: gather and do a basic availability check on free V2Ray/Clash subscription links. Before installing, consider: (1) policy — using free VPN nodes may violate company security or acceptable-use policies; check with IT. (2) Trust — the skill points to third-party domains (yoyapai.com, naidounode.cczzuu.top); verify those sources yourself because malicious or compromised nodes can intercept traffic. (3) Verification limits — the curl HTTP-200 check only confirms the URL is reachable, not that the node properly proxies traffic or is safe; a stronger test would attempt proxying traffic through the node. (4) Client safety — downloading proxy clients from unofficial sources can be risky; prefer official releases. (5) Sensitive actions — do not use these free nodes for banking or sensitive logins. If you want a higher assurance assessment, provide logs showing exactly what external requests the agent will make or have IT vet the listed provider domains and run an actual connection-through-proxy test.
功能分析
Type: OpenClaw Skill
Name: guoshun-vpn-nodes
Version: 1.0.0
The skill bundle is designed to automate the discovery and verification of free VPN subscription nodes, which involves executing network requests (`curl`) against unverified external domains such as yoyapai.com and cczzuu.top. While the code in SKILL.md and references/verified-nodes.md is transparent and lacks direct evidence of malicious intent (like data exfiltration), the tool's primary function is to facilitate the bypass of network security controls and encourage the use of third-party proxy configurations. These are considered high-risk behaviors as they can lead to traffic interception or the introduction of malicious configurations into a user's environment.
能力评估
Purpose & Capability
The name/description (gather and verify free V2Ray/Clash nodes) matches the SKILL.md and the included verified-nodes references. No unexpected env vars, binaries, or install actions are requested that would be unrelated to fetching/testing subscription URLs.
Instruction Scope
Instructions are focused on searching for subscription links, testing them with curl (HTTP status), and producing import tutorials; they do not instruct reading local files or using credentials. Concern: the verification method relies only on HTTP status codes (curl returning 200) which can yield false positives — it doesn't validate that the VPN proxy actually forwards traffic or that credentials/protocols work. Search steps are high-level (keywords) and may imply web scraping of third-party sites, but that is within the stated purpose.
Install Mechanism
Instruction-only skill with no install spec and no code files. This is low risk from an install/execution perspective because nothing is written to disk by the skill package itself.
Credentials
The skill requests no environment variables, credentials, or config paths — appropriate for a tool that only aggregates public subscription URLs. The provided content references external provider URLs, but the skill itself does not ask for secrets.
Persistence & Privilege
always is false and the skill does not request elevated or persistent system privileges. Autonomous invocation is allowed (platform default) but is not combined with other concerning privileges.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install guoshun-vpn-nodes - 安装完成后,直接呼叫该 Skill 的名称或使用
/guoshun-vpn-nodes触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
guoshun-vpn-nodes v1.0.0 - Initial release
- 自动搜索、测试并整理可用的V2Ray/Clash免费VPN节点订阅链接
- 验证订阅可用性,根据不同客户端输出导入教程
- 针对江苏国顺智能科技有限公司员工需求设计
- 支持多客户端(Clash for Windows, V2RayNG, Shadowrocket, Clash for Android, Stash)
- 提供节点订阅来源和测试方法说明
元数据
常见问题
国顺VPN节点获取 是什么?
国顺VPN节点获取技能 - 江苏国顺智能科技有限公司专用。自动搜索、测试并整理可用的V2Ray/Clash免费节点订阅链接,验证可用性,输出可导入的节点配置。功能包括:(1)搜索最新免费节点订阅 (2)验证节点可用性 (3)输出各客户端导入教程。使用场景:员工需要VPN时触发,自动获取可用节点并指导导入。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 135 次。
如何安装 国顺VPN节点获取?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install guoshun-vpn-nodes」即可一键安装,无需额外配置。
国顺VPN节点获取 是免费的吗?
是的,国顺VPN节点获取 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
国顺VPN节点获取 支持哪些平台?
国顺VPN节点获取 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 国顺VPN节点获取?
由 jimmygx(@jimmygx)开发并维护,当前版本 v1.0.0。
推荐 Skills