Card news
Agent Skills suite for researching US credit cards — works with Claude Code, Codex, Cursor, Gemini CLI, and any Agent Skills-compatible tool
npx -y skills add jiahongc/credit-card-skills --skill card-newsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 5 stars5 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.
What its author says it does
Copied from the file, not written here
Return material news about one major-US credit card from the last 3 months, including direct card changes, relevant issuer updates, and major approved-site coverage. Use when the user wants the latest card-specific developments.
SKILL.md
2.5 KB, 565 tokens by cl100k_base, as published. Nobody here has run it
Card News
Goal
Return the last-3-month news view of one exact card variant in compact format.
Search Strategy: search-required
Fetch issuer newsroom + up to 5 secondary sources for recent coverage. Prefer Doctor of Credit, The Points Guy, One Mile at a Time, NerdWallet, and Bankrate. Run all searches in parallel.
Workflow
- Resolve the card using ../card-identity/SKILL.md. If ambiguous, return a numbered choice list and stop.
- Apply the 3-month lookback and inclusion rules from ../card-shared/recency-rules.md.
- Run one Brave Search API call (see
search_methodin ../card-shared/source-policy.yaml):
Thecurl -sS "https://api.search.brave.com/res/v1/web/search?q=CARD+NAME+news+changes+CURRENT_YEAR&count=10&freshness=p3m" -H "X-Subscription-Token: $BRAVE_API_KEY"freshness=p3mparameter limits results to the past 3 months, matching the lookback window. If$BRAVE_API_KEYis not set, fall back to WebSearch. - Fetch pages — pick up to 2 top article URLs (prefer doctorofcredit.com and thepointsguy.com) from the search results. Fetch in parallel:
News snippets often lack dates and detail — the full article has the complete story and timeline.curl -sS -L "URL" | sed 's/<[^>]*>//g' | tr -s '\n' | head -200 - Follow ../card-shared/confidence-rules.md.
- Return compact markdown using the
card-newscontract in ../card-shared/command-contracts.yaml. - YAML is internal only — do not include it in user-facing output.
- Do not show a "Why It Matters" section.
Required Sections
## 📅 News Window## 📰 Recent Updates## 📝 Summary## 📋 Confidence Notes## 🔗 Sources— numbered list of URLs fetched, as markdown hyperlinks with short "Site - Topic" labels, e.g.[Doctor of Credit - Amex Gold Changes](https://...)
Omit ## Card Identity when the match is confident. Use a numbered list for recent updates with a short summary line per item.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.