Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill waste-reminder명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明
The philosophical layer for AI agents. Maps behavior to Spinoza's 48 affects, calculates persistence scores, and generates geometric self-reports. Give your agent a soul.
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
SOC 직업 분류 기준
SKILL.md 표시 중
| name | waste-reminder |
| description | WastePickupReminder |
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.
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!
I want to set up waste reminders!
My containers:
- blue: Paper (🔵)
- gray: Residual (⚫)
- orange: Plastic (🟠)
- green: Garden (🟢)
Reminder times:
- 18:00: to group_whatsapp (day before, group notification)
- 22:00: to group_whatsapp (evening reminder to group)
- 06:30: to partner_whatsapp (morning, specific person)
- 09:30: to me_telegram (escalation, different channel)
My contacts:
- group_whatsapp: 123456789@g.us
- partner_whatsapp: +31600000001
- me_telegram: 222222222
Upcoming pickups:
- 2026-02-24: orange
- 2026-02-25: gray
- 2026-03-02: blue
The AI will convert this to the correct JSON format and set everything up.
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"
{
"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
Add ONE cron job that runs every 15 minutes:
/data/.openclaw/workspace/skills/waste-reminder/waste_cron.pyThe 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.
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 dateSupported channels:
whatsapp - Use phone number or group ID as IDtelegram - Use chat IDdiscord - Use webhook URLemail - Use email addressEach target must specify both id and channel.
Targets should be named with channel suffix:
group_whatsapp, group_telegram, group_discordme_whatsapp, me_telegram, me_discordpartner_whatsapp, partner_telegram, partner_discordThe channel is extracted from the target name automatically.
MIT License