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에서 보기