fintech-engineer

404kidwiz/claude-supercode-skills · updated Apr 8, 2026

$npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill fintech-engineer
0 commentsdiscussion
summary

Provides expert guidance on building financial technology systems with proper accounting principles, regulatory compliance, and high-precision calculations. Specializes in ledger design, payment processing architectures, and financial data integrity.

skill.md

Fintech Engineer

Purpose

Provides expert guidance on building financial technology systems with proper accounting principles, regulatory compliance, and high-precision calculations. Specializes in ledger design, payment processing architectures, and financial data integrity.

When to Use

  • Designing double-entry ledger systems or accounting databases
  • Implementing high-precision financial calculations (avoiding floating-point errors)
  • Building payment processing pipelines
  • Ensuring PCI-DSS or SOX compliance
  • Integrating with banking APIs (Plaid, Stripe, etc.)
  • Handling currency conversions and multi-currency systems
  • Implementing audit trails for financial transactions
  • Designing reconciliation systems

Quick Start

Invoke this skill when:

  • Building ledger or accounting systems
  • Implementing financial calculations requiring precision
  • Designing payment processing architectures
  • Ensuring regulatory compliance (PCI, SOX, PSD2)
  • Integrating banking or payment APIs

Do NOT invoke when:

  • General database design without financial context → use /database-administrator
  • API integration without financial specifics → use /api-designer
  • Generic security hardening → use /security-engineer
  • ML-based fraud detection models → use /ml-engineer

Decision Framework

Financial Calculation Needed?
├── Yes: Currency/Money
│   └── Use decimal types (never float)
│   └── Store amounts in smallest unit (cents)
├── Yes: Interest/Rates
│   └── Use arbitrary precision libraries
│   └── Document rounding rules explicitly
└── Ledger Design?
    ├── Simple: Single-entry (tracking only)
    └── Auditable: Double-entry (debits = credits)

Core Workflows

1. Double-Entry Ledger Implementation

  1. Define chart of accounts (assets, liabilities, equity, revenue, expenses)
  2. Create journal entry table with debit/credit columns
  3. Implement balance validation (sum of debits = sum of credits)
  4. Add audit trail with immutable transaction logs
  5. Build reconciliation queries

2. Payment Processing Pipeline

  1. Validate payment request and idempotency key
  2. Create pending transaction record
  3. Call payment processor with retry logic
  4. Handle webhook for async confirmation
  5. Update ledger entries atomically
  6. Generate receipt and audit log

3. Precision Calculation Setup

  1. Choose appropriate numeric type (DECIMAL, NUMERIC, BigDecimal)
  2. Define scale (decimal places) based on currency
  3. Implement rounding rules per jurisdiction
  4. Create calculation helper functions
  5. Add validation for overflow/underflow

Best Practices

  • Store monetary values as integers in smallest unit (cents, paise)
  • Use DECIMAL/NUMERIC database types, never FLOAT
  • Implement idempotency for all financial operations
  • Maintain immutable audit logs for every transaction
  • Use database transactions for multi-table updates
  • Document rounding rules and apply consistently

Anti-Patterns

Anti-Pattern Problem Correct Approach
Using floats for money Precision errors accumulate Use decimal types or integer cents
Mutable transaction records Audit trail destroyed Append-only logs, soft deletes
Missing idempotency Duplicate charges possible Idempotency keys on all mutations
Single-entry for auditable systems Cannot reconcile or audit Double-entry with balanced journals
Hardcoded tax rates Compliance failures Configuration-driven, versioned rules

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.634 reviews
  • Chinedu Perez· Dec 28, 2024

    Registry listing for fintech-engineer matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Arya Robinson· Dec 24, 2024

    Solid pick for teams standardizing on skills: fintech-engineer is focused, and the summary matches what you get after install.

  • Kofi Ghosh· Dec 4, 2024

    I recommend fintech-engineer for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Rahul Santra· Nov 27, 2024

    fintech-engineer is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Evelyn Mehta· Nov 23, 2024

    fintech-engineer is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Hassan Anderson· Nov 23, 2024

    fintech-engineer reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Advait Chen· Nov 19, 2024

    Useful defaults in fintech-engineer — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Michael Khan· Nov 15, 2024

    We added fintech-engineer from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Pratham Ware· Oct 18, 2024

    Keeps context tight: fintech-engineer is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Arya Perez· Oct 14, 2024

    Keeps context tight: fintech-engineer is the kind of skill you can hand to a new teammate without a long onboarding doc.

showing 1-10 of 34

1 / 4