一键导入
venmo-reconciler
Reconcile Venmo business transactions and separate personal from business.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Reconcile Venmo business transactions and separate personal from business.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Calculate break-even revenue by separating fixed and variable costs.
Project future cash flow using historical trends and recurring patterns.
Analyze revenue and costs per client to find your most profitable accounts.
Monitor 1099 contractor payments and flag $600 threshold.
Track unpaid invoices by age bucket and flag overdue payments.
Run a monthly bookkeeping close checklist with reconciliation.
| name | venmo-reconciler |
| description | Reconcile Venmo business transactions and separate personal from business. |
Import and reconcile Venmo transaction exports, separating personal transfers from business income/expenses. Venmo mixes social payments with business transactions in a single feed — this skill classifies each transaction, flags ambiguous entries for review, and imports business-relevant transactions into Open Accountant.
transaction_search — check for duplicates and cross-reference with bank importscategorize — assign business categories to Venmo transactionsanomaly_detect — flag transactions that look personal in a business context (or vice versa)export_transactions — export reconciled business transactions| Venmo CSV Column | Open Accountant Field | Notes |
|---|---|---|
ID | reference_id | Venmo transaction ID for dedup |
Datetime | date | Transaction timestamp |
Note | description | User-entered payment note |
From | description (prefix) | Sender name |
To | description (prefix) | Recipient name |
Amount (total) | amount | Signed amount (+ received, - sent) |
Status | — | Only import Complete transactions |
Type | — | Payment, Charge, Transfer, etc. |
Funding Source | notes | Venmo balance, bank, card |
Complete transactions.Payment (sent/received money for goods or services)Charge (invoiced someone and they paid)Standard Transfer and Instant Transfer (bank transfers, appear in bank import)To reconcile Venmo transactions manually:
+ $50.00 or - $25.00 with spaces. Clean with Find & Replace: remove $, +, and spaces, then convert the column to Number format.Business, Personal, Review.=IF(OR(
REGEXMATCH(Note,"(?i)invoice|payment for|consulting|freelance|order|service"),
ABS(Amount)>100
), "Business",
IF(OR(
REGEXMATCH(Note,"(?i)dinner|lunch|drinks|rent|split|birthday|thanks"),
LEN(Note)<10
), "Personal",
"Review"))
Business Income: =SUMIFS(Amount, Classification, "Business", Amount, ">0")
Business Expenses: =ABS(SUMIFS(Amount, Classification, "Business", Amount, "<0"))