{
  "tool_id": "price-blind-auditor",
  "slug": "price-blind-auditor",
  "path": "/price-blind-auditor/",
  "mode": "client_side",
  "usage": "Client-side auditor. Open https://aifinhub.io/price-blind-auditor/ and paste a research prompt bundle. Every line is scanned for price/direction/position-state leakage; findings render in-browser.",
  "methodology": "https://aifinhub.io/methodology/price-blind-auditor/",
  "sample_input": {
    "tool": "price-blind-auditor",
    "text": ""
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "text": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "text"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "line_count": {
        "type": "integer"
      },
      "leakage_score": {
        "type": "number"
      },
      "verdict": {
        "type": "string"
      },
      "hits": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "rule_id": {
              "type": "string"
            },
            "severity": {
              "type": "string"
            },
            "line": {
              "type": "integer"
            },
            "match": {
              "type": "string"
            },
            "why": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}
