Teach AI coding agents to compile, flash, and validate firmware on real hardware. One command to bridge any agent and any board.
Project description
edesto-dev
Teach AI coding agents how to compile, flash, and validate firmware on your hardware.
AI coding agents stop at the terminal. edesto init gives them the full embedded development loop — compile, flash, read serial output, iterate — so they can autonomously develop and debug firmware on real hardware. Works with Claude Code, Cursor, Codex, and OpenClaw.
https://github.com/user-attachments/assets/f1d4719d-ed60-406e-a274-0b0f2b06ac21
Install
pipx install edesto-dev
Quick Start
# 1. Plug in your board and run:
edesto init
# 2. Open your AI coding agent in the same directory
# 3. Tell it what to do:
# "The sensor readings are wrong. Find and fix the bug."
That's it. edesto init auto-detects your board, serial port, and toolchain. It generates a SKILLS.md that teaches your agent the write/compile/flash/validate loop, with board-specific pin references, pitfalls, and serial conventions.
You can also specify everything manually:
edesto init --board esp32 --port /dev/cu.usbserial-0001
edesto init --board esp32 --port /dev/ttyUSB0 --toolchain arduino
How It Works
edesto init detects your project and generates a SKILLS.md (plus copies as CLAUDE.md, .cursorrules, and AGENTS.md) that gives your AI agent:
- Compile and flash commands for your specific toolchain
- A debugging toolkit — serial output reading, plus auto-detected support for logic analyzers, JTAG/SWD, and oscilloscopes
- Board-specific pin references, capabilities, and common pitfalls
- Troubleshooting guidance for common failures (port busy, baud mismatch, upload timeout)
The debugging step is what makes this work. Your firmware prints structured serial output ([READY], [ERROR], [SENSOR] key=value) and the agent reads it to verify its own changes on real hardware. When you have additional debug tools installed, the agent can also drive them programmatically.
Supported Toolchains
| Toolchain | Detection | Commands |
|---|---|---|
| Arduino | .ino files |
arduino-cli compile, arduino-cli upload |
| PlatformIO | platformio.ini |
pio run, pio run --target upload |
| ESP-IDF | CMakeLists.txt + sdkconfig |
idf.py build, idf.py flash |
| MicroPython | boot.py / main.py |
mpremote connect, mpremote cp |
| Custom | edesto.toml |
Your commands |
If edesto can't detect your toolchain, it prompts you to enter compile/upload commands and saves them to edesto.toml for next time.
Supported Boards
| Slug | Board |
|---|---|
esp32 |
ESP32 |
esp32s3 |
ESP32-S3 |
esp32c3 |
ESP32-C3 |
esp32c6 |
ESP32-C6 |
esp8266 |
ESP8266 |
arduino-uno |
Arduino Uno |
arduino-nano |
Arduino Nano |
arduino-mega |
Arduino Mega 2560 |
rp2040 |
Raspberry Pi Pico |
teensy40 |
Teensy 4.0 |
teensy41 |
Teensy 4.1 |
stm32-nucleo |
STM32 Nucleo-64 |
Any board works with PlatformIO, ESP-IDF, MicroPython, or a custom toolchain — the table above is for Arduino auto-detection. Run edesto boards to see the full list.
Debug Tools (Optional)
edesto auto-detects debug tools on your machine and includes them in the generated SKILLS.md. The agent picks the right tool for the problem:
| Tool | What it checks | Detection |
|---|---|---|
| Serial output | Application behavior (always included) | pyserial |
| Logic analyzer | SPI/I2C/UART protocol timing and bus decoding | Saleae Logic 2 + logic2-automation Python package |
| JTAG/SWD | CPU state, crashes, HardFaults, registers, memory | openocd on PATH |
| Oscilloscope | Voltage levels, PWM frequency/duty, rise times | SCPI scope + pyvisa Python package |
If a tool isn't installed, its section is simply omitted — the agent won't try to use it. Run edesto doctor to see which tools are detected.
Commands
edesto init # Auto-detect everything
edesto init --board esp32 # Specify board, auto-detect port
edesto init --board esp32 --port /dev/ttyUSB0 # Fully manual
edesto init --toolchain platformio # Force a specific toolchain
edesto boards # List supported boards
edesto boards --toolchain arduino # Filter by toolchain
edesto doctor # Check your environment
Examples
Three example projects in examples/, each with an intentional bug for your AI agent to find and fix:
- sensor-debug — Temperature sensor with a unit conversion bug. Celsius values are correct but Fahrenheit readings are off.
- wifi-endpoint — ESP32 HTTP server where
/healthreturns JSON with the wrong Content-Type header. - ota-update — ESP32 with OTA support. The agent updates the version string and pushes firmware wirelessly.
Prerequisites
- A supported board connected via USB
- Python 3.10+
- Your toolchain's CLI installed (e.g.,
arduino-cli,pio,idf.py,mpremote) - Optional: debug tools (
logic2-automation,openocd,pyvisa) for advanced debugging
Run edesto doctor to check your setup.
About
Built by Edesto. We build tools for robotics and embedded teams.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file edesto_dev-0.5.0.tar.gz.
File metadata
- Download URL: edesto_dev-0.5.0.tar.gz
- Upload date:
- Size: 37.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0d7aecbfddf3fe4a99d66307afb41fe1e65c338c0c7677c935b80ef044b6467
|
|
| MD5 |
e2f0280eeeaad94ebf52d4013cab8990
|
|
| BLAKE2b-256 |
fde946cff5c7295e765aa85a49da9b5abf580804a18ec575c1a64b422eea6914
|
File details
Details for the file edesto_dev-0.5.0-py3-none-any.whl.
File metadata
- Download URL: edesto_dev-0.5.0-py3-none-any.whl
- Upload date:
- Size: 28.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be9dc24d5a022bd622866d9b1cee593e18610182eb5ea4649ec604e9babcdadc
|
|
| MD5 |
dacb310cf04ed6b87bc11c70f7c54752
|
|
| BLAKE2b-256 |
46a37fda67b78116fa13e454f79b9afddd19a371b711218df54fc1ce89a60972
|