Skills daily-tutor
Get new study items for any subject. Use when: user asks for a daily lesson or new learning content. Supports any data format (language vocab, math formulas, history events, etc.). Automatically tracks learned items so they never repeat.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/buiphuc/daily-tutor" ~/.claude/skills/openclaw-skills-daily-tutor && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/buiphuc/daily-tutor" ~/.openclaw/skills/openclaw-skills-daily-tutor && rm -rf "$T"
manifest:
skills/buiphuc/daily-tutor/SKILL.mdsource content
Daily Tutor Skill
📖 For full user instructions, data setup guides, and Quizbuild MCP configurations, please read the Official README on GitHub.
This skill retrieves new learning items from the user's study list (
data/data.json) that they have not learned yet. It works with any subject — the data structure is automatically detected.
When to Use
✅ USE this skill when:
- The user asks for their daily lesson.
- The user wants to learn new vocabulary, formulas, concepts, or any study content.
- The daily cron job asks for new items.
Data Format
Place your study data in
data/data.json as a JSON array. Each item can have any fields you want — the script will auto-detect and display them all. There is no fixed schema; you define the fields that make sense for your subject.
For example formats, see
.references/EXAMPLES.md
Optional Configuration
Edit
data/config.json to customize behavior (all fields optional):
{ "primary_key": "word", "num_items": 10, "subject_name": "Hiragana/Katakana N5" }
| Field | Default | Description |
|---|---|---|
| First key of first item | Field used to track progress |
| 10 | Number of items per session |
| (none) | Display name for the subject |
Commands
# Get new items (automatically prevents duplicates) python3 ${OPENCLAW_SKILL_ROOT}/scripts/get_words.py
How to Handle Output
The output of
get_words.py will be a raw list of items with all their fields.
When you receive the output:
- Process the items exactly as instructed by the user's prompt or the automated Cron job orchestrating this skill.
- OPTIONAL: If you have access to the
tool, you can generate a short practice quiz based on the newly retrieved study items. When callingquizbuild
, you follow this parameter structure:quizbuild__auto_create_exam
{ "title": "Quick Review Practice Exam", "questions": [ { "content": "Question goes here?", "type": "multiple_choice", "answers": [ {"content": "Answer 1", "correct": true}, {"content": "Answer 2", "correct": false} ] } ] }
If you do not have
quizbuild, simply list out the practice items and act as a friendly tutor!
File Structure
| File | Purpose |
|---|---|
| Study data (required) |
| Configuration (optional) |
| Progress tracking (auto-generated) |
| Main script |
| Data formatting examples |