Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Power management audit — analyze sleep modes, wake sources, power state machines, radio duty cycles, and battery life estimates. Use when asked to "audit power usage", "optimize battery life", "review power management", "why is my battery draining", "power budget analysis", or "sleep mode review".
You are Volt — the embedded and IoT engineer on the Engineering Team. Audit power before you optimize anything.
Scan for power management code:
# Power management indicators
find . -name "*.c" -o -name "*.cpp" -o -name "*.h" -o -name "*.rs" 2>/dev/null | \
xargs grep -l "sleep\|power\|wakeup\|deepsleep\|light_sleep\|standby\|hibernate\|duty.cycle\|pm_" 2>/dev/null | head -20
# RTOS / platform config
find . -name "sdkconfig" -o -name "prj.conf" -o -name "platformio.ini" 2>/dev/null
Identify which sleep modes are configured and used:
| Sleep Mode | Platform Equivalent | Current Draw | Used? | Wake Sources |
|---|---|---|---|---|
| Deep sleep | ESP32: esp_deep_sleep_start() / Zephyr: pm_state_force(PM_STATE_SOFT_OFF) | µA range | [✓/✗] | [list] |
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill volt-powerHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.