flash

A command workflow for building firmware and sending it to a connected embedded device using ESP-IDF or PlatformIO. Firmware is the software that runs on hardware such as an ESP32 or Arduino-compatible board.

In plain words
What is it for?
Use it to build and flash ESP-IDF or PlatformIO projects, select a serial port or target board, and optionally start a serial monitor afterward.
Why use it?
It detects which supported build system the project uses and runs the matching build and upload commands, reducing manual setup and command selection.

Command

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/captainluzik/oh-my-embedded/flash
Clone the repo
git clone --depth 1 https://github.com/captainluzik/oh-my-embedded
Per session 15 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 563 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00015 $0.00563
Opus 5 $0.00008 $0.00282
Sonnet 5 $0.00003 $0.00113
Haiku 4.5 $0.00002 $0.00056

Measured 2d ago against content hash ffba53a2205b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

flash scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/flash.md · 64 lines

What it actually says

Detect the project type and build + flash firmware to the connected device.

Detection rules

  • If sdkconfig or CMakeLists.txt with idf_component_register exists: ESP-IDF project.
  • If platformio.ini exists: PlatformIO project.
  • If neither is found, tell the user and stop.

Arguments

$ARGUMENTS may contain:

  • A serial port (e.g. /dev/ttyUSB0, COM3) to override auto-detection.
  • A board name or target chip (e.g. esp32s3, uno) to pass to the build system.
  • The word monitor to start a serial monitor after flashing.

Parse $ARGUMENTS before running any commands.

ESP-IDF workflow

  1. Run idf.py build in the project root. Show build output. Stop on error.
  2. Determine the flash port:
    • If a port was given in $ARGUMENTS, use it.
    • Otherwise run idf.py flash without -p and let ESP-IDF auto-detect.
  3. Run idf.py flash (append -p <port> if a port was specified).
  4. If monitor was in $ARGUMENTS, run idf.py monitor (append -p <port> if specified).

Example commands:

idf.py build
idf.py flash -p /dev/ttyUSB0
idf.py monitor -p /dev/ttyUSB0

PlatformIO workflow

  1. Run pio run to build. Show output. Stop on error.
  2. Run pio run --target upload to flash.
    • If a port was given in $ARGUMENTS, append --upload-port <port>.
    • If a board/environment was given, append -e <env>.
  3. If monitor was in $ARGUMENTS, run pio device monitor.

Example commands:

pio run
pio run --target upload --upload-port /dev/ttyUSB0
pio device monitor

After flashing

Report:

  • Build size (flash + RAM usage if available in build output).
  • The port used.
  • Whether the monitor was started.

If flashing fails with a "port not found" or "no device" error, suggest:

  • Checking USB cable and connection.
  • Running ls /dev/tty* (Linux/macOS) or checking Device Manager (Windows) to find the port.
  • Holding the BOOT button while connecting (ESP32 boards).
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 64 lines · 15 tokens per session scan A ffba53a2205b

Subscribe to this mod's changes

flash is a command published in the GitHub repository captainluzik/oh-my-embedded (23 stars, last pushed 6mo ago), licensed MIT. It adds 15 tokens to every session and 563 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other commands, from other repositories