You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: flip defaults — visualizations and sessions are now opt-in
CLI defaults:
- PNG charts: skipped by default (dashboard reads JSON directly)
Use --visuals to generate them
- Session markdown: skipped by default
Use --sessions to export them
This makes the fast path (no deps, no PNGs, no markdown) the default.
The launcher already ran with these settings; CLI users now get the
same lightweight behaviour out of the box.
Changes:
- main.py: replace --no-visualizations with --visuals, add --sessions flag
- main.py: swap skip_visualizations param to generate_visualizations (default False)
- launcher.py: remove explicit skip_visualizations=True (False is now default)