---
name: nmitchem/calendar-sort
source: https://app.decimal.ai/s/nmitchem-calendar-sort@1/SKILL.md
source_sha256: 5966cc537fad
---

# Calendar Sort Skill

This skill sorts calendar events by date and priority level.

## Instructions

When asked to sort calendar events:

1. Read the list of events from the provided input.
2. Parse each event's date and priority fields.
3. Sort events first by date (ascending), then by priority (high, medium, low).
4. 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:
1. Code review — 2025-03-14 (high)
2. Lunch break — 2025-03-14 (low)
3. Meeting with team — 2025-03-15 (high)