What problem does it solve? TikTok's infrastructure uses a hierarchical 3V model (VGeo, VRegion, VDC) that is easy to confuse, especially with legacy region names like alisg, i18n, and ttp. This Skill provides the authoritative mapping and the correct Go environment functions so you write region-aware code without guessing. ## Core Features & Use Cases - 3V Hierarchy Reference: Complete mapping of VGeos (VGeo-EU, VGeo-ROW, VGeo-US) to VRegions and physical VDCs, including legacy name aliases and testing (BOE) environments. - Environment Function Guide: Documents env.IDC(), env.GetCurrentVRegion(), region_lib.VGeo(), and BOE detection helpers from gopkg/env and tiktok/region_lib. - Deprecation Guidance: Flags deprecated APIs like env.Region() and points to their modern replacements. - Use Case: When writing a Go service that must behave differently per compliance zone, look up the current VGeo with region_lib.VGeo() and gate EU-specific logic on region_lib.VGEO_EU. ## Quick Start Ask how to detect the current VRegion and VGeo in a TikTok Go service and which constants to compare against.