← 返回 Skills 市场
基于艾宾浩斯遗忘曲线的英语六级词汇记忆系统
作者
granmer-gan
· GitHub ↗
· v1.0.0
· MIT-0
88
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install cet6vocabularymemory
功能描述
基于艾宾浩斯遗忘曲线的英语六级词汇记忆系统。支持:(1) 新单词学习与测验 (2) 智能复习计划 (3) 定时任务提醒 (4) 学习进度追踪。触发时机:用户说"开始背六级单词"、"复习六级单词"、"设置六级背单词时间"、"六级单词测验"、"CET-6词汇"等。适用于中国大学生备考CET-6。
使用说明 (SKILL.md)
CET-6 单词记忆系统
基于间隔重复算法的科学六级词汇记忆工具。
与 CET-4 的区别
| 项目 | CET-4 | CET-6 |
|---|---|---|
| 词汇量 | 约4500词 | 约5500词 |
| 词汇难度 | 基础 | 进阶 |
| 建议每日学习 | 5-10个 | 8-15个 |
| 考试要求 | 大学本科 | 研究生/求职 |
快速开始
用户说"开始背六级单词"时:
- 检查
references/user_schedule.csv中是否存在用户记录 - 存在 → 直接进入学习流程
- 不存在 → 引导首次设置
首次设置流程:
- 询问每日学习时间(如 8:00、21:00)
- 询问每次学习数量(建议 8-15 个,六级词汇量大)
- 写入 user_schedule.csv
- 设置定时任务
核心流程
学习新单词
- 从
references/cet6-vocabulary.md排除已学单词 - 随机选取用户计划数量
- 展示:音标、词性、中文释义、例句(六级强调例句理解)
- 用户说"完成" → 进入测验
单词测验
三种测验方式:
- 拼写测验:展示中文,让用户拼写英文
- 选择测验:展示英文,选择中文释义
- 翻译测验:展示例句,让用户翻译(六级重点)
答错的单词标记为"需重新记忆",循环测验直到掌握。
复习单词
触发:定时任务或用户说"复习六级单词"
查询 word_memory_status.csv 中 next_review_date \x3C= 今天 的单词,按复习流程处理。
数据文件
| 文件 | 说明 |
|---|---|
references/cet6-vocabulary.md |
六级词汇库 |
references/user_schedule.csv |
用户学习计划 |
references/word_memory_status.csv |
记忆状态追踪 |
详细规范
提醒话术
📚 同学你好!六级单词复习时间到了~
今天你有 {num} 个单词需要复习,准备好了吗?
六级词汇量更大,坚持复习才能拿高分!💪
回复"开始"让我们一起复习!
六级备考建议
- 词汇量大:建议每天至少学习10个单词
- 例句重要:六级考试强调语境理解,例句要重点记忆
- 长期坚持:5500词需要3-6个月完成,保持耐心
- 错词复盘:答错的单词要特别标记,重点复习
安全使用建议
This skill largely implements a CET‑6 spaced repetition vocabulary tool and the shipped word lists and algorithm docs look benign. However, the runtime docs tell the agent to add crontab entries and drop/execute reminder scripts under /root and to call an OpenClaw CLI to send messages — actions that modify system scheduling and can send messages on your behalf. Also note a copy/paste inconsistency: schedule docs reference CET‑4 and /root paths, suggesting the author reused material without tailoring it. Before installing or enabling this skill: (1) confirm whether it truly needs to modify crontab and which user account will own the scheduled jobs; (2) require the skill to use per‑user paths (not /root) or to ask for explicit consent before creating system cron jobs; (3) verify presence and safety of any CLI it calls (openclaw) and ask the author to declare required binaries and any credentials; (4) review/modify the reminder script template so it does not leak user IDs or send messages to external targets without consent; and (5) consider running the skill in a sandbox/environment where it cannot modify system crontab until you trust it. If the author cannot justify the scheduling/privilege steps or provide safer per‑user alternatives, treat this skill as risky.
能力评估
Purpose & Capability
The name/description match the content: vocabulary lists, spaced repetition algorithm, CSV-based user/schedule state. However, parts of the included docs reference setting system crontab entries and a reminder script under /root/.openclaw (and even mention CET‑4), which is beyond what a pure in‑agent learning skill strictly needs and looks like copy/paste or scope creep.
Instruction Scope
SKILL.md and references instruct the agent to read/write local CSV files (expected) but also to check and modify system crontab, place/execute reminder scripts under /root/.openclaw/scripts, and invoke an OpenClaw CLI to send messages to a <user_id>. Those actions touch system scheduling and messaging functionality outside the simple vocabulary task and are not fully justified or constrained in the docs.
Install Mechanism
This is an instruction‑only skill with no install spec and no code to fetch — low installation risk. Nothing will be written to disk by an installer, but the runtime instructions themselves propose writing scripts and crontab entries.
Credentials
The skill declares no required env vars or config paths, yet the docs reference account names, target user IDs, and CLI usage (/root/.local/share/pnpm/openclaw message send --account default --target <user_id>) and root filesystem paths. Those credentials/configurations are not declared or explained, creating a mismatch between what the skill says it needs and what its instructions assume.
Persistence & Privilege
Although always:false (so not force-installed), the instructions explicitly ask to set persistent system crontab entries and place reminder scripts under /root — actions that require elevated privileges and produce long‑lived side effects. The skill neither declares needing those privileges nor documents explicit consent/authorization steps.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install cet6vocabularymemory - 安装完成后,直接呼叫该 Skill 的名称或使用
/cet6vocabularymemory触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- 英语六级词汇记忆系统,基于艾宾浩斯遗忘曲线与间隔重复算法
- 支持新单词学习、智能复习计划、定时提醒和学习进度追踪
- 首次使用时引导设置每日学习时间与数量
- 提供多种测验模式(拼写、选择、翻译),强调例句理解
- 自动记录学习与复习进度,错词循环测验强化记忆
- 适用于中国大学生备考CET-6
元数据
常见问题
基于艾宾浩斯遗忘曲线的英语六级词汇记忆系统 是什么?
基于艾宾浩斯遗忘曲线的英语六级词汇记忆系统。支持:(1) 新单词学习与测验 (2) 智能复习计划 (3) 定时任务提醒 (4) 学习进度追踪。触发时机:用户说"开始背六级单词"、"复习六级单词"、"设置六级背单词时间"、"六级单词测验"、"CET-6词汇"等。适用于中国大学生备考CET-6。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 88 次。
如何安装 基于艾宾浩斯遗忘曲线的英语六级词汇记忆系统?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install cet6vocabularymemory」即可一键安装,无需额外配置。
基于艾宾浩斯遗忘曲线的英语六级词汇记忆系统 是免费的吗?
是的,基于艾宾浩斯遗忘曲线的英语六级词汇记忆系统 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
基于艾宾浩斯遗忘曲线的英语六级词汇记忆系统 支持哪些平台?
基于艾宾浩斯遗忘曲线的英语六级词汇记忆系统 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 基于艾宾浩斯遗忘曲线的英语六级词汇记忆系统?
由 granmer-gan(@gangrammer)开发并维护,当前版本 v1.0.0。
推荐 Skills