Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Automates customized waste collection reminders with multiple container types, schedules, targets, and confirmation via direct API messaging.
Automates customized waste collection reminders with multiple container types, schedules, targets, and confirmation via direct API messaging.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
A flexible, token-efficient skill for automated waste container collection reminders.
This skill helps automate waste collection reminders based on user-defined schedules. It uses simple JSON configuration for maximum flexibility and minimal token usage. How it works: The skill reads your config and schedule, determines which reminders need to be sent, and outputs them in a format that your AI assistant can process. The AI then sends the actual messages to the specified channels. Output format: SEND_TO:recipient_id CHANNEL:whatsapp Your message here --- This approach keeps your configuration simple and token-efficient - the skill doesn't need API keys or direct network access.
Multiple container types Custom reminder schedules (up to 4 times per pickup) Flexible targeting (group, personal, escalation) Multi-channel support (WhatsApp, Telegram, Discord, Email) - messages sent by your AI Confirmation system (stops further reminders) Single schedule file Token-efficient - generates reminders without using AI tokens
clawhub install waste-reminder
When you install this skill, the AI assistant will send you a config template. Reply in any language - the AI will understand and convert it to the correct format!
The skill stores configuration in: /data/.openclaw/workspace/data/waste-reminder/
waste-reminder/ โโโ config.json # Your containers, reminder times, targets โโโ schedule.json # Your pickup dates and status
{ "config_version": "1.0", "containers": { "blue": {"name": "Paper", "color": "blue", "emoji": "๐ต"}, "gray": {"name": "Residual", "color": "gray", "emoji": "โซ"}, "orange": {"name": "Plastic", "color": "orange", "emoji": "๐ "}, "green": {"name": "Garden", "color": "green", "emoji": "๐ข"} }, "reminder_times": { "18:00": { "type": "group", "template": "Tomorrow: {container_emoji} {container_name} will be collected!", "target": "group_whatsapp" }, "22:00": { "type": "group", "template": "Not confirmed yet - {container_emoji} needs to go out by 7am!", "target": "group_whatsapp" }, "06:30": { "type": "personal", "template": "โ ๏ธ {container_emoji} put out NOW!", "target": "partner_whatsapp" }, "09:30": { "type": "escalation", "template": "Container still not outside!", "target": "me_telegram" } }, "targets": { "group_whatsapp": {"id": "123456789@g.us", "channel": "whatsapp"}, "partner_whatsapp": {"id": "+31600000001", "channel": "whatsapp"}, "partner_telegram": {"id": "111111111", "channel": "telegram"}, "me_whatsapp": {"id": "+31600000002", "channel": "whatsapp"}, "me_telegram": {"id": "222222222", "channel": "telegram"}, "me_discord": {"id": "https://discord.com/api/webhooks/...", "channel": "discord"} } }
{ "2026-02-24": { "orange": { "confirmed": false, "reminded_18:00": false, "reminded_22:00": false, "reminded_06:30": false, "reminded_09:30": false } }, "2026-02-25": { "gray": { "confirmed": false, "reminded_18:00": false, "reminded_22:00": false, "reminded_06:30": false, "reminded_09:30": false } } }
Add ONE cron job that runs every 15 minutes: Name: "Waste Reminder Check" Schedule: every 15 minutes Script: /data/.openclaw/workspace/skills/waste-reminder/waste_cron.py The cron script checks if any reminders need to be sent and outputs them. Your AI assistant (triggered by the cron job) reads this output and sends the actual messages to the appropriate channels.
Confirm: "container is out" View: "waste schedule" or "waste status" Add: "waste add [date] [container]" Remove: "waste remove [date] [container]"
waste-reminder/ โโโ SKILL.md # This file โโโ waste_reminder.py # CLI tool (manual commands) โโโ waste_cron.py # Cron script (every 15 min)
{container_emoji} - The emoji {container_name} - The name {date} - The date
Supported channels: whatsapp - Use phone number or group ID as ID telegram - Use chat ID discord - Use webhook URL email - Use email address Each target must specify both id and channel.
Targets should be named with channel suffix: group_whatsapp, group_telegram, group_discord me_whatsapp, me_telegram, me_discord partner_whatsapp, partner_telegram, partner_discord The channel is extracted from the target name automatically.
MIT License
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.