What problem does it solve? Integrating server-side A/B experiments into Golang services requires correctly wiring the Libra platform's Abtest SDK, managing configuration namespaces, and safely migrating traffic without breaking downstream services. ## Core Features & Use Cases - SDK Initialization: Configure the code.byted.org/iesarch/abtest SDK with LibraNamespaceOpti mode and EnableNsReveal local fallback for safe production rollout. - Experiment Parameter Reading: Read int, string, and other typed experiment values, pass AB results downstream via TransferAbParam, and choose between V1 and V2 diversion modes. - Configuration Space Management: Create and publish configs in Libra namespaces, handle permissions, releases, and deletions through the config center. - Use Case: A backend engineer needs to gate a new recommendation algorithm behind an experiment. This Skill guides SDK setup, parameter reading, double-validation checks, and safe traffic migration. ## Quick Start Show me how to initialize the Libra Abtest SDK in my Golang service and read an experiment parameter with local fallback enabled.