/install learning-checkin
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:
\x3Cskill_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 \x3Cskill_path>/learning_checkin.py init
Returns:
welcome_message- Welcome text for the userenvironment- Only containsuser_language(for message display)reminder_strategy- Suggested reminder timescron_status- Current reminder configuration status
Agent action:
- Run the init command
- Show welcome message and explain the check-in process
- Ask user if they want daily reminders
- Ask user to start their first check-in
2. Check-in
python \x3Cskill_path>/learning_checkin.py checkin
Returns:
success- Whether check-in was recordedstreak- Current streak countmessage- Celebration message (in English, translate to user's language)
3. Status
python \x3Cskill_path>/learning_checkin.py status
Returns:
checked_in_today- Whether user has checked in todaystreak- Current streak counttotal_checkins- Total days checked inmessage- Status message (in English)
4. Get User Language
python \x3Cskill_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 \x3Cskill_path>/learning_checkin.py message \x3Ctime>
Where \x3Ctime> 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 \x3Cskill_path>/learning_checkin.py reminder \x3Ctime>
Returns:
should_send- Whether reminder should be sentchecked_in- Whether user has already checked in today
7. Update Cron Status
python \x3Cskill_path>/learning_checkin.py update-cron \x3Ctimes>
When to use: After setting up reminders (optional).
8. Get Cron Status
python \x3Cskill_path>/learning_checkin.py cron-status
Returns:
configured- Whether reminders are set uptimes- 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"
Reminder Strategy (Suggested)
If user wants reminders, Agent can use any scheduling method:
- Evening (20:00) is recommended as default
- Or user's preferred time
The skill will check if user already checked in before sending reminders.
Streak System
- Consecutive days = streak
- Miss a day = streak resets
Customization
Users can edit the rule.md file (in the data folder) to customize reminder messages.
Version
See GitHub releases: https://github.com/daizongyu/learning-checkin/releases
Agent Guidelines
First Interaction (Welcome)
The Agent should:
- Be warm and encouraging
- Explain the simple check-in process
- Ask if user wants daily reminders (optional feature)
- Ask: "Ready to start your first check-in?"
Check-in Interaction
- Translate messages to user's language
- Celebrate the check-in
- Show streak count
Reminder Implementation (Optional)
If user wants reminders:
- Agent decides how to implement (cron, native scheduler, etc.)
- The skill provides
reminderandmessagecommands - Check if user already checked in before sending
Technical Notes
- Data collection: Only
user_languageis collected for message display - All messages are in English - Agent translates to user's language
- All file paths use UTF-8 encoding
- Compatible with Windows, Linux, macOS
- Data stored in
datasubfolder next to the skill - No external network requests from the skill
- No automatic scheduling - Agent decides implementation
- No external dependencies (Python standard library only)
Version
Current version: 3.1.0
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install learning-checkin - After installation, invoke the skill by name or use
/learning-checkin - Provide required inputs per the skill's parameter spec and get structured output
What is Learning Checkin?
Daily learning habit builder with check-ins and smart reminders. It is an AI Agent Skill for Claude Code / OpenClaw, with 397 downloads so far.
How do I install Learning Checkin?
Run "/install learning-checkin" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Learning Checkin free?
Yes, Learning Checkin is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Learning Checkin support?
Learning Checkin is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Learning Checkin?
It is built and maintained by Mike Dai (@daizongyu); the current version is v3.1.0.