Agent skill · Workflow & Productivity

award-calendar

Find the cheapest award dates for a route over a date range. Searches seats.aero across all programs, groups by date, and shows a calendar grid of the best deals. Use when dates are flexible and you want to find the sweet spot.

borskigithub.com/borskiGitHub ↗
claude-codeMIT
Install
npx skills add borski/travel-hacking-toolkit --skill award-calendar --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: plugins/travel-hacking-toolkit/skills/award-calendar/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 611
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Award Calendar "When should I fly SFO to NRT on points?" answered with a calendar view. Searches seats.aero across a date range and presents a grid showing the cheapest award per day, per cabin. Highlights the best dates to fly. **This is an orchestration skill.** It tells the agent how to query seats.aero and format the results. No standalone script. ## When to Use - "When's the cheapest time to fly SFO to NRT in business on points?" - "Show me award availability for SFO-CDG in September" - "I'm flexible on dates. When should I fly?" - Any award search where dates are flexible ## When NOT to Use - Specific date search (use `seats-aero` directly) - Cash price calendar (use Google Flights "Date grid" or Skiplagged) - Hotel date flexibility (not supported here) ## Workflow ### Step 1: Search the Date Range Use the seats.aero cached search API with a date range. The API supports up to ~60 days per query. ```bash curl -s -H "Partner-Authorization: $SEATS_AERO_API_KEY" \ "https://seats.aero/partnerapi/search?origin_airport={ORIGIN}&destination_airport={DEST}&start_date={START}&end_date={END}&cabin={CABIN}" ``` **Parameters:** - `origin_airport`: Can be comma-delimited for nearby airpo

What's inside
Steps it walks through
  1. When to Use
  2. When NOT to Use
  3. Workflow
  4. Step 1: Search the Date Range
  5. Step 2: Group by Date
  6. Step 3: Apply Transfer Partner Optimization
  7. Step 4: Present Calendar Grid
  8. Step 5: Additional Context
  9. Error Handling
  10. Limitations
Commands it runs
curl -s -H "Partner-Authorization: $SEATS_AERO_API_KEY" \
More from travel-hacking-toolkit
All skills →
About this skill
What does the award-calendar skill do?

Find the cheapest award dates for a route over a date range. Searches seats.aero across all programs, groups by date, and shows a calendar grid of the best deals. Use when dates are flexible and you want to find the sweet spot.

How do I install it?

Run `npx skills add borski/travel-hacking-toolkit --skill award-calendar --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From borski/travel-hacking-toolkit, a repository with 611 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going