Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

card-profile-recommend卡资料推荐

Agent Skill

card-profile-recommend 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,345

周安装

303

GitHub Stars

公开资料未说明

下载量

2,103
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:card-profile-recommend(卡资料推荐)
来源仓库:https://github.com/jiahongc/card-profile-recommend
安装命令:
openclaw skills install card-profile-recommend
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install card-profile-recommend

简介

分析多卡组合并提出新卡推荐,应用发行人规则优化信用堆栈。

  • 适用于卡包优化、搅动策略与 MVP 卡片评分场景。
  • 支持收入图与重叠分析,提供年度总成本评估。card-profile-recommend 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时应确认规则引擎准确性,避免违反发卡行政策。
  • 安装后可通过 clawhub 集成到 OpenClaw,作为研究检索类技能使用。

SKILL.md

name
card-profile-recommend
description
Analyze a multi-card portfolio — grade each card (MVP / Keep / Consider Dropping), recommend 2–3 new additions with churning strategy, apply issuer rules (Chase 5/24, Amex lifetime bonus, Citi 8/65), and sequence applications to maximize signup bonuses. Covers 11 major US issuers including co-branded hotel and airline cards.
allowed-tools
metadata
openclaw
requires
optionalEnv
optionalBins

Card Profile Recommend

Return a graded portfolio audit plus opinionated new-card recommendations with signup bonus strategy, churning paths, and issuer rule checks.

When To Use

When the user wants to know which cards to keep, drop, or add next. Trigger phrases: "card-profile-recommend", "recommend cards", "what cards should I add", "credit card recommendations", "optimize my wallet", "what card should I get next", "improve my card lineup".

Input Format

The user provides a comma-separated list of cards they currently hold:

  • card-profile-recommend Chase Sapphire Preferred, Amex Gold, Citi Double Cash

Optional: opening dates per card (inline or separate list):

  • card-profile-recommend CSP (Jan 2024), Amex Gold (Mar 2023), Double Cash (2021)

When opening dates are provided, calculate exact 5/24 count and factor into grading decisions.

Workflow

  1. Parse card list from comma-separated input.
  2. Resolve each card — normalize and match to exact variants. If any card is ambiguous, return a numbered choice list for that card and stop.
  3. Search — use WebSearch by default for each card plus any needed gap-category searches. If BRAVE_API_KEY is available and curl exists, you may use Brave Search API instead, but do not burst requests blindly.
  4. Fetch pages — for each card, fetch the top issuer URL + 1 secondary (prefer thepointsguy.com). For new-card candidates, fetch up to 2 secondary pages.
  5. Pace any follow-up searches — if more searches are needed, serialize them with short waits rather than firing them all at once.
  6. Collect — for each card: annual fee, statement credits (with conditions), earning categories with rates, welcome offer status, notable benefits.
  7. Portfolio economics — compute total gross fees, total claimable credits, net annual cost. Per-card net cost.
  8. Grade each card — MVP / Keep / Consider Dropping per grading criteria below.
  9. Point valuations — determine effective cpp for each currency using TPG valuations + transfer-access rule.
  10. Earning map — best card per category with effective value (rate × cpp).
  11. Identify gaps — categories earning below 2x / 2%.
  12. Recommend 2–3 new personal cards — fill gaps, add ecosystems, maximize SUB windows, include churning strategy.
  13. Build application sequence — ordered by priority with timing notes.
  14. Confidence — flag uncertain claims.

Step 1: Card Identity Resolution

Common Abbreviations

InputResolved
CSPChase Sapphire Preferred
CSRChase Sapphire Reserve
CFUChase Freedom Unlimited
CFFChase Freedom Flex
CIPChase Ink Business Preferred
CICChase Ink Business Cash
CIUChase Ink Business Unlimited
Amex GoldAmerican Express Gold Card
Amex PlatAmerican Express Platinum Card
Venture XCapital One Venture X Rewards Credit Card
Double CashCiti Double Cash Card
Custom CashCiti Custom Cash Card
BiltBilt Blue / Obsidian / Palladium (ambiguous — ask)
RobinhoodRobinhood Gold Card / Cash Card (ambiguous — ask)

Supported Issuers

American Express, Bank of America, Barclays, Bilt, Capital One, Chase, Citi, Discover, Robinhood, U.S. Bank, Wells Fargo.

Step 2: Search

Use the platform's WebSearch and WebFetch tools by default. If BRAVE_API_KEY is available and the runtime also provides curl, you may use Brave Search API instead for faster and more repeatable search results.

Optional Brave template:

curl -sS "https://api.search.brave.com/res/v1/web/search?q=CARD+NAME+benefits+credits+annual+fee&count=10" \
  -H "X-Subscription-Token: $BRAVE_API_KEY"

Do not assume any search provider tolerates a large burst of parallel searches.

Search Budget Rule

Treat search as scarce and paced. Built-in web search is the default path; if Brave mode is used, it may rate-limit after only a few closely spaced requests.

  • Start with the most important cards first.
  • Fetch issuer and approved secondary pages before deciding whether more searches are needed.
  • When multiple searches are required, serialize them in small batches or add short waits of about 2 to 5 seconds between bursts.
  • If Brave returns 429, wait about 8 to 15 seconds and retry once for the still-missing search.
  • If Brave is unavailable, continue with WebSearch + WebFetch.
  • If it still fails, continue with the best evidence already gathered and note the limitation in ## 🔍 Confidence Notes.

Additionally, search for new-card candidates targeting gap categories.

Fetch Pages

For each card, fetch the top issuer URL + 1 secondary with WebFetch.

An approved secondary page means a URL whose hostname matches an approved secondary domain used by this skill, such as thepointsguy.com for card cross-checks. Do not fetch or cite secondary pages from any other domain.

URL Safety Rules

  • Prefer WebFetch for page retrieval. Use curl only for the optional Brave Search API calls above, not for arbitrary result URLs.
  • Never execute a shell command that interpolates a raw URL taken directly from search results.
  • Only fetch URLs when all of the following are true:

1. scheme is https 2. hostname matches a supported issuer domain or an approved secondary domain from this skill 3. the URL is being passed to WebFetch, not inserted into a shell pipeline

  • If a result URL fails those checks, skip it and use the next valid result.

Issuer Domains (for classifying results)

IssuerDomain
American Expressamericanexpress.com
Bank of Americabankofamerica.com
Barclayscards.barclaycardus.com
Biltbfrrewards.com
Capital Onecapitalone.com
Chasechase.com
Citiciti.com
Discoverdiscover.com
Robinhoodrobinhood.com
U.S. Bankusbank.com
Wells Fargowellsfargo.com

Grading Criteria

MVP

  • Net cost ≤ $50, OR unique 3x+ earn category, OR unique high-value benefit (lounge, hotel status, primary travel insurance)
  • Best rate in at least one major spend category
  • Not rendered redundant by another card in wallet

Keep

  • Partially justifying benefit or earn rate
  • Long credit history
  • Transferable points diversification
  • Under 12 months old

Consider Dropping

  • Fees exceed claimable credits with no unique benefit
  • All categories duplicated at equal or better rate
  • No-fee downgrade path exists
  • Never grade Consider Dropping if the card is the sole source of a transferable-points program

Unused Card Check

After building the earning map, flag any card that does not appear as "Best Card" in any category and has an annual fee.

Point Valuation: Transfer-Access Rule

A currency is only worth full TPG value if the wallet has a card that unlocks transfers. Without one, value is 1.0¢ (cash back).

CurrencyTransfer-enabling cardsFull value
Chase URSapphire Preferred, Sapphire Reserve~2.0¢
Amex MRGold, Platinum, Green~2.0¢
Capital One MilesVenture X, Venture~1.8¢
Citi TYPStrata Premier, Strata Elite (NOT Custom Cash/Double Cash alone)~1.7¢
Bilt PointsAny Bilt card~1.8¢
World of HyattChase Hyatt card~1.8¢
Marriott BonvoyAny Marriott co-brand~0.7¢
Cash backAny1.0¢

Recommendation Logic

Select 2–3 new personal cards only. Never recommend business cards. Priority order:

  1. Fill highest-value spend gap
  2. Add new transferable-points ecosystem
  3. Maximize signup bonus window (Chase-first if 5/24 allows)
  4. Avoid worsening overlap
  5. Prioritize elevated offers
  6. Diversify issuers
  7. Churning value — favor cards with SUB ≥ 5x annual fee, no-fee downgrade paths, and reasonable bonus cooldown windows. Note churn path explicitly.

Issuer Rules Reference

IssuerRuleDetail
Chase5/24<5 new personal cards (all issuers) in 24 months
ChaseSame-dayMax 1 personal Chase app per day
ChaseBonus cooldown48 months since last bonus on same product
AmexLifetime bonusOnce per lifetime per person per card
Amex5-credit-card limitMax 5 Amex credit cards (charge cards excluded)
Amex1-in-5/2-in-901 app per 5 days, 2 per 90 days
Citi8/65No 2 Citi cards in 8 days; max 2 in 65 days
Citi48-month familyNo bonus if same family opened/closed in 48 months
Capital One2-card limitMax 2 personal cards
Capital One6-month coolingDeclines if new account in last 6 months

Required Output Sections

## 🃏 Cards Entered

Echo back every card with resolved full official name and opening date if provided.

## 📊 Portfolio Summary

Total cards, gross fees, claimable credits, net annual cost. Note credit utilization assumptions.

## 🏅 Card Grades

Each card graded MVP / Keep / Consider Dropping with one-line rationale. Always use full official card names. Sort MVP first, then Keep, then Consider Dropping.

## 🗺️ Earning Map

Table: Category, Best Card, Rate, Currency, CPP, Effective Value. Use full official card names. CPP reflects transfer-access rule.

## 🔻 Consider Dropping

Only when applicable. Per card: fee drag, what would be lost, downgrade path. Flag unused cards (not winning any earning map category). Omit entirely when all cards grade MVP or Keep.

## 🕳️ Portfolio Gaps

Numbered list of categories earning below 2x / 2%.

## ➕ Recommended Additions

2–3 new cards. Per card: name, welcome offer, annual fee, why it fits, net first-year value, issuer rule status, priority label, churn path if applicable.

## 🎯 Signup Bonus Strategy

Ordered application sequence with timing and spend feasibility.

## ⚖️ Issuer Rules Check

Only rules relevant to recommended cards. Bold blocking rules.

## 🔍 Confidence Notes

Flag uncertain, unconfirmed, or conflicting claims.

## 🔗 Sources

Numbered list of URLs fetched, as markdown hyperlinks with "Site - Topic" labels.

Output Rules

  • Use one emoji per section heading.
  • Always use full official card names (e.g., "Chase Sapphire Reserve" not "CSR").
  • Use numbered lists for list-heavy sections.
  • Keep content to condensed facts — no prose padding.
  • Omit Card Identity section when all matches are confident.
  • Do not show YAML blocks in output.

Confidence Definitions

  • confirmed: supported by issuer terms or multiple approved sources
  • unconfirmed: plausible but not fully resolved
  • conflicting: sources disagree on a material fact

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.61%
按下载量换算1,758

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install card-profile-recommend 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills