What problem does it solve? Go services often need to load configuration from multiple sources such as TCC, local files, environment variables, KMS, or Byteconf, and keeping that logic consistent, testable, and hot-reloadable is repetitive and error-prone. This Skill provides the knowledge to use the confx library (code.byted.org/gopkg/confx) for unified multi-source configuration management. ## Core Features & Use Cases - Static and Dynamic Configuration: Load one-time static config from YAML/JSON files or declare dynamic config as function fields with periodic refresh, default values, and change callbacks. - Multiple Configuration Sources: Use built-in TCC (V2/V3), file, and environment variable loaders, or extend with KMS, Byteconf, and custom Loader/Parser factories. - Production Safeguards: Apply required initialization checks, deepcopy protection against data races, runtime key selection, Mock support for unit tests, and Grafana monitoring metrics. - Use Case: A service needs a feature flag that updates without redeployment. Declare GetEnableFeatureA func() bool with a confx:"tcc:enable_feat_a" tag, call confx.MustInit, and the value refreshes automatically every 10 seconds. ## Quick Start Ask the AI to show how to load a dynamic boolean feature flag from TCC using the confx library in a Go service.