con un clic
plaidd
Access Plaid banking APIs - accounts, transactions, balances, insights, and more
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Access Plaid banking APIs - accounts, transactions, balances, insights, and more
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
| name | plaidd |
| description | Access Plaid banking APIs - accounts, transactions, balances, insights, and more |
| metadata | {"clawdbot":{"requires":{"bins":["plaidd"],"env":["PLAID_CLIENT_ID","PLAID_SECRET"]}}} |
Use the plaidd CLI to interact with Plaid banking APIs. All commands output JSON.
Requires environment variables:
PLAID_CLIENT_ID - Your Plaid client IDPLAID_SECRET - Your Plaid secret keyPLAID_ENV - Environment: sandbox (default) or productionBank connections are stored in ~/.plaidd/config.json (managed by plaidd).
| User Intent | Command | Notes |
|---|---|---|
| Current balance | accounts list | Use cached data (FREE) |
| Real-time balance | accounts balance | Only if user says "current" or "refresh" (COSTS) |
| Recent transactions | transactions sync | Incremental updates |
| Transactions by date | transactions get --start-date --end-date | Specific range |
| Spending breakdown | insights spending | Aggregated by category (FREE) |
| Unusual activity | insights anomalies | Statistical outliers (FREE) |
| Monthly overview | insights cashflow | Income vs expenses (FREE) |
| Subscriptions | insights recurring | Recurring expenses (FREE) |
accounts list, transactions *, insights *accounts balance, auth getDefault to FREE commands. Only use accounts balance when user explicitly asks for "current", "real-time", or "up-to-date" balance.
Users may have multiple bank connections:
# List all connections
plaidd connection list
# Use default connection (automatic)
plaidd accounts list
# Use specific connection
plaidd accounts list --connection chase
# Query all connections
plaidd accounts balance --all-connections
When to use --all-connections:
When to use specific --connection:
User: "What's my checking account balance?"
Agent workflow:
plaidd accounts list --pretty
Filter for type: "depository" and subtype: "checking", report available balance.
Response: "Your Chase Checking (***1234) has $2,450.67 available."
User: "How much did I spend on food this month?"
Agent workflow:
# Calculate first of month to today
plaidd insights spending --start-date YYYY-MM-01 --end-date YYYY-MM-DD --pretty
Find FOOD_AND_DRINK category in by_category array.
Response: "You've spent $423.15 on food this month: $285.40 at restaurants, $137.75 on groceries."
User: "What subscriptions am I paying for?"
Agent workflow:
plaidd insights recurring --type outflow --pretty
Look at outflow_streams for recurring expenses.
Response: "Your recurring expenses total $892/month: Netflix ($15.99), Spotify ($9.99), Gym ($50)..."
User: "Any unusual charges this month?"
Agent workflow:
plaidd insights anomalies --pretty
Review anomalies array, explain each finding.
Response: "I found 2 unusual transactions: A $1,500 transfer on Jan 15 (higher than your average), and a new merchant 'XYZ Corp' for $89.99."
User: "How am I doing financially this month?"
Agent workflow:
plaidd insights cashflow --period month --pretty
Report summary: income, expenses, net, savings rate.
Response: "This month: Income $5,200, Expenses $3,450, Net +$1,750 (34% savings rate)."
depository + checking = Checking accountdepository + savings = Savings accountcredit = Credit cardloan = Loans (mortgage, auto, student)investment = Brokerage/retirement accountsINCOME - Salary, freelanceFOOD_AND_DRINK - Restaurants, groceriesTRANSPORTATION - Gas, rideshare, parkingSHOPPING - Retail, onlineENTERTAINMENT - Streaming, eventsBILLS_AND_UTILITIES - Rent, utilitiesTRANSFER_OUT - Transfers between accounts| Error Code | Meaning | Recovery |
|---|---|---|
ITEM_LOGIN_REQUIRED | Bank needs re-auth | "Run plaidd connection add to reconnect" |
INVALID_ACCESS_TOKEN | Token expired | "Run plaidd connection add to reconnect" |
NO_ACCOUNTS | No accounts found | Check connection is set up |
| Command | Description |
|---|---|
plaidd connection list | List all bank connections |
plaidd connection add | Connect a new bank |
plaidd connection add --sandbox | Quick sandbox connection |
plaidd connection remove <alias> | Remove a connection |
plaidd connection set-default <alias> | Set default connection |
plaidd connection info [alias] | Show connection details |
| Command | Description |
|---|---|
plaidd insights spending | Spending by category/merchant |
plaidd insights anomalies | Detect unusual transactions |
plaidd insights cashflow | Income vs expenses |
plaidd insights recurring | Recurring transactions |
| Command | Description |
|---|---|
plaidd accounts list | List accounts (cached, FREE) |
plaidd accounts balance | Real-time balances (COSTS) |
| Command | Description |
|---|---|
plaidd transactions sync | Sync transactions |
plaidd transactions get | Get by date range |
plaidd transactions recurring | Plaid-detected recurring |
| Command | Description |
|---|---|
plaidd item get | Get item metadata |
plaidd item remove | Remove item |
plaidd auth get | ACH/routing numbers |
plaidd identity get | Account holder info |
plaidd institutions search | Search institutions |
--connection <alias> - Use specific bank connection--all-connections - Query all connections--start-date <YYYY-MM-DD> - Start date for range queries--end-date <YYYY-MM-DD> - End date for range queries--pretty - Format JSON outputSuccess:
{"success": true, "accounts": [...], "request_id": "abc123"}
Error:
{"success": false, "error": {"type": "INVALID_REQUEST", "code": "...", "message": "..."}}