원클릭으로
repo-scout
Scan and understand an ESP-IDF project structure, identifying components, dependencies, and architecture patterns.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Scan and understand an ESP-IDF project structure, identifying components, dependencies, and architecture patterns.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Verifies user's board configuration against known hardware limitations like strapping pins, ADC/Wi-Fi conflicts, and input-only pins.
Review ESP32 firmware architecture for RTOS safety, memory management, error handling, and embedded best practices.
Analyze ESP32 Guru Meditation errors and crash dumps to identify root cause and recommend fixes.
Parse and classify ESP32 serial log output to identify errors, warnings, boot issues, and failure patterns.
Audit ESP32 GPIO usage for conflicts, reserved pin violations, and documentation drift.
Generate a structured test plan for ESP32 firmware changes across all testing layers.
| name | repo_scout |
| description | Scan and understand an ESP-IDF project structure, identifying components, dependencies, and architecture patterns. |
Scan an ESP-IDF project to understand its structure, components, and patterns before making changes.
Determine the build system:
CMakeLists.txt at root → ESP-IDF CMake projectplatformio.ini → PlatformIO projectMakefile with PROJECT_NAME → Legacy ESP-IDF Make projectfind . -name "CMakeLists.txt" -not -path "./build/*" | head -20
find . -name "component.mk" -not -path "./build/*" | head -20
For each component directory, note:
include/)CMakeLists.txt REQUIRES and PRIV_REQUIRES)test/ subdirectory)Look for:
sdkconfig.defaults — default Kconfig settingssdkconfig — current build configurationGPIO_NUM_, #define.*PIN, #define.*GPIOi2c_, spi_, uart_, ledc_, adc_, wifi_, ble_Search for FreeRTOS task creation:
grep -rn "xTaskCreate\|xTaskCreatePinnedToCore" --include="*.c" --include="*.h"
Document:
Check:
idf_component.yml — ESP Component Registry dependenciesmanaged_components/ — downloaded components.gitmodulesthird_party/ or lib/Produce a summary with:
Write the scout report to the active mission file or print it in a structured markdown block.