Build complete, production-ready Arduino projects (environmental monitors, robot controllers, IoT devices, automation systems)...
Assemble complete, working Arduino projects from requirements. This skill combines multiple patterns (sensors, actuators, state machines, logging, communication) into cohesive systems.
List available project types:
uv run --no-project scripts/scaffold_project.py --list
Create a complete project:
uv run --no-project scripts/scaffold_project.py --type environmental --board esp32 --name "WeatherStation"
uv run --no-project scripts/scaffold_project.py --type robot --board uno --output ./my-robot
Interactive mode:
uv run --no-project scripts/scaffold_project.py --interactive
Before assembling a project, read the shared contract and fill the board profile. Record the exact board, framework, toolchain, versions, pins, memory, power, protocols, and recovery path. Keep build, upload, hardware, system, and deployment proof separate; a generated scaffold is not hardware validation.
The scaffold script emits its supported board targets and PlatformIO structure. For another board or vendor framework, reuse the requirements and architecture workflow, then provide a toolchain-specific implementation rather than changing the script's claimed support.
Multi-sensor data loggers (temperature, humidity, light, air quality)
See Environmental Monitor Example
Motor control, sensor fusion, obstacle avoidance, state machines
WiFi/MQTT data transmission, cloud integration, remote monitoring
Relay control, scheduled tasks, sensor-triggered actions
High-frequency sampling, SD card logging, real-time visualization
Use the shared Arduino skill contract: state assumptions, required tools and versions, implementation steps, tests/evidence by proof stage, known limitations, and recovery/security notes.