Calculates break-even revenue and units by separating fixed and variable costs from financial transactions via spending_summary and transaction_search tools. Includes margin of safety and sensitivity analysis.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openaccountant-skills:break-even-calcThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
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.npx claudepluginhub openaccountant/skillsCalculates break-even point in units and revenue using cost-volume-profit analysis. Helps model pricing, volume, and cost changes on profitability.
Builds monthly financial projections with scenario modeling (best/base/worst) for SaaS, e-commerce, service, or marketplace businesses. Covers revenue forecasting, unit economics (CAC, LTV, payback), break-even analysis, cash flow tracking, and churn modeling.
Analyzes product/service pricing against costs using transaction and spending data to calculate margins, flag underpriced items, and suggest target prices for desired profitability.