AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Venmo Reconciler

skill-openaccountant-skills-venmo-reconciler · by openaccountant

>

No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add skill-openaccountant-skills-venmo-reconciler

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-openaccountant-skills-venmo-reconciler)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Venmo Reconciler? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Venmo Reconciler

Overview

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.

Wilson Tools Used

  • transaction_search — check for duplicates and cross-reference with bank imports
  • categorize — assign business categories to Venmo transactions
  • anomaly_detect — flag transactions that look personal in a business context (or vice versa)
  • export_transactions — export reconciled business transactions

Column Mapping

| 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 |

Workflow

  1. Ask the user for the Venmo CSV file path.
  2. Parse the CSV and validate Venmo column headers.
  3. Filter by status: only Complete transactions.
  4. Filter by type:
  • Import: Payment (sent/received money for goods or services)
  • Import: Charge (invoiced someone and they paid)
  • Skip: Standard Transfer and Instant Transfer (bank transfers, appear in bank import)
  1. Classify each transaction as personal or business:
  • Business signals: notes containing keywords like "invoice," "payment for," business name, service description, dollar amounts > $100
  • Personal signals: notes with emoji, first-name-only, social language ("thanks for dinner," "splitting rent")
  • Ambiguous: flag for manual review
  1. Present the classification for user confirmation:
  • Business transactions: import with appropriate categories
  • Personal transactions: skip (or import to a "Personal" category if user wants full tracking)
  • Ambiguous: ask user to classify each one
  1. Deduplicate against existing transactions using Venmo ID.
  2. Import confirmed business transactions.

Without Wilson

To reconcile Venmo transactions manually:

Downloading from Venmo

  1. Log in at venmo.com (must use web, not the app)
  2. Go to Statements (under Settings, or navigate to venmo.com/account/statement)
  3. Select the date range (available in monthly chunks)
  4. Click Download CSV
  5. Alternative: In the Venmo app > Settings > Tax Documents for 1099-K if applicable (only if you exceed IRS thresholds: $5,000 in 2024+)

Manual Reconciliation in a Spreadsheet

  1. Open the CSV. Venmo CSVs have some quirks:
  • The first few rows may be metadata — delete them so your header row is the first row.
  • Amounts may be formatted as + $50.00 or - $25.00 with spaces. Clean with Find & Replace: remove $, +, and spaces, then convert the column to Number format.
  1. Filter out transfers: Remove rows where Type is "Standard Transfer" or "Instant Transfer."
  2. Add a "Classification" column with values: Business, Personal, Review.
  3. Classify by keyword search:

`` =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)0") Business Expenses: =ABS(SUMIFS(Amount, Classification, "Business", Amount, "<0")) ``

  1. Tax note: If your Venmo business income exceeds $5,000/year (2024 threshold), Venmo issues a 1099-K. Your records should reconcile with this form.

Reconciliation Tips

  • Cross-reference Venmo transfers to your bank account with your bank statement. The "Standard Transfer" amounts in Venmo should match deposits in your bank.
  • If you use Venmo for Business (separate business profile), those transactions are pre-classified — export them separately.

Important Notes

  • Venmo personal vs. business classification is a best-effort heuristic. Always review the results.
  • Venmo notes are user-entered free text and often contain emoji, jokes, or vague descriptions. Categorization accuracy depends on note quality.
  • The IRS reporting threshold for payment apps is $5,000 for 2024 and later tax years. If you receive business payments via Venmo above this threshold, you'll receive a 1099-K.
  • Venmo "Standard Transfer" to your bank takes 1-3 business days. "Instant Transfer" is immediate but has a fee. Neither should be imported as revenue — they're just moving money to your bank.
  • If you use both Venmo personal and Venmo for Business profiles, export and import them separately to avoid mixing.
  • Venmo CSV downloads are only available through the website, not the mobile app.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.