Generates profit and loss statements for any date range using Wilson tools like transaction_search and spending_summary to aggregate revenue, COGS, operating expenses, and calculate gross/net margins. Includes manual CSV/Excel workflow.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openaccountant-skills:profit-lossThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Build a standard income statement (P&L) showing revenue, cost of goods sold, gross profit, operating expenses, and net income. Calculates gross margin and net margin percentages.
Build a standard income statement (P&L) showing revenue, cost of goods sold, gross profit, operating expenses, and net income. Calculates gross margin and net margin percentages.
transaction_search — pull all income transactions (positive amounts) and expense transactions (negative amounts) for the target periodspending_summary — aggregate expenses by category to populate operating expense line itemstransaction_search with amount > 0 to find all revenue transactions in the period.transaction_search with amount < 0 to find all expense transactions.spending_summary for the same period to get category-level expense totals.PROFIT & LOSS STATEMENT — [Period]
═══════════════════════════════════════
Revenue
Sales Revenue $XX,XXX
Service Revenue $XX,XXX
───────────────────────────────────────
Total Revenue $XX,XXX
Cost of Goods Sold
Materials ($X,XXX)
Direct Labor ($X,XXX)
───────────────────────────────────────
Total COGS ($X,XXX)
GROSS PROFIT $XX,XXX
Gross Margin XX.X%
Operating Expenses
Rent ($X,XXX)
Utilities ($XXX)
Software & Subscriptions ($XXX)
Payroll ($X,XXX)
Insurance ($XXX)
Other ($XXX)
───────────────────────────────────────
Total Operating Expenses ($X,XXX)
NET INCOME $X,XXX
Net Margin XX.X%
═══════════════════════════════════════
=SUMIFS(Amount, Type, "Revenue") for total revenue.=SUMIFS(Amount, Type, "COGS") for total COGS (use absolute values).=GrossProfit/Revenue*100.=SUMIFS(Amount, Type, "Operating Expense") for total OpEx.=NetIncome/Revenue*100.=TEXT(Date,"YYYY-MM") column and use pivot tables to break out by month.npx claudepluginhub openaccountant/skillsBuilds profit & loss statements from Well workspace posted accounting ledger. Use for P&L, income statement, or net result queries.
Generates income statements, balance sheets, cash flows with period-over-period comparisons and variance analysis for monthly/quarterly P&L, budget vs actuals, and GAAP-compliant reporting.
Generates custom financial reports with user-defined date ranges, categories, transaction types, minimum amounts, and output formats using spending_summary, transaction_search, and export_transactions tools.