← 返回 Skills 市场
jiahongc

Card Rate

作者 jiahongc · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
73
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install card-rate
功能描述
Return earning rates, bonus categories, caps, exclusions, and merchant-coding caveats for one major-US credit card. Covers 11 major US issuers including co-b...
使用说明 (SKILL.md)

Card Rate

Return the earning-structure view of one exact card variant in compact format.

When To Use

When the user asks about a card's earning rates, rewards categories, multipliers, or points structure. Trigger phrases: "card-rate", "earning rates", "how many points", "what categories", "rewards rate".

Workflow

  1. Resolve card identity — normalize the input and match to one exact card variant.
  2. Search — use WebSearch by default. If BRAVE_API_KEY is available and curl exists, you may use one Brave Search API call instead. Classify results as issuer or secondary by domain.
  3. Fetch pages — use WebFetch by default to fetch the top issuer URL and top 1 secondary URL from results.
  4. Pace any follow-up searches — if another search is needed, wait briefly instead of bursting requests.
  5. Compile — combine fetched page content + search snippets + training knowledge.
  6. Confidence — flag uncertain or conflicting claims.

Step 1: Card Identity Resolution

Normalize the card name and resolve to an exact issuer + family + variant.

Common Abbreviations

Only shorthands and ambiguous names need entries here. Cards with full, unambiguous names (e.g., "Chase Marriott Bonvoy Boundless", "Chase United Explorer", "American Express Hilton Honors Aspire") are resolved via search — no table entry needed.

Input Resolved
CSP Chase Sapphire Preferred
CSR Chase Sapphire Reserve
CFU Chase Freedom Unlimited
CFF Chase Freedom Flex
CIP Chase Ink Business Preferred
CIC Chase Ink Business Cash
CIU Chase Ink Business Unlimited
Amex Gold American Express Gold Card
Amex Plat American Express Platinum Card
Amex Biz Gold American Express Business Gold Card
Amex Biz Plat American Express Business Platinum Card
Amex Blue Biz Plus American Express Blue Business Plus Card
Amex Blue Biz Cash American Express Blue Business Cash Card
Venture X Capital One Venture X Rewards Credit Card
Venture X Business Capital One Venture X Business Card
Savor Capital One SavorOne / Savor (ambiguous — ask)
Spark Cash Plus Capital One Spark Cash Plus
Spark Miles Capital One Spark Miles
Double Cash Citi Double Cash Card
Custom Cash Citi Custom Cash Card
Ink Preferred Chase Ink Business Preferred
Ink Cash Chase Ink Business Cash
Ink Unlimited Chase Ink Business Unlimited
Bilt Bilt Blue / Obsidian / Palladium (ambiguous — ask)
Robinhood Robinhood Gold Card / Cash Card (ambiguous — ask)
Aviator Red Barclays AAdvantage Aviator Red World Elite Mastercard
Wyndham Rewards Barclays Wyndham Rewards Earner Card / Plus / Business (ambiguous — ask)
Altitude Reserve U.S. Bank Altitude Reserve Visa Infinite Card
Altitude Connect U.S. Bank Altitude Connect Visa Signature Card
Altitude Go U.S. Bank Altitude Go Visa Signature Card
Delta Gold American Express Delta SkyMiles Gold Card
Delta Platinum American Express Delta SkyMiles Platinum Card
Delta Reserve American Express Delta SkyMiles Reserve Card
Delta Biz Gold American Express Delta SkyMiles Gold Business Card
Delta Biz Plat American Express Delta SkyMiles Platinum Business Card
Delta Biz Reserve American Express Delta SkyMiles Reserve Business Card

Business vs Personal

Both personal and business credit cards are supported. If the user specifies "business" or "biz", resolve to the business variant. If a card name exists in both versions and the user does not specify, treat as ambiguous and ask.

Ambiguity Rules

  • If the input maps to 2+ plausible variants, return a numbered choice list and stop.
  • If no match exists, return: "Could not match a card. Try including the full card name with issuer."

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+earning+rates+categories&count=10" \
  -H "X-Subscription-Token: $BRAVE_API_KEY"

Parse the JSON response — results are in .web.results[] with .title, .url, .description fields. Classify results by domain: issuer pages (use Issuer Domains table below) vs approved secondary sources. Use up to 1 secondary source (prefer bankrate.com, then thepointsguy.com) for merchant-coding caveats.

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 one search.
  • Fetch the issuer and approved secondary pages before deciding whether any additional search is needed.
  • If an extra search is needed, wait about 2 to 5 seconds first.
  • If Brave returns 429, wait about 8 to 15 seconds and retry once.
  • 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.

Issuer Domains (for classifying results, not constraining searches)

Issuer Domain
American Express americanexpress.com
Bank of America bankofamerica.com
Barclays cards.barclaycardus.com
Bilt bfrrewards.com
Capital One capitalone.com
Chase chase.com
Citi citi.com
Discover discover.com
Robinhood robinhood.com
U.S. Bank usbank.com
Wells Fargo wellsfargo.com

Step 3: Fetch Pages

Pick the top issuer URL and top 1 secondary URL from the search results. Fetch both in parallel with WebFetch.

An approved secondary page means a URL whose hostname matches the preferred secondary domains named in this skill. 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.

Search snippets are too shallow for earning details — the full page has complete rate tables and caps. Combine the fetched page content + search snippets + training knowledge.

Required Output Sections

## 📊 Rate Summary

Base earn rate, point currency, key mechanic (e.g., rotating categories, pay-over-time requirement).

## 📈 Earning Categories

Each bonus category with multiplier, numbered list. Include activation requirements if applicable.

## 🚫 Caps And Exclusions

Annual/quarterly caps, excluded merchant types, category restrictions.

## 📋 Confidence Notes

Flag any detail that may have changed since training data.

## 🔗 Sources

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

Output Rules

  • Use one emoji per section heading and numbered lists
  • When listing credits, fees, or any monetary amounts, sort from highest to lowest dollar value. for categories.
  • Keep content to condensed facts — no prose padding.
  • Omit the Card Identity section when the match is confident.
  • Do not show YAML blocks in output.
  • End every report with a ## 🔗 Sources section listing each URL fetched during research as a markdown hyperlink with a short "Site - Topic" label, e.g. [Chase - Sapphire Preferred](https://...).

Confidence Definitions

  • confirmed: supported by issuer terms or multiple approved sources
  • unconfirmed: plausible but not fully resolved
  • conflicting: sources disagree on a material fact
安全使用建议
This skill is instruction-only and fetches public web pages to report card earning rates; it does not require secrets or install software. If you provide a BRAVE_API_KEY it will use Brave's API for searches (only if you also have curl available) — only supply that key if you trust the runtime. Remember the agent will combine live page content with its training knowledge, so verify important details against the issuer's official page before acting on rewards/limits. If you prefer not to allow outgoing web queries, do not enable this skill or avoid supplying BRAVE_API_KEY.
功能分析
Type: OpenClaw Skill Name: card-rate Version: 1.0.0 The card-rate skill is designed to retrieve and summarize credit card rewards information using web search tools. It includes explicit safety instructions in SKILL.md to prevent shell injection by restricting the use of curl to a specific Brave Search API template and forbidding the execution of raw URLs from search results. The logic is consistent with its stated purpose and lacks any indicators of data exfiltration or malicious intent.
能力标签
cryptocan-make-purchasesrequires-sensitive-credentials
能力评估
Purpose & Capability
The name/description (return card earning rates and caveats) matches the instructions: normalize a card name, run web searches, fetch issuer/secondary pages, and compile results. The only optional external dependency is a Brave Search API key for an alternate search path, which is coherent with the stated goal.
Instruction Scope
SKILL.md confines the agent to WebSearch/WebFetch (and optionally Brave API via curl). It instructs fetching issuer and one secondary page, classifying domains, and reporting confidence. It does not instruct reading local files, accessing unrelated environment vars, or sending data to unexpected endpoints.
Install Mechanism
No install spec or code files are present (instruction-only), so nothing is written to disk or installed. This is the lowest-risk model and is proportional to the skill's purpose.
Credentials
No required environment variables or credentials. One optional env var (BRAVE_API_KEY) and optional curl binary are declared solely to enable an alternative search backend; that is proportionate to the described functionality.
Persistence & Privilege
Skill is not force-enabled (always: false) and requests no persistent system privileges or modifications. Autonomous invocation is allowed by default but is not combined with elevated privileges or broad credential access.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install card-rate
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /card-rate 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial publish
元数据
Slug card-rate
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Card Rate 是什么?

Return earning rates, bonus categories, caps, exclusions, and merchant-coding caveats for one major-US credit card. Covers 11 major US issuers including co-b... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 73 次。

如何安装 Card Rate?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install card-rate」即可一键安装,无需额外配置。

Card Rate 是免费的吗?

是的,Card Rate 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Card Rate 支持哪些平台?

Card Rate 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Card Rate?

由 jiahongc(@jiahongc)开发并维护,当前版本 v1.0.0。

💬 留言讨论