{
  "tool_id": "employee_cost_calculator",
  "slug": "employee-cost-calculator",
  "path": "/employee-cost-calculator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/employee-cost-calculator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/employee-cost-calculator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/employee-cost-calculator/",
  "sample_input": {
    "tool": "employee_cost_calculator",
    "base_salary": 65000,
    "payroll_tax_pct": 7.65,
    "retirement_match_percent": 3,
    "health_insurance_annual": 7000,
    "pto_weeks": 3,
    "equipment_annual": 2000,
    "software_annual": 1200,
    "office_space_annual": 5000,
    "training_annual": 1500,
    "unemployment_insurance_rate": 2,
    "workers_comp_rate": 1,
    "recruiting_cost": 0
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "base_salary": {
        "type": "number"
      },
      "payroll_tax_pct": {
        "type": "number"
      },
      "retirement_match_percent": {
        "type": "number"
      },
      "health_insurance_annual": {
        "type": "number"
      },
      "pto_weeks": {
        "type": "number"
      },
      "equipment_annual": {
        "type": "number"
      },
      "software_annual": {
        "type": "number"
      },
      "office_space_annual": {
        "type": "number"
      },
      "training_annual": {
        "type": "number"
      },
      "unemployment_insurance_rate": {
        "type": "number"
      },
      "workers_comp_rate": {
        "type": "number"
      },
      "recruiting_cost": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "base_salary",
      "payroll_tax_pct",
      "retirement_match_percent",
      "health_insurance_annual",
      "pto_weeks",
      "equipment_annual",
      "software_annual",
      "office_space_annual",
      "training_annual",
      "unemployment_insurance_rate",
      "workers_comp_rate",
      "recruiting_cost"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "baseSalary": {
        "type": "number"
      },
      "employerTaxes": {
        "type": "number"
      },
      "benefitsCost": {
        "type": "number"
      },
      "overheadCost": {
        "type": "number"
      },
      "totalAnnualCost": {
        "type": "number"
      },
      "costMultiplier": {
        "type": "number"
      },
      "effectiveHourlyRate": {
        "type": "number"
      },
      "monthlyBurn": {
        "type": "number"
      },
      "breakdown": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "label": {
              "type": "string"
            },
            "amount": {
              "type": "number"
            },
            "category": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}
