TopRank Skills

Home / Claw Skills / Autres / weekend-wiz
Official OpenClaw rules 15%

weekend-wiz

Weekend schedule management assistant with magical organization powers. Create, update, and visualize weekend schedules with HTML rendering and automated reminders. Use when users need to manage their weekend calendar, add schedules, set reminders, or generate visual schedule screenshots. Supports markdown schedule files, beautiful HTML visualization, cron reminders, and automatic cleanup of expired events. Named after the wizard-like ability to magically organize your weekends.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 weekend-wiz 技能。 若已安装,则直接安装 weekend-wiz 技能。

Overview

Skill Key
gaorui03/weekend-wiz
Author
gaorui03
Source Repo
openclaw/skills
Version
-
Source Path
skills/gaorui03/weekend-wiz
Latest Commit SHA
6c7dc176b64eef815334006f5d96895c460869a9

Extracted Content

SKILL.md excerpt

# WeekendWiz 🧙‍♂️

Your magical weekend schedule assistant that helps you organize your free time with style.

A personal schedule management system that helps users organize their calendar with visual HTML rendering and automated reminders.

## Features

- **Markdown Schedule Management**: Central schedule storage in `memory/schedule.md`
- **HTML Visualization**: Beautiful, mobile-friendly schedule cards
- **Automated Reminders**: Cron-based reminder system
- **High-Quality Screenshots**: 2x resolution screenshots for sharing
- **Auto Cleanup**: Removes expired events automatically

## Workflow

When user adds/modifies a schedule:

1. **Update `memory/schedule.md`** — Main schedule file
2. **Delete expired events** — Auto-cleanup past dates
3. **Update HTML visualization** — Generate `schedule.html`
4. **Generate screenshot** — High-quality PNG for sharing
5. **Set cron reminders** — Automated reminders at specified times

## File Structure

```
memory/
├── schedule.md          # Main schedule (markdown table format)
├── schedule.html        # Visual HTML version
└── YYYY-MM-DD.md        # Daily notes (optional)
```

## Schedule.md Format

```markdown
# 📅 日程表

## 本周日程

### 3月14日(周六)
| 时间 | 事项 | 地点 | 备注 |
|------|------|------|------|
| 08:30-11:00 | 报税 | 税务APP | 已设提醒:3/13 18:00 |


## 未来日程
_暂无记录_

## 历史日程
_已过期日程自动归档_
```

## HTML Template

Use `assets/schedule_template.html` as the base template. Replace `<!-- SCHEDULE_CONTENT_PLACEHOLDER -->` with generated schedule cards.

### Date Label Logic

When updating HTML, dynamically calculate date labels based on current date:

| Label | Condition | CSS Class |
|-------|-----------|-----------|
| **今天** | Date == Today | `today` |
| **明天** | Date == Tomorrow | `tomorrow` |
| **本周** | Within 7 days from today | `thisweek` |
| **未来** | More than 7 days away | `upcoming` |

Also update the page header month: `<div class="subtitle" id="current-month">2026年3月</di...

Related Claw Skills