Plaid
Curated agent skills for Claude Code, OpenClaw, Codex, and other AI agents
npx -y skills add aneym/agent-skills --skill plaidAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 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
Query financial accounts, balances, transactions, and spending via Plaid. Connect bank accounts and retrieve real-time balance and transaction data. Use when the user asks about bank balances, credit card balances, recent transactions, spending habits, financial summaries, or wants to connect a new bank account.
SKILL.md
2.1 KB, 429 tokens by cl100k_base, as published. Nobody here has run it
Plaid — Financial Data Skill
Query connected bank accounts for balances, transactions, and spending insights via Plaid API.
Environment Variables
Required:
PLAID_CLIENT_ID— Plaid client IDPLAID_SECRET— Plaid secret keyPLAID_ENV—production,sandbox, ordevelopment
Optional:
PLAID_TOKENS_PATH— Override token storage path (default:$OPENCLAW_WORKSPACE/state/plaid-tokens.json)
Load from a .env file:
export $(grep -E '^PLAID_(CLIENT_ID|SECRET|ENV)=' /path/to/.env | xargs)
Install Dependencies
cd {baseDir} && npm install
First-Time Setup: Connect a Bank
node {baseDir}/scripts/server.js
Opens at http://localhost:3456. Connect multiple banks — server stays running. Tokens saved automatically.
Query Balances
node {baseDir}/scripts/balances.js [--json]
Query Transactions
node {baseDir}/scripts/transactions.js [options]
Options: --days N (default 30), --search "query", --category "food", --account "checking", --json
Financial Insights
node {baseDir}/scripts/insights.js [--days N] [--json]
Returns: cash flow summary, category breakdown, top merchants, recurring/subscription detection, card usage, credit utilization.
Notes
- Plaid categorizes transactions automatically (FOOD_AND_DRINK, TRANSPORTATION, etc.)
- Charge cards (Amex Gold/Platinum) don't report credit limits — utilization only reflects revolving cards
transactionsSyncis used for efficiency — first call may be slower as Plaid builds the cursor- Token storage is a JSON file in the agent workspace; back it up if needed