# opencli-plugin-wangda **Repository Path**: evlon/opencli-plugin-wangda ## Basic Information - **Project Name**: opencli-plugin-wangda - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-07-12 - **Last Updated**: 2026-07-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # opencli-plugin-wangda 网大(中国移动网上大学)opencli plugin。 ## 安装 ```bash opencli plugin install git@gitee.com:evlon/opencli-plugin-wangda.git ``` ## 命令 | 命令 | 类型 | 说明 | |---|---|---| | `exam-status` | read | 考试状态:倒计时、已答/未答数量 | | `exam-questions` | read | 列出所有题目、类型、选项 | | `exam-answer` | read | 查询单题答案(后端库 > 历史记录 > 单题查询) | | `exam-select` | write | 切换到指定题目并选择选项 | | `exam-submit` | write | 交卷 | | `anti-cheat` | write | 检查/解除反作弊(`--disable`) | | `exam-auto` | write | 一键全自动(解除反作弊+查答案+作答) | ## Agent 工作流 ``` exam-status # 检查考试状态 anti-cheat --disable # 解除反作弊 exam-questions # 获取所有题目列表 # 逐题处理: exam-answer # 查询答案 exam-select --values 0,1,2 # 选择选项 exam-status # 确认全部已答 exam-submit # 交卷 ``` ## 用法示例 ```bash # 查看考试状态 opencli wangda exam-status # 解除反作弊 opencli wangda anti-cheat --disable # 列出所有题目 opencli wangda exam-questions # 查询第1题答案 opencli wangda exam-answer 1314c8b8-b64f-4070-9aef-a946345f06b1 # 选择第1题的选项 D(value=3) opencli wangda exam-select 1314c8b8-b64f-4070-9aef-a946345f06b1 --values 3 # 多选题选 ABC(value=0,1,2) opencli wangda exam-select 469e5b68-2a46-4178-9482-4a0571ed3360 --values 0,1,2 # 交卷 opencli wangda exam-submit # 一键全自动(含交卷) opencli wangda exam-auto --submit ``` 所有命令需在网大考试答题页(`https://wangda.chinamobile.com/#/exam/exam/paper/`)上运行。