← 返回 Skills 市场
forkercat

Daily English Vocab

作者 Junhao Wang · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
355
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install daily-english-vocab
功能描述
Daily English vocabulary and conversation practice via scheduled cron delivery. Sends a daily lesson with two parts: (1) a real-life Small Talk phrase with c...
使用说明 (SKILL.md)

Daily English Vocab

A daily English learning skill that delivers bite-sized, practical vocabulary lessons via scheduled messages. Designed for non-native English speakers living in English-speaking countries who want to build everyday vocabulary.

Setup

Create a cron job to deliver daily lessons. Adjust time, timezone, and channel as needed:

openclaw cron add \
  --name "daily-english" \
  --description "Daily English: Small Talk + Themed Vocabulary" \
  --cron "0 8 * * *" \
  --tz "America/Los_Angeles" \
  --session isolated \
  --announce \
  --channel telegram \
  --to \x3CCHAT_ID> \
  --timeout-seconds 60 \
  --message "Generate today's English lesson following the daily-english-vocab skill instructions."

Replace \x3CCHAT_ID> with the user's Telegram chat ID (or adjust --channel for Discord/WhatsApp).

Lesson Format

Each daily lesson has two parts:

Part 1: Daily Small Talk 🗣️

One natural American English conversational phrase:

  • Scene: Where/when you'd use it (e.g., office kitchen, grocery checkout)
  • Phrase: The expression with pronunciation notes if needed
  • Variations: 2-3 alternative ways to say the same thing
  • Natural responses: How a native speaker would reply
  • Chinese translation: 中英对照

Part 2: Themed Vocabulary 📚

3-5 words from the current rotating category:

  • Word + phonetic transcription (IPA)
  • Meaning in Chinese
  • Example sentence (中英对照) — use realistic, everyday contexts
  • 💡 Tip: Easily confused words, cultural notes, or fun facts

Category Rotation

Rotate through these 12 categories, spending 2-3 days on each before moving to the next. One full cycle takes about a month.

  1. 🍔 Food & Drinks — ingredients, seasonings, cooking methods, restaurant phrases
  2. 🏥 Body & Health — body parts, secretions, symptoms, doctor visit phrases
  3. 🏠 Home & Living — furniture, appliances, cleaning, repairs
  4. 👔 Work & Office — meetings, emails, colleague interactions, performance reviews
  5. 🏋️ Fitness & Sports — equipment, exercises, muscle groups, gym phrases
  6. 🛒 Grocery Shopping — produce, meat, household items, checkout phrases
  7. 🚗 Transportation — driving, gas stations, car repairs, road signs
  8. 🐱 Pets & Animals — breeds, behaviors, vet visits, pet supplies
  9. 🧹 Daily Chores — laundry, cooking, cleaning, trash sorting
  10. 🎮 Entertainment — gaming, movies, music, social activities
  11. 💰 Finance — stocks, banking, taxes, insurance
  12. 🌤️ Weather & Nature — weather phenomena, disasters, terrain, plants

Tracking State

Store rotation state in memory/english-vocab-state.json:

{
  "currentCategory": 1,
  "daysOnCategory": 1,
  "lastRun": "2026-03-15",
  "wordsUsed": ["booger", "saliva", "sweat"]
}
  • Read this file at the start of each lesson
  • If daysOnCategory >= 3 or file doesn't exist, advance to the next category
  • Track wordsUsed per category to avoid repeats within the same cycle
  • Reset wordsUsed when cycling back to a category

Style Guidelines

  • Friendly, fun tone with emojis — not a boring textbook
  • Chinese (中文) explanations — target audience is Chinese speakers
  • Mobile-friendly formatting — short lines, clear sections, no tables
  • Pick words people actually encounter in daily life, not obscure GRE vocab
  • Prefer American English spelling and pronunciation

Example Output

🗣️ 【每日口语】

场景:同事周一早上在茶水间打招呼
💬 "How was your weekend? Do anything fun?"

变体:
• "Good weekend?"
• "What'd you get up to this weekend?"

地道回法:
• "Not bad! Just took it easy." (还行,就休息了)
• "Yeah! Went hiking at Rancho." (去 Rancho 爬山了)

📚 【今日词汇】🏥 身体与健康

1️⃣ **booger** /ˈbʊɡ.ɚ/
   鼻屎
   🗨️ "Your kid has a booger hanging out of his nose."
   (你家娃鼻子上挂着鼻屎。)
   💡 口语常用,不算粗俗。"Pick your nose" = 挖鼻孔

2️⃣ **drool** /druːl/
   口水(流出来的)
   🗨️ "The baby drooled all over my shirt."
   (宝宝把口水流了我一身。)
   💡 drool vs saliva: saliva 是医学用语,drool 更口语

3️⃣ **sweat** /swɛt/
   汗
   🗨️ "I'm drenched in sweat after that workout."
   (锻炼完浑身是汗。)
   💡 "Break a sweat" = 出汗/费力,"No sweat!" = 没问题!

Customization

Users can customize by editing the cron message:

  • Change number of words (e.g., "give me 5 words" instead of 3)
  • Focus on specific categories (e.g., "only food and fitness categories")
  • Add Part 3 for idioms, slang, or phrasal verbs
  • Switch explanation language from Chinese to another language
安全使用建议
This skill appears coherent and limited in scope, but consider the following before installing: - It relies on a cron job that will send messages to a chat; ensure you supply the correct CHAT_ID/channel so it doesn't message unintended recipients. - The skill reads/writes a local state file (memory/english-vocab-state.json). Verify the agent has permission to create and store that file and that storing lesson history there is acceptable for your environment. - The skill does not request credentials, but integrations (Telegram/Discord/WhatsApp) used by your agent/cron system do—make sure those channel tokens are configured securely by the platform, not pasted into the lesson text. - Content can include informal or mildly crude vocabulary (e.g., bodily secretions). If you need to filter or moderate output, add a content-sanitization step before delivery. - If you want higher assurance, review the agent/CLI implementation that executes the cron job (openclaw cron add) to confirm it does exactly what you expect when it invokes the skill.
功能分析
Type: OpenClaw Skill Name: daily-english-vocab Version: 1.0.0 The daily-english-vocab skill is a legitimate educational tool designed to provide daily English lessons to Chinese speakers. It uses standard OpenClaw features, such as cron scheduling and local JSON state tracking (memory/english-vocab-state.json), to manage a rotating curriculum of vocabulary categories. No indicators of data exfiltration, malicious execution, or harmful prompt injection were found.
能力评估
Purpose & Capability
Name/description (daily English lessons) match the runtime instructions (cron scheduling, lesson format, category rotation). There are no unrelated binaries, credentials, or config paths required.
Instruction Scope
Instructions are narrowly scoped to: add a cron job that calls the skill, generate lesson content, and read/write a single local state file memory/english-vocab-state.json to track rotation and avoid repeats. This file access is proportional to the feature but is the only persistent state the skill asks to read/write.
Install Mechanism
No install spec or bundled code — instruction-only. Nothing is downloaded or written to disk by an installer.
Credentials
The skill declares no environment variables or credentials. The SKILL.md does not reference secrets or external service tokens. Note: the cron command references a messaging channel and CHAT_ID which the operator must supply via the platform/CLI integration.
Persistence & Privilege
always is false and the skill is user-invocable. It requests only a per-skill state file under memory/, and does not ask to change other skills or global agent settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install daily-english-vocab
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /daily-english-vocab 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: daily Small Talk + themed vocabulary with 12 rotating categories
元数据
Slug daily-english-vocab
版本 1.0.0
许可证 MIT-0
累计安装 2
当前安装数 1
历史版本数 1
常见问题

Daily English Vocab 是什么?

Daily English vocabulary and conversation practice via scheduled cron delivery. Sends a daily lesson with two parts: (1) a real-life Small Talk phrase with c... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 355 次。

如何安装 Daily English Vocab?

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

Daily English Vocab 是免费的吗?

是的,Daily English Vocab 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Daily English Vocab 支持哪些平台?

Daily English Vocab 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Daily English Vocab?

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

💬 留言讨论