← Back to Skills Marketplace
luobusita-ai

移动网大自动挂机Skill

by 罗布斯塔 · GitHub ↗ · v0.7.0 · MIT-0
cross-platform ⚠ suspicious
88
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install tmd-wangda
Description
帮助用户完成中移网大(https://wangda.chinamobile.com)相关课程的学习,当用户需要学习网大课程(例如学习新课程,查询学习进度或终止学习等)或用户提供的url域名是(wangda.chinamobile.com)时使用此技能
Usage Guidance
这个技能确实实现了在本地自动控制浏览器以完成网大课程,但存在若干需要你在决定安装/运行前确认的点: - 元数据没有列出但代码需要的环境变量:确认并设置(或检查)这些变量的含义和路径,主要是 _WANGDA_DEBUG_PORT(DevTools 端口)、_WANGDA_USER_DATA_DIR(Chrome 用户数据目录,可能含 Cookies/登录信息)、_WANGDA_SESSION_FILE(本地会话存储文件)、_WANGDA_DOC_DUMP_DIR 等。 - _WANGDA_USER_DATA_DIR 指向的目录可能包含敏感个人信息(浏览器 cookies、已登录会话等)。最好为此技能创建并使用独立的、空白的 Chrome 用户数据目录或在隔离环境(VM/容器)中运行,以避免泄露个人浏览器数据。 - 技能会创建/修改系统定时任务(cron 或 Windows schtasks)来保持挂起运行,且能删除这些任务。安装前请确认你接受脚本修改定时任务的行为;安装后检查 crontab/schtasks 确认条目内容。 - 技能包含一个本地 Chrome 扩展(stealth-extension),会被加载到启动的 Chrome 实例中。若安全敏感,请查看该扩展(stealth.js/manifest.json)的代码以确认其行为。 - 技能会模拟点击、填写短信验证码并读取页面内容:这意味着在登录过程中你可能需要输入手机/短信验证码;注意不要把真实长期有效凭证放入共享或主用户数据目录。 - 建议在受控/临时环境中首次运行(比如临时用户目录、虚拟机或容器),阅读并审核脚本(尤其是 stealth-extension、chrome_tools.py、login_tools.py、session_tools.py)以确认没有你不期望的外发网络请求或数据上传。技能包未声明外部网络回传,但最好在网络受控的环境下观察其行为。 如果你不熟悉这些操作或不能运行在隔离环境中,建议不要安装或运行此技能;若决定使用,请先手动审查并按上面建议设置专用配置和目录。
Capability Analysis
Type: OpenClaw Skill Name: tmd-wangda Version: 0.7.0 The skill bundle is designed to automate course completion on the China Mobile Wangda platform (wangda.chinamobile.com). It employs high-risk techniques including the creation of persistent scheduled tasks via crontab and schtasks (scripts/tools.py) and the use of a custom Chrome extension (scripts/stealth-extension/stealth.js) to bypass anti-automation and anti-debugging measures. While these capabilities are functional for the stated purpose of 'auto-study,' the use of persistence mechanisms and stealth evasion techniques to circumvent platform security represents a significant security risk and potential violation of platform policies.
Capability Assessment
Purpose & Capability
技能目的(在 wangda.chinamobile.com 上自动挂机学习)与代码行为大体一致:代码通过 Chrome Remote Debugging 控制浏览器、解析页面并自动操作以完成课程,这些行为符合自动化学习工具。然而,代码实际依赖于若干用于本地 Chrome 调试和会话存储的环境变量(如 _WANGDA_DEBUG_PORT、_WANGDA_USER_DATA_DIR、_WANGDA_SESSION_FILE、_WANGDA_DOC_DUMP_DIR 等),但注册元数据声明“Required env vars: none”,这与实现不一致,降低透明度。
Instruction Scope
SKILL.md 指示使用 python scripts/tools.py <command> 的工具命令来控制流程。工具代码会:启动/结束/kill Chrome、通过 remote-debugging 与页面交互(读取 DOM、注入点击/输入)、获取/填充短信验证码、读取/写入本地 session 文件、以及在用户同意或按逻辑时移除/设置定时任务。SKILL.md 没有明确列出必须的环境变量或明确告知会访问本地浏览器数据、session 文件路径、或会创建系统级定时任务,说明运行时作用域与文档不匹配。
Install Mechanism
无安装规格(instruction-only + 附带脚本),没有从外部URL下载或安装二进制的行为。所有代码随技能包提供,未见远程下载/执行外部归档的高风险安装步骤。
Credentials
代码大量依赖并读取多个高度敏感的本地环境变量和路径(例如 _WANGDA_USER_DATA_DIR 会指向 Chrome 的用户数据目录,包含 Cookies/登录状态;_WANGDA_SESSION_FILE 指定可读写的会话文件;_WANGDA_DEBUG_PORT 暴露 Chrome DevTools 接口)。但技能声明未列出任何必需的环境变量 —— 这是不成比例且不透明的。访问这些本地数据对“自动学习”有技术理由,但用户应该被明确告知并核验变量值与存放位置。
Persistence & Privilege
工具会在用户启动 auto-study 时创建/更新系统级定时任务(cron 或 Windows schtasks),并能删除同类任务。这给技能以持久化运行的能力并修改用户 crontab/schtasks;虽然行为与在后台定期检查学习进度相关,但应当在安装/运行前明确告知并征得权限确认。技能未在元数据或 SKILL.md 中清晰声明会修改定时任务,属于需要注意的特权行为。
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install tmd-wangda
  3. After installation, invoke the skill by name or use /tmd-wangda
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.7.0
tmd-wangda v0.7.0 - Improved documentation in SKILL.md for clearer explanations of course, courseware, and session concepts. - Detailed the main features: tracking course progress, adding new courses to study, login situations, and terminating existing courses. - Clarified tool command usage for all major workflows. - Provided step-by-step login process and session/account management instructions. - Added guidance for handling multiple scenarios, such as switching accounts and summarizing progress.
Metadata
Slug tmd-wangda
Version 0.7.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 移动网大自动挂机Skill?

帮助用户完成中移网大(https://wangda.chinamobile.com)相关课程的学习,当用户需要学习网大课程(例如学习新课程,查询学习进度或终止学习等)或用户提供的url域名是(wangda.chinamobile.com)时使用此技能. It is an AI Agent Skill for Claude Code / OpenClaw, with 88 downloads so far.

How do I install 移动网大自动挂机Skill?

Run "/install tmd-wangda" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 移动网大自动挂机Skill free?

Yes, 移动网大自动挂机Skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 移动网大自动挂机Skill support?

移动网大自动挂机Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 移动网大自动挂机Skill?

It is built and maintained by 罗布斯塔 (@luobusita-ai); the current version is v0.7.0.

💬 Comments