Expert patterns for Plaid API integration including Link token flows, transactions sync, identity verification, Auth for ACH, balance checks, webhook handling, and fintech compliance best practices. Use when: plaid, bank account linking, bank connection, ach, account aggregation.
Add this skill
npx mdskills install sickn33/plaid-fintechProvides high-level patterns but lacks actionable instructions and specifics for agent execution
1---2name: plaid-fintech3description: "Expert patterns for Plaid API integration including Link token flows, transactions sync, identity verification, Auth for ACH, balance checks, webhook handling, and fintech compliance best practices. Use when: plaid, bank account linking, bank connection, ach, account aggregation."4source: vibeship-spawner-skills (Apache 2.0)5---67# Plaid Fintech89## Patterns1011### Link Token Creation and Exchange1213Create a link_token for Plaid Link, exchange public_token for access_token.14Link tokens are short-lived, one-time use. Access tokens don't expire but15may need updating when users change passwords.161718### Transactions Sync1920Use /transactions/sync for incremental transaction updates. More efficient21than /transactions/get. Handle webhooks for real-time updates instead of22polling.232425### Item Error Handling and Update Mode2627Handle ITEM_LOGIN_REQUIRED errors by putting users through Link update mode.28Listen for PENDING_DISCONNECT webhook to proactively prompt users.293031## Anti-Patterns3233### ❌ Storing Access Tokens in Plain Text3435### ❌ Polling Instead of Webhooks3637### ❌ Ignoring Item Errors3839## ⚠️ Sharp Edges4041| Issue | Severity | Solution |42|-------|----------|----------|43| Issue | critical | See docs |44| Issue | high | See docs |45| Issue | high | See docs |46| Issue | high | See docs |47| Issue | medium | See docs |48| Issue | medium | See docs |49| Issue | medium | See docs |50| Issue | medium | See docs |51
Full transparency — inspect the skill content before installing.