I've not yet isolated it in a marimo notebook yet, sharing for early check if you can reproduce it?
If not happy to start on isolating and helping improving
"""Interactive notebook tour using wigglystuff CellTour."""
from wigglystuff import CellTour
tour = CellTour(
steps=[
{
"cell_name": "chapter1_setup_header",
"title": "1. Setup",
"description": "Configure your CDF connection with .env credentials",
},
{
"cell_name": "chapter2_export_header",
"title": "2. Export from CDF",
"description": "Export transformation job metrics from CDF API",
},
{
"cell_name": "chapter3_loading_header",
"title": "3. Load Data",
"description": "Load previously exported JSONL files for analysis",
},
{
"cell_name": "chapter4_concurrency_header",
"title": "4. Concurrency Dashboard",
"description": "Visualize when transformation jobs overlap",
},
{
"cell_name": "chapter5_metrics_header",
"title": "5. Metrics Dashboard",
"description": "Explore metrics trends per transformation",
},
{
"cell_name": "chapter6_export_header",
"title": "6. Save Results",
"description": "Export analysis results to CSV, Parquet, or JSON",
},
],
auto_start=False,
show_progress=True,
)
mo.vstack(
[
mo.md("**New here?** Click the button below for a guided tour of this notebook."),
tour,
]
)
Hi @koaning
situation
from wigglystuff import CellTourfeature and it works fine inuvx run --python 3.13 marimo edit --sandbox..column mode, where it jumps nicely from cell to cell :)issue
editmode to "app view" (ctrl-.) => the "start tour" button results in "No tour steps defined"marimo run --sandbox ..mode -- supposed to guide users -- it shows the cell-tour centers in the middle of the screen.0.2.200.19.7I've not yet isolated it in a marimo notebook yet, sharing for early check if you can reproduce it?
If not happy to start on isolating and helping improving
The cell with celltour setup is IMO w/o surprises?