KiCad Cruncher owns public KiCad workflow commands and generated artifact layouts. It composes `kicad-monkey` parsing/rendering primitives and `wn-geometer` projection support without taking ownership of either package's lower-level contracts.
src/rs/kicad-cruncher-cli owns the promoted Windows x64 design, design-review, dr, and version executable path, including native dispatch and review-bundle orchestration._cli.py owns the full cross-platform Python command catalog and remains the explicit module entry point for commands outside the promoted Rust slice.kicad_cruncher_cmd_* modules own individual public commands.bom_pnp_* modules own shared BOM, PnP, and JLC normalization.kicad_cruncher_pcb_svg_* modules own configured SVG view composition.kicad_cruncher_pcb_layer_step* modules own layer STEP generation.docs/contracts/ owns command and config schemas.docs/design/ owns durable command and interface design docs.
Design review is the first complete promoted Rust vertical slice. Windows
x64 GitHub releases include hash-bound kicad-cruncher.exe and
kcr.exe artifacts that generate the contracted bundle without
Python. The universal wheel remains the full cross-platform Python command
distribution and the Python design path remains the exact migration oracle.
Other commands require their own measured Rust slices before promotion.
Every public command must be represented in the command manifest, CLI design docs, contracts when applicable, and Rack-owned signoff tests. Generated outputs remain disposable unless promoted to explicit fixtures or contracts.