بنقرة واحدة
Calculate break-even revenue by separating fixed and variable costs.
npx skills add https://github.com/openaccountant/skills --skill break-even-calcانسخ والصق هذا الأمر في Claude Code لتثبيت المهارة
Calculate break-even revenue by separating fixed and variable costs.
npx skills add https://github.com/openaccountant/skills --skill break-even-calcانسخ والصق هذا الأمر في Claude Code لتثبيت المهارة
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.
Manage finances across multiple businesses or legal entities.
| name | break-even-calc |
| description | Calculate break-even revenue by separating fixed and variable costs. |
Determine the revenue level at which total revenue equals total costs (zero profit). Separates expenses into fixed costs (rent, salaries, insurance) and variable costs (materials, commissions, shipping) to calculate the break-even point in both dollars and units.
spending_summary — aggregate expenses by category to classify as fixed or variabletransaction_search — pull revenue data and detailed expense transactions for classificationspending_summary to get all expense categories and totals.transaction_search to pull total revenue for the period.BREAK-EVEN ANALYSIS — [Period]
═══════════════════════════════════════
Monthly Fixed Costs
Rent $2,000
Salaries $8,000
Software $500
Insurance $300
Total Fixed $10,800
Variable Cost Ratio 35%
Contribution Margin 65%
BREAK-EVEN REVENUE $16,615/mo
Break-Even Units 166 units @ $100/unit
Current Revenue $22,000/mo
Margin of Safety 24.5%
═══════════════════════════════════════
=SUMIFS(Amount, CostType, "Fixed") / NumberOfMonths (use absolute values).=SUMIFS(Amount, CostType, "Variable") / NumberOfMonths.=SUMIFS(Amount, Amount, ">0") / NumberOfMonths.=VariableCosts/Revenue.=FixedCosts/(1-VariableCostRatio).=BreakEvenRevenue/PricePerUnit.