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.
npx claudepluginhub openaccountant/skillsThis skill uses the workspace's default tool permissions.
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.
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.
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.