Project history and internals¶
Engineering documents, kept because they record why something is the way it is. None of this is user documentation. These pages were written as standalone notes at particular moments, they are not maintained to the lightweight-ongoing cadence the user guide is, and several of them describe work that has since landed, moved or been superseded.
If you are trying to use vibe-view, everything you want is in Using vibe-view — start with Installation.
The notes cross-reference each other and the repository by relative path. Those links are intended for the repository browser; several of them do not resolve through this generated site. Where a note is still relevant it is cited from the code or the maintained developer guides.
What each one is¶
Document |
What it records |
|---|---|
A correctness pass over the viewer, with the live-UI QA evidence behind it |
|
The visual and interaction refresh: materials, lighting, ambient occlusion |
|
How the Electron app is built, owned and updated, and why source and packaged builds differ |
|
Things the viewer needs from producers, filed before the repositories were split |
|
The feature-parity plan through v2.15.2, frozen at the split. The maintained plan is the Roadmap |
Not on this site¶
Historical operator ledgers and workstream handovers are preserved in the private operations repository with source revisions and checksums. They are not part of the portable source snapshot. Product design notes, scientific validation scripts, tests and the maintained roadmap remain in this tree.
Developer tooling that lives in docs/¶
docs/ also holds a set of developer scripts. They are not part of the site
and Sphinx does not read them; they retain their docs/ paths so historical references still identify the
original scripts.
Script |
What it does |
|---|---|
|
Micro-benchmarks for the renderers they name |
|
Regenerate the browser and terminal screenshots under |
|
Trusted-event Playwright driver for the live UI — catches handlers that a headless |
|
Live GPU/trame QA harnesses: job containers, live optimisation, live reload, streaming, panel injection, the details sandbox |
None of them is a package or CI dependency.
Regenerating the manual’s figures¶
The capture tools run this checkout’s src/vibeview, using the interpreter
that starts the script. Install the development tools into the viewer venv:
.venv/bin/python -m pip install playwright pillow
.venv/bin/python -m playwright install chromium
export VIBE_VIEW_EXAMPLES=/path/to/vibe-qc/examples/vibe_view
PYVISTA_OFF_SCREEN=True .venv/bin/python docs/capture_screenshots.py
PYVISTA_OFF_SCREEN=True .venv/bin/python docs/capture_tui_screenshots.py
cd docs && make strict
The input directory must contain runs/qvf_showcase/water.qvf,
runs/h2co_showcase/h2co.qvf and output-nacl-showcase.qvf, written by the
project-authored vibe-qc showcase scripts. These archives are capture inputs,
not a runtime dependency. The tools fail when an input is absent.
capture_inputs.py copies them into docs/_build/capture-inputs/, sanitizes
provenance, validates every member digest, and records the original input
SHA-256 digests in input-sha256.json there. Nothing is written to vibe-qc.
The water demo uses the same write_demo path as vibe-view demo and needs
no producer. Formaldehyde density, orbitals, vibrations, IR, charges and SCF
history, plus NaCl structure and DOS, come from the computed showcase data.
The missing multi-section archive is replaced by explicitly illustrative
fixtures for difference density, ELF, bands/DOS, ECD, NMR, symmetry, QTAIM,
trajectory and reaction-path panels. Their values demonstrate the interface;
they are not computed physical observables. The figure captions mark these
cases. Input archives remain outside the tracked tree.
Browser figures are compositor captures of the real Vue/Trame/VTK UI in
Chromium. The script dismisses the welcome card, selects the light background,
uses the accessible result splitter, resets the camera after resizing, and
waits for Plotly to paint. Terminal figures come from Textual and Rich’s real
rendered output, with remote font references removed. Screenshots are never
image-generated. All outputs go directly into docs/images/; there is no
second copy under the pre-split _static/plots/vibe_view directory.