speja
Catch it earlier. Earlier than simulation.
A VHDL formatter and linter in Rust. Every bug has a price that goes up the longer it takes to find: a moment in your editor, a coffee in CI, an afternoon in a waveform viewer, a respin on silicon. speja moves what it can to the cheap end of that scale: the moment you save the file.
Some of what it reports a simulator would have told you eventually: an index outside its array, a value outside its subtype, a process that can never suspend. Eventually means after you have written the testbench, elaborated the design and waited for the run, and only if the run reaches that line. Some of it no simulator will ever tell you, because the design elaborates perfectly well and simply does not mean what it says.
It runs the rule set, command line and configuration of the VHDL Style Guide (VSG), adds a formatter that fixes what it reports, and adds a lint layer that VSG has no equivalent of.
A default lint run reports definite errors only: things that cannot work, rather than things worth a look. Everything that depends on what you meant is one line of configuration away.
Status: beta. The style layer implements VSG 3.35's rule set and is tested against more than
11,000 real-world files; expect layout changes before 1.0. The lint layer (speja lint) is
newer and its rule set is still growing.
Install
pip install speja # Linux, Windows and macOS wheels, Python 3.10+
uv tool install speja # or
cargo install --path . # from source (Rust 1.95 or newer)
Standalone binaries for Linux (static, x86_64 and aarch64), Windows (x64 and arm64) and macOS
(arm64 and x86_64) are attached to each
release, with a SHA256SUMS file.
Everything VSG accepts, unchanged
speja -f src/*.vhd -c vsg.yaml --fix
The arguments, the configuration file, the reports and the exit codes are VSG's, and VSG documents them. Existing scripts and CI jobs keep working, so this README covers only what speja adds on top. Differences are listed in compatibility.
What speja adds
A real formatter. Source is parsed once into a lossless syntax tree and printed in one
canonical layout, like rustfmt or Black. Every layout rule is fixed rather than reported, long
lines are folded at structural boundaries, and running --fix twice changes nothing. All
violations are reported at once and fixed in a single pass: no repeated runs, no rule-order
dependencies.
Safety. Formatted output is re-parsed and must contain exactly the same tokens and comments;
files with syntax errors are never changed. Fixes VSG does not apply by default need
--unsafe_fixes.
Speed. Real-world VHDL is checked at about 3.4 MB/s on one core, in parallel worker processes.
Beyond style: speja lint
Rules that need names resolved, which a per-file style checker cannot do:
speja lint --recursive src # the lint layer
speja --recursive src --check style,lint # both in one run
lint_600 -- Signal 'flag' is not assigned on every path of this combinational process,
which infers a latch
lint_601 -- Signal 'result' is assigned by 2 concurrent statements (lines 34, 38)
lint_001 -- The signal 'b' is not read in the sensitivity list (first read at line 10)
Sensitivity lists, unused declarations, latch inference, multiple drivers, combinational loops, state machines, vector widths, clock-domain crossings, and the type and name diagnostics of a real front end. Every rule states the evidence behind it and reports nothing when that evidence is missing.
Most of these resolve names across files, which needs a library map. Without one they are skipped, and the run says so. See static analysis and project setup.
Adopting a rule set on existing code
speja --recursive src --generate_waivers waivers.yaml # accept what exists today
speja --recursive src --waivers waivers.yaml # from now on, only new violations
Waivers record a rule, a file glob, lines and a reason, and never affect the exit code.
Options speja adds
| Option | Meaning |
|---|---|
lint, --check style,lint |
run the lint layer, or both layers |
--lint_configuration FILE (-lc) |
configuration for the lint layer only |
--waivers, --generate_waivers, --show_waived |
accept known violations |
--unsafe_fixes |
also apply fixes VSG does not apply by default; review the result |
--diff |
with --fix, print a unified diff instead of changing files |
--range START:END |
with --fix, change only these lines |
--stdin_filename PATH |
name of the --stdin input, for configuration lookup and reports |
--sarif FILE |
SARIF 2.1.0, for GitHub code scanning |
--sonarqube FILE |
SonarQube generic issue JSON |
--recursive |
check the VHDL files in directories and their subdirectories |
--list_rules, --statistics |
what each rule is, and how often each fired |
Configuration keys speja adds live under a speja: block: reflow_comments,
testbench_files, testbench_libraries, synchronizers, and a rule: block per kind of
file.
Editors and coding agents
Two servers over stdio, both the same engine as the command line, so everything is told the same thing about the same file under the same configuration.
speja lsp # a language server: diagnostics, formatting, quick fixes
speja mcp # an MCP server, for a coding agent
The language server is meant to run beside
vhdl_ls rather than instead of it, and advertises only what speja is: it answers no
completion, hover or definition request. A VS Code extension ships
it, and adds editing actions built on
VHDL-LS, such as instantiating an entity and declaring a port map's signals. Those need VHDL-LS
running; lint and format do not.
The MCP server gives a coding agent three tools,
lint, format and explain_rule:
claude mcp add speja -- speja mcp
{ "mcpServers": { "speja": { "command": "speja", "args": ["mcp"] } } }
lint and format take a file path or a buffer. A buffer is how an agent checks what it is
about to write before writing it, which is one step earlier still; format with write fixes a
file in place without moving it through the conversation.
For Claude Code there is a plugin, which installs a vsg skill and registers the MCP server:
/plugin marketplace add ru551n/speja
/plugin install speja@speja
The skill tells an agent to format and check VHDL before committing it, how to read a finding's
class, and not to treat a run that skipped the library map as a clean file. speja itself still
has to be on PATH.
CI
A GitHub Action posts annotations and suggested changes; GitLab CI gets the code-quality report, and SonarQube the generic issue JSON. Jenkins reads the SARIF file through Warnings-NG. Every report format works anywhere.
- uses: ru551n/speja@v0.13.0
with:
args: --recursive src
Documentation
speja.readthedocs.io: what speja adds on top of VSG. The rules, their options and the configuration file are VSG's own and are linked to rather than repeated.
- Quick start
- Static analysis and project setup
- Rule reference
- Running in an airgap: what it needs, what it cannot reach, and how to check both yourself
- Language server, MCP server and Claude Code plugin
- Waivers
- Migrating from VSG
- Compatibility with VSG, measured weekly against two corpora
Disclosure: this code was written by an LLM
Most of this repository was written by Claude, directed and reviewed by a human. Treat that as a reason to check it rather than a reason to trust it, so here is what there is to check against. None of it depends on the code having been written well.
It cannot reach anything. No network, proven four ways in CI on every change: no dependency
is an HTTP or TLS client, the binary imports no symbol that can reach a host, everything runs
inside an empty network namespace, and strace records zero network syscalls. You can run those
same checks against the binary you downloaded in about five minutes:
running in an airgap.
It cannot quietly mangle your files. Formatted output is re-parsed and must contain exactly the same tokens and comments, in the same order, before anything is written. A mismatch is an internal error and your file is left untouched, so a formatter bug costs you a run rather than a file. Files with syntax errors are never modified, writes are atomic through a temporary file in the same directory, and a file whose output equals its input is not rewritten at all.
Its blast radius is small. #![forbid(unsafe_code)]. No privileges, no service, no daemon,
no telemetry. The only state it keeps is a 2.3 MB cache of the embedded ieee and std sources,
written once per version. The only time it starts another program is --local_rules, which runs
the VSG on your PATH, because only VSG can run VSG's Python plugins.
It is checked against reality, not against itself. The formatter is compared with VSG's own output over a corpus of real VHDL, weekly. Every lint rule must report nothing on three real projects unless a person has confirmed each finding is a genuine defect, and those counts are a CI gate. Fuzzing runs nightly. Agreement is published per rule rather than claimed.
Known limits, stated rather than buried. A dependency (vhdl_lang) can stack-overflow on
pathological input, which aborts the process before anything is written. A file you made
read-only is still replaced, because atomic writes need permission on the directory rather than
on the file. Both are in the
airgap page.
Cautious first run? --fix --diff changes nothing and prints what it would do, --backup keeps
a copy beside each file, and a run without --fix never writes anything at all.
Relationship to VSG
speja is an independent Rust implementation of a VHDL formatter and style checker that aims for compatibility with the rules and configuration of the VHDL Style Guide (VSG). It is not affiliated with, endorsed by, or maintained by the VHDL Style Guide project or its maintainers.
speja was inspired by the VHDL Style Guide (VSG) project by Jeremiah Leary and contributors. speja contains no VSG code; VSG is used only as a behavioural reference.
Every release states the VSG version it targets, and speja --version prints it.
Contributing
See CONTRIBUTING.md for the build, test and corpus commands, how compatibility is measured, and what CI runs.
Licence
Either Apache License, Version 2.0 or MIT, at your option.
Third-party dependencies are listed in THIRD_PARTY_LICENSES.md and in
NOTICE; the VHDL parser, vhdl_syntax from the rust_hdl project, is MPL-2.0 and is
used as an unmodified dependency.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in speja, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Release files for speja 0.13.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| speja-0.13.0.tar.gz | 1.5 MB | Details |
Built distributions (wheels)
| File | Reset | |||
|---|---|---|---|---|
| speja-0.13.0-py3-none-win_arm64.whl | Python 3 | none | Windows ARM64 | Details |
| speja-0.13.0-py3-none-win_amd64.whl | Python 3 | none | Windows x86-64 | Details |
| speja-0.13.0-py3-none-musllinux_1_2_x86_64.whl | Python 3 | none | Linux musl 1.2+ x86-64 | Details |
| speja-0.13.0-py3-none-musllinux_1_2_aarch64.whl | Python 3 | none | Linux musl 1.2+ ARM64 | Details |
| speja-0.13.0-py3-none-manylinux_2_28_x86_64.whl | Python 3 | none | Linux glibc 2.28+ x86-64 | Details |
| speja-0.13.0-py3-none-manylinux_2_28_aarch64.whl | Python 3 | none | Linux glibc 2.28+ ARM64 | Details |
| speja-0.13.0-py3-none-macosx_11_0_arm64.whl | Python 3 | none | macOS 11.0+ ARM64 | Details |
| speja-0.13.0-py3-none-macosx_10_12_x86_64.whl | Python 3 | none | macOS 10.12+ x86-64 | Details |
Total release size: 36.0 MB
Release files / speja-0.13.0.tar.gz
| Download URL | speja-0.13.0.tar.gz |
|---|---|
| Size | 1.5 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c0a429c87124a8e47dd3af51fb6455ea8fcad509e455dbd0a72826d2a9c6b98b
|
|
BLAKE2b-256 checksum How to use checksums |
27ca2142c14ed96a7407bd43d235666559a991ea524b4f547fe586ea11edf8d3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / speja-0.13.0-py3-none-win_arm64.whl
| Download URL | speja-0.13.0-py3-none-win_arm64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | Python 3 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
c740d59741db6d73ae6df0d1305809fef8778bb139e8f8a2b037eb7a10797c50
|
|
BLAKE2b-256 checksum How to use checksums |
2b8a5f6a4cba30ace1c572cb1b007d0b44047fb146e1701c6e2ada3f8b5dae1e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / speja-0.13.0-py3-none-win_amd64.whl
| Download URL | speja-0.13.0-py3-none-win_amd64.whl |
|---|---|
| Size | 4.7 MB |
| Tags | Python 3 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
de2171ed725054dfb53fbec7d3c1c1d3020a90bbafaae21f4eb52012eb35dabe
|
|
BLAKE2b-256 checksum How to use checksums |
ac9befea6e9e5f6d00550606d1833f9502adf98d1d304dff4d3cdaf89f633604
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / speja-0.13.0-py3-none-musllinux_1_2_x86_64.whl
| Download URL | speja-0.13.0-py3-none-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | Linux musl 1.2+ x86-64 Python 3 |
|
SHA-256 checksum How to use checksums |
ddaa0b88abcd4eb31f9da2a8e8bb625ba38ef83716196ee6e4b127ffa73ec957
|
|
BLAKE2b-256 checksum How to use checksums |
09284fb5651cddc911eac0d7fcdf29fc965113e29fde1884d7a01b245b8be71a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / speja-0.13.0-py3-none-musllinux_1_2_aarch64.whl
| Download URL | speja-0.13.0-py3-none-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 4.1 MB |
| Tags | Linux musl 1.2+ ARM64 Python 3 |
|
SHA-256 checksum How to use checksums |
9d9ffb7e5b22502dd5d21eb272f227899913e106684fa34f97ea7e435b571a0c
|
|
BLAKE2b-256 checksum How to use checksums |
9da25e717934fc66e03c73be48d1814f8c1d8498cb2013ff48b82e8884217cfa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / speja-0.13.0-py3-none-manylinux_2_28_x86_64.whl
| Download URL | speja-0.13.0-py3-none-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 4.4 MB |
| Tags | Linux glibc 2.28+ x86-64 Python 3 |
|
SHA-256 checksum How to use checksums |
c91f9e039a7c359df066e4ae9e40370257b189319351fd41051513a39fa48376
|
|
BLAKE2b-256 checksum How to use checksums |
8b3399c6eab73ae609221484c344f01761d80129fb12b4e9d462136c610c97bc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / speja-0.13.0-py3-none-manylinux_2_28_aarch64.whl
| Download URL | speja-0.13.0-py3-none-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 4.1 MB |
| Tags | Linux glibc 2.28+ ARM64 Python 3 |
|
SHA-256 checksum How to use checksums |
e5d79b4b04b6edfd17f37bb877b94ba09179e0208fd9b8392bfb9e1a802e084d
|
|
BLAKE2b-256 checksum How to use checksums |
58a5bcc47e902ef5343c478eb64af1452cbe16b080027f6659d88cf332765c05
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / speja-0.13.0-py3-none-macosx_11_0_arm64.whl
| Download URL | speja-0.13.0-py3-none-macosx_11_0_arm64.whl |
|---|---|
| Size | 4.0 MB |
| Tags | Python 3 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
6e274cd1797f81257d31a6f6497dff3a22255a4ec8327ceebe204da301d800ab
|
|
BLAKE2b-256 checksum How to use checksums |
6698199a15ee0b26c29bdf8c1bf35557aeb14e7f8b8eb7b63546ab52010d2e13
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / speja-0.13.0-py3-none-macosx_10_12_x86_64.whl
| Download URL | speja-0.13.0-py3-none-macosx_10_12_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | Python 3 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
35506f6d2b93cf88f2a52821fe989d4c3de74c450abb8abba261ba03c77aa09e
|
|
BLAKE2b-256 checksum How to use checksums |
95b22c8b45507da079d1b63113a65b308196b7f9eebbb16beee442412eb6803e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency log