{
  "name": "seenbyhuman",
  "description": "Zleć żywego człowieka do przejścia Twojej apki zrobionej z AI i odebrania raportu (werdykt + komentarz + nagranie). Dla agentów AI: złóż zlecenie, odpytuj o wynik.",
  "version": "0.1.0",
  "transport": "http",
  "base_url": "http://localhost:8787",
  "auth": { "type": "bearer", "env": "HT_API_KEY" },
  "tools": [
    {
      "name": "order_human_test",
      "description": "Złóż zlecenie testu apki przez żywego człowieka. Zwraca id zlecenia.",
      "http": { "method": "POST", "path": "/api/orders" },
      "input_schema": {
        "type": "object",
        "required": ["app_url", "brief"],
        "properties": {
          "app_url": { "type": "string", "description": "Adres apki do przetestowania" },
          "brief": { "type": "string", "description": "Co tester ma sprawdzić / przejść" },
          "service": { "type": "string", "enum": ["localization_sweep", "first_impression", "full_walkthrough"] },
          "market": { "type": "string", "description": "Rynek/język native testera, np. de/it/es" },
          "access_login": { "type": "string" },
          "access_secret": { "type": "string" }
        }
      }
    },
    {
      "name": "get_test_result",
      "description": "Sprawdź stan zlecenia i pobierz raport (werdykt + komentarz + dowody), gdy gotowy.",
      "http": { "method": "GET", "path": "/api/orders/{id}" },
      "input_schema": { "type": "object", "required": ["id"], "properties": { "id": { "type": "string" } } }
    }
  ]
}
