benchbox-maintainer Future State¶
Related TODO: remove-release-tooling-from-wheel
Future State¶
BenchBox core ships benchmarking, comparison, and reporting features only. Maintainer-only release automation, repository sync flows, and content validation move into a separate maintainer package with its own entry points and dependency profile.
Why This Is Valuable¶
End users no longer install or discover maintainer commands by accident.
Maintainer automation can evolve without distorting the core package boundary.
CI and release workflows gain an explicit toolchain instead of depending on product-package internals.
How The End State Is Used¶
Core users install only BenchBox:
uv add benchbox
benchbox run --platform duckdb --benchmark tpch --scale 0.01
Maintainers install the maintainer package explicitly:
uv add benchbox-maintainer
benchbox-maintainer sync status
benchbox-maintainer release prepare
benchbox-maintainer content-validate docs/
BenchBox After The Refactor¶
benchboxremains the public runtime CLI.Release and sync logic are no longer part of the default install surface.
BenchBox may keep a short-lived compatibility shim for migration, but the steady state is a clean separation between product and maintainer tooling.
Non-Goals¶
Changing benchmark execution semantics
Folding maintainer dependencies back into the default BenchBox install