Calendar Sort

Sort calendar events by date and priority

NMitchem Updated

File contents

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)

NMitchem/SkillScan/tree/main/tests/fixtures/clean-skill commit af92fa98d4

Frequently asked questions

npx skillmds@latest add nmitchem/calendar-sort