1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python3
"""write_pptx.py — thin CLI wrapper for pptx_engine.
Called by WriteOfficeTool (bundled PBS Python or ~/.deepseek/office-py venv).
Args: --output PATH [--input FILE] (if --input omitted, reads JSON from stdin)
Payload schema: see docs/pptx-generation-engine-plan.md and
pptx_engine package docstrings.
Supported (backward-compatible):
- slides[].chart, slides[].table, slides[].bullets (old pipeline)
- slides[].blocks + slides[].layout (new pipeline with grid layout)
- slides[].notes (speaker notes)
- slides[].theme (per-slide override)
Chart types: bar, line, pie, stacked_bar, stacked_bar_pct, area, scatter, donut, combo
"""
=
=
=
=
=