# Send Card Optimizer to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "card-optimizer",
    "name": "Card Optimizer",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/ScotTFO/card-optimizer",
    "canonicalUrl": "https://clawhub.ai/ScotTFO/card-optimizer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/card-optimizer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=card-optimizer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "card-optimizer",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T06:12:11.880Z",
      "expiresAt": "2026-05-07T06:12:11.880Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=card-optimizer",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=card-optimizer",
        "contentDisposition": "attachment; filename=\"card-optimizer-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "card-optimizer"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/card-optimizer"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/card-optimizer",
    "downloadUrl": "https://openagent3.xyz/downloads/card-optimizer",
    "agentUrl": "https://openagent3.xyz/skills/card-optimizer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/card-optimizer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/card-optimizer/agent.md"
  }
}
```
## Documentation

### Card Optimizer

Maximize credit card rewards by always using the right card for every purchase.

### Data Location

Skill logic: skills/card-optimizer/ (this file)
User data: data/card-optimizer/

cards.json — card definitions, reward rates, spending estimates, category map

### Card Database Schema

Each card in cards.json follows this structure:

{
  "id": "unique_id",
  "name": "Card Name",
  "issuer": "Issuer Name",
  "network": "visa|mastercard|amex|discover",
  "annual_fee": 95,
  "reward_type": "cashback|points|miles",
  "point_valuation_cpp": null,
  "transfer_partners": [],
  "notes": "Optional notes",
  "signup_bonus": {
    "amount": 200,
    "type": "cashback",
    "spend_requirement": 3000,
    "timeframe_months": 3,
    "earned": false
  },
  "categories": [
    {
      "category": "groceries",
      "rate": 6.0,
      "cap_amount": 6000,
      "cap_period": "yearly",
      "rate_after_cap": 1.0
    },
    {
      "category": "rotating",
      "rate": 5.0,
      "cap_amount": 1500,
      "cap_period": "quarterly",
      "rate_after_cap": 1.0,
      "quarterly_categories": {
        "Q1": ["gas", "ev_charging"],
        "Q2": ["groceries", "home_improvement"],
        "Q3": ["restaurants", "paypal"],
        "Q4": ["amazon", "target", "walmart"]
      },
      "activation_required": true
    },
    {
      "category": "everything_else",
      "rate": 1.0
    }
  ]
}

### Point Valuations

For points/miles cards, store point_valuation_cpp (cents per point):

Chase Ultimate Rewards: 1.0 cpp base, 1.25 cpp with Sapphire Preferred, 1.5 cpp with Sapphire Reserve
Amex Membership Rewards: 1.0 cpp base, varies by transfer partner
When comparing cards, multiply rate × point_valuation_cpp to get effective cashback equivalent

### Category Map

The category_map in cards.json maps each spending category to the best card ID. This is the precomputed optimal assignment — recalculate when cards are added or removed.

### Spending Estimates

To power ROI calculations, gap analysis, and new card recommendations, the user can optionally set estimated monthly spending per category in cards.json:

{
  "estimated_monthly_spending": {
    "groceries": 600,
    "gas": 200,
    "restaurants": 300,
    "amazon": 150,
    "streaming": 50,
    "everything_else": 500
  }
}

If no estimates are provided, the skill can still recommend cards per-purchase — it just can't run ROI or gap analysis. Ask the user to estimate during first-time setup.

Note: This skill does NOT track individual purchases. If the user wants detailed spending data, they should connect their bank accounts through a budgeting tool. These estimates are rough numbers for optimization calculations.

### How to Recommend a Card

When the user asks "which card for [category]?" or "I'm buying [item]":

Identify the category from the purchase (see Category Matching below)
Check all cards for that category's reward rate
Factor in caps: If a card has a cap and the user's estimated annual spending in that category exceeds it, note the cap and when they'd likely exhaust it
Factor in network acceptance: If the best card is Amex, mention that some merchants don't accept Amex and provide a Visa/MC fallback
Compare effective rates: For points cards, use point_valuation_cpp to convert to cashback-equivalent
Return recommendation with reasoning

### Response Format

💳 Use: [Card Name] ([Issuer])
💰 Reward: [X]% [cashback/points/miles] on [category]
⚠️ Note: [any caps, network warnings, or caveats]
🔄 Fallback: [Next best card if merchant doesn't accept primary]

### Cap-Aware Recommendations

When a card has spending caps:

Well under cap: Recommend normally
Cap likely to exhaust (based on estimated spending): Note when the cap would be hit and what to switch to after
Cap exists: Always mention the cap so the user is aware

Example: "Your Amex BCP gets 6% on groceries up to $6,000/year. At ~$600/month, you'll hit the cap around October. After that, it drops to 1% — switch to Wells Fargo Active Cash for 2%."

### Rotating Categories

Some cards (Chase Freedom Flex, Discover It) have rotating 5% categories that change quarterly and require activation.

### Quarterly Alerts

At the start of each quarter (Jan 1, Apr 1, Jul 1, Oct 1):

Check for cards with activation_required: true
If not yet activated for the current quarter, remind the user
List the current quarter's bonus categories
Note: To automate this, add a quarterly cron job or include in the mileage check heartbeat

Store activation status per card:

{
  "quarterly_activations": {
    "chase_freedom_flex": {
      "2026-Q1": {"activated": true, "date": "2026-01-02"}
    }
  }
}

### Annual Fee ROI Analysis

For each card with an annual fee, calculate whether it's worth keeping based on estimated_monthly_spending:

Calculate bonus rewards: For each bonus category, compute annual rewards at the bonus rate
Calculate baseline: What a no-fee 2% flat card would earn on the same spending
Bonus value: bonus_rewards − baseline_rewards
Net ROI: bonus_value − annual_fee
Verdict: Worth it if net ROI > 0

### Report Format

💳 [Card Name] — Annual Fee: $[fee]

Bonus rewards earned:     $[amount]
vs. 2% flat card:         $[amount]
Bonus value:              $[amount]
Annual fee:              -$[fee]
━━━━━━━━━━━━━━━━━━━━━━━━
Net value:                $[amount] ✅ Worth it / ❌ Consider downgrading

Break-even: Need $[X]/yr in bonus categories to justify the fee

### Spending Gap Analysis

Using estimated_monthly_spending, identify:

Weak categories: High spending where the best available card only earns 1-2%
Underperforming fee cards: Annual fee cards not earning enough bonus to justify the fee
Cap exhaustion: Categories where estimated spending exceeds bonus caps — may benefit from a second card
Missing coverage: Common categories with no bonus card at all

### Report Format

📊 Card Optimization Report

✅ Well covered:
- Groceries → Amex BCP (6%) — earning ~$360/yr
- Amazon → Chase Prime (5%) — earning ~$90/yr

⚠️ Gaps identified:
- Dining: $300/mo at 2% (Chase Prime) — a 4% dining card would save $72/yr
- Travel: $200/mo at 1% — a 3x travel card would earn $48 more/yr

❌ Fee card alert:
- [Card] costs $95/yr but only generates $60 in bonus rewards — net loss of $35

💡 Recommendations:
- Adding [Card Name] would earn ~$[X] more per year on [categories]
- Consider downgrading [Card] to the no-fee version

### New Card Recommendations

Based on spending estimates, suggest cards that would add value:

Identify the user's highest-spending weak categories
Match against popular cards with strong rates in those categories
Calculate projected annual rewards from the new card
Factor in annual fees
Mention signup bonuses as first-year sweetener

Do not recommend specific affiliate links — just name the card and explain why.

Popular cards to consider by category:

CategoryCardsNotesDiningChase Sapphire Preferred (3x), Amex Gold (4x), Capital One SavorOne (3%)Sapphire and Gold have annual feesGroceriesAmex BCP (6%), Amex Gold (4x MR)BCP has $6k capTravelChase Sapphire Reserve (3x), Amex Platinum (5x flights), Capital One Venture X (2x)All have significant annual feesGasCiti Custom Cash (5% top category), PenFed Platinum Rewards (5x gas)Custom Cash is flexibleFlat rateCiti Double Cash (2%), Wells Fargo Active Cash (2%), Fidelity Visa (2%)No-fee safety netsRotatingChase Freedom Flex (5% quarterly), Discover It (5% quarterly + first-year match)Requires activation

### Merchant → Category Mapping

When the user mentions a merchant, map to the correct card category:

Merchant / KeywordCategoryNotesKroger, Publix, Safeway, HEB, Aldi, Trader Joe'sgroceriesSupermarketsCostco, Sam's Clubgroceries OR warehouseCostco is Visa-only in store. Amex may code as groceries at Sam's ClubTarget, WalmartvariesMay code as "superstore" not "groceries" — depends on card issuerAmazon, amazon.comamazonSome cards have specific Amazon categoryWhole Foodswhole_foods OR groceriesChase Prime has specific Whole Foods categoryShell, Exxon, BP, ChevrongasGas stationsUber, Lyft, subway, bustransitPublic transit and rideshareNetflix, Hulu, Spotify, Disney+, HBO Max, YouTube TVstreamingStreaming subscriptionsChipotle, McDonald's, DoorDash, GrubhubrestaurantsDining and food deliveryCVS, Walgreens, Rite AiddrugstoresPharmaciesHilton, Marriott, Airbnbhotels/travelTravel/lodgingUnited, Delta, Southwestairlines/travelAirfare

### Fuzzy Category Matching

When the user says something informal:

"food" / "eating out" / "dinner" → restaurants
"grocery run" / "supermarket" → groceries
"gas" / "fuel" / "fill up" → gas
"uber" / "lyft" / "ride" → transit
"stuff on amazon" / "prime order" → amazon
"pharmacy" / "meds" / "prescription" → drugstores
"subscription" / "monthly streaming" → streaming
"general" / "random purchase" → everything_else

If ambiguous, ask: "Is this a grocery store or a restaurant?"

### Amex Acceptance

American Express has lower merchant acceptance than Visa/Mastercard:

Small/local businesses
Some international merchants
Costco (Visa only in-store in the US)
Some government payments

When recommending an Amex card, always provide a Visa/MC fallback.

### Costco Special Case

Costco US stores only accept Visa credit cards (plus debit/cash):

In-store: Must use Visa
Online (costco.com): Visa, Mastercard, Discover (no Amex)

### Adding a New Card

When the user wants to add a card:

Gather info:

Card name and issuer
Payment network (Visa/MC/Amex/Discover)
Annual fee
Reward type (cashback/points/miles) and point valuation if applicable
Category reward rates (each bonus category + base rate)
Any caps or limits per category
Rotating categories? Which quarters, activation required?
Signup bonus details (optional)



Research the card if the user just gives a name — look up current reward rates, fees, and categories via web search


Create card entry in cards.json


Recalculate category_map — determine which card now wins each category


Confirm and show updated recommendations

### Removing a Card

Remove from cards array in cards.json
Recalculate category_map
Confirm and show any categories that now have weaker coverage

### First-Time Setup

If data/card-optimizer/cards.json doesn't exist:

Ask the user what credit cards they have
For each card, either:

Look up the card's current reward structure via web search, OR
Ask the user for rates if it's an unusual/regional card


Build cards.json with all cards and the precomputed category map
Ask for estimated monthly spending per major category (groceries, gas, dining, amazon, streaming, general, etc.) — explain this powers ROI and gap analysis but is optional
Run an initial optimization report showing their best card per category and any gaps

### Quick Reference

User SaysAction"Which card for groceries?"Recommend best card for that category"I'm buying gas"Recommend with gas category"Best card for Amazon?"Recommend with Amazon category"Annual fee worth it?"ROI analysis for all fee cards"Add a new card"Walk through new card setup"Remove a card"Remove and recalculate"Card optimization report"Full gap analysis + recommendations"What cards should I get?"New card recommendations"Activate Q2 categories"Update quarterly activation status"Does Costco take Amex?"Network acceptance info"What are my cards?"List all cards with key rates"Update my spending estimates"Revise estimated monthly spending
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ScotTFO
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T06:12:11.880Z
- Expires at: 2026-05-07T06:12:11.880Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/card-optimizer)
- [Send to Agent page](https://openagent3.xyz/skills/card-optimizer/agent)
- [JSON manifest](https://openagent3.xyz/skills/card-optimizer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/card-optimizer/agent.md)
- [Download page](https://openagent3.xyz/downloads/card-optimizer)