What problem does it solve? Embedded developers often need to know how much Flash and RAM their firmware consumes and which functions or variables occupy the most space, without connecting any debug hardware. This Skill performs a purely static analysis of the configured ELF file to answer those questions. ## Core Features & Use Cases - Flash/RAM Footprint Report: Reports total bytes and per-section breakdown for Flash (LMA addresses) and RAM (VMA addresses), including the load copy of .data. - Largest Symbol Ranking: Lists the biggest functions and objects with kind, section, size, and address, configurable via a --top parameter (default 20, max 100). - No Hardware Required: Runs entirely offline through the EmberProbe Agent Bridge, so it never conflicts with sampling or flashing sessions. - Use Case: After a build, ask why the binary grew; the Skill returns per-section sizes and the top space-consuming symbols so you can identify what to optimize. ## Quick Start Ask the agent to analyze the configured ELF and report Flash and RAM usage along with the largest symbols in the firmware.