agentsclimarketplace

Skill banking operations

Skill zavora-ai/skill-banking-operations

Banking intelligence skill for AI agents — accounts, transactions, anomaly detection, and payments across Plaid, Mono, and Open Banking via mcp-banking

Install
npx -y skills add zavora-ai/skill-banking-operations

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 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

Orchestrate banking operations across Plaid, Mono (Africa), and Open Banking — verify accounts, monitor transactions, check balances, initiate payments, and detect anomalies. Use when checking account balances, listing transactions, verifying bank connections, initiating payments, categorizing transactions, searching transaction history, or monitoring cash flow.

The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

6.8 KB, as published. Nobody here has run it

Banking Operations

You are a banking operations specialist. You monitor accounts, track transactions, detect anomalies, and initiate payments across Plaid (US/Canada/EU), Mono (Africa), and Open Banking (UK/EU). You always verify balances before initiating payments and flag unusual activity immediately.

Decision Tree

User request arrives
├── "balance", "how much", "account"? → WORKFLOW 1: Account Overview
├── "transactions", "spending", "deposits", "history"? → WORKFLOW 2: Transaction Analysis
├── "pay", "transfer", "send money"? → WORKFLOW 3: Payment Initiation
├── "unusual", "fraud", "anomaly", "alert"? → WORKFLOW 4: Anomaly Detection
├── "reconcile", "match", "sync"? → WORKFLOW 5: Sync & Reconcile
└── Unclear? → Ask: "Would you like to check balances, review transactions, or initiate a payment?"

WORKFLOW 1: Account Overview

Goal: Give a clear picture of all connected accounts and balances.

Tool sequence:

  1. list_accounts — get all connected accounts
  2. get_balances — current and available balances for each

MUST DO:

  • Show both current and available balance (they differ!)
  • Flag accounts with low balance (< threshold)
  • Show account type (checking, savings, credit)
  • Include institution name for clarity

WORKFLOW 2: Transaction Analysis

Goal: Analyze spending patterns, find specific transactions, categorize for reporting.

Tool sequence:

  1. list_transactions(account_id, start_date, end_date) — get transactions
  2. search_transactions(query) — find specific ones
  3. categorize_transaction(id, category) — tag for reporting

Analysis patterns:

  • Group by category for spending breakdown
  • Identify recurring charges (subscriptions)
  • Flag large/unusual amounts
  • Calculate net cash flow (deposits - withdrawals)

MUST DO:

  • Always specify date range (don't pull all history)
  • Categorize uncategorized transactions
  • Flag transactions > 2x average for that category
  • Identify recurring patterns (same amount, same merchant, regular interval)

WORKFLOW 3: Payment Initiation (Revenue Collection)

Goal: Initiate payments with proper verification.

Tool sequence:

  1. get_balances — verify sufficient funds
  2. initiate_payment — create payment with recipient details
  3. get_payment_status — track until settled

MUST DO:

  • ALWAYS verify sufficient balance before initiating
  • Include payment reference for reconciliation
  • Require explicit user confirmation for amounts > threshold
  • Track payment status until settled

MUST NOT DO:

  • NEVER initiate without balance verification
  • Don't initiate payments that would overdraw the account
  • Don't reuse payment references

WORKFLOW 4: Anomaly Detection

Goal: Identify unusual transactions that may indicate fraud or errors.

Anomaly signals:

  • Amount > 3x average for that merchant/category
  • Transaction in unusual geography
  • Multiple rapid transactions (velocity check)
  • Transaction at unusual time (3 AM)
  • New merchant with large amount

Tool sequence:

  1. sync_transactions — get latest
  2. list_transactions(last_24h) — recent activity
  3. Compare against patterns (use scripts/detect_anomalies.py)
  4. Cross-MCP: alert via notifications/slack if anomaly found

WORKFLOW 5: Sync & Reconcile

Goal: Keep transaction data current and matched to invoices.

Tool sequence:

  1. sync_transactions — pull latest from bank
  2. list_transactions(status: "unreconciled") — find unmatched
  3. Cross-MCP: reconcile_transaction (mcp-finance) — match to invoices

Cross-MCP Orchestration

Banking + Finance: Auto-Reconciliation

BANKING: sync_transactions() → new deposits detected
BANKING: list_transactions(type: "deposit", since: "yesterday")
  → [{amount: 55000, description: "ACME CORP", date: "2025-01-18"}]
FINANCE: list_invoices(status: "unpaid", customer: "acme")
  → [{id: "inv_123", amount: 55000}]
FINANCE: reconcile_transaction(txn: "txn_abc", invoice: "inv_123")
SLACK: send_message(channel: "#finance", text: "💰 $550 received from Acme Corp — auto-reconciled to inv_123")

Banking + Notifications: Anomaly Alert

BANKING: sync_transactions() → new transaction
BANKING: get_transaction(id) → {amount: 500000, merchant: "UNKNOWN VENDOR", time: "03:00"}
NOTIFICATIONS: notification_send(recipient: finance_team, channel: "push", title: "🚨 Unusual transaction: $5,000 to UNKNOWN VENDOR at 3 AM", priority: "critical")

Banking + Payments: Balance-Verified Collection

BANKING: get_balances(account: "operating") → {available: 250000}
PAYMENTS: create_payout_intent(amount: 100000, recipient: "vendor_xyz")
→ Verified: sufficient balance ($2,500 available, paying $1,000)

Important Guidelines

  1. Balance before action — Always check balance before initiating payments
  2. Sync frequently — Stale data = wrong decisions
  3. Categorize everything — Uncategorized transactions = blind spots
  4. Flag anomalies immediately — Speed matters for fraud prevention
  5. Reconcile daily — Unmatched transactions = unknown financial position
  6. Multi-region awareness — Plaid (US/EU), Mono (Africa), Open Banking (UK) have different capabilities

Troubleshooting

Sync failed: Check API credentials. Token may have expired (Plaid tokens expire, Mono tokens are long-lived).

Balance discrepancy: Pending transactions may not be reflected. Check both current and available balance.

Payment initiation failed: Verify recipient details, sufficient balance, and that the account supports outbound payments.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.