{
  "schema_version": "0.1",
  "name": "AI Biz Hub Tools",
  "description": "AI-accessible business planning tools on aibizhub.io",
  "tools": [
    {
      "name": "freelance_rate_capacity",
      "description": "Set confident rate floors from utilization, overhead, and income targets.",
      "url": "https://aibizhub.io/freelance-rate-capacity-planner/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "target_annual_income": {
            "type": "integer"
          },
          "annual_business_overhead": {
            "type": "integer"
          },
          "tax_rate_percent": {
            "type": "integer"
          },
          "buffer_percent": {
            "type": "integer"
          },
          "working_weeks_per_year": {
            "type": "integer"
          },
          "working_hours_per_week": {
            "type": "integer"
          },
          "billable_utilization_percent": {
            "type": "integer"
          },
          "project_hours": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "target_annual_income",
          "annual_business_overhead",
          "tax_rate_percent",
          "buffer_percent",
          "working_weeks_per_year",
          "working_hours_per_week",
          "billable_utilization_percent",
          "project_hours"
        ]
      }
    },
    {
      "name": "roi_payback_period",
      "description": "See ROI, annualized return, and payback timing before you fund the project.",
      "url": "https://aibizhub.io/roi-payback-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "initial_investment": {
            "type": "integer"
          },
          "upfront_benefit": {
            "type": "integer"
          },
          "annual_net_benefit": {
            "type": "integer"
          },
          "analysis_years": {
            "type": "integer"
          },
          "residual_value": {
            "type": "integer"
          },
          "discount_rate_percent": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "initial_investment",
          "upfront_benefit",
          "annual_net_benefit",
          "analysis_years",
          "residual_value",
          "discount_rate_percent"
        ]
      }
    },
    {
      "name": "sales_forecast_calculator",
      "description": "Forecast MRR and cumulative revenue from growth, conversion, and pipeline assumptions.",
      "url": "https://aibizhub.io/sales-forecast-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "starting_mrr": {
            "type": "integer"
          },
          "monthly_growth_percent": {
            "type": "integer"
          },
          "pipeline_conversion_percent": {
            "type": "integer"
          },
          "avg_deal_size": {
            "type": "integer"
          },
          "new_opportunities_per_month": {
            "type": "integer"
          },
          "months": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "starting_mrr",
          "monthly_growth_percent",
          "pipeline_conversion_percent",
          "avg_deal_size",
          "new_opportunities_per_month",
          "months"
        ]
      }
    },
    {
      "name": "break_even_units_revenue",
      "description": "Find break-even units, revenue, and target-profit volume fast.",
      "url": "https://aibizhub.io/break-even-units-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "mode": {
            "type": "string"
          },
          "fixed_costs": {
            "type": "integer"
          },
          "target_profit": {
            "type": "integer"
          },
          "planned_units": {
            "type": "integer"
          },
          "unit_price": {
            "type": "integer"
          },
          "variable_cost_per_unit": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "mode",
          "fixed_costs",
          "target_profit",
          "planned_units",
          "unit_price",
          "variable_cost_per_unit"
        ]
      }
    },
    {
      "name": "margin_markup_discount",
      "description": "Convert margin, markup, and discount with live formulas you can trust.",
      "url": "https://aibizhub.io/margin-markup-discount-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "mode": {
            "type": "string"
          },
          "cost": {
            "type": "integer"
          },
          "margin_percent": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "mode",
          "cost",
          "margin_percent"
        ]
      }
    },
    {
      "name": "saas_pricing_strategy_calculator",
      "description": "Set monthly price floors from gross-margin and CAC payback constraints.",
      "url": "https://aibizhub.io/saas-pricing-strategy-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "cogs_per_user": {
            "type": "integer"
          },
          "target_gross_margin_percent": {
            "type": "integer"
          },
          "target_payback_months": {
            "type": "integer"
          },
          "cac": {
            "type": "integer"
          },
          "competitor_price": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "cogs_per_user",
          "target_gross_margin_percent",
          "target_payback_months",
          "cac",
          "competitor_price"
        ]
      }
    },
    {
      "name": "hourly_to_salary",
      "description": "Convert hourly and salary compensation with PTO and overtime adjustments.",
      "url": "https://aibizhub.io/hourly-to-salary-converter/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "hourly_rate": {
            "type": "integer"
          },
          "annual_salary": {
            "type": "integer"
          },
          "hours_per_week": {
            "type": "integer"
          },
          "weeks_per_year": {
            "type": "integer"
          },
          "paid_time_off_days": {
            "type": "integer"
          },
          "paid_holidays_days": {
            "type": "integer"
          },
          "paid_sick_days": {
            "type": "integer"
          },
          "overtime_hours_per_week": {
            "type": "integer"
          },
          "overtime_multiplier": {
            "type": "number"
          },
          "annual_benefits_value": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "hourly_rate",
          "annual_salary",
          "hours_per_week",
          "weeks_per_year",
          "paid_time_off_days",
          "paid_holidays_days",
          "paid_sick_days",
          "overtime_hours_per_week",
          "overtime_multiplier",
          "annual_benefits_value"
        ]
      }
    },
    {
      "name": "invoice_late_fee_interest_calculator",
      "description": "Calculate late-payment penalties from grace days, fixed fees, and annual-interest terms.",
      "url": "https://aibizhub.io/invoice-late-fee-interest-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "invoice_amount": {
            "type": "integer"
          },
          "days_late": {
            "type": "integer"
          },
          "annual_interest_percent": {
            "type": "integer"
          },
          "fixed_late_fee": {
            "type": "integer"
          },
          "grace_days": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "invoice_amount",
          "days_late",
          "annual_interest_percent",
          "fixed_late_fee",
          "grace_days"
        ]
      }
    },
    {
      "name": "salary_calculator",
      "description": "Estimate annual and paycheck outcomes with simplified tax assumptions.",
      "url": "https://aibizhub.io/salary-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "mode": {
            "type": "string"
          },
          "annual_salary": {
            "type": "integer"
          },
          "hourly_rate": {
            "type": "integer"
          },
          "hours_per_week": {
            "type": "integer"
          },
          "weeks_per_year": {
            "type": "integer"
          },
          "overtime_hours_per_week": {
            "type": "integer"
          },
          "overtime_multiplier": {
            "type": "number"
          },
          "filing_status": {
            "type": "string"
          },
          "pre_tax_deductions_annual": {
            "type": "integer"
          },
          "other_annual_income": {
            "type": "integer"
          },
          "compare_annual_salary": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "mode",
          "annual_salary",
          "hourly_rate",
          "hours_per_week",
          "weeks_per_year",
          "overtime_hours_per_week",
          "overtime_multiplier",
          "filing_status",
          "pre_tax_deductions_annual",
          "other_annual_income",
          "compare_annual_salary"
        ]
      }
    },
    {
      "name": "commute_vs_remote_cost",
      "description": "Compare office, hybrid, and remote schedules in cash and time.",
      "url": "https://aibizhub.io/commute-vs-remote-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "round_trip_distance": {
            "type": "integer"
          },
          "round_trip_time_minutes": {
            "type": "integer"
          },
          "current_commute_days_per_week": {
            "type": "integer"
          },
          "target_commute_days_per_week": {
            "type": "integer"
          },
          "work_weeks_per_year": {
            "type": "integer"
          },
          "cost_per_distance_unit": {
            "type": "number"
          },
          "parking_tolls_per_day": {
            "type": "integer"
          },
          "transit_fare_per_day": {
            "type": "integer"
          },
          "value_of_time_per_hour": {
            "type": "integer"
          },
          "effective_tax_rate_percent": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "round_trip_distance",
          "round_trip_time_minutes",
          "current_commute_days_per_week",
          "target_commute_days_per_week",
          "work_weeks_per_year",
          "cost_per_distance_unit",
          "parking_tolls_per_day",
          "transit_fare_per_day",
          "value_of_time_per_hour",
          "effective_tax_rate_percent"
        ]
      }
    },
    {
      "name": "timezone_overlap_planner",
      "description": "Find fair meeting windows across time zones with rotation and DST warnings.",
      "url": "https://aibizhub.io/time-zone-overlap-planner/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "participants": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string"
                },
                "name": {
                  "type": "string"
                },
                "time_zone": {
                  "type": "string"
                },
                "work_start_hour": {
                  "type": "integer"
                },
                "work_end_hour": {
                  "type": "integer"
                }
              },
              "required": [
                "id",
                "name",
                "time_zone",
                "work_start_hour",
                "work_end_hour"
              ]
            }
          },
          "meeting_duration_minutes": {
            "type": "integer"
          },
          "start_date": {
            "type": "string"
          },
          "range_days": {
            "type": "integer"
          },
          "slot_interval_minutes": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "participants",
          "meeting_duration_minutes",
          "start_date",
          "range_days",
          "slot_interval_minutes"
        ]
      }
    },
    {
      "name": "meeting_cost_calculator",
      "description": "Calculate the true cost of your meetings by attendee count, hourly rate, duration, and frequency.",
      "url": "https://aibizhub.io/meeting-cost-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "attendees": {
            "type": "integer"
          },
          "avg_hourly_rate": {
            "type": "integer"
          },
          "duration_minutes": {
            "type": "integer"
          },
          "frequency": {
            "type": "string"
          }
        },
        "required": [
          "tool",
          "attendees",
          "avg_hourly_rate",
          "duration_minutes",
          "frequency"
        ]
      }
    },
    {
      "name": "cash_conversion_cycle_calculator",
      "description": "Measure CCC and estimate working-capital lockup from DIO, DSO, and DPO assumptions.",
      "url": "https://aibizhub.io/cash-conversion-cycle-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "dio": {
            "type": "integer"
          },
          "dso": {
            "type": "integer"
          },
          "dpo": {
            "type": "integer"
          },
          "monthly_cogs": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "dio",
          "dso",
          "dpo",
          "monthly_cogs"
        ]
      }
    },
    {
      "name": "profit_margin_calculator",
      "description": "Calculate gross margin and markup, or set prices from desired margin percentages.",
      "url": "https://aibizhub.io/profit-margin-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "revenue": {
            "type": "integer"
          },
          "cost_of_goods": {
            "type": "integer"
          },
          "operating_expenses": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "revenue",
          "cost_of_goods",
          "operating_expenses"
        ]
      }
    },
    {
      "name": "employee_cost_calculator",
      "description": "Calculate the true total cost of an employee beyond salary \u2014 taxes, benefits, and overhead.",
      "url": "https://aibizhub.io/employee-cost-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "base_salary": {
            "type": "integer"
          },
          "bonus_pct": {
            "type": "integer"
          },
          "benefits_pct": {
            "type": "integer"
          },
          "payroll_tax_pct": {
            "type": "number"
          }
        },
        "required": [
          "tool",
          "base_salary",
          "bonus_pct",
          "benefits_pct",
          "payroll_tax_pct"
        ]
      }
    },
    {
      "name": "contractor_vs_employee",
      "description": "Compare the same role as W-2 or 1099 and find the true annual cost break-even point.",
      "url": "https://aibizhub.io/contractor-vs-employee-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "annual_salary": {
            "type": "integer"
          },
          "contractor_hourly_rate": {
            "type": "integer"
          },
          "annual_hours": {
            "type": "integer"
          },
          "employer_fica_rate_percent": {
            "type": "number"
          },
          "futa_annual": {
            "type": "integer"
          },
          "state_unemployment_annual": {
            "type": "integer"
          },
          "health_insurance_annual": {
            "type": "integer"
          },
          "retirement_match_rate_percent": {
            "type": "integer"
          },
          "workers_comp_rate_percent": {
            "type": "integer"
          },
          "training_equipment_annual": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "annual_salary",
          "contractor_hourly_rate",
          "annual_hours",
          "employer_fica_rate_percent",
          "futa_annual",
          "state_unemployment_annual",
          "health_insurance_annual",
          "retirement_match_rate_percent",
          "workers_comp_rate_percent",
          "training_equipment_annual"
        ]
      }
    },
    {
      "name": "startup_runway_calculator",
      "description": "Calculate months of runway from cash, burn rate, and revenue growth assumptions.",
      "url": "https://aibizhub.io/startup-runway-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "cash_on_hand": {
            "type": "integer"
          },
          "monthly_burn": {
            "type": "integer"
          },
          "monthly_revenue": {
            "type": "integer"
          },
          "revenue_growth_pct": {
            "type": "integer"
          },
          "burn_reduction_pct": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "cash_on_hand",
          "monthly_burn",
          "monthly_revenue",
          "revenue_growth_pct",
          "burn_reduction_pct"
        ]
      }
    },
    {
      "name": "business_valuation_calculator",
      "description": "Estimate business worth using revenue, SDE, and EBITDA multiples with blended range.",
      "url": "https://aibizhub.io/business-valuation-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "annual_revenue": {
            "type": "integer"
          },
          "revenue_multiple": {
            "type": "number"
          },
          "sde": {
            "type": "integer"
          },
          "sde_multiple": {
            "type": "integer"
          },
          "ebitda": {
            "type": "integer"
          },
          "ebitda_multiple": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "annual_revenue",
          "revenue_multiple",
          "sde",
          "sde_multiple",
          "ebitda",
          "ebitda_multiple"
        ]
      }
    },
    {
      "name": "customer_lifetime_value",
      "description": "Calculate CLV, CLV:CAC ratio, and acquisition payback from purchase patterns.",
      "url": "https://aibizhub.io/customer-lifetime-value-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "avg_purchase_value": {
            "type": "integer"
          },
          "purchase_frequency_per_year": {
            "type": "integer"
          },
          "customer_lifespan_years": {
            "type": "integer"
          },
          "acquisition_cost": {
            "type": "integer"
          },
          "gross_margin_pct": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "avg_purchase_value",
          "purchase_frequency_per_year",
          "customer_lifespan_years",
          "acquisition_cost",
          "gross_margin_pct"
        ]
      }
    },
    {
      "name": "unit_economics",
      "description": "Evaluate LTV:CAC ratio, payback period, and per-customer viability.",
      "url": "https://aibizhub.io/unit-economics-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "cac": {
            "type": "integer"
          },
          "monthly_arpu": {
            "type": "integer"
          },
          "gross_margin_percent": {
            "type": "integer"
          },
          "avg_lifespan_months": {
            "type": "integer"
          },
          "monthly_churn_percent": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "cac",
          "monthly_arpu",
          "gross_margin_percent",
          "avg_lifespan_months",
          "monthly_churn_percent"
        ]
      }
    },
    {
      "name": "cac_calculator",
      "description": "Calculate customer acquisition cost, payback period, and LTV:CAC efficiency.",
      "url": "https://aibizhub.io/cac-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "sales_marketing_spend": {
            "type": "integer"
          },
          "new_customers": {
            "type": "integer"
          },
          "arpu_monthly": {
            "type": "integer"
          },
          "gross_margin_percent": {
            "type": "integer"
          },
          "monthly_churn_percent": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "sales_marketing_spend",
          "new_customers",
          "arpu_monthly",
          "gross_margin_percent",
          "monthly_churn_percent"
        ]
      }
    },
    {
      "name": "churn_retention_calculator",
      "description": "Estimate recovered customers and revenue lift from retention improvements.",
      "url": "https://aibizhub.io/churn-retention-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "active_customers": {
            "type": "integer"
          },
          "monthly_churn_percent": {
            "type": "integer"
          },
          "retention_lift_percent": {
            "type": "number"
          },
          "arpu_monthly": {
            "type": "integer"
          },
          "horizon_months": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "active_customers",
          "monthly_churn_percent",
          "retention_lift_percent",
          "arpu_monthly",
          "horizon_months"
        ]
      }
    },
    {
      "name": "inventory_turnover",
      "description": "Calculate how quickly your business sells and replaces stock with industry benchmarks.",
      "url": "https://aibizhub.io/inventory-turnover-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "cost_of_goods_sold": {
            "type": "integer"
          },
          "beginning_inventory": {
            "type": "integer"
          },
          "ending_inventory": {
            "type": "integer"
          },
          "period": {
            "type": "string"
          }
        },
        "required": [
          "tool",
          "cost_of_goods_sold",
          "beginning_inventory",
          "ending_inventory",
          "period"
        ]
      }
    },
    {
      "name": "scope_creep_cost",
      "description": "Quantify the true cost of scope creep by comparing quoted vs actual hours to reveal your effective rate.",
      "url": "https://aibizhub.io/scope-creep-cost-calculator/",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "project_quote": {
            "type": "integer"
          },
          "billable_rate": {
            "type": "integer"
          },
          "quoted_hours": {
            "type": "integer"
          },
          "actual_hours": {
            "type": "integer"
          },
          "projects_per_year": {
            "type": "integer"
          }
        },
        "required": [
          "tool",
          "project_quote",
          "billable_rate",
          "quoted_hours",
          "actual_hours",
          "projects_per_year"
        ]
      }
    }
  ],
  "disclaimer": "Business planning estimates \u2014 not legal, tax, or accounting advice.",
  "creator": {
    "@type": "Organization",
    "name": "Orbyd",
    "url": "https://orbyd.app"
  }
}
