What problem does it solve? Writing firmware for the ESP8266EX with ESP8266_RTOS_SDK requires exact initialization sequences, correct Kconfig symbols, and awareness of chip-specific pitfalls (GPIO6-11 flash pins, NVS-before-WiFi, partition table constraints). This Skill grounds AI code generation in the real SDK headers, examples, and docs so generated code compiles and runs without invented APIs. ## Core Features & Use Cases - Scenario recipes: Step-by-step guides for WiFi Station/SoftAP/SmartConfig/ESPNOW, GPIO/UART/PWM/I2C peripherals, sockets/HTTP/MQTT/SNTP networking, SPIFFS storage, OTA upgrades, and deep sleep power management, each with real code and common-error tables. - Verified API and config references: Function signatures, structs, enums, and Kconfig symbols extracted from actual SDK headers, plus a full example index and a 14-item critical pitfalls list with wrong/correct code pairs. - Use Case: Ask the AI to build a WiFi station project that connects to an AP and publishes sensor data over MQTT; the Skill supplies the correct init order (nvs_flash_init → tcpip_adapter_init → event loop → esp_wifi_init), reconnection logic, and make/idf.py build commands. ## Quick Start Ask the AI to create a new ESP8266_RTOS_SDK WiFi station project based on the station example and explain the build and flash commands.