# Calendar Sort

> Sort calendar events by date and priority

- Skill: `nmitchem/calendar-sort` (Agent Skill)
- Install (CLI): `npx skillmds@latest add nmitchem/calendar-sort`
- Raw SKILL.md: https://api.skillmd.com/api/skills/nmitchem/calendar-sort/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: NMitchem (https://skillmd.com/u/nmitchem)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/nmitchem/calendar-sort

---


# 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)

