{
  "tool_id": "project_pricing",
  "slug": "project-pricing-calculator",
  "path": "/project-pricing-calculator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/project-pricing-calculator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/project-pricing-calculator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/project-pricing-calculator/",
  "sample_input": {
    "tool": "project_pricing",
    "estimated_hours": 80,
    "hourly_rate": 100,
    "complexity_multiplier": 1,
    "risk_buffer_percent": 15,
    "discount_percent": 0
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "estimated_hours": {
        "type": "number"
      },
      "hourly_rate": {
        "type": "number"
      },
      "complexity_multiplier": {
        "type": "number"
      },
      "risk_buffer_percent": {
        "type": "number"
      },
      "discount_percent": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "estimated_hours",
      "hourly_rate",
      "complexity_multiplier",
      "risk_buffer_percent",
      "discount_percent"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "basePrice": {
        "type": "integer"
      },
      "withComplexity": {
        "type": "integer"
      },
      "withRisk": {
        "type": "integer"
      },
      "finalPrice": {
        "type": "integer"
      },
      "effectiveHourlyRate": {
        "type": "integer"
      },
      "discountAmount": {
        "type": "integer"
      }
    }
  }
}
