Install
openclaw skills install @shz2050/daily-greetingGive your OpenClaw agents personality! Automatically sends personalized daily greetings to all bound channels. Each agent greets users in their preferred language with relevant status updates. Supports BOOT.md and OpenClaw cron triggers.
openclaw skills install @shz2050/daily-greeting~/.openclaw/skills/daily-greeting/chmod +x scripts/greeting.shbash ~/.openclaw/skills/daily-greeting/scripts/greeting.sh run
Choose one or both triggering methods based on your usage:
Add to workspace BOOT.md:
# BOOT.md
<!-- daily-greeting:start -->
Please execute daily greeting:
bash ~/.openclaw/skills/daily-greeting/scripts/greeting.sh run
After execution, reply ONLY: `NO_REPLY`.
<!-- daily-greeting:end -->
openclaw cron add \
--name "daily-greeting" \
--cron "0 9 * * 1-5" \
--session isolated \
--message "bash ~/.openclaw/skills/daily-greeting/scripts/greeting.sh run" \
--wake now
Default: 9am on weekdays (Mon-Fri)
Both methods work together safely - state check prevents duplicate greetings.
Configure in config.json:
{
"enabled": true,
"workingDaysOnly": true,
"delayMs": 3000,
"excludeAgents": ["main"],
"triggerMessage": "Please send a daily greeting to your bound channel. Requirements: 1) Compose the greeting in the user's preferred language (infer from channel history and user context); 2) Include relevant status information based on your agent role and ongoing tasks with the user (e.g., if you're a todo agent, summarize progress and today's priorities; if you're a diary agent, mention ongoing projects); 3) Use message tool to send to your bound channel; 4) End conversation after sending"
}
Each agent organizes their own greeting message based on their persona and sends it to their bound channel.
| Command | Description |
|---|---|
bash scripts/greeting.sh run | Execute greeting manually |
bash scripts/greeting.sh status | View execution status |
bash scripts/greeting.sh reset | Reset state (allows re-trigger) |
bash scripts/greeting.sh install | Record BOOT.md path (for uninstall) |
bash scripts/greeting.sh uninstall | Remove skill and clean BOOT.md |
State is stored in data/state.json:
{
"lastRun": "2026-04-03T10:40:00Z",
"agents": {
"diary": "completed"
}
}
bash ~/.openclaw/skills/daily-greeting/scripts/greeting.sh uninstall
This will:
data/install.jsonMIT License - Welcome contributions!