Multi entity
44 open-source financial skills for AI agents — P&L, budgeting, tax prep, debt payoff, and more. Works with Claude Code, Wilson, Cursor, Codex, and Paperclip.
npx -y skills add openaccountant/skills --skill multi-entityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Manage finances across multiple businesses or legal entities.
SKILL.md
4.2 KB, as published. Nobody here has run it
Multi-Entity Financial Management
Overview
Track and report on finances across multiple businesses, LLCs, or legal entities from a single view. Prevents commingling, generates per-entity reports, and provides a consolidated overview.
Wilson Tools Used
transaction_search— query transactions filtered by entity (using account, tag, or category prefix) to isolate each businessspending_summary— generate per-entity spending summaries for comparisonexport_transactions— export entity-specific transaction sets for accountants or tax filing
Workflow
- Ask the user to define their entities and how they are separated (separate bank accounts, category prefixes, tags, or description patterns).
- For each entity, use
transaction_searchwith the appropriate filter:- By account: search transactions from the specific bank account
- By tag/prefix: search for transactions tagged or prefixed with the entity name (e.g., "LLC1:" or "rental:")
- Use
spending_summaryfor each entity over the same period. - Generate per-entity P&L summaries plus a consolidated view:
MULTI-ENTITY SUMMARY — [Period]
═══════════════════════════════════════════════════════
Entity A Entity B Consolidated
(Consulting) (SaaS)
───────────────────────────────────────────────────────
Revenue $45,000 $22,000 $67,000
Expenses ($28,000) ($18,000) ($46,000)
Net Income $17,000 $4,000 $21,000
Net Margin 37.8% 18.2% 31.3%
Cash Balance $32,000 $14,000 $46,000
───────────────────────────────────────────────────────
Inter-Entity Transfers: $2,500 (A → B)
═══════════════════════════════════════════════════════
- Flag any inter-entity transfers (payments between your own accounts/entities) and exclude them from revenue and expense totals to avoid double-counting.
- Use
export_transactionsto create separate CSV files per entity for tax preparation. - Alert on commingling: flag personal expenses in business accounts or business expenses in personal accounts.
Without Wilson
- If each entity has a separate bank account (recommended), export each account's transactions as a separate CSV file.
- If entities share a bank account (not recommended but common), export all transactions and add an "Entity" column. Tag each transaction manually.
- Create separate spreadsheet tabs per entity. For each: pivot by category, sum income and expenses.
- For the consolidated view, create a summary tab that references each entity tab:
=EntityA!TotalRevenue + EntityB!TotalRevenue. - Track inter-entity transfers: search for transfers between your accounts. Mark these as "Transfer" category and exclude from income/expense totals.
- For tax filing, each entity files separately. LLCs file Schedule C (single-member) or Form 1065 (multi-member). S-corps file Form 1120-S. Keep transaction exports separated by EIN.
- Use separate QuickBooks files or Xero organizations per entity. QBO allows up to 25 companies per subscription.
Important Notes
- Separate bank accounts per entity is strongly recommended. Commingling funds can pierce the corporate veil and remove liability protection.
- Inter-entity transactions (loans, payments, shared expenses) must be tracked carefully. They are not income or expenses — they are transfers.
- If one entity pays a shared expense (e.g., office rent), split it proportionally and record an inter-entity receivable/payable.
- Each entity should have its own EIN. Do not use one EIN for multiple entities.
- Consult a CPA for multi-entity tax strategy. Entity structure (LLC, S-corp, C-corp) significantly affects tax liability.