add-new-credit-card — add-new-credit-card install add-new-credit-card, credit-card-tracker, community, add-new-credit-card install, ide skills, couponcycle credit card integration, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Financial Agents needing to integrate credit card management capabilities. add-new-credit-card is a skill that enables users to add new credit cards to a predefined card catalog, requiring card name and issuer information

Features

Gathers card information, including card name and issuer
Creates card templates with benefits
Supports downloading card images
Adds support for new card types
Requires exact official card name and issuer details

# Core Topics

fantasy-cc fantasy-cc
[8]
[2]
Updated: 3/1/2026

Agent Capability Analysis

The add-new-credit-card skill by fantasy-cc is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for add-new-credit-card install, couponcycle credit card integration.

Ideal Agent Persona

Perfect for Financial Agents needing to integrate credit card management capabilities.

Core Value

Empowers agents to collect and process card information, including card names and issuers, facilitating the addition of new credit cards to the application's catalog using protocols like secure data transmission and handling card image downloads.

Capabilities Granted for add-new-credit-card

Adding new credit card types to the system
Creating card templates with benefits
Downloading card images for user verification
Supporting new card issuers like American Express

! Prerequisites & Limits

  • Requires user input for card information
  • Dependent on predefined card catalog
  • Limited to credit card management functionality
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

add-new-credit-card

Install add-new-credit-card, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Add New Credit Card to CouponCycle

This skill guides you through adding a new credit card to the application's predefined card catalog.

When to Use

  • User asks to add a new credit card to the system
  • User wants to create a card template with benefits
  • User needs to download a card image
  • Adding support for a new card type

Workflow

Step 1: Gather Card Information

Before adding a card, collect this information:

  1. Card Name (exact official name)
  2. Issuer (American Express, Chase, Citi, Capital One, etc.)
  3. Annual Fee
  4. Cyclical Benefits (monthly/quarterly/yearly credits)

Tip: Research benefits at US Credit Card Guide

Step 2: Download Card Image

Run the image download script:

bash
1# Search Google Images for the card 2node scripts/download-card-image.js --name "Card Name" --list 3 4# Download from best result 5node scripts/download-card-image.js --name "Card Name" 6 7# Or use UseYourCredits.com as source (if available) 8node scripts/download-card-image.js --name "Card Name" --source useyourcredits 9 10# Or download from a specific URL 11node scripts/download-card-image.js --name "Card Name" --url "https://..."

Image Location: public/images/cards/{slugified-card-name}.png

Step 3: Update Seed File

Edit prisma/seed.ts and add the card to the predefinedCardsData array:

typescript
1{ 2 name: 'Card Name', 3 issuer: 'Issuer Name', 4 annualFee: 595, 5 benefits: [ 6 // Monthly benefit example 7 { 8 description: '$15 Monthly Credit (Service Name)', 9 category: 'Travel', 10 maxAmount: 15, 11 frequency: BenefitFrequency.MONTHLY, 12 percentage: 0, 13 cycleAlignment: BenefitCycleAlignment.CALENDAR_FIXED, 14 occurrencesInCycle: 1, 15 }, 16 // Quarterly benefit example 17 { 18 description: '$100 Quarterly Travel Credit', 19 category: 'Travel', 20 maxAmount: 100, 21 frequency: BenefitFrequency.QUARTERLY, 22 percentage: 0, 23 cycleAlignment: BenefitCycleAlignment.CARD_ANNIVERSARY, 24 occurrencesInCycle: 1, 25 }, 26 // Semi-annual benefit (Jan-Jun) 27 { 28 description: '$250 Hotel Credit (Jan-Jun)', 29 category: 'Travel', 30 maxAmount: 250, 31 frequency: BenefitFrequency.YEARLY, 32 percentage: 0, 33 cycleAlignment: BenefitCycleAlignment.CALENDAR_FIXED, 34 fixedCycleStartMonth: 1, 35 fixedCycleDurationMonths: 6, 36 occurrencesInCycle: 1, 37 }, 38 // Semi-annual benefit (Jul-Dec) 39 { 40 description: '$250 Hotel Credit (Jul-Dec)', 41 category: 'Travel', 42 maxAmount: 250, 43 frequency: BenefitFrequency.YEARLY, 44 percentage: 0, 45 cycleAlignment: BenefitCycleAlignment.CALENDAR_FIXED, 46 fixedCycleStartMonth: 7, 47 fixedCycleDurationMonths: 6, 48 occurrencesInCycle: 1, 49 }, 50 // Yearly benefit 51 { 52 description: '$200 Airline Fee Credit', 53 category: 'Travel', 54 maxAmount: 200, 55 frequency: BenefitFrequency.YEARLY, 56 percentage: 0, 57 cycleAlignment: BenefitCycleAlignment.CALENDAR_FIXED, 58 fixedCycleStartMonth: 1, 59 fixedCycleDurationMonths: 12, 60 occurrencesInCycle: 1, 61 }, 62 ], 63}

Step 4: Apply the Seed

bash
1npx prisma db seed

Step 5: Verify

bash
1# List all available cards to verify 2node scripts/list-available-cards.cjs

Benefit Categories

Use these standard categories:

  • Travel - Airlines, hotels, TSA PreCheck, Uber, Lyft
  • Dining - Restaurants, food delivery
  • Entertainment - Streaming, events, concerts
  • Electronics - Dell, Apple, Best Buy
  • Wellness - Equinox, fitness memberships
  • Software - Adobe, subscriptions
  • Business Services - Professional services

Benefit Inclusion Criteria

Include:

  • Credits that reset on cycles (monthly/quarterly/yearly)
  • Free nights, statement credits, points multipliers with caps

Exclude:

  • Lounge memberships (Priority Pass, Centurion)
  • Insurance benefits
  • Earning rate multipliers without caps
  • One-time signup bonuses
  • Elite status benefits

Common Patterns

Calendar-Fixed Monthly

Credits that reset on the 1st of each month:

typescript
1cycleAlignment: BenefitCycleAlignment.CALENDAR_FIXED, 2frequency: BenefitFrequency.MONTHLY,

Card Anniversary Quarterly

Credits that reset every 3 months from card opening:

typescript
1cycleAlignment: BenefitCycleAlignment.CARD_ANNIVERSARY, 2frequency: BenefitFrequency.QUARTERLY,

Semi-Annual (Split Year)

Two separate benefits, one for each half of the year:

typescript
1// First half: Jan-Jun 2fixedCycleStartMonth: 1, 3fixedCycleDurationMonths: 6, 4 5// Second half: Jul-Dec 6fixedCycleStartMonth: 7, 7fixedCycleDurationMonths: 6,

Image Download Troubleshooting

If the automatic download fails:

  1. Try UseYourCredits source: --source useyourcredits
  2. Manual URL: Find the image manually and use --url
  3. Check slug mapping: Update USEYOURCREDITS_SLUGS in the script

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is add-new-credit-card?

Perfect for Financial Agents needing to integrate credit card management capabilities. add-new-credit-card is a skill that enables users to add new credit cards to a predefined card catalog, requiring card name and issuer information

How do I install add-new-credit-card?

Run the command: npx killer-skills add fantasy-cc/credit-card-tracker/add-new-credit-card. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for add-new-credit-card?

Key use cases include: Adding new credit card types to the system, Creating card templates with benefits, Downloading card images for user verification, Supporting new card issuers like American Express.

Which IDEs are compatible with add-new-credit-card?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for add-new-credit-card?

Requires user input for card information. Dependent on predefined card catalog. Limited to credit card management functionality.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add fantasy-cc/credit-card-tracker/add-new-credit-card. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use add-new-credit-card immediately in the current project.

Related Skills

Looking for an alternative to add-new-credit-card or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI