Daily English Vocab
PassAudited by ClawScan on May 1, 2026.
Overview
This instruction-only skill appears benign and purpose-aligned, but it does set up a recurring daily message and a small state file that users should understand before enabling.
This skill is reasonable to use if you want scheduled English lessons. Before enabling it, check the cron time, time zone, and chat recipient, and remember that it will keep sending lessons until you remove or disable the scheduled job.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Daily messages will continue until the user disables or removes the cron job, and an incorrect chat ID could send lessons to the wrong destination.
The skill explicitly instructs the user to create a recurring scheduled task that will send daily lesson messages.
Create a cron job to deliver daily lessons... openclaw cron add ... --cron "0 8 * * *" ... --channel telegram ... --to <CHAT_ID>
Only create the cron if you want ongoing daily delivery, verify the time zone and recipient, and know how to remove or disable the cron job.
The file can influence future lessons, but the intended contents are limited to category counters, last run date, and used words.
The skill uses persistent local state to decide future lesson categories and avoid repeated vocabulary.
Store rotation state in `memory/english-vocab-state.json` ... Read this file at the start of each lesson ... Track `wordsUsed`
Keep the state file limited to lesson-rotation data and delete or inspect it if you want to reset the vocabulary cycle.
Lesson messages will be delivered to the configured third-party chat destination.
The skill sends generated lesson content through an external messaging channel selected by the user.
Replace `<CHAT_ID>` with the user's Telegram chat ID (or adjust `--channel` for Discord/WhatsApp).
Confirm the channel and recipient are correct before enabling the schedule.
