{ "cell_definitions": { "ES": "Explicit-Simple: 1 slide × 1 target shape", "EC": "Explicit-Compound: 1 slide × multiple target shapes (or multiple ops)", "PS": "Pattern-Simple: ≥2 slides × 1 target shape per slide", "PC": "Pattern-Compound: ≥2 slides × multiple target shapes per slide (or multiple ops per slide)" }, "action_definitions": { "ADD": "In-slide content insertion (new shape, prepend/append text, new paragraph, new table row)", "DELETE": "In-slide content removal (delete shape, drop text, remove paragraph/row)", "REPLACE": "In-slide content substitution (rewrite text, change color/font/size, swap value)", "SLIDE": "Slide-wise operation (add/delete/duplicate a slide, set slide transition, set slide background)" }, "templates": [ { "id": "U-01", "name": "translate-to-English", "cell": "PS", "ops_per_slide": 1, "actions": [ "REPLACE" ], "intent": "Translate every slide's text content into English. Pure REPLACE at the text level applied across all slides.", "text": "Translate all text in slide into English." }, { "id": "U-02", "name": "ES-title-color-slide1", "cell": "ES", "ops_per_slide": 1, "actions": [ "REPLACE" ], "intent": "Baseline ES sanity check — single shape (title) on a single slide. Pairs with U-04 (same op, multi-slide scope).", "text": "Change the title color of slide 1 to blue." }, { "id": "U-03", "name": "EC-multi-format-last-slide", "cell": "EC", "ops_per_slide": 3, "actions": [ "REPLACE", "ADD" ], "intent": "Three heterogeneous ops on multiple shapes of one slide (title + body). Tests in-slide decomposition.", "text": "On the last slide, change the title color to blue, change the body font to Calibri, and prepend 'Summary: ' to the first line of the body." }, { "id": "U-04", "name": "PS-titles-color", "cell": "PS", "ops_per_slide": 1, "actions": [ "REPLACE" ], "intent": "Apply a single style change to one shape (title) across every slide. Pairs with U-02 for ES↔PS scope comparison.", "text": "Change the title color of every slide to blue." }, { "id": "U-06", "name": "PC-translate-and-summarize", "cell": "PC", "ops_per_slide": 3, "actions": [ "REPLACE", "ADD" ], "intent": "Pattern-Compound mixing one REPLACE (translate title) with two ADDs (summary + takeaway). Hits multiple shapes per slide across the whole deck.", "text": "Translate the title of every slide into English, add a one-line summary of the key idea at the top of the body, and add a one-line key takeaway at the bottom of the body." }, { "id": "U-07", "name": "PC-chapter-template", "cell": "PC", "ops_per_slide": 3, "actions": [ "ADD" ], "intent": "Pure-ADD pattern with {i} indexing across all slides. Direct test of the planner's pattern mode (explicit fallback would 3x token cost).", "text": "Prepend '[{i}] ' to each slide's title, prepend 'Section {i}: ' to the first line of the body, and append '— Slide {i}' to the end of the body." }, { "id": "U-08", "name": "PC-translate-and-font", "cell": "PC", "ops_per_slide": 3, "actions": [ "REPLACE" ], "intent": "Pattern-Compound with three REPLACE ops touching different attributes (text content + body font + title color). Tests cross-shape coordination.", "text": "Translate every slide's title into English, change every slide's body font to Calibri, and change every slide's title color to blue." }, { "id": "U-09", "name": "ES-delete-shape-slide1", "cell": "ES", "ops_per_slide": 1, "actions": [ "DELETE" ], "intent": "Baseline DELETE sanity — locate and remove a single shape on one slide. Pairs with U-02 (same scope, opposite action).", "text": "On slide 1, delete the largest non-title shape." }, { "id": "U-10", "name": "PS-delete-recurring", "cell": "PS", "ops_per_slide": 1, "actions": [ "DELETE" ], "intent": "Multi-slide DELETE — remove one shape per slide. Tests planner's per-slide locate + delete; safely no-ops on slides where no match exists.", "text": "On every slide, delete any empty text shape (a shape whose text frame contains no visible characters)." }, { "id": "U-13", "name": "PS-slide-transition", "cell": "PS", "ops_per_slide": 1, "actions": [ "SLIDE" ], "intent": "Apply a single transition effect to every slide. Tests slide-agent routing and a tool with historical PpEntryEffect enum bugs. NOTE: parser does not capture transition state, so the agent's result is not currently verifiable post-hoc — vision validator also cannot see transitions on static screenshots.", "text": "Apply a fade transition to every slide." }, { "id": "U-16", "name": "PS-slide-background", "cell": "PS", "ops_per_slide": 1, "actions": [ "SLIDE" ], "intent": "Set a uniform background fill across every slide. Tests set_slide_background plus color-name resolution (no hex).", "text": "Set the background of every slide to light gray." }, { "id": "U-20", "name": "PS-mirror-each-from-template", "cell": "PS", "ops_per_slide": 1, "actions": [ "REPLACE" ], "intent": "Use slide 1 as a layout template — for every subsequent slide, adjust shape positions to match slide 1's layout. Multi-slide variant of U-19, stronger pattern-mode + cross-slide reference test.", "text": "Using slide 1 as a layout template, for every subsequent slide adjust the positions and sizes of its shapes to match the corresponding shapes on slide 1." }, { "id": "U-21", "name": "PS-add-page-number", "cell": "PS", "ops_per_slide": 1, "actions": [ "ADD" ], "intent": "Add a slide-number indicator to every slide via a per-slide textbox. Uses {i} for pattern-mode indexing. In-slide ADD (creates a new shape) rather than toggling slide-footer metadata.", "text": "Add a small textbox showing the slide number '{i}' at the bottom-right corner of every slide." }, { "id": "U-22", "name": "PS-body-font-change", "cell": "PS", "ops_per_slide": 1, "actions": [ "REPLACE" ], "intent": "Multi-slide REPLACE — change body font across the deck for visual unification.", "text": "Change every slide's body font to Calibri." } ] }