{
  "tool_id": "bootstrapped_runway_calculator",
  "slug": "bootstrapped-runway-calculator",
  "path": "/bootstrapped-runway-calculator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/bootstrapped-runway-calculator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/bootstrapped-runway-calculator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/bootstrapped-runway-calculator/",
  "sample_input": {
    "tool": "bootstrapped_runway_calculator",
    "personal_savings": 30000,
    "monthly_personal_expenses": 3000,
    "side_income": 0,
    "current_mrr": 500,
    "monthly_mrr_growth": 10,
    "monthly_business_costs": 200
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "personal_savings": {
        "type": "number"
      },
      "monthly_personal_expenses": {
        "type": "number"
      },
      "side_income": {
        "type": "number"
      },
      "current_mrr": {
        "type": "number"
      },
      "monthly_mrr_growth": {
        "type": "number"
      },
      "monthly_business_costs": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "personal_savings",
      "monthly_personal_expenses",
      "side_income",
      "current_mrr",
      "monthly_mrr_growth",
      "monthly_business_costs"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "personalRunwayMonths": {
        "type": "number"
      },
      "monthsToRamenProfitable": {
        "type": "number"
      },
      "monthsToFullyProfitable": {
        "type": "number"
      },
      "breakEvenMrr": {
        "type": "number"
      },
      "ramenMrr": {
        "type": "number"
      },
      "timeline": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "month": {
              "type": "number"
            },
            "savings": {
              "type": "number"
            },
            "mrr": {
              "type": "number"
            },
            "netCashFlow": {
              "type": "number"
            }
          }
        }
      },
      "insight": {
        "type": "string"
      }
    }
  }
}
