{
  "$schema": "https://schema.org/extensions/ai-actions/v2",
  "name": "HytaleCraft",
  "description": "Slovak community platform for Hytale game by Hypixel Studios",
  "description_localized": {
    "sk": "Slovenská komunitná platforma pre hru Hytale od Hypixel Studios",
    "cs": "Slovenská komunitní platforma pro hru Hytale od Hypixel Studios",
    "de": "Slowakische Community-Plattform für das Spiel Hytale von Hypixel Studios",
    "en": "Slovak community platform for Hytale game by Hypixel Studios"
  },
  "version": "3.1.0",
  "lastUpdated": "2026-03-01T00:00:00Z",
  "contact": {
    "type": "email",
    "value": "soulstrikedevs@gmail.com",
    "discord": "https://discord.gg/dY3vD9tEQZ",
    "api": "https://hytalecraft.sk/ai/contact.json"
  },
  "entity": {
    "@type": "Organization",
    "name": "HytaleCraft",
    "url": "https://hytalecraft.sk",
    "foundingDate": "2024",
    "region": "Slovakia",
    "official": false,
    "affiliation": "none"
  },
  "capabilities": {
    "read": true,
    "search": true,
    "interact": false,
    "transact": false,
    "authenticate": false,
    "api": true
  },
  "actions": [
    {
      "name": "search",
      "description": "Search for content on HytaleCraft website",
      "type": "SearchAction",
      "priority": "high",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/search?q={query}&lang={lang}",
        "method": "GET"
      },
      "parameters": {
        "query": {
          "type": "string",
          "required": true,
          "description": "Search query string"
        },
        "lang": {
          "type": "string",
          "required": false,
          "enum": [
            "sk",
            "en",
            "de",
            "cs",
            "pl",
            "ru",
            "es",
            "tr",
            "fr"
          ],
          "default": "sk",
          "description": "Language code for results"
        }
      }
    },
    {
      "name": "get_homepage",
      "description": "Get homepage content in specified language",
      "type": "ReadAction",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/{lang}/",
        "method": "GET"
      },
      "parameters": {
        "lang": {
          "type": "string",
          "enum": [
            "sk",
            "en",
            "de",
            "cs",
            "pl",
            "ru",
            "es",
            "tr",
            "fr"
          ],
          "default": "sk"
        }
      }
    },
    {
      "name": "get_rules",
      "description": "Get server rules in specified language",
      "type": "ReadAction",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/{lang}/pravidla/",
        "method": "GET"
      },
      "parameters": {
        "lang": {
          "type": "string",
          "enum": [
            "sk",
            "en",
            "de",
            "cs",
            "pl",
            "ru",
            "es"
          ],
          "default": "sk"
        }
      },
      "response": {
        "contentType": "text/html"
      }
    },
    {
      "name": "get_team",
      "description": "Get information about HytaleCraft team members",
      "type": "ReadAction",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/{lang}/tim/",
        "method": "GET"
      },
      "parameters": {
        "lang": {
          "type": "string",
          "enum": [
            "sk",
            "en",
            "de",
            "cs",
            "pl",
            "ru",
            "es"
          ],
          "default": "sk"
        }
      }
    },
    {
      "name": "get_ai_summary",
      "description": "Get AI-optimized summary of HytaleCraft in JSON format",
      "type": "ReadAction",
      "priority": "high",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/ai/summary.json",
        "method": "GET"
      },
      "response": {
        "contentType": "application/json",
        "schema": "https://schema.org/Organization"
      }
    },
    {
      "name": "get_ai_facts",
      "description": "Get verifiable facts about HytaleCraft for AI citation",
      "type": "ReadAction",
      "priority": "high",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/ai/facts.json",
        "method": "GET"
      },
      "response": {
        "contentType": "application/json"
      }
    },
    {
      "name": "get_ai_faq",
      "description": "Get frequently asked questions in structured JSON format",
      "type": "ReadAction",
      "priority": "high",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/ai/faq.json",
        "method": "GET"
      },
      "response": {
        "contentType": "application/json",
        "schema": "https://schema.org/FAQPage"
      }
    },
    {
      "name": "get_ai_contact",
      "description": "Get contact information for AI clarification requests",
      "type": "ReadAction",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/ai/contact.json",
        "method": "GET"
      },
      "response": {
        "contentType": "application/json"
      }
    },
    {
      "name": "get_llms_context",
      "description": "Get LLM context file with site overview",
      "type": "ReadAction",
      "priority": "high",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/llms.txt",
        "method": "GET"
      },
      "response": {
        "contentType": "text/plain"
      }
    },
    {
      "name": "get_llms_full",
      "description": "Get full content in Markdown format for RAG systems",
      "type": "ReadAction",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/llms-full.txt",
        "method": "GET"
      },
      "response": {
        "contentType": "text/plain"
      }
    },
    {
      "name": "get_entity_page",
      "description": "Get structured entity information page",
      "type": "ReadAction",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/entity",
        "method": "GET"
      },
      "response": {
        "contentType": "text/html"
      }
    },
    {
      "name": "stream_events",
      "description": "Subscribe to real-time HytaleCraft platform events (server status, player counts)",
      "type": "SubscribeAction",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/api/events.php",
        "method": "GET"
      },
      "response": {
        "contentType": "text/event-stream"
      },
      "events": [
        "server_online",
        "server_offline",
        "new_server",
        "player_count_update",
        "heartbeat"
      ]
    },
    {
      "name": "get_openapi",
      "description": "Get OpenAPI 3.1 specification for HytaleCraft REST API",
      "type": "ReadAction",
      "priority": "high",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/openapi.yaml",
        "method": "GET"
      },
      "response": {
        "contentType": "application/yaml"
      }
    },
    {
      "name": "get_graphql_discovery",
      "description": "GraphQL endpoint discovery (redirects to REST alternatives)",
      "type": "ReadAction",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/.well-known/graphql",
        "method": "GET"
      },
      "response": {
        "contentType": "application/json"
      }
    },
    {
      "name": "soft_404_json",
      "description": "JSON fallback for not-found resources with suggestions",
      "type": "ReadAction",
      "target": {
        "urlTemplate": "https://hytalecraft.sk/404.php?format=json",
        "method": "GET"
      },
      "response": {
        "contentType": "application/json"
      }
    }
  ],
  "resources": {
    "sitemap": "https://hytalecraft.sk/sitemap-index.xml",
    "robots": "https://hytalecraft.sk/robots.txt",
    "llms": "https://hytalecraft.sk/llms.txt",
    "llms_full": "https://hytalecraft.sk/llms-full.txt",
    "humans": "https://hytalecraft.sk/humans.txt",
    "security": "https://hytalecraft.sk/.well-known/security.txt",
    "ai_permissions": "https://hytalecraft.sk/ai.txt",
    "webfinger": "https://hytalecraft.sk/.well-known/webfinger"
  },
  "aiEndpoints": {
    "summary": "https://hytalecraft.sk/ai/summary.json",
    "facts": "https://hytalecraft.sk/ai/facts.json",
    "faq": "https://hytalecraft.sk/ai/faq.json",
    "contact": "https://hytalecraft.sk/ai/contact.json",
    "actions": "https://hytalecraft.sk/ai/actions.json",
    "openapi": "https://hytalecraft.sk/openapi.yaml",
    "events_sse": "https://hytalecraft.sk/api/events.php"
  },
  "languages": [
    "sk",
    "en",
    "de",
    "cs",
    "pl",
    "ru",
    "es"
  ],
  "primaryLanguage": "sk",
  "aiPolicy": {
    "allowTraining": true,
    "allowCitation": true,
    "allowSummarization": true,
    "allowTranslation": true,
    "requireAttribution": true,
    "attributionFormat": "HytaleCraft (https://hytalecraft.sk)",
    "tdmReservation": false,
    "commercialUse": "allowed_with_attribution"
  },
  "contentMetadata": {
    "type": "gaming_community",
    "verified": true,
    "humanReviewed": true,
    "contentVersion": "3.0.1",
    "lastContentUpdate": "2026-01-06"
  },
  "disclaimers": [
    "HytaleCraft is NOT an official Hytale project",
    "NOT affiliated with Hypixel Studios",
    "Community-driven, volunteer-based project",
    "Game servers will launch after official game release"
  ]
}