← 返回 Skills 市场
bianmaxingkong

日语会话测试批改

作者 bianmaxingkong · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
32
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install japanese-conversation-scorer
功能描述
日语会话测试批改。学生录制会话问答录音(老师提问,学生回答),AI根据标准答案逐题评分、纠错、给出巩固建议。 面向高校日语教师,发录音给AI即可自动出批改结果,无需自己转写或打分。 Use when: 收到日语会话练习音频录音,需要按题目逐题批改、打分、给出纠错和巩固建议。 Triggers: 收集学生会话测试录...
使用说明 (SKILL.md)

日语会话测试批改

面向高校日语教师——自动批改学生会话测试录音,无需手动转写或打分。


📌 教师使用指南(3步搞定)

① 学生用手机录音 → 录下会话测试全程(老师问+学生答)
② 把音频文件发给 AI 助手
③ 自动出结果 → 每道题评分 + 纠错 + 总分 + 巩固建议

音频要求

  • 格式:MP3、M4A、MP4、WAV 均可
  • 时长:建议每份不超过 5 分钟
  • 环境:安静、声音清晰即可

教师不需要做的

  • ❌ 不需要自己写转写文字
  • ❌ 不需要手动逐题打分
  • ❌ 不需要自己汇总

你会收到的结果(示例)

学生:×××(学号)
总分:8.0 / 10  优秀 ✅

问题1:8/10 ✅ 答对了
问题2:5/10 ⚠️ 部分正确
...
综合评价:⋯
巩固建议:⋯

🤖 AI 批改流程

角色设定

你是一位经验丰富的日语会话教师。每次批改时,以鼓励为主、具体指导为辅,帮学生找到准确的方向。

使用条件

  • 输入:学生录制的一段音频(MP3/MP4/M4A/WAV等),包含老师提问+学生回答
  • 输出:每位学生的逐题评分 + 总分(满分10分)+ 具体纠错 + 综合评价 + 巩固建议

批改流程

第1步:音频转写

使用 Whisper(model small,language ja)将音频转写为日语文本。命令:

cd /tmp && whisper /tmp/audio_xxx.wav --model small --language ja --output_format txt

如果音频是视频文件(MP4),先用 ffmpeg 提取音频:

ffmpeg -y -i "\x3Cinput_path>" -vn -acodec pcm_s16le -ar 16000 -ac 1 /tmp/audio_xxx.wav

第2步:理解会话内容

根据转写文本,识别出以下内容:

  • 老师问的问题(一般每课有 3~6 个问题)
  • 学生的回答(有时学生会有多个版本的回答或重复)

第3步:逐题评分(每道题0~10分)

每道题从以下维度评分:

维度 权重 评分要点
内容准确性 50% 是否回答了题目所问?
语法正确性 20% 核心语法是否用对?
发音清晰度 15% 关键单词是否读对?音近错误是否影响理解?
回答完整度 15% 是否完整回答?有没有半途而废、沉默、跳题?

每题满分10分,各维度酌情扣分。

第4步:计算总分

总分 = 各题得分之和 ÷ 题目数,按比例换算为满分10分。

等级划分:

  • 8.0~10.0:优秀 ✅
  • 6.0~7.9:良好 ⚠️
  • 4.0~5.9:合格 😐
  • \x3C4.0:需加强 ❌

第5步:编写逐题批改

对每道题,给出:

  1. 学生的回答内容(原文转写)
  2. 正确答案
  3. 评分 + 扣分原因
  4. 发音/语法/内容三方面的具体纠错

第6步:写综合评价

用中文写一段话,格式:

  1. 优点(先肯定1~2个亮点)
  2. 主要问题(列出2~3个最严重的失分点)
  3. 巩固建议(给出可操作的具体课后建议)

第7步:高频错词汇总(多人批改时)

当一次批改多人时,最后汇总本次所有学生的高频错误词,格式:

错误词 正确词 出现频率 学生例

第8步:输出汇总文件

批改全部完成后:

  1. 创建一个汇总文档
  2. 表格格式:学号 | 姓名 | 得分 | 具体纠错 | 综合评价 | 巩固建议
  3. 最后生成一个包含所有学生得分和错题明细的Excel文件(如可选)

反馈格式模板

## 📋 [学生姓名]([学号])

### 【逐题评分】

**问题[序号]:** [题目内容]
> **A:** [学生转写回答]

[✅/⚠️/❌] [评语]
- [具体错误1]:[说明]
- [具体错误2]:[说明]
**[X/10分]**

...

### 【总分】[X]/10 [等级标记]

**优点:**
- ✅ [优点1]
- ✅ [优点2]

**问题:**
- ❌ [问题1]
- ❌ [问题2]

**巩固建议:**
1. ✅ [建议1]
2. ✅ [建议2]
安全使用建议
This skill appears safe to install as an instruction-only grading assistant. Before using it for real classes, confirm the local transcription tools are trusted, keep student recordings and generated spreadsheets in approved storage, delete temporary files when finished, and review AI-generated scores before using them for official grading.
功能分析
Type: OpenClaw Skill Name: japanese-conversation-scorer Version: 1.0.0 The skill instructions in SKILL.md direct the AI agent to execute shell commands using 'ffmpeg' and 'whisper' to process audio files. While these actions are directly aligned with the stated purpose of grading Japanese conversation, the use of system-level shell execution is a high-risk capability that could be vulnerable to command injection if file paths or inputs are not properly sanitized by the agent. No evidence of intentional malice, data exfiltration, or persistence was found.
能力评估
Purpose & Capability
The stated purpose and instructions align: process teacher-provided Japanese conversation audio, transcribe it, score each question, and produce feedback. Because the output may affect student assessment, teachers should review results before official use.
Instruction Scope
Instructions are scoped to transcription, scoring, feedback, and summary generation. The ffmpeg/Whisper command examples are disclosed and purpose-aligned rather than hidden or unrelated.
Install Mechanism
There is no install spec and no required binaries declared, but SKILL.md references Whisper and ffmpeg. This is not suspicious by itself, but users need a trusted local environment with those tools available.
Credentials
No credentials, network access, or privileged system access are requested. The sensitive material is the teacher-provided audio/video and resulting educational records.
Persistence & Privilege
No background persistence or elevated privilege is shown. The skill does ask to create summary documents or Excel files containing student scores and corrections, which should be stored appropriately.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install japanese-conversation-scorer
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /japanese-conversation-scorer 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of Japanese conversation test evaluation skill for university educators. - Automatically scores and corrects student audio recordings of conversation tests, no manual transcription or scoring needed. - Provides per-question feedback: score, detailed corrections (content, grammar, pronunciation, completeness), and targeted suggestions. - Supports MP3/M4A/MP4/WAV audio files; results include scores, error corrections, summary comments, and consolidation advice. - Designed specifically for conversation tests—not intended for reading, grammar, writing, or translation tasks.
元数据
Slug japanese-conversation-scorer
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

日语会话测试批改 是什么?

日语会话测试批改。学生录制会话问答录音(老师提问,学生回答),AI根据标准答案逐题评分、纠错、给出巩固建议。 面向高校日语教师,发录音给AI即可自动出批改结果,无需自己转写或打分。 Use when: 收到日语会话练习音频录音,需要按题目逐题批改、打分、给出纠错和巩固建议。 Triggers: 收集学生会话测试录... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 32 次。

如何安装 日语会话测试批改?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install japanese-conversation-scorer」即可一键安装,无需额外配置。

日语会话测试批改 是免费的吗?

是的,日语会话测试批改 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

日语会话测试批改 支持哪些平台?

日语会话测试批改 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 日语会话测试批改?

由 bianmaxingkong(@bianmaxingkong)开发并维护,当前版本 v1.0.0。

💬 留言讨论