4.8 KiB
Create and edit PowerPoint presentation artifacts inside the current thread.
- This is a stateful built-in tool.
artifact_idvalues are returned by earlier calls and persist only for the current thread. - Resume and fork do not restore live artifact state. Export files if you need a durable handoff.
- Relative paths resolve from the current working directory.
- Position and size values are in slide points.
Supported actions:
createimport_pptxexport_pptxexport_previewget_summarylist_slideslist_layoutslist_layout_placeholderslist_slide_placeholdersinspectresolvecreate_layoutadd_layout_placeholderset_slide_layoutupdate_placeholder_textset_themeset_notesappend_notesclear_notesset_notes_visibilityset_active_slideadd_slideinsert_slideduplicate_slidemove_slidedelete_slideset_slide_backgroundadd_text_shapeadd_shapeadd_connectoradd_imagereplace_imageadd_tableupdate_table_cellmerge_table_cellsadd_chartupdate_textreplace_textinsert_text_afterset_hyperlinkupdate_shape_stylebring_to_frontsend_to_backdelete_elementdelete_artifact
Example create:
{"action":"create","args":{"name":"Quarterly Update"}}
Example create with custom slide size:
{"action":"create","args":{"name":"Quarterly Update","slide_size":{"width":960,"height":540}}}
Example edit:
{"artifact_id":"presentation_x","action":"add_text_shape","args":{"slide_index":0,"text":"Revenue up 24%","position":{"left":48,"top":72,"width":260,"height":80}}}
Table creation also accepts optional column_widths and row_heights arrays in points when you need explicit table sizing instead of even splits.
Example export:
{"artifact_id":"presentation_x","action":"export_pptx","args":{"path":"artifacts/q2-update.pptx"}}
Example layout flow:
{"artifact_id":"presentation_x","action":"create_layout","args":{"name":"Title Slide"}}
{"artifact_id":"presentation_x","action":"add_layout_placeholder","args":{"layout_id":"layout_1","name":"title","placeholder_type":"title","text":"Click to add title","position":{"left":48,"top":48,"width":624,"height":72}}}
{"artifact_id":"presentation_x","action":"set_slide_layout","args":{"slide_index":0,"layout_id":"layout_1"}}
{"artifact_id":"presentation_x","action":"list_layout_placeholders","args":{"layout_id":"layout_1"}}
{"artifact_id":"presentation_x","action":"list_slide_placeholders","args":{"slide_index":0}}
Example inspect:
{"artifact_id":"presentation_x","action":"inspect","args":{"kind":"deck,slide,textbox,shape,table,chart,image,notes,layoutList","max_chars":12000}}
Example resolve:
{"artifact_id":"presentation_x","action":"resolve","args":{"id":"sh/element_3"}}
Deck summaries, slide listings, inspect, and resolve now include active-slide metadata. Use set_active_slide to change it explicitly.
Text-bearing elements also support literal replace_text and insert_text_after helpers for in-place edits without resending the full string.
Text boxes and shapes support whole-element hyperlinks via set_hyperlink. Supported link_type values are url, slide, first_slide, last_slide, next_slide, previous_slide, end_show, email, and file. Use clear: true to remove an existing hyperlink.
Notes visibility is honored on export: set_notes_visibility controls whether speaker notes are emitted into exported PPTX output.
Image placeholders can be prompt-only. add_image accepts prompt without path/data_url, and unresolved placeholders export as a visible placeholder box instead of failing.
Remote images are supported. add_image and replace_image accept uri in addition to local path and data_url.
Image edits can target inspect/resolve anchors like im/element_3, and update_shape_style now accepts image fit, crop, rotation, flip_horizontal, flip_vertical, and lock_aspect_ratio updates.
add_image and replace_image also accept optional rotation, flip_horizontal, and flip_vertical fields for image transforms.
update_shape_style.position accepts partial updates, so you can move or resize an element without resending the full rect.
Connectors are supported via add_connector, with straight/elbow/curved types plus dash styles and arrow heads.
Example preview:
{"artifact_id":"presentation_x","action":"export_preview","args":{"slide_index":0,"path":"artifacts/q2-update-slide1.png"}}
export_preview also accepts format, scale, and quality for rendered previews. format currently supports png and jpeg.
Example JPEG preview:
{"artifact_id":"presentation_x","action":"export_preview","args":{"slide_index":0,"path":"artifacts/q2-update-slide1.jpg","format":"jpeg","scale":0.75,"quality":85}}