ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

learning-checkin

Daily learning habit builder with check-ins and smart reminders

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/daizongyu/learning-checkin
Or

Learning Check-in Skill

Help users build a daily learning habit through simple check-ins and intelligent reminders.

Overview

This skill enables users to track their daily learning with:

  • Simple daily check-in (just say "I'm done" or "check-in complete")
  • Automatic streak tracking
  • Optional smart reminders

Data Storage

All data is stored locally in a data subfolder next to the skill:

<skill_directory>/data/
├── rule.md           - User's customizable rules
├── records.json      - Check-in history
├── version.txt       - Current skill version
├── cron_status.json  - Reminder configuration status
└── reminder_log.json - Reminder sending log

The data folder is automatically created on first use.

Commands

1. Initialize (First Time)

python <skill_path>/learning_checkin.py init

Returns:

  • welcome_message - Welcome text for the user
  • environment - Only contains user_language (for message display)
  • reminder_strategy - Suggested reminder times
  • cron_status - Current reminder configuration status

Agent action:

  1. Run the init command
  2. Show welcome message and explain the check-in process
  3. Ask user if they want daily reminders
  4. Ask user to start their first check-in

2. Check-in

python <skill_path>/learning_checkin.py checkin

Returns:

  • success - Whether check-in was recorded
  • streak - Current streak count
  • message - Celebration message (in English, translate to user's language)

3. Status

python <skill_path>/learning_checkin.py status

Returns:

  • checked_in_today - Whether user has checked in today
  • streak - Current streak count
  • total_checkins - Total days checked in
  • message - Status message (in English)

4. Get User Language

python <skill_path>/learning_checkin.py env

Returns:

  • user_language - Detected language (zh/en)

Why needed: Only to display messages in the user's preferred language.

5. Get Reminder Message

python <skill_path>/learning_checkin.py message <time>

Where <time> is one of: 09:00, 17:00, 20:00

Returns:

  • message - Reminder text (in English, translate to user's language)

6. Check Reminder Status

python <skill_path>/learning_checkin.py reminder <time>

Returns:

  • should_send - Whether reminder should be sent
  • checked_in - Whether user has already checked in today

7. Update Cron Status

python <skill_path>/learning_checkin.py update-cron <times>

When to use: After setting up reminders (optional).

8. Get Cron Status

python <skill_path>/learning_checkin.py cron-status

Returns:

  • configured - Whether reminders are set up
  • times - Configured reminder times

Default Behavior

Check-in Rule

  • User checks in once per day
  • Simply tell the Agent "I'm done" or "check-in complete"

Metadata

Author@daizongyu
Stars3376
Views1
Updated2026-03-24
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-daizongyu-learning-checkin": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.