| 1 | #!/usr/bin/env python3 |
| 2 | """ |
| 3 | PPT Master - Legacy Chart Recall Compatibility |
| 4 | |
| 5 | Preserve the historical broad chart-recall CLI while delegating to the unified |
| 6 | visualization recall implementation. Published Structure bare keys validate as |
| 7 | intent-only compatibility values; they do not recall or load SVG assets. The |
| 8 | legacy ``valid`` list remains intact while ``resolved`` exposes each kind. |
| 9 | |
| 10 | Usage: |
| 11 | python3 scripts/chart_recall.py recall --page P03 --tag "time series" --tag "three metrics" --tag "trend" |
| 12 | python3 scripts/chart_recall.py validate line_chart column_chart |
| 13 | |
| 14 | Examples: |
| 15 | python3 scripts/chart_recall.py validate process_flow |
| 16 | |
| 17 | Dependencies: |
| 18 | None (only uses the standard library) |
| 19 | """ |
| 20 | |
| 21 | from __future__ import annotations |
| 22 | |
| 23 | from visualization_recall import main |
| 24 | |
| 25 | |
| 26 | if __name__ == "__main__": |
| 27 | raise SystemExit(main(legacy_output=True)) |
| 28 |