Skip to main content

money

Bank accounts, balances, and transactions via Plaid. Use when: bank, balance, transactions, spending, accounts, or plaid.

インストールへ移動

ソース情報

リポジトリ
Hmbown/CodeWhale
ソースの最終更新活動
2026年9月18日 06:21
検出された SKILL.md の言語
英語
スター
41,023
フォーク
3,562

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
money
description
Bank accounts, balances, and transactions via Plaid. Use when: bank, balance, transactions, spending, accounts, or plaid.
# Money ## When to use Account balances, transaction history, and spending analysis across the user's bank accounts. ## Setup Requires Plaid API credentials. Fail loud when they are missing: ``` PLAID_CLIENT_ID=... PLAID_SECRET=... # sandbox keys first, production only when asked ``` The Link flow opens in the user's browser — the user completes it, the agent drives everything after token exchange. Start in `sandbox`; touch `production` only with explicit approval. ## Workflow 1. Exchange the public token once: `POST /item/public_token/exchange`. 2. Balances: `POST /accounts/balance`. History: `POST /transactions/sync` with its cursor, paging until `has_more` is false. 3. Report with dates, merchant names, and amounts; call out pending vs posted. 4. Spending analysis aggregates by category or merchant on request. ## Non-goals - Do not move money, pay bills, or initiate transfers. Read-only, always. - Do not store account or routing numbers beyond the session need. - Do not paste secrets into chat, logs, or files.
GitHubで見る