# Break Even Calc

> >

- **Type:** Skill
- **Install:** `agentstack add skill-openaccountant-skills-break-even-calc`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [openaccountant](https://agentstack.voostack.com/s/openaccountant)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [openaccountant](https://github.com/openaccountant)
- **Source:** https://github.com/openaccountant/skills/tree/main/business/break-even-calc

## Install

```sh
agentstack add skill-openaccountant-skills-break-even-calc
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Break-Even Analysis

## Overview
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.

## Wilson Tools Used
- `spending_summary` — aggregate expenses by category to classify as fixed or variable
- `transaction_search` — pull revenue data and detailed expense transactions for classification

## Workflow
1. Ask for the analysis period (recommend at least 3 months for accuracy) and average selling price per unit if applicable.
2. Use `spending_summary` to get all expense categories and totals.
3. Use `transaction_search` to pull total revenue for the period.
4. Classify each expense category:
   - **Fixed costs**: rent, salaries, insurance, software subscriptions, loan payments — costs that stay the same regardless of sales volume
   - **Variable costs**: materials, shipping, payment processing fees, sales commissions, packaging — costs that scale with sales volume
5. Calculate:
   - Total Fixed Costs per month
   - Variable Cost Ratio = Total Variable Costs / Total Revenue
   - Contribution Margin Ratio = 1 - Variable Cost Ratio
   - Break-Even Revenue = Fixed Costs / Contribution Margin Ratio
   - Break-Even Units = Break-Even Revenue / Price Per Unit (if applicable)
6. Present the analysis:

```
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%
═══════════════════════════════════════
```

7. Calculate Margin of Safety = (Current Revenue - Break-Even Revenue) / Current Revenue * 100.
8. Show sensitivity: what happens if fixed costs increase 10%, or variable costs rise 5%.

## Without Wilson
1. Export 3+ months of transactions from your bank as CSV.
2. In a spreadsheet, add a "Cost Type" column: mark each expense as "Fixed" or "Variable" (leave income rows blank).
3. Monthly Fixed Costs: `=SUMIFS(Amount, CostType, "Fixed") / NumberOfMonths` (use absolute values).
4. Monthly Variable Costs: `=SUMIFS(Amount, CostType, "Variable") / NumberOfMonths`.
5. Monthly Revenue: `=SUMIFS(Amount, Amount, ">0") / NumberOfMonths`.
6. Variable Cost Ratio: `=VariableCosts/Revenue`.
7. Break-Even Revenue: `=FixedCosts/(1-VariableCostRatio)`.
8. If you sell units at a known price: Break-Even Units = `=BreakEvenRevenue/PricePerUnit`.
9. For a quick check, use the SBA break-even calculator at sba.gov/business-guide/plan-your-business/calculate-your-startup-costs.

## Important Notes
- Some costs are semi-variable (e.g., electricity — base cost is fixed, usage varies). Assign these to whichever category dominates, or split them.
- Break-even assumes a constant product mix. If you sell multiple products at different margins, use a weighted average contribution margin.
- Service businesses often have very low variable costs (mostly labor, which may be fixed). The break-even for a solo consultant is essentially: Fixed Costs / Hourly Rate = Hours needed per month.
- Revisit this analysis quarterly. Fixed costs creep up as you add tools, staff, and space.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [openaccountant](https://github.com/openaccountant)
- **Source:** [openaccountant/skills](https://github.com/openaccountant/skills)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-openaccountant-skills-break-even-calc
- Seller: https://agentstack.voostack.com/s/openaccountant
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
