{
  "$schema": "https://raw.githubusercontent.com/cloudflare/agent-skills-discovery-rfc/main/schemas/v0.2.0/index.schema.json",
  "version": "0.2.0",
  "publisher": {
    "name": "Proquiro",
    "url": "https://proquiro.com"
  },
  "skills": [
    {
      "name": "land-area-converter",
      "type": "calculator",
      "description": "Convert between Indian land measurement units instantly. Supports acres, hectares, cents, grounds, gunthas, bighas, kanals, and 15 regional units.",
      "url": "https://proquiro.com/tools/land-area-converter",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "inputValue": {
            "type": "number",
            "minimum": 0
          },
          "inputUnit": {
            "type": "string",
            "enum": [
              "sqft",
              "sqm",
              "sqyd",
              "acre",
              "hectare",
              "cent",
              "ground",
              "guntha",
              "biswa",
              "bigha",
              "kanal",
              "marla",
              "katha",
              "dismil",
              "ankanam"
            ]
          },
          "outputUnit": {
            "type": "string",
            "enum": [
              "sqft",
              "sqm",
              "sqyd",
              "acre",
              "hectare",
              "cent",
              "ground",
              "guntha",
              "biswa",
              "bigha",
              "kanal",
              "marla",
              "katha",
              "dismil",
              "ankanam"
            ]
          }
        },
        "required": [
          "inputValue",
          "inputUnit",
          "outputUnit"
        ],
        "additionalProperties": false
      },
      "sha256": "8c79eedc18e5f488291b56953f6ae2dde14c73941c836501253f6f036e8fb9be"
    },
    {
      "name": "price-per-sqft-calculator",
      "type": "calculator",
      "description": "Calculate price per square foot for any land parcel. Compare pricing across plots of different sizes and units.",
      "url": "https://proquiro.com/tools/price-per-sqft-calculator",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "totalPrice": {
            "type": "number",
            "minimum": 0
          },
          "totalArea": {
            "type": "number",
            "minimum": 0.01
          },
          "areaUnit": {
            "type": "string",
            "enum": [
              "sqft",
              "sqm",
              "sqyd",
              "cent",
              "ground",
              "guntha",
              "acre"
            ]
          }
        },
        "required": [
          "totalPrice",
          "totalArea",
          "areaUnit"
        ],
        "additionalProperties": false
      },
      "sha256": "f0ddb521181144db978ac0a7f690489b63c5df7982f5a6afb7d24d0a310c9082"
    },
    {
      "name": "land-roi-calculator",
      "type": "calculator",
      "description": "Calculate the return on investment for land acquisitions. Estimate total profit, ROI percentage, and annualized returns.",
      "url": "https://proquiro.com/tools/land-roi-calculator",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "purchasePrice": {
            "type": "number",
            "minimum": 0
          },
          "additionalCosts": {
            "type": "number",
            "minimum": 0
          },
          "expectedSalePrice": {
            "type": "number",
            "minimum": 0
          },
          "holdingPeriod": {
            "type": "number",
            "minimum": 1,
            "maximum": 50
          }
        },
        "required": [
          "purchasePrice",
          "additionalCosts",
          "expectedSalePrice",
          "holdingPeriod"
        ],
        "additionalProperties": false
      },
      "sha256": "4cb1c8a2fae6225cd2c02cd1deb65e66af90a181f8f653091b7aad0ab1c68a36"
    },
    {
      "name": "guideline-value-checker",
      "type": "calculator",
      "description": "Compare government guideline value with market rate for any land parcel. Calculate market premium and stamp duty base.",
      "url": "https://proquiro.com/tools/guideline-value-checker",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "guidelineRate": {
            "type": "number",
            "minimum": 0
          },
          "marketRate": {
            "type": "number",
            "minimum": 0
          },
          "plotArea": {
            "type": "number",
            "minimum": 0.01
          },
          "areaUnit": {
            "type": "string",
            "enum": [
              "sqft",
              "sqm",
              "sqyd",
              "cent",
              "ground",
              "guntha",
              "acre"
            ]
          }
        },
        "required": [
          "guidelineRate",
          "marketRate",
          "plotArea",
          "areaUnit"
        ],
        "additionalProperties": false
      },
      "sha256": "eab63144a50d0918316705dbe7874372e756405ca0aab03189f86875f72f5296"
    },
    {
      "name": "land-acquisition-cost-calculator",
      "type": "calculator",
      "description": "Calculate the true total cost of land acquisition including stamp duty, registration, brokerage, and legal fees.",
      "url": "https://proquiro.com/tools/land-acquisition-cost-calculator",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "landCost": {
            "type": "number",
            "minimum": 0
          },
          "stampDutyRate": {
            "type": "number",
            "minimum": 0,
            "maximum": 15
          },
          "registrationRate": {
            "type": "number",
            "minimum": 0,
            "maximum": 5
          },
          "brokerageRate": {
            "type": "number",
            "minimum": 0,
            "maximum": 10
          },
          "legalFees": {
            "type": "number",
            "minimum": 0
          },
          "otherCosts": {
            "type": "number",
            "minimum": 0
          }
        },
        "required": [
          "landCost",
          "stampDutyRate",
          "registrationRate",
          "brokerageRate",
          "legalFees",
          "otherCosts"
        ],
        "additionalProperties": false
      },
      "sha256": "b3cc91c9e0a11dd23548290255dcb9b45c3595e55e7ff9e57f30a34ea66c2275"
    },
    {
      "name": "fsi-calculator-india",
      "type": "calculator",
      "description": "Calculate permissible FSI from road width, plot area, and building height under TNCDBR 2019. Includes premium FSI tiers, Metro corridor 50% discount, ground coverage cap, and infeasibility checks.",
      "url": "https://proquiro.com/tools/fsi-calculator-india",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "plotArea": {
            "type": "number",
            "minimum": 0
          },
          "areaUnit": {
            "type": "string",
            "enum": [
              "sqft",
              "sqm",
              "sqyd",
              "cent",
              "ground",
              "guntha",
              "acre"
            ]
          },
          "roadWidth": {
            "type": "number",
            "minimum": 0,
            "maximum": 60
          },
          "frontage": {
            "type": "number",
            "minimum": 0,
            "maximum": 200
          },
          "buildingHeight": {
            "type": "number",
            "minimum": 0,
            "maximum": 200
          },
          "guidelineValueSqFt": {
            "type": "number",
            "minimum": 0
          },
          "metroCorridor": {
            "type": "string",
            "enum": [
              "no",
              "yes"
            ]
          }
        },
        "required": [
          "plotArea",
          "areaUnit",
          "roadWidth",
          "frontage",
          "buildingHeight",
          "guidelineValueSqFt",
          "metroCorridor"
        ],
        "additionalProperties": false
      },
      "sha256": "06fb0a48bfd544cb3a9b2590bc0c48d8921395dcfa683820ca4bc6f2c8b8a69c"
    },
    {
      "name": "osr-calculator-india",
      "type": "calculator",
      "description": "Open Space Reservation calculator for TN layouts under TNCDBR Rule 41/47. Computes required land carve-out, fee-in-lieu, gift-deed flag, pre-cutoff exemption (Annexure XX), and the GO 118/2024 regularisation cash option.",
      "url": "https://proquiro.com/tools/osr-calculator-india",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "plotArea": {
            "type": "number",
            "minimum": 0
          },
          "areaUnit": {
            "type": "string",
            "enum": [
              "sqft",
              "sqm",
              "sqyd",
              "cent",
              "ground",
              "guntha",
              "acre"
            ]
          },
          "internalRoadsArea": {
            "type": "number",
            "minimum": 0
          },
          "planningAuthority": {
            "type": "string",
            "enum": [
              "cmda",
              "dtcp-urban",
              "dtcp-rural"
            ]
          },
          "preCutoffExempt": {
            "type": "string",
            "enum": [
              "no",
              "yes"
            ]
          },
          "developmentCategory": {
            "type": "string",
            "enum": [
              "layout",
              "industrial-institutional",
              "building",
              "addition-to-existing",
              "regularisation-unapproved"
            ]
          },
          "existingCoveragePct": {
            "type": "number",
            "minimum": 0,
            "maximum": 100
          },
          "guidelineValueSqFt": {
            "type": "number",
            "minimum": 0
          }
        },
        "required": [
          "plotArea",
          "areaUnit",
          "internalRoadsArea",
          "planningAuthority",
          "preCutoffExempt",
          "developmentCategory",
          "existingCoveragePct",
          "guidelineValueSqFt"
        ],
        "additionalProperties": false
      },
      "sha256": "777690b40579d6218a3ffdd812d7449a466500a0a804df7a1f265ae107631940"
    },
    {
      "name": "land-due-diligence-checklist",
      "type": "checklist",
      "description": "Comprehensive land due diligence checklist for Indian property transactions. 28 items across title, zoning, survey, tax, and infrastructure verification.",
      "url": "https://proquiro.com/tools/land-due-diligence-checklist",
      "sha256": "4a085637463335a880be4c7c5bdaa0b82e1df8037427f51c9c88733401bf34e7"
    },
    {
      "name": "site-visit-checklist",
      "type": "checklist",
      "description": "Standardized checklist for land acquisition field inspections. 25 items: preparation, site assessment, neighbourhood, utilities, documentation.",
      "url": "https://proquiro.com/tools/site-visit-checklist",
      "sha256": "d7d19443d6b5b3f2c60dfcccb5c8cd72d141f247d4ed4080febd348c3c483f87"
    },
    {
      "name": "document-readiness-checker",
      "type": "checklist",
      "description": "Track document collection status for Indian land transactions. 23 items covering title, survey, tax, approvals, and KYC documents.",
      "url": "https://proquiro.com/tools/document-readiness-checker",
      "sha256": "699af52a77a2ae34ff2972db90a01161e1be083559ef903e863eabb4cac803e8"
    },
    {
      "name": "title-risk-checklist",
      "type": "checklist",
      "description": "Identify title defects and legal risks before buying land in India. 24 items covering ownership, encumbrances, classification, litigation, and compliance.",
      "url": "https://proquiro.com/tools/title-risk-checklist",
      "sha256": "4ec46904a6d84e461d59c3b8f262c234bd98f85ad8f540d1ae15cf757ba3c676"
    },
    {
      "name": "proquiro-roi-calculator",
      "type": "calculator",
      "description": "Calculate how much your land acquisition team is losing to manual processes. See monthly waste, payback period, and annual ROI.",
      "url": "https://proquiro.com/tools/proquiro-roi-calculator",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "teamSize": {
            "type": "number",
            "minimum": 1,
            "maximum": 50
          },
          "hoursPerWeek": {
            "type": "number",
            "minimum": 1,
            "maximum": 40
          },
          "hourlyCost": {
            "type": "number",
            "minimum": 100,
            "maximum": 5000
          },
          "lostDeals": {
            "type": "number",
            "minimum": 0,
            "maximum": 20
          }
        },
        "required": [
          "teamSize",
          "hoursPerWeek",
          "hourlyCost",
          "lostDeals"
        ],
        "additionalProperties": false
      },
      "sha256": "331b512002b3ba3797ea2f7b5857a22314bcc8534daaadba20581a030af523f4"
    },
    {
      "name": "land-acquisition-excel-template",
      "type": "reference",
      "description": "Free structured Excel template for tracking land leads, competitor projects, and documents.",
      "url": "https://proquiro.com/tools/excel-template",
      "sha256": "9f1fd5363bf59cdad1aac2f211c8c97f55664db52285b52731bcd63d1c007397"
    },
    {
      "name": "land-acquisition-glossary",
      "type": "reference",
      "description": "Glossary of Indian land acquisition terms (Patta, Chitta, EC, FMB, guideline value, etc.).",
      "url": "https://proquiro.com/glossary",
      "sha256": "ff454c97adb2266e8234c6779700d8ba99451231ef3d0e755e94cfc3b3920137"
    },
    {
      "name": "proquiro-mcp-server",
      "type": "webmcp",
      "description": "MCP server (JSON-RPC 2.0 over HTTP) exposing the 6 land acquisition calculators as remotely callable tools. See server card for connection details.",
      "url": "https://proquiro.com/.well-known/mcp/server-card.json",
      "sha256": "df10f4127151d1d6f4b66d9e28db9cdcb57f1aed5a43c7d6faf10f2975824f91"
    }
  ]
}