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.
npx claudepluginhub openaccountant/skillsThis skill uses the workspace's default tool permissions.
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.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Explores codebases via GitNexus: discover repos, query execution flows, trace processes, inspect symbol callers/callees, and review architecture.
Share bugs, ideas, or general feedback.
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.