Agent skill · Design & Presentation

transfer-partners

Credit card to loyalty program transfer ratios. Cross-references seats.aero award prices with transfer ratios to find the cheapest path from UR, MR, TYP, Capital One, or Bilt to any mileage program.

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

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

Facts
Files in the skill folder: 1
SKILL.md size: 12 KB
Bundled scripts: none
Path: plugins/travel-hacking-toolkit/skills/transfer-partners/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

# Transfer Partner Optimizer Given award flight prices (from seats.aero or manual input) and your transferable point balances, find the cheapest path to book. **No API key needed.** Uses local JSON data files. ## Data Files | File | Purpose | |------|---------| | `data/transfer-partners.json` | Credit card → loyalty program transfer ratios | | `data/points-valuations.json` | CPP valuations per program (floor/ceiling from TPG, UP, OMAAT, VFTW) | | `data/partner-awards.json` | Which programs can book which airlines | ## When to Use - User has award availability (from seats.aero cached search, live search, or manual input) - User wants to know "which of my points should I use?" - User wants to compare the effective cost across their transferable currencies - User asks about transfer partners for a specific airline or program ## Workflow ### Step 0: Check Current Transfer Bonuses (Always) Before recommending any transfer, load the `transfer-bonuses` skill and check `data/transfer-bonuses.json` for active bonuses on the relevant currency-to-program pair. A 30% bonus turns a 1:1 ratio into 1:1.3, which can flip the cheapest-currency calculation in Step 3 entirely. Bonuses also have expir

What's inside
Steps it walks through
  1. Data Files
  2. When to Use
  3. Workflow
  4. Step 0: Check Current Transfer Bonuses (Always)
  5. Step 1: Get Award Availability
  6. Step 2: Map Seats.aero Sources to Transfer Partners
  7. Step 3: Calculate Effective Cost
  8. Step 4: Calculate Opportunity Cost (CPP)
  9. Step 5: Present Results
  10. jq Recipes
  11. Find all currencies that transfer to a program
  12. Calculate effective costs for an award
  13. Find cheapest path for multiple award options
  14. Cross-Alliance Optimization
Commands it runs
jq -r '
to_entries | .[] | select(.key != "_meta") |
jq -r --arg prog "$PROGRAM" --argjson miles $MILES '
echo '[
More from travel-hacking-toolkit
All skills →
About this skill
What does the transfer-partners skill do?

Credit card to loyalty program transfer ratios. Cross-references seats.aero award prices with transfer ratios to find the cheapest path from UR, MR, TYP, Capital One, or Bilt to any mileage program.

How do I install it?

Run `npx skills add borski/travel-hacking-toolkit --skill transfer-partners --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