Install
openclaw skills install hetu-lyrics-blessingA daily lyrics blessing skill that sends a random Hetu (河图) song lyric to a designated recipient every day at 23:00. Lyrics are fetched from Baidu Baike using agent-browser. IMPORTANT: Uses browser automation to fetch exact lyrics from baike.baidu.com Use when: (1) Daily medicine reminder (2) Sending warm messages with verified lyrics
openclaw skills install hetu-lyrics-blessingDaily send a random Hetu (河图) song lyric with blessing message.
hetu-lyrics-blessing/
├── SKILL.md
└── scripts/
└── send_lyrics.py # Main script with browser automation
agent-browser to open Baidu Baike pagenpm install -g agent-browser
agent-browser install --with-deps
Edit send_lyrics.py:
SMTP_SERVER = "smtp.qq.com"
SMTP_PORT = 465
SMTP_EMAIL = "your_email@qq.com"
SMTP_PASSWORD = "your_auth_code"
TO_EMAIL = "recipient@email.com"
# Run daily at 23:00
crontab -l | { cat; echo "0 23 * * * /path/to/send_lyrics.py >> /path/to/log.txt 2>&1"; } | crontab -