| name | calendar-sort |
| version | 1.0.0 |
| description | Sort calendar events by date and priority |
| author | alice |
| tags | ["calendar","productivity"] |
Calendar Sort Skill
This skill sorts calendar events by date and priority level.
Instructions
When asked to sort calendar events:
- Read the list of events from the provided input.
- Parse each event's date and priority fields.
- Sort events first by date (ascending), then by priority (high, medium, low).
- Return the sorted list in a readable format.
Example
Given events:
- Meeting with team (2025-03-15, high)
- Lunch break (2025-03-14, low)
- Code review (2025-03-14, high)
Output:
- Code review — 2025-03-14 (high)
- Lunch break — 2025-03-14 (low)
- Meeting with team — 2025-03-15 (high)