agentsclimarketplace

Transfer partner map

Skill eidos-agi/eidos-travel-hub/skills/transfer-partner-map

Given a points currency (Chase UR, Amex MR, Citi TY, Capital One, Bilt), map every transfer partner with ratio, transfer time, and value verdict. Flags traps and highlights hidden gems.From its SKILL.md

Install
npx -y skills add eidos-agi/eidos-travel-hub --skill transfer-partner-map

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

3.4 KB, 868 tokens by cl100k_base, as published. Nobody here has run it

Transfer Partner Map

Not all transfer partners are equal. Some are traps (bad ratio, fuel surcharges, devalued program). This skill maps the full partner tree for any currency and tells you which ones are worth using.

Contract

{
  "$schema": "https://json-schema.org/draft/2020-12",
  "title": "Transfer Partner Map",
  "purpose": "For a given points currency, list every transfer partner with ratio, transfer time, value verdict, and best use case. Flag traps. Surface hidden gems the user may not know.",
  "constraints": [
    "List every partner, not just the good ones — user needs the full picture",
    "verdict must be: gem, good, situational, trap",
    "trap requires a specific reason (fuel surcharges, dynamic pricing, bad availability)",
    "Include transfer time — instant vs. 1-3 days matters for last-minute bookings",
    "Note any current transfer bonuses (e.g. 30% bonus to Air France this month)"
  ],
  "required": ["currency", "partners", "top_uses"],
  "properties": {
    "currency": { "type": "string" },
    "partners": {
      "type": "array",
      "items": {
        "required": ["partner", "type", "ratio", "transfer_time", "verdict", "best_use"],
        "properties": {
          "partner":       { "type": "string" },
          "type":          { "enum": ["airline", "hotel"] },
          "ratio":         { "type": "string", "description": "e.g. '1:1', '1:0.75'" },
          "transfer_time": { "type": "string", "description": "e.g. 'instant', '1-3 days', '3-5 days'" },
          "verdict":       { "enum": ["gem", "good", "situational", "trap"] },
          "best_use":      { "type": "string" },
          "trap_reason":   { "type": ["string", "null"] },
          "current_bonus": { "type": ["string", "null"], "description": "Active transfer bonus if any" }
        }
      }
    },
    "top_uses": {
      "type": "array",
      "description": "Top 3 highest-value redemptions using this currency",
      "items": {
        "required": ["redemption", "partner", "cpp_estimate"],
        "properties": {
          "redemption":  { "type": "string" },
          "partner":     { "type": "string" },
          "cpp_estimate": { "type": "number" }
        }
      }
    }
  }
}

Quick reference: known traps

PartnerCurrencyWhy it's a trap
BA AviosChase UR, Amex MRFuel surcharges on BA metal wipe out the value
Delta SkyMilesAmex MRDynamic pricing, availability wall, no award chart
JetBlueAmex MR, Chase UR1:0.8 ratio, weak redemptions
Marriott BonvoyAmex MR3:1 ratio, poor CPP vs. direct Amex hotel program
SouthwestChase UROnly useful if you have the Companion Pass

Known gems

PartnerCurrencyWhy it's a gem
HyattChase URBest hotel CPP in the game, 1:1 transfer
ANA (via Virgin)Amex MRBusiness class to Japan for 67.5k, incredible product
Flying BlueChase UR, Amex MR, Citi TYMonthly promo awards, often 25-40% off
LifeMilesCiti TYNo fuel surcharges, online booking, cheap Star Alliance
Turkish MilesCiti TY, Miles&Smiles~45k to Asia or US-Europe on Star Alliance

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.