Agentic HIL
Your AI agent can develop firmware on its own, because Agentic HIL closes the loop with real hardware.
Agentic Hardware-in-the-Loop (Agentic HIL) is a Python package that exposes bounded MCP tools for probing, flashing, resetting, artifact validation, serial and CAN stimulus/feedback, reports, and logs, all without giving an agent arbitrary host or debugger access. Each project has exactly one authoritative configuration stored outside the repository, out of reach of the agent's own file tools.
Install
Linux / macOS (any shell):
curl -LsSf https://agentic-hil.github.io/install.sh | sh
Windows, in PowerShell:
irm https://agentic-hil.github.io/install.ps1 | iex
Windows, from cmd.exe or the Run box:
powershell -c "irm https://agentic-hil.github.io/install.ps1|iex"
One line installs the package user-local (through uv where it exists, pip --user otherwise) and registers the agent skill and the MCP server for every agent CLI it finds on your PATH. No admin rights required, ever, and it touches nothing inside any repository: no project configuration is written, no shell profile is edited. Then restart your agent once, and after that one restart your agent sets this project up itself, at the first hardware question you ask it.
Prefer to read before you run? Take the script and its SHA-256 from the same release, check one against the other, and run the file you checked:
curl -LsSfO https://github.com/agentic-hil/agentic-hil/releases/latest/download/install.sh
curl -LsSfO https://github.com/agentic-hil/agentic-hil/releases/latest/download/install.sh.sha256
sha256sum -c install.sh.sha256 && sh install.sh
iwr -OutFile install.ps1 https://github.com/agentic-hil/agentic-hil/releases/latest/download/install.ps1
iwr -OutFile install.ps1.sha256 https://github.com/agentic-hil/agentic-hil/releases/latest/download/install.ps1.sha256
if ((Get-FileHash install.ps1).Hash -eq (-split (Get-Content install.ps1.sha256))[0]) { .\install.ps1 }
The one-line form above installs from the default branch, which is where a fix lands first; this form installs the release, which is the pair a checksum can speak for.
Pass --agent claude-code (or codex, opencode) to register one agent instead of all of them, --help for the rest; piped, that reads | sh -s -- --agent claude-code. If you would rather drive your own package manager, the same two halves by hand:
uv tool install "agentic-hil[can]" # or: pip install --user "agentic-hil[can]"
agentic-hil agent-install --agent claude-code # or: codex / opencode
Installation has setup for a bench that is already attached, the optional extras, upgrading, and every platform and debugger backend; TROUBLESHOOTING.md covers what to do when something does not start.
Why
A green build is not enough in embedded development: firmware has to behave correctly on the real board. Classic tools automate single steps (flash here, read a log there), but the moment real hardware has to respond, a human is back in the loop. Handing an agent a raw debugger shell or direct serial access instead is neither safe nor reproducible. Agentic HIL closes the gap with a small, auditable gate:
Every hardware action is validated against the selected authoritative configuration, executed with timeouts, logged to .agentic-hil/logs/, and answered with a structured JSON result (ok, error_type, summary, likely_causes, report_path, log_path) that an agent can act on. What the agent may do at all is per device and per permission, and reaching for a debugger escape hatch is what takes flashing away.
What it drives
Three debugger backends (OpenOCD, pyOCD, and the STM32CubeProgrammer CLI), plus serial ports and CAN (PCAN, SocketCAN, or a custom bridge; several runs can share one bus), on Linux, macOS, and Windows, Python 3.10 or newer, all CI-tested. The worked example in examples/nucleo-f446re_demo/ runs the whole loop on an ST Nucleo-F446RE; installation has every backend and platform in detail.
The test reactor
One YAML plan drives the whole bench: flash, reset, write, read with a comparator (exact text, a pattern, or a numeric range over a captured value), delays, and sessions that close themselves. Plans name logical devices; the bench configuration binds them to real hardware, so the same plan runs unchanged on every machine that has one. A failing step aborts the run, and the bench recovers itself: reap, reset into halt, probe, all attested in the run result. How plans work.
Security by construction
Deny-by-default permissions per device, every hardware action validated, leased machine-wide, and written to a SHA-256 audit chain. The authoritative configuration lives outside the workspace, where the agent cannot edit it. Enforcement sits in the tool rather than in the agent host on purpose: a host's permission system judges shell strings and differs per host, while the bench's permissions judge the hardware action itself and travel with the bench, so the CLI, pytest, CI and the test reactor all walk the same gate. A failed run still gives the bench back: it aborts with its verdict, the recovery action resets and re-reads the target, and the standing quarantine is kept for the one state no later contact can rebuild, a broken audit trail. The safety model is the short version, the security design the long one.
Quickstart: one real run
The worked example is a firmware project of its own. Plug the board in, build it, and point Agentic HIL at it from that directory:
cd examples/nucleo-f446re_demo
cmake --preset Debug && cmake --build --preset Debug # → build/Debug/nucleo-f446re_demo.elf
agentic-hil setup --agent claude-code # or: codex / opencode
agentic-hil doctor
doctor checks the configuration against the attached bench and names what it finds (a missing toolchain, an unreachable probe, a target type this host cannot resolve) before anything is flashed. If the board arrived after setup ran, agentic-hil adopt-hardware fills in the probe serial, the backend executable and the COM device it left unset (--dry-run shows the plan first).
With the MCP host started from that directory, the agent drives four calls:
flash_firmware {"image_path": "build/Debug/nucleo-f446re_demo.elf"}
com_session_start {"port_id": "dut_uart"}
reset_target {"mode": "run"}
com_read {"port_id": "dut_uart", "wait_timeout_s": 5}
→ feedback contains "Hello World"
The same loop runs headless as a pytest regression: pytest tests/ in that directory flashes the ELF, resets the target and asserts the boot banner on the UART. examples/nucleo-f446re_demo/ walks through both, and docs/testing.md covers writing the run down as a reviewable YAML plan instead.
Where the depth lives
| If you want | Read |
|---|---|
| to install, upgrade, add CAN or pyOCD, or look up a command | docs/installation.md |
| what the authoritative configuration declares and who may change it | docs/configuration.md |
| the complete MCP tool surface and how a run is composed from it | docs/mcp-tools.md |
| to register the server in a specific MCP host | docs/mcp-hosts.md |
| to write hardware tests (YAML plans or pytest) | docs/testing.md |
| why it is safe to leave an agent alone with the bench | docs/safety-model.md and docs/security-design.md |
| a failure diagnosed | TROUBLESHOOTING.md |
| to point your agent at this repository | AI_AGENT_QUICKSTART.md and AGENTS.md |
Names: the Python distribution/install target, CLI command, repository URL, and MCP server name use agentic-hil. Python imports, pytest plugin names, fixtures, and Python examples use agentic_hil.
Development
python -m pip install -e '.[dev]'
ruff check src tests evals tools
pytest
python -m build
twine check dist/*
The package is configured for PyPI publishing through GitHub trusted publishing in .github/workflows/workflow.yml. Contribution guidelines: CONTRIBUTING.md.
Security
Policy bypasses are treated as vulnerabilities; see SECURITY.md.
License
Apache-2.0. See LICENSE.
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 agentic_hil-0.15.0.tar.gz.
File metadata
- Download URL: agentic_hil-0.15.0.tar.gz
- Upload date:
- Size: 1.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92b1f8c2e33a1b5db13340f27a1a5a6c7507347b696603c258ca0b93529583b6
|
|
| MD5 |
c9a819e87f2564838046397eb4e13bce
|
|
| BLAKE2b-256 |
0c8a5278c505dd5ec56a40bd52c2448f97c3c0e223d392b5743c2f7686a3c61a
|
Provenance
The following attestation bundles were made for agentic_hil-0.15.0.tar.gz:
Publisher:
workflow.yml on agentic-hil/agentic-hil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentic_hil-0.15.0.tar.gz -
Subject digest:
92b1f8c2e33a1b5db13340f27a1a5a6c7507347b696603c258ca0b93529583b6 - Sigstore transparency entry: 2498331012
- Sigstore integration time:
-
Permalink:
agentic-hil/agentic-hil@b7e158396ff73725b8de3d3cbb51ac6f7a7c7bd5 -
Branch / Tag:
refs/tags/v0.15.0 - Owner: https://github.com/agentic-hil
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yml@b7e158396ff73725b8de3d3cbb51ac6f7a7c7bd5 -
Trigger Event:
release
-
Statement type:
File details
Details for the file agentic_hil-0.15.0-py3-none-any.whl.
File metadata
- Download URL: agentic_hil-0.15.0-py3-none-any.whl
- Upload date:
- Size: 629.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dd47708a824b52c0e0d237baf6a8a599a95726cbaa3fcca9ceea83808321867
|
|
| MD5 |
6d6d368341016eed38f7aa14875d2b1e
|
|
| BLAKE2b-256 |
2b67856ca3b8507d444fab98a172fbd67c6eea41f46827fb59eecf22f0af74aa
|
Provenance
The following attestation bundles were made for agentic_hil-0.15.0-py3-none-any.whl:
Publisher:
workflow.yml on agentic-hil/agentic-hil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentic_hil-0.15.0-py3-none-any.whl -
Subject digest:
7dd47708a824b52c0e0d237baf6a8a599a95726cbaa3fcca9ceea83808321867 - Sigstore transparency entry: 2498331022
- Sigstore integration time:
-
Permalink:
agentic-hil/agentic-hil@b7e158396ff73725b8de3d3cbb51ac6f7a7c7bd5 -
Branch / Tag:
refs/tags/v0.15.0 - Owner: https://github.com/agentic-hil
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yml@b7e158396ff73725b8de3d3cbb51ac6f7a7c7bd5 -
Trigger Event:
release
-
Statement type: