Hi
As I am reviewing the technical details in AGENTS.md to start coding, I noticed a few technical points I would like to clarify to ensure I am following the rules correctly:
1. Public XML API vs. Proxy:
AGENTS.md states that API calls must be routed through the community proxy ([https://ogapi.faw-kes.de/](https://ogapi.faw-kes.de/)) and lists the public per-universe XML files (serverData.xml, universe.xml, highscore.xml, etc.) as public API. However, the proxy's Swagger specification only exposes two paths (/v1/report/... and /v1/statistics/...). It does not seem to expose the XML files.
Where should the tool fetch these public XML files from? Should I fetch them directly from the game server's /api/*.xml? If so, does fetching them directly from the game domain count as a background call under §4 (i.e., does it generate game activity)?
2. Handling accountInfo (§4.1):
The guidelines state that accountInfo should be read once and filtered client-side rather than polled. What is the correct or preferred way for a tool to request it? Also, does reading it exactly once at login count as an acceptable background call?
Thank you again for your time and guidance!