AGILAB for Quarto Users
AGILAB can export a run manifest into a Quarto report. Use AGILAB to execute the experiment and collect evidence, then use Quarto to publish the proof.
Export a report
After an AGILAB run writes a run_manifest.json, create a .qmd report:
agilab export quarto \
--run ~/log/execute/flight_telemetry/latest/run_manifest.json \
--output report.qmd
The generated report contains the run summary, command, environment, validations, artifact paths, artifact hashes, and derived metrics from the manifest.
Render when Quarto is available
To ask AGILAB to call Quarto after writing the report:
agilab run quarto \
--run ~/log/execute/flight_telemetry/latest/run_manifest.json \
--output report.qmd
If quarto is not installed, AGILAB still writes the .qmd file and reports
the render step as skipped. To write only the .qmd file from the run
command:
agilab run quarto \
--run run_manifest.json \
--output report.qmd \
--no-render
Bridge boundary
Quarto is the report layer. AGILAB remains the reproducible execution and evidence engine. The bridge does not make AGILAB an R-native worker and does not replace Quarto publishing workflows.